Searched defs:Bytecodes (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.hpp50 Bytecodes::Code _bytecode; // associated bytecode if any
73 void initialize(const char* description, Bytecodes::Code bytecode);
78 Bytecodes::Code bytecode() const { return _bytecode; }
112 Bytecodes::Code bytecode = Bytecodes::_illegal):
109 CodeletMark( InterpreterMacroAssembler*& masm, const char* description, Bytecodes::Code bytecode = Bytecodes::_illegal) argument
H A Dbytecodes.hpp31 // Bytecodes specifies all bytecodes used in the VM and
34 // NOTE: replicated in SA in vm/agent/sun/jvm/hotspot/interpreter/Bytecodes.java
35 class Bytecodes: AllStatic { class in inherits:AllStatic
358 static bool check_must_rewrite(Bytecodes::Code bc);
405 static bool must_rewrite(Bytecodes::Code code) { return can_rewrite(code) && check_must_rewrite(code); }
410 static int special_length_at(Bytecodes::Code code, address bcp, address end = NULL);
413 static int length_for_code_at(Bytecodes::Code code, address bcp) { int l = length_for(code); return l > 0 ? l : special_length_at(code, bcp); }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java32 // Bytecodes specifies all bytecodes used in the VM and
35 public class Bytecodes { class

Completed in 39 milliseconds