Searched refs:return_type (Results 1 - 25 of 54) sorted by relevance

123

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DRtMethodGenerator.java42 public RtMethodGenerator(int access_flags, Type return_type, argument
46 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DNamedMethodGenerator.java43 public NamedMethodGenerator(int access_flags, Type return_type, argument
47 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DMatchGenerator.java45 public MatchGenerator(int access_flags, Type return_type, argument
49 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DTestGenerator.java51 public TestGenerator(int access_flags, Type return_type, argument
55 super(access_flags, return_type, arg_types, arg_names, method_name,
H A DCompareGenerator.java56 public CompareGenerator(int access_flags, Type return_type, argument
60 super(access_flags, return_type, arg_types, arg_names, method_name,
/openjdk9/hotspot/src/share/vm/shark/
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 DsharkCompiler.hpp68 BasicType return_type);
H A DsharkNativeWrapper.cpp203 Type* return_type; local
205 return_type = SharkType::void_type();
207 return_type = box_type;
209 return_type = SharkType::to_arrayType(result_type);
213 FunctionType::get(return_type, param_types, false)));
H A DsharkCompiler.cpp230 BasicType return_type) {
245 &builder, target, name, arg_types, return_type);
226 generate_native_wrapper(MacroAssembler* masm, const methodHandle& target, int compile_id, BasicType* arg_types, BasicType return_type) argument
H A DsharkBuilder.cpp174 Type *return_type = make_type(*ret, true); local
176 return FunctionType::get(return_type, param_types, false);
/openjdk9/hotspot/src/share/vm/ci/
H A DciSignature.cpp103 // ciSignature::return_type
106 ciType* ciSignature::return_type() const { function in class:ciSignature
135 if (this->return_type() != that->return_type()) return false;
H A DciSignature.hpp60 ciType* return_type() const;
H A DciMethod.hpp132 ciType* return_type() const { return _signature->return_type(); } function in class:ciMethod
H A DciMethodData.hpp160 intptr_t return_type() const { function in class:ciCallTypeData
274 intptr_t return_type() const { function in class:ciVirtualCallTypeData
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A Daarch64_call.cpp133 int return_type = (calltype >> 8) & 0x3; local
181 switch (return_type) {
/openjdk9/hotspot/src/share/vm/oops/
H A DcpCache.hpp166 void set_method_flags(TosState return_type, int option_bits, int method_params) { argument
168 set_flags(make_flags(return_type, option_bits, method_params));
170 bool init_method_flags_atomic(TosState return_type, int option_bits, int method_params) { argument
172 return init_flags_atomic(make_flags(return_type, option_bits, method_params));
/openjdk9/hotspot/src/share/vm/runtime/
H A DjavaCalls.cpp500 BasicType return_type,
506 _return_type(return_type),
591 void JavaCallArguments::verify(const methodHandle& method, BasicType return_type) {
595 if (return_type == T_ARRAY) return_type = T_OBJECT;
601 return_type,
H A Ddeoptimization.hpp200 BasicType return_type,
234 BasicType return_type() const { return _return_type; } function in class:Deoptimization::UnrollBlock
H A Dreflection.cpp784 oop* return_type,
800 if (return_type != NULL) {
803 *return_type = get_mirror_from_signature(method, &ss, CHECK_(objArrayHandle()));
848 Handle return_type(THREAD, return_type_oop);
866 java_lang_reflect_Method::set_return_type(mh(), return_type());
1231 oop return_type_mirror = java_lang_reflect_Method::return_type(method_mirror);
782 get_parameter_types(methodHandle method, int parameter_count, oop* return_type, TRAPS) argument
/openjdk9/hotspot/src/share/vm/compiler/
H A DcompileLog.cpp123 identify(sig->return_type());
130 print(" return='%d'", identify(sig->return_type()));
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DType.java98 * @param return_type what the method returns
102 public static String getMethodSignature(Type return_type, Type[] arg_types) { argument
110 buf.append(return_type.getSignature());
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-unicode-private.hh72 #define HB_UNICODE_FUNC_IMPLEMENT(return_type, name) \
73 inline return_type name (hb_codepoint_t unicode) { return func.name (this, unicode, user_data.name); }
H A Dhb-unicode.cc376 #define HB_UNICODE_FUNC_IMPLEMENT(return_type, name) \
378 return_type \
/openjdk9/hotspot/src/share/vm/classfile/
H A Dverifier.cpp634 VerificationType return_type = current_frame.set_locals_from_arg( local
1552 verify_return_value(return_type, type, bci,
1560 verify_return_value(return_type, type, bci,
1566 verify_return_value(return_type, type, bci,
1574 verify_return_value(return_type, type, bci,
1580 verify_return_value(return_type, type, bci,
1584 if (return_type != VerificationType::bogus_type()) {
1616 &this_uninit, return_type, cp, &stackmap_table, CHECK_VERIFY(this));
1622 &this_uninit, return_type, cp, &stackmap_table, CHECK_VERIFY(this));
2652 bool in_try_block, bool *this_uninit, VerificationType return_type,
2650 verify_invoke_instructions( RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame, bool in_try_block, bool *this_uninit, VerificationType return_type, const constantPoolHandle& cp, StackMapTable* stackmap_table, TRAPS) argument
2894 VerificationType return_type[2]; local
3035 verify_return_value( VerificationType return_type, VerificationType type, u2 bci, StackMapFrame* current_frame, TRAPS) argument
[all...]
H A Dverifier.hpp325 bool in_try_block, bool* this_uninit, VerificationType return_type,
332 VerificationType return_type, VerificationType type, u2 offset,

Completed in 286 milliseconds

123