Searched refs:GetFrameSize (Results 1 – 9 of 9) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator.h | 147 return GetFrameSize() in GetStackSlotOfParameter() 170 uint32_t GetFrameSize() const { return frame_size_; } in GetFrameSize() function 295 return GetFrameSize() == (CallPushesPC() ? GetWordSize() : 0); in HasEmptyFrame() 382 return GetFrameSize() - FrameEntrySpillSize(); in GetFpuSpillStart()
|
D | code_generator.cc | 267 int32_t slot = GetFrameSize() - FrameEntrySpillSize() in GetTemporaryLocation() 280 return GetFrameSize() + InstructionSetPointerSize(GetInstructionSet()) // ART method in GetStackSlot() 284 return GetFrameSize() - FrameEntrySpillSize() in GetStackSlot() 929 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize()); in SaveLiveRegisters() 940 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize()); in SaveLiveRegisters() 955 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize()); in RestoreLiveRegisters() 964 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize()); in RestoreLiveRegisters()
|
D | optimizing_compiler.cc | 429 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(), in CompileOptimized() 466 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(), in CompileBaseline()
|
D | code_generator_mips64.cc | 483 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kMips64) || !IsLeafMethod(); in GenerateFrameEntry() 502 if (GetFrameSize() > 0x7FFFFFFF) in GenerateFrameEntry() 535 __ IncreaseFrameSize(GetFrameSize() - FrameEntrySpillSize()); in GenerateFrameEntry() 550 __ DecreaseFrameSize(GetFrameSize() - FrameEntrySpillSize()); in GenerateFrameExit() 585 __ cfi().DefCFAOffset(GetFrameSize()); in GenerateFrameExit() 2830 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue() 2832 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue()
|
D | code_generator_arm64.cc | 487 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kArm64) || !IsLeafMethod(); in GenerateFrameEntry() 498 int frame_size = GetFrameSize(); in GenerateFrameEntry() 518 int frame_size = GetFrameSize(); in GenerateFrameExit() 528 GetAssembler()->cfi().DefCFAOffset(GetFrameSize()); in GenerateFrameExit() 2422 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue() 2424 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue()
|
D | register_allocator.cc | 1676 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in Resolve() 1680 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in Resolve() 1684 current->SetSpillSlot(current->GetSpillSlot() + codegen_->GetFrameSize()); in Resolve()
|
D | code_generator_arm.cc | 527 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm); in GenerateFrameEntry() 553 int adjust = GetFrameSize() - FrameEntrySpillSize(); in GenerateFrameEntry() 565 int adjust = GetFrameSize() - FrameEntrySpillSize(); in GenerateFrameExit() 576 __ cfi().DefCFAOffset(GetFrameSize()); in GenerateFrameExit() 2643 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue() 2645 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue()
|
D | code_generator_x86.cc | 477 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86); in GenerateFrameEntry() 498 int adjust = GetFrameSize() - FrameEntrySpillSize(); in GenerateFrameEntry() 507 int adjust = GetFrameSize() - FrameEntrySpillSize(); in GenerateFrameExit() 522 __ cfi().DefCFAOffset(GetFrameSize()); in GenerateFrameExit() 3006 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue() 3008 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue()
|
D | code_generator_x86_64.cc | 513 && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86_64); in GenerateFrameEntry() 535 int adjust = GetFrameSize() - GetCoreSpillSize(); in GenerateFrameEntry() 565 int adjust = GetFrameSize() - GetCoreSpillSize(); in GenerateFrameExit() 580 __ cfi().DefCFAOffset(GetFrameSize()); in GenerateFrameExit() 3063 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue() 3065 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize()); in VisitParameterValue()
|