changeset 7047:609faa407cfd

8047130: Fewer escapes from escape analysis Summary: Treat max_stack attribute as an int in bytecode escape analyzer Reviewed-by: kvn, twisti, ahgross
author iveresov
date Fri, 08 Aug 2014 15:15:52 -0700
parents 31845bc861c5
children 8210e5f2e21b
files src/share/vm/ci/bcEscapeAnalyzer.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/ci/bcEscapeAnalyzer.cpp	Thu Aug 07 12:23:34 2014 +0100
+++ b/src/share/vm/ci/bcEscapeAnalyzer.cpp	Fri Aug 08 15:15:52 2014 -0700
@@ -89,8 +89,8 @@
 public:
   ArgumentMap *_vars;
   ArgumentMap *_stack;
-  short _stack_height;
-  short _max_stack;
+  int _stack_height;
+  int _max_stack;
   bool _initialized;
   ArgumentMap empty_map;