Searched refs:JniCallingConvention (Results 1 – 13 of 13) sorted by relevance
/art/compiler/jni/quick/ |
D | calling_convention.cc | 103 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 …]
|
D | calling_convention.h | 271 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
|
D | jni_compiler.cc | 46 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/ |
D | calling_convention_arm.cc | 109 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in ArmJniCallingConvention() 162 JniCallingConvention::Next(); in Next()
|
D | calling_convention_arm.h | 49 class ArmJniCallingConvention FINAL : public JniCallingConvention {
|
/art/compiler/jni/quick/mips/ |
D | calling_convention_mips.cc | 109 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in MipsJniCallingConvention() 165 JniCallingConvention::Next(); in Next()
|
D | calling_convention_mips.h | 49 class MipsJniCallingConvention FINAL : public JniCallingConvention {
|
/art/compiler/jni/quick/arm64/ |
D | calling_convention_arm64.h | 49 class Arm64JniCallingConvention FINAL : public JniCallingConvention {
|
D | calling_convention_arm64.cc | 154 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in Arm64JniCallingConvention()
|
/art/compiler/jni/quick/x86_64/ |
D | calling_convention_x86_64.h | 48 class X86_64JniCallingConvention FINAL : public JniCallingConvention {
|
D | calling_convention_x86_64.cc | 126 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in X86_64JniCallingConvention()
|
/art/compiler/jni/quick/x86/ |
D | calling_convention_x86.h | 48 class X86JniCallingConvention FINAL : public JniCallingConvention {
|
D | calling_convention_x86.cc | 115 : JniCallingConvention(is_static, is_synchronized, shorty, kFramePointerSize) { in X86JniCallingConvention()
|