Searched defs:result_type (Results 1 - 18 of 18) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.hpp54 ffi_type* result_type() const { function in class:SignatureHandler
H A DstubGenerator_zero.cpp63 BasicType result_type,
96 switch (result_type) {
60 call_stub( JavaCallWrapper *call_wrapper, intptr_t* result, BasicType result_type, methodOop method, address entry_point, intptr_t* parameters, int parameter_words, TRAPS) argument
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp142 BasicType Bytecode_member_ref::result_type() const { function in class:Bytecode_member_ref
215 BasicType Bytecode_loadconstant::result_type() const { function in class:Bytecode_loadconstant
H A DlinkResolver.hpp97 BasicType result_type() const { return selected_method()->result_type(); } function in class:CallInfo
H A Dbytecodes.cpp163 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap) { argument
164 def(code, name, format, wide_format, result_type, depth, can_trap, code);
168 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code) { argument
173 _result_type [code] = result_type;
H A Dbytecodes.hpp349 static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap);
350 static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code);
396 static BasicType result_type (Code code) { check(code); return _result_type [code]; } function in class:Bytecodes
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.cpp72 void InterfaceSupport::trace(const char* result_type, const char* header) { argument
H A DjavaCalls.cpp374 // than result_type. result_type will be T_INT of oops. (it is about size)
375 BasicType result_type = runtime_type_from(result); local
410 result_type,
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkNativeWrapper.cpp203 BasicType result_type = target()->result_type(); local
205 if (result_type == T_VOID)
210 return_type = SharkType::to_arrayType(result_type);
322 Value *result_addr = stack()->CreatePopFrame(type2size[result_type]);
323 if (result_type != T_VOID) {
326 switch (result_type) {
344 result, SharkType::to_stackType(result_type), is_signed);
351 PointerType::getUnqual(SharkType::to_stackType(result_type))));
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionFactory.java168 Type result_type; field in class:InstructionFactory.MethodObject
177 result_type = r;
184 return createInvoke(m.class_name, m.name, m.result_type, m.arg_types, kind);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp349 Invoke::Invoke(Bytecodes::Code code, ValueType* result_type, Value recv, Values* args, argument
351 : StateSplit(result_type, state_before)
H A Dc1_GraphBuilder.cpp1882 ValueType* result_type = as_ValueType(declared_signature->return_type());
1936 Invoke* result = new Invoke(code, result_type, recv, args, vtable_index, target, state_before);
1940 if (result_type != voidType) {
1942 push(result_type, round_fp(result));
1944 push(result_type, result);
3454 ValueType* result_type = as_ValueType(callee->return_type()); local
3476 Intrinsic* result = new Intrinsic(result_type, id, args, has_receiver, state_before,
3480 if (result_type != voidType) push(result_type, value);
4130 ValueType* result_type local
[all...]
H A Dc1_LIRGenerator.cpp3093 LIR_Opr LIRGenerator::call_runtime(Value arg1, address entry, ValueType* result_type, CodeEmitInfo* info) { argument
3100 return call_runtime(&signature, &args, entry, result_type, info);
3104 LIR_Opr LIRGenerator::call_runtime(Value arg1, Value arg2, address entry, ValueType* result_type, CodeEmitInfo* info) { argument
3114 return call_runtime(&signature, &args, entry, result_type, info);
3119 address entry, ValueType* result_type, CodeEmitInfo* info) {
3123 if (result_type->tag() != voidTag) {
3124 result = new_register(result_type);
3125 phys_reg = result_register_for(result_type);
3164 address entry, ValueType* result_type, CodeEmitInfo* info) {
3168 if (result_type
3118 call_runtime(BasicTypeArray* signature, LIR_OprList* args, address entry, ValueType* result_type, CodeEmitInfo* info) argument
3163 call_runtime(BasicTypeArray* signature, LIRItemList* args, address entry, ValueType* result_type, CodeEmitInfo* info) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp348 BasicType methodOopDesc::result_type() const { function in class:methodOopDesc
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddfa.cpp292 // Chain from one result_type to all other members of its operand class
294 const char *result_type, ProductionState &status) {
295 const Form *form = _globalNames[result_type];
305 cost_check(fp, indent, ArchDesc::getMachOperEnum(oclass), cost, result_type, status);
293 expand_opclass(FILE *fp, const char *indent, const Expr *cost, const char *result_type, ProductionState &status) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java821 private static void def(int code, String name, String format, String wide_format, int result_type, int depth, boolean can_trap) { argument
822 def(code, name, format, wide_format, result_type, depth, can_trap, code);
825 private static void def(int code, String name, String format, String wide_format, int result_type, int depth, boolean can_trap, int java_code) { argument
832 _result_type [code] = result_type;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DstubGenerator_sparc.cpp137 const Argument result_type = Argument(2, false); local
267 const Register type = result_type.as_in().as_register();
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp998 rtype = Bytecodes::result_type(code); // checkcast=P, athrow=V
2026 BasicType result_type = dest_method->return_type()->basic_type(); local
2028 if( result_type == T_DOUBLE && method()->is_strict() && !dest_method->is_strict() ) {

Completed in 222 milliseconds