Searched refs:frame_size_ (Results 1 - 13 of 13) sorted by relevance

/art/compiler/dex/quick/arm64/
H A Dcall_arm64.cc320 !FrameNeedsStackCheck(frame_size_, kArm64);
323 const bool large_frame = static_cast<size_t>(frame_size_) > kStackOverflowReservedUsableBytes;
328 const int frame_size_without_spills = frame_size_ - spill_size;
349 spilled_already = SpillRegs(rs_sp, core_spill_mask_, fp_spill_mask_, frame_size_);
350 DCHECK(spill_size == spilled_already || frame_size_ == spilled_already);
353 if (spilled_already != frame_size_) {
387 AddSlowPath(new(arena_)StackOverflowSlowPath(this, branch, frame_size_));
413 UnspillRegs(rs_sp, core_spill_mask_, fp_spill_mask_, frame_size_);
419 cfi_.DefCFAOffset(frame_size_);
432 frame_size_
443 NewLIR4(WIDE(kA64LdpPost4rrXD), rs_x0.GetReg(), rs_xLR.GetReg(), rs_sp.GetReg(), frame_size_ / 8); local
[all...]
/art/compiler/dex/quick/mips/
H A Dcall_mips.cc285 skip_overflow_check = mir_graph_->MethodIsLeaf() && !FrameNeedsStackCheck(frame_size_, target);
290 const bool large_frame = static_cast<size_t>(frame_size_) > kStackOverflowReservedUsableBytes;
314 const int frame_sub = frame_size_ - spill_count * ptr_size;
379 cfi_.DefCFAOffset(frame_size_);
393 frame_size_ = 16u;
397 OpRegImm(kOpSub, rs_sp, frame_size_);
398 cfi_.AdjustCFAOffset(frame_size_);
399 StoreWordDisp(rs_sp, frame_size_ - (cu_->target64 ? 8 : 4), TargetPtrReg(kLr));
400 cfi_.RelOffset(DwarfCoreReg(rRA), frame_size_ - (cu_->target64 ? 8 : 4));
408 LoadWordDisp(rs_sp, frame_size_
[all...]
H A Dtarget_mips.cc869 int offset = frame_size_;
880 OpRegImm(kOpAdd, rs_sp, frame_size_);
881 cfi_.AdjustCFAOffset(-frame_size_);
/art/compiler/dex/quick/x86/
H A Dcall_x86.cc171 bool skip_overflow_check = mir_graph_->MethodIsLeaf() && !FrameNeedsStackCheck(frame_size_, isa);
187 OpRegImm(kOpSub, rs_rSP, frame_size_ - GetInstructionSetPointerSize(cu_->instruction_set));
188 cfi_.DefCFAOffset(frame_size_);
234 frame_size_ -
267 int adjust = frame_size_ - GetInstructionSetPointerSize(cu_->instruction_set);
274 cfi_.DefCFAOffset(frame_size_);
299 frame_size_ = 16u;
H A Dtarget_x86.cc742 frame_size_ - (GetInstructionSetPointerSize(cu_->instruction_set) * num_core_spills_);
762 int offset = frame_size_ - (GetInstructionSetPointerSize(cu_->instruction_set) * num_core_spills_);
780 int offset = frame_size_ -
796 int offset = frame_size_ -
/art/compiler/optimizing/
H A Dcode_generator.h170 uint32_t GetFrameSize() const { return frame_size_; }
171 void SetFrameSize(uint32_t size) { frame_size_ = size; }
342 : frame_size_(0),
413 uint32_t frame_size_; member in class:art::CodeGenerator
H A Dcode_generator.cc167 DCHECK_EQ(GetAssembler()->cfi().GetCurrentCFAOffset(), static_cast<int>(frame_size_));
/art/compiler/dex/quick/arm/
H A Dcall_arm.cc385 bool skip_overflow_check = mir_graph_->MethodIsLeaf() && !FrameNeedsStackCheck(frame_size_, kArm);
387 bool large_frame = (static_cast<size_t>(frame_size_) > kStackOverflowReservedUsableBytes);
445 const int frame_size_without_spills = frame_size_ - spill_size;
499 AddSlowPath(new(arena_)StackOverflowSlowPath(this, branch, false, frame_size_));
540 int adjust = frame_size_ - (spill_count * kArmPointerSize);
580 cfi_.DefCFAOffset(frame_size_);
596 frame_size_ = 16u;
602 cfi_.AdjustCFAOffset(frame_size_);
610 cfi_.AdjustCFAOffset(-frame_size_);
/art/compiler/dex/quick/
H A Dquick_cfi_test.cc89 m2l->frame_size_ = 64u;
H A Dmir_to_lir.cc211 int offset = frame_size_ + StackVisitor::GetOutVROffset(in_position, cu_->instruction_set);
223 int offset = frame_size_ + StackVisitor::GetOutVROffset(in_position, cu_->instruction_set);
462 frame_size_ = 0;
1242 DCHECK_EQ(cfi_.GetCurrentCFAOffset(), frame_size_);
1245 DCHECK_EQ(cfi_.GetCurrentCFAOffset(), frame_size_);
1249 DCHECK_EQ(cfi_.GetCurrentCFAOffset(), frame_size_);
H A Dcodegen_util.cc358 LOG(INFO) << "Frame size : " << frame_size_;
1061 frame_size_(0),
1119 if (frame_size_ > 0) {
1163 frame_size_, core_spill_mask_, fp_spill_mask_,
H A Dralloc_util.cc1490 fp_spill_mask_, frame_size_, v_reg,
1540 frame_size_ = ComputeFrameSize();
H A Dmir_to_lir.h1825 int frame_size_; member in class:art::Mir2Lir

Completed in 590 milliseconds