mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
6680665: bytecode Escape Analyzer produces incorrect escape information for methods without oop arguments
BcEscapeAnalyzer does not analyze methods with no oop arguments. Reviewed-by: rasbold
This commit is contained in:
parent
fb63e29743
commit
2ea233816f
3 changed files with 73 additions and 67 deletions
|
@ -1253,7 +1253,10 @@ public:
|
|||
// Support for interprocedural escape analysis, from Thomas Kotzmann.
|
||||
enum EscapeFlag {
|
||||
estimated = 1 << 0,
|
||||
return_local = 1 << 1
|
||||
return_local = 1 << 1,
|
||||
return_allocated = 1 << 2,
|
||||
allocated_escapes = 1 << 3,
|
||||
unknown_modified = 1 << 4
|
||||
};
|
||||
|
||||
intx eflags() { return _eflags; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue