hotspot/src/share/vm/code/compiledMethod.hpp
changeset 46364 00a21c0ff97e
parent 43474 8fbf946045f6
child 46796 ec791efbdecf
--- a/hotspot/src/share/vm/code/compiledMethod.hpp	Wed Apr 05 01:11:25 2017 +0000
+++ b/hotspot/src/share/vm/code/compiledMethod.hpp	Wed Apr 05 13:15:44 2017 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -272,6 +272,8 @@
   bool handler_table_contains(address addr) const { return handler_table_begin() <= addr && addr < handler_table_end(); }
   int handler_table_size() const { return handler_table_end() - handler_table_begin(); }
 
+  virtual address exception_begin() const = 0;
+
   virtual address nul_chk_table_begin() const = 0;
   virtual address nul_chk_table_end() const = 0;
   bool nul_chk_table_contains(address addr) const { return nul_chk_table_begin() <= addr && addr < nul_chk_table_end(); }