Home
last modified time | relevance | path

Searched refs:frame_size_in_bytes (Results 1 – 7 of 7) sorted by relevance

/art/compiler/
Dcompiled_method.cc146 const size_t frame_size_in_bytes, in CompiledMethod() argument
153 : CompiledCode(driver, instruction_set, quick_code), frame_size_in_bytes_(frame_size_in_bytes), in CompiledMethod()
164 const size_t frame_size_in_bytes, in CompiledMethod() argument
168 frame_size_in_bytes_(frame_size_in_bytes), in CompiledMethod()
201 const size_t frame_size_in_bytes, in SwapAllocCompiledMethod() argument
210 alloc.construct(ret, driver, instruction_set, quick_code, frame_size_in_bytes, core_spill_mask, in SwapAllocCompiledMethod()
218 const size_t frame_size_in_bytes, in SwapAllocCompiledMethod() argument
223 alloc.construct(ret, driver, instruction_set, quick_code, frame_size_in_bytes, core_spill_mask, in SwapAllocCompiledMethod()
Dcompiled_method.h112 const size_t frame_size_in_bytes,
124 const size_t frame_size_in_bytes,
141 const size_t frame_size_in_bytes,
152 const size_t frame_size_in_bytes,
Doat_writer.cc396 uint32_t frame_size_in_bytes = compiled_method->GetFrameSizeInBytes(); in VisitMethod() local
400 gc_map_offset, frame_size_in_bytes, core_spill_mask, in VisitMethod()
/art/runtime/quick/
Dquick_method_frame_info.h34 constexpr QuickMethodFrameInfo(uint32_t frame_size_in_bytes, uint32_t core_spill_mask, in QuickMethodFrameInfo() argument
36 : frame_size_in_bytes_(frame_size_in_bytes), in QuickMethodFrameInfo()
/art/runtime/mirror/
Dart_method.h405 size_t GetReturnPcOffsetInBytes(uint32_t frame_size_in_bytes) in GetReturnPcOffsetInBytes() argument
407 DCHECK_EQ(frame_size_in_bytes, GetFrameSizeInBytes()); in GetReturnPcOffsetInBytes()
408 return frame_size_in_bytes - kPointerSize; in GetReturnPcOffsetInBytes()
/art/runtime/
Doat.h176 uint32_t gc_map_offset = 0U, uint32_t frame_size_in_bytes = 0U,
Doat.cc501 uint32_t frame_size_in_bytes, uint32_t core_spill_mask, uint32_t fp_spill_mask, in OatQuickMethodHeader() argument
505 frame_info_(frame_size_in_bytes, core_spill_mask, fp_spill_mask), code_size_(code_size) { in OatQuickMethodHeader()