Searched defs:frame_size_ (Results 1 - 3 of 3) 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/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
/art/compiler/dex/quick/
H A Dmir_to_lir.h1825 int frame_size_; member in class:art::Mir2Lir

Completed in 114 milliseconds