diff src/share/vm/code/exceptionHandlerTable.hpp @ 4693:07bcee8b70a4

Simplify exception debug information and exception handler table creation based on Graal's simplified model of exception handler information (i.e. the dispatch is done in compiled code).
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 25 Feb 2012 00:40:34 +0100
parents f95d63e2154a
children e522a00b91aa
line wrap: on
line diff
--- a/src/share/vm/code/exceptionHandlerTable.hpp	Fri Feb 24 22:32:43 2012 +0100
+++ b/src/share/vm/code/exceptionHandlerTable.hpp	Sat Feb 25 00:40:34 2012 +0100
@@ -88,12 +88,12 @@
   int                _length;   // the current length of the table
   int                _size;     // the number of allocated entries
   ReallocMark        _nesting;  // assertion check for reallocations
-
+  
+ public:
   // add the entry & grow the table if needed
   void add_entry(HandlerTableEntry entry);
   HandlerTableEntry* subtable_for(int catch_pco) const;
 
- public:
   // (compile-time) construction within compiler
   ExceptionHandlerTable(int initial_size = 8);