Searched refs:GetFrameSize (Results 1 - 9 of 9) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator.h147 return GetFrameSize()
170 uint32_t GetFrameSize() const { return frame_size_; } function in class:art::CodeGenerator
295 return GetFrameSize() == (CallPushesPC() ? GetWordSize() : 0);
382 return GetFrameSize() - FrameEntrySpillSize();
H A Dcode_generator.cc267 int32_t slot = GetFrameSize() - FrameEntrySpillSize()
280 return GetFrameSize() + InstructionSetPointerSize(GetInstructionSet()) // ART method
284 return GetFrameSize() - FrameEntrySpillSize()
929 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
940 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
955 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
964 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
H A Doptimizing_compiler.cc429 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
466 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
H A Dcode_generator_mips64.cc483 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kMips64) || !IsLeafMethod();
502 if (GetFrameSize() > 0x7FFFFFFF)
535 __ IncreaseFrameSize(GetFrameSize() - FrameEntrySpillSize());
550 __ DecreaseFrameSize(GetFrameSize() - FrameEntrySpillSize());
585 __ cfi().DefCFAOffset(GetFrameSize());
2830 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2832 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
H A Dregister_allocator.cc1676 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1680 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
1684 current->SetSpillSlot(current->GetSpillSlot() + codegen_->GetFrameSize());
H A Dcode_generator_arm64.cc487 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kArm64) || !IsLeafMethod();
498 int frame_size = GetFrameSize();
518 int frame_size = GetFrameSize();
528 GetAssembler()->cfi().DefCFAOffset(GetFrameSize());
2422 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2424 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
H A Dcode_generator_arm.cc527 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm);
553 int adjust = GetFrameSize() - FrameEntrySpillSize();
565 int adjust = GetFrameSize() - FrameEntrySpillSize();
576 __ cfi().DefCFAOffset(GetFrameSize());
2643 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2645 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
H A Dcode_generator_x86.cc477 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86);
498 int adjust = GetFrameSize() - FrameEntrySpillSize();
507 int adjust = GetFrameSize() - FrameEntrySpillSize();
522 __ cfi().DefCFAOffset(GetFrameSize());
3006 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3008 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
H A Dcode_generator_x86_64.cc513 && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kX86_64);
535 int adjust = GetFrameSize() - GetCoreSpillSize();
565 int adjust = GetFrameSize() - GetCoreSpillSize();
580 __ cfi().DefCFAOffset(GetFrameSize());
3063 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3065 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());

Completed in 1199 milliseconds