Searched refs:ComputeSize (Results 1 – 6 of 6) sorted by relevance
/art/compiler/dex/quick/x86/ |
D | assemble_x86.cc | 334 static size_t ComputeSize(const X86EncodingMap* entry, int base, int displacement, bool has_sib) { in ComputeSize() function 375 return ComputeSize(entry, 0, 0, false); in GetInsnSize() 377 return ComputeSize(entry, lir->operands[0], lir->operands[1], false); in GetInsnSize() 379 return ComputeSize(entry, lir->operands[0], lir->operands[3], true); in GetInsnSize() 381 return ComputeSize(entry, lir->operands[0], lir->operands[1], false); in GetInsnSize() 383 return ComputeSize(entry, lir->operands[0], lir->operands[3], true); in GetInsnSize() 385 return ComputeSize(entry, 0, lir->operands[0], false); in GetInsnSize() 387 return ComputeSize(entry, 0, 0, false); in GetInsnSize() 389 return ComputeSize(entry, 0, 0, false); in GetInsnSize() 391 return ComputeSize(entry, lir->operands[1], lir->operands[2], false); in GetInsnSize() [all …]
|
/art/runtime/ |
D | stack.h | 62 static size_t ComputeSize(uint32_t num_vregs) { in ComputeSize() function 70 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)]; in Create()
|
/art/runtime/entrypoints/portable/ |
D | portable_trampoline_entrypoints.cc | 196 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artPortableToInterpreterBridge()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 284 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artQuickToInterpreterBridge()
|
/art/oatdump/ |
D | oatdump.cc | 154 size_t ComputeSize(const void* oat_data) { in ComputeSize() function in art::OatDumper 1070 return oat_dumper_->ComputeSize(oat_data); in ComputeOatSize()
|
/art/runtime/interpreter/ |
D | interpreter.cc | 458 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in DoInvoke() 571 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in DoInvokeVirtualQuick() 3154 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in EnterInterpreterFromInvoke()
|