Home
last modified time | relevance | path

Searched refs:JniCallingConvention (Results 1 – 13 of 13) sorted by relevance

/art/compiler/jni/quick/
Dcalling_convention.cc103 JniCallingConvention* JniCallingConvention::Create(bool is_static, bool is_synchronized, in Create()
124 size_t JniCallingConvention::ReferenceCount() const { in ReferenceCount()
128 FrameOffset JniCallingConvention::SavedLocalReferenceCookieOffset() const { in SavedLocalReferenceCookieOffset()
133 FrameOffset JniCallingConvention::ReturnValueSaveLocation() const { in ReturnValueSaveLocation()
138 bool JniCallingConvention::HasNext() { in HasNext()
147 void JniCallingConvention::Next() { in Next()
166 bool JniCallingConvention::IsCurrentParamAReference() { in IsCurrentParamAReference()
179 bool JniCallingConvention::IsCurrentParamJniEnv() { in IsCurrentParamJniEnv()
183 bool JniCallingConvention::IsCurrentParamAFloatOrDouble() { in IsCurrentParamAFloatOrDouble()
196 bool JniCallingConvention::IsCurrentParamADouble() { in IsCurrentParamADouble()
[all …]
Dcalling_convention.h271 class JniCallingConvention : public CallingConvention {
273 static JniCallingConvention* Create(bool is_static, bool is_synchronized, const char* shorty,
341 virtual ~JniCallingConvention() {} in ~JniCallingConvention()
350 explicit JniCallingConvention(bool is_static, bool is_synchronized, const char* shorty, in JniCallingConvention() function
Djni_compiler.cc46 JniCallingConvention* jni_conv,
49 JniCallingConvention* jni_conv,
68 std::unique_ptr<JniCallingConvention> main_jni_conv( in ArtJniCompileMethodInternal()
69 JniCallingConvention::Create(is_static, is_synchronized, shorty, instruction_set)); in ArtJniCompileMethodInternal()
88 std::unique_ptr<JniCallingConvention> end_jni_conv( in ArtJniCompileMethodInternal()
89 JniCallingConvention::Create(is_static, is_synchronized, jni_end_shorty, instruction_set)); in ArtJniCompileMethodInternal()
448 JniCallingConvention* jni_conv, in CopyParameter()
536 JniCallingConvention* jni_conv, in SetNativeParameter()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc109 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in ArmJniCallingConvention()
162 JniCallingConvention::Next(); in Next()
Dcalling_convention_arm.h49 class ArmJniCallingConvention FINAL : public JniCallingConvention {
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc109 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in MipsJniCallingConvention()
165 JniCallingConvention::Next(); in Next()
Dcalling_convention_mips.h49 class MipsJniCallingConvention FINAL : public JniCallingConvention {
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.h49 class Arm64JniCallingConvention FINAL : public JniCallingConvention {
Dcalling_convention_arm64.cc154 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in Arm64JniCallingConvention()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.h48 class X86_64JniCallingConvention FINAL : public JniCallingConvention {
Dcalling_convention_x86_64.cc126 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in X86_64JniCallingConvention()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.h48 class X86JniCallingConvention FINAL : public JniCallingConvention {
Dcalling_convention_x86.cc115 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in X86JniCallingConvention()