< prev index next >

src/hotspot/share/oops/generateOopMap.hpp

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_OOPS_GENERATEOOPMAP_HPP
  26 #define SHARE_VM_OOPS_GENERATEOOPMAP_HPP
  27 
  28 #include "interpreter/bytecodeStream.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "memory/universe.inline.hpp"
  31 #include "oops/method.hpp"
  32 #include "oops/oopsHierarchy.hpp"
  33 #include "runtime/signature.hpp"
  34 #include "utilities/bitMap.hpp"
  35 
  36 // Forward definition
  37 class GenerateOopMap;
  38 class BasicBlock;
  39 class CellTypeState;
  40 class StackMap;
  41 
  42 // These two should be removed. But requires som code to be cleaned up
  43 #define MAXARGSIZE      256      // This should be enough
  44 #define MAX_LOCAL_VARS  65536    // 16-bit entry
  45 
  46 typedef void (*jmpFct_t)(GenerateOopMap *c, int bcpDelta, int* data);
  47 
  48 
  49 //  RetTable
  50 //




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_OOPS_GENERATEOOPMAP_HPP
  26 #define SHARE_VM_OOPS_GENERATEOOPMAP_HPP
  27 
  28 #include "interpreter/bytecodeStream.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "memory/universe.hpp"
  31 #include "oops/method.hpp"
  32 #include "oops/oopsHierarchy.hpp"
  33 #include "runtime/signature.hpp"
  34 #include "utilities/bitMap.hpp"
  35 
  36 // Forward definition
  37 class GenerateOopMap;
  38 class BasicBlock;
  39 class CellTypeState;
  40 class StackMap;
  41 
  42 // These two should be removed. But requires som code to be cleaned up
  43 #define MAXARGSIZE      256      // This should be enough
  44 #define MAX_LOCAL_VARS  65536    // 16-bit entry
  45 
  46 typedef void (*jmpFct_t)(GenerateOopMap *c, int bcpDelta, int* data);
  47 
  48 
  49 //  RetTable
  50 //


< prev index next >