Home
last modified time | relevance | path

Searched refs:kSaveAll (Results 1 – 15 of 15) sorted by relevance

/art/runtime/arch/
Darch_test.cc126 CheckFrameSize(InstructionSet::kArm, Runtime::kSaveAll, arm::kFrameSizeSaveAllCalleeSave); in TEST_F()
133 CheckFrameSize(InstructionSet::kArm64, Runtime::kSaveAll, arm64::kFrameSizeSaveAllCalleeSave); in TEST_F()
140 CheckFrameSize(InstructionSet::kMips, Runtime::kSaveAll, mips::kFrameSizeSaveAllCalleeSave); in TEST_F()
147 CheckFrameSize(InstructionSet::kMips64, Runtime::kSaveAll, mips64::kFrameSizeSaveAllCalleeSave); in TEST_F()
154 CheckFrameSize(InstructionSet::kX86, Runtime::kSaveAll, x86::kFrameSizeSaveAllCalleeSave); in TEST_F()
160 CheckFrameSize(InstructionSet::kX86_64, Runtime::kSaveAll, x86_64::kFrameSizeSaveAllCalleeSave); in TEST_F()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints_test.cc86 CheckFrameSize(isa, Runtime::kSaveAll, GetCalleeSaveFrameSize(isa, Runtime::kSaveAll)) in TEST_F()
115 CheckPCOffset(kRuntimeISA, Runtime::kSaveAll, in TEST_F()
116 GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kSaveAll)); in TEST_F()
/art/runtime/
Druntime-inl.h46 } else if (method == GetCalleeSaveMethodUnchecked(Runtime::kSaveAll)) { in GetRuntimeMethodFrameInfo()
47 return GetCalleeSaveMethodFrameInfo(Runtime::kSaveAll); in GetRuntimeMethodFrameInfo()
Dasm_support.h83 art::Runtime::GetCalleeSaveMethodOffset(art::Runtime::kSaveAll)) in CheckAsmSupportOffsetsAndSizes()
Dart_method-inl.h316 } else if (this == runtime->GetCalleeSaveMethod(Runtime::kSaveAll)) { in GetName()
Druntime.h395 kSaveAll, enumerator
Dstack.cc841 if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(Runtime::kSaveAll)) { in WalkStack()
/art/runtime/arch/mips/
Dquick_method_frame_info_mips.h50 (type == Runtime::kSaveAll ? kMipsCalleeSaveAllSpills : 0); in MipsCalleeSaveCoreSpills()
56 (type == Runtime::kSaveAll ? kMipsCalleeSaveAllFPSpills : 0); in MipsCalleeSaveFPSpills()
/art/runtime/arch/mips64/
Dquick_method_frame_info_mips64.h53 (type == Runtime::kSaveAll ? kMips64CalleeSaveAllSpills : 0) | (1 << art::mips64::RA); in Mips64CalleeSaveCoreSpills()
59 (type == Runtime::kSaveAll ? kMips64CalleeSaveFpAllSpills : 0); in Mips64CalleeSaveFpSpills()
/art/runtime/arch/arm64/
Dquick_method_frame_info_arm64.h62 (type == Runtime::kSaveAll ? kArm64CalleeSaveAllSpills : 0); in Arm64CalleeSaveCoreSpills()
68 (type == Runtime::kSaveAll ? kArm64CalleeSaveFpAllSpills : 0); in Arm64CalleeSaveFpSpills()
/art/runtime/arch/arm/
Dquick_method_frame_info_arm.h54 (type == Runtime::kSaveAll ? kArmCalleeSaveAllSpills : 0); in ArmCalleeSaveCoreSpills()
60 (type == Runtime::kSaveAll ? kArmCalleeSaveFpAllSpills : 0); in ArmCalleeSaveFpSpills()
Dquick_entrypoints_arm.S54 ldr \rTemp1, [\rTemp1, #RUNTIME_SAVE_ALL_CALLEE_SAVE_FRAME_OFFSET] @ rTemp1 is kSaveAll Method*.
/art/compiler/
Dexception_test.cc172 r->SetCalleeSaveMethod(save_method, Runtime::kSaveAll); in TEST_F()
Dimage_writer.cc1352 image_methods_[ImageHeader::kCalleeSaveMethod] = runtime->GetCalleeSaveMethod(Runtime::kSaveAll); in CalculateNewObjectOffsets()
/art/runtime/gc/space/
Dimage_space.cc1415 CHECK_EQ(runtime->GetCalleeSaveMethod(Runtime::kSaveAll), in Init()
1428 image_header->GetImageMethod(ImageHeader::kCalleeSaveMethod), Runtime::kSaveAll); in Init()