comparison src/share/vm/interpreter/interpreter.hpp @ 1681:126ea7725993

6953477: Increase portability and flexibility of building Hotspot Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail. Reviewed-by: phh, never, coleenp, dholmes
author bobv
date Tue, 03 Aug 2010 08:13:38 -0400
parents c18cbe5936b8
children 3e8fbc61cee8
comparison
equal deleted inserted replaced
1680:a64438a2b7e8 1681:126ea7725993
50 address code_begin() const { return (address)this + round_to(sizeof(InterpreterCodelet), CodeEntryAlignment); } 50 address code_begin() const { return (address)this + round_to(sizeof(InterpreterCodelet), CodeEntryAlignment); }
51 address code_end() const { return (address)this + size(); } 51 address code_end() const { return (address)this + size(); }
52 52
53 // Debugging 53 // Debugging
54 void verify(); 54 void verify();
55 void print(); 55 void print_on(outputStream* st) const;
56 void print() const { print_on(tty); }
56 57
57 // Interpreter-specific initialization 58 // Interpreter-specific initialization
58 void initialize(const char* description, Bytecodes::Code bytecode); 59 void initialize(const char* description, Bytecodes::Code bytecode);
59 60
60 // Interpreter-specific attributes 61 // Interpreter-specific attributes