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:
Vladimir Kozlov 2008-03-28 11:52:29 -07:00
parent fb63e29743
commit 2ea233816f
3 changed files with 73 additions and 67 deletions

View file

@ -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; }