changeset 5699:3c5355b468a0

8047130: Fewer escapes from escape analysis Summary: Treat max_stack attribute as an int in bytecode escape analyzer Reviewed-by: iveresov
author poonam
date Mon, 11 Aug 2014 19:02:28 -0700
parents 12c7d3944bb6
children 0f7af2e46b61
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	Fri Oct 17 05:51:08 2014 -0700
+++ b/src/share/vm/ci/bcEscapeAnalyzer.cpp	Mon Aug 11 19:02:28 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;