Searched defs:return_type (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/ci/
H A DciSignature.cpp102 // ciSignature::return_type
105 ciType* ciSignature::return_type() const { function in class:ciSignature
134 if (this->return_type() != that->return_type()) return false;
H A DciMethod.hpp128 ciType* return_type() const { return _signature->return_type(); } function in class:ciMethod
H A DbcEscapeAnalyzer.cpp886 ciType* return_type = declared_signature->return_type(); local
887 if (!return_type->is_primitive_type()) {
889 } else if (return_type->is_one_word()) {
891 } else if (return_type->is_two_word()) {
1219 ciType *rt = _method->return_type();
H A DciTypeFlow.cpp689 ciType* return_type = sigstr.type(); local
690 if (!return_type->is_void()) {
691 if (!return_type->is_loaded()) {
703 do_null_assert(return_type->as_klass());
705 push_translate(return_type);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DNamedMethodGenerator.java45 public NamedMethodGenerator(int access_flags, Type return_type, argument
49 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DRtMethodGenerator.java44 public RtMethodGenerator(int access_flags, Type return_type, argument
48 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DCompareGenerator.java58 public CompareGenerator(int access_flags, Type return_type, argument
62 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DMatchGenerator.java47 public MatchGenerator(int access_flags, Type return_type, argument
51 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DTestGenerator.java53 public TestGenerator(int access_flags, Type return_type, argument
57 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DMethodGenerator.java137 public MethodGenerator(int access_flags, Type return_type, argument
141 super(access_flags, return_type, arg_types, arg_names, method_name,
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DType.java134 * @param return_type what the method returns
138 public static String getMethodSignature(Type return_type, Type[] arg_types) { argument
146 buf.append(return_type.getSignature());
H A DMethodGen.java107 * @param return_type method type
117 public MethodGen(int access_flags, Type return_type, Type[] arg_types, argument
121 setType(return_type);
749 public void setReturnType(Type return_type) { setType(return_type); } argument
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCompiler.cpp223 BasicType return_type) {
238 &builder, target, name, arg_types, return_type);
219 generate_native_wrapper(MacroAssembler* masm, methodHandle target, int compile_id, BasicType* arg_types, BasicType return_type) argument
H A DsharkNativeWrapper.cpp204 const Type* return_type; local
206 return_type = SharkType::void_type();
208 return_type = box_type;
210 return_type = SharkType::to_arrayType(result_type);
214 FunctionType::get(return_type, param_types, false)));
H A DsharkNativeWrapper.hpp44 BasicType return_type) {
49 return_type);
57 BasicType return_type)
61 _return_type(return_type),
92 BasicType return_type() const { function in class:SharkNativeWrapper
40 build(SharkBuilder* builder, methodHandle target, const char* name, BasicType* arg_types, BasicType return_type) argument
53 SharkNativeWrapper(SharkBuilder* builder, methodHandle target, const char* name, BasicType* arg_types, BasicType return_type) argument
H A DsharkBuilder.cpp169 const Type *return_type = make_type(*ret, true); local
171 return FunctionType::get(return_type, param_types, false);
/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaCalls.cpp465 SignatureChekker(Symbol* signature, BasicType return_type, bool is_static, bool* is_oop, intptr_t* value, Thread* thread) : SignatureIterator(signature) { argument
468 _return_type = return_type;
548 void JavaCallArguments::verify(methodHandle method, BasicType return_type, argument
553 if (return_type == T_ARRAY) return_type = T_OBJECT;
558 SignatureChekker sc(signature, return_type, method->is_static(),_is_oop, _value, thread);
H A Ddeoptimization.hpp161 BasicType return_type);
193 BasicType return_type() const { return _return_type; } function in class:Deoptimization::UnrollBlock
H A Dreflection.cpp648 objArrayHandle Reflection::get_parameter_types(methodHandle method, int parameter_count, oop* return_type, TRAPS) { argument
663 if (return_type != NULL) {
666 *return_type = get_mirror_from_signature(method, &ss, CHECK_(objArrayHandle()));
715 Handle return_type(THREAD, return_type_oop);
739 java_lang_reflect_Method::set_return_type(mh(), return_type());
1074 oop return_type_mirror = java_lang_reflect_Method::return_type(method_mirror);
H A Ddeoptimization.cpp97 BasicType return_type) {
105 _return_type = return_type;
442 BasicType return_type; local
447 return_type = invoke.is_valid() ? invoke.result_type() : T_ILLEGAL;
490 return_type);
591 BasicType bt = info->return_type();
91 UnrollBlock(int size_of_deoptimized_frame, int caller_adjustment, int caller_actual_parameters, int number_of_frames, intptr_t* frame_sizes, address* frame_pcs, BasicType return_type) argument
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp645 oop return_type = java_lang_invoke_MethodType::rtype(method_type); local
646 return java_lang_Class::as_BasicType(return_type, (klassOop *) NULL);
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp152 void set_method_flags(TosState return_type, int option_bits, int method_params) { argument
154 set_flags(make_flags(return_type, option_bits, method_params));
156 bool init_method_flags_atomic(TosState return_type, int option_bits, int method_params) { argument
158 return init_flags_atomic(make_flags(return_type, option_bits, method_params));
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp1626 ciType* return_type = sig->return_type(); local
1627 uint total_fields = TypeFunc::Parms + return_type->size();
1629 switch (return_type->basic_type()) {
1646 field_array[TypeFunc::Parms] = get_const_type(return_type);
4327 BasicType TypeFunc::return_type() const{ function in class:TypeFunc
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c262 fullinfo_type return_type; /* function return type */ member in struct:context_type
1770 context->return_type = MAKE_FULLINFO(ITEM_Void, 0, 0);
1773 context->return_type = full_info;
2408 if (context->return_type != MAKE_FULLINFO(ITEM_Void, 0, 0))
2414 fullinfo_type target_type = context->return_type;
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp1835 oop java_lang_reflect_Method::return_type(oop method) { function in class:java_lang_reflect_Method

Completed in 129 milliseconds

12