/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | cppInterpreter.cpp | 35 if (_code != NULL) return; 43 _code = new StubQueue(new InterpreterCodeletInterface, code_size, NULL, 45 InterpreterGenerator g(_code); 63 CppInterpreterGenerator::CppInterpreterGenerator(StubQueue* _code): AbstractInterpreterGenerator(_code) { argument
|
H A D | bytecodeStream.hpp | 181 Bytecodes::Code _code; member in class:BytecodeStream 220 _code = code; 221 return _code; 225 Bytecodes::Code code() const { return _code; }
|
H A D | interpreter.cpp | 86 if (_code != NULL) return; 102 tty->print_cr("code size = %6dK bytes", (int)_code->used_space()/1024); 103 tty->print_cr("total space = %6dK bytes", (int)_code->total_space()/1024); 104 tty->print_cr("wasted space = %6dK bytes", (int)_code->available_space()/1024); 106 tty->print_cr("# of codelets = %6d" , _code->number_of_stubs()); 107 tty->print_cr("avg codelet size = %6d bytes", _code->used_space() / _code->number_of_stubs()); 109 _code->print(); 139 StubQueue* AbstractInterpreter::_code = NULL; member in class:AbstractInterpreter 152 AbstractInterpreterGenerator::AbstractInterpreterGenerator(StubQueue* _code) { argument [all...] |
H A D | abstractInterpreter.hpp | 133 static StubQueue* _code; // the interpreter code (codelets) member in class:AbstractInterpreter 154 static StubQueue* code() { return _code; } 329 AbstractInterpreterGenerator(StubQueue* _code);
|
H A D | bytecode.hpp | 56 const Bytecodes::Code _code; member in class:Bytecode 71 Bytecode(methodOop method, address bcp): _bcp(bcp), _code(Bytecodes::code_at(method, addr_at(0))) { 79 int instruction_size() const { return Bytecodes::length_for_code_at(_code, bcp()); } 81 Bytecodes::Code code() const { return _code; }
|
H A D | bytecodeTracer.cpp | 51 Bytecodes::Code _code; member in class:BytecodePrinter 67 Bytecodes::Code raw_code() { return Bytecodes::Code(_code); } 80 _code = Bytecodes::_illegal; 107 _code = code; 122 _code = Bytecodes::_illegal; 136 _code = code;
|
H A D | templateInterpreter.cpp | 36 if (_code != NULL) return; 50 _code = new StubQueue(new InterpreterCodeletInterface, code_size, NULL, 52 InterpreterGenerator g(_code); 195 TemplateInterpreterGenerator::TemplateInterpreterGenerator(StubQueue* _code): AbstractInterpreterGenerator(_code) { argument
|
/openjdk7/hotspot/src/os/solaris/dtrace/ |
H A D | generateJvmOffsets.cpp | 80 StubQueue* AbstractInterpreter::_code = NULL; member in class:AbstractInterpreter
|
/openjdk7/hotspot/src/share/vm/code/ |
H A D | scopeDesc.hpp | 113 const nmethod* _code; member in class:ScopeDesc
|
H A D | debugInfo.hpp | 251 const nmethod* _code; member in class:DebugInfoReadStream 252 const nmethod* code() const { return _code; } 257 _code = code;
|
H A D | dependencies.hpp | 423 nmethod* _code; // null if in a compiler thread member in class:Dependencies::DepStream 437 // => _code? _code->oop_at(i): *_deps->_oop_recorder->handle_at(i) 447 _code(NULL), 454 _code(code),
|
H A D | relocInfo.hpp | 535 nmethod* _code; // compiled method containing _addr member in class:RelocIterator 609 nmethod* code() const { return _code; }
|
/openjdk7/hotspot/src/os/bsd/dtrace/ |
H A D | generateJvmOffsets.cpp | 85 StubQueue* AbstractInterpreter::_code = NULL; member in class:AbstractInterpreter
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/ |
H A D | BytecodeStream.java | 40 private int _code; field in class:BytecodeStream 103 _code = code; 104 return _code; 112 public int code() { return _code; }
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciMethod.hpp | 80 address _code; member in class:ciMethod 114 address bcp = _code + bci; 154 address code() { if (_code == NULL) load_code(); return _code; }
|
/openjdk7/hotspot/src/share/vm/compiler/ |
H A D | disassembler.cpp | 150 CodeBlob* _code; member in class:decode_env 236 _code = code; 357 CodeBlob* cb = _code;
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_Compilation.hpp | 87 CodeBuffer _code; member in class:Compilation 139 CodeBuffer* code() { return &_code; }
|
H A D | c1_IR.hpp | 290 BlockList* _code; // the blocks in code generation order w/ use counts member in class:IR 307 BlockList* code() const { return _code; } 320 BlockList* linear_scan_order() { assert(_code != NULL, "not computed"); return _code; }
|
H A D | c1_LIR.hpp | 1016 unsigned short _code; member in class:LIR_Op 1031 , _code(lir_none) 1044 , _code(code) 1056 LIR_Code code() const { return (LIR_Code)_code; } 1174 assert(_code == lir_virtual_call, "only have vtable for real vcall");
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/ |
H A D | ErrorMsg.java | 43 private String _code; field in class:ErrorMsg 190 _code = code; 195 _code = code; 202 _code = null; 208 _code = code; 227 _code = code; 233 _code = code; 242 _code = code; 278 * to format the message. If the <code>_code</code> is negative 283 (null != _code [all...] |
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | forms.hpp | 474 char *_code; // Buffer for storing code text member in class:SourceForm
|
H A D | formssel.hpp | 338 NameList _code; // Strings passed through to tty->print member in class:InstructForm::EncClass
|
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | methodOop.hpp | 149 volatile address _from_compiled_entry; // Cache of: _code ? _code->entry_point() : _adapter->c2i_entry() 151 // "_code->entry_point()". Because of tiered compilation and de-opt, this 155 nmethod* volatile _code; // Points to the corresponding piece of native code member in class:methodOopDesc 156 volatile address _from_interpreted_entry; // Cache of _code ? _adapter->i2c_entry() : _i2i_entry 364 nmethod* volatile code() const { assert( check_code(), "" ); return (nmethod *)OrderAccess::load_ptr_acquire(&_code); } 557 static ByteSize code_offset() { return byte_offset_of(methodOopDesc, _code); }
|