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

/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.cpp160 void ConstantPoolCacheEntry::set_method(Bytecodes::Code invoke_code,
170 switch (invoke_code) {
221 assert(invoke_code != Bytecodes::_invokevirtual &&
222 invoke_code != Bytecodes::_invokeinterface, "");
223 set_bytecode_1(invoke_code);
226 assert(invoke_code == Bytecodes::_invokeinterface, "");
241 if (method->is_public()) set_bytecode_1(invoke_code);
243 assert(invoke_code == Bytecodes::_invokevirtual, "");
283 Bytecodes::Code invoke_code,
320 invoke_code,
282 set_method_handle_common(constantPoolHandle cpool, Bytecodes::Code invoke_code, methodHandle adapter, Handle appendix, Handle method_type) argument
384 Bytecodes::Code invoke_code = bytecode_1(); local
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp83 Bytecodes::Code invoke_code() const { return (code() == Bytecodes::_invokehandle) ? code() : java_code(); } function in class:Bytecode
229 bool is_invokeinterface() const { return invoke_code() == Bytecodes::_invokeinterface; }
230 bool is_invokevirtual() const { return invoke_code() == Bytecodes::_invokevirtual; }
231 bool is_invokestatic() const { return invoke_code() == Bytecodes::_invokestatic; }
232 bool is_invokespecial() const { return invoke_code() == Bytecodes::_invokespecial; }
233 bool is_invokedynamic() const { return invoke_code() == Bytecodes::_invokedynamic; }
234 bool is_invokehandle() const { return invoke_code() == Bytecodes::_invokehandle; }
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp1043 bc = bytecode.invoke_code();
1182 Bytecodes::Code invoke_code = Bytecodes::_illegal; local
1183 Handle receiver = find_callee_info(thread, invoke_code,
1187 assert((!is_virtual && invoke_code == Bytecodes::_invokestatic ) ||
1188 (!is_virtual && invoke_code == Bytecodes::_invokehandle ) ||
1189 (!is_virtual && invoke_code == Bytecodes::_invokedynamic) ||
1190 ( is_virtual && invoke_code != Bytecodes::_invokestatic ), "inconsistent bytecode");
1203 Bytecodes::name(invoke_code));

Completed in 219 milliseconds