Searched refs:ComputeSize (Results 1 – 8 of 8) sorted by relevance
/art/compiler/dex/quick/x86/ |
D | assemble_x86.cc | 612 size_t X86Mir2Lir::ComputeSize(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_index, in ComputeSize() function in art::X86Mir2Lir 686 return ComputeSize(entry, NO_REG, NO_REG, NO_REG, 0); in GetInsnSize() 688 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], 0); in GetInsnSize() 690 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], 0); in GetInsnSize() 692 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], lir->operands[1]); in GetInsnSize() 694 return ComputeSize(entry, NO_REG, lir->operands[1], lir->operands[0], lir->operands[3]); in GetInsnSize() 696 return ComputeSize(entry, lir->operands[2], NO_REG, lir->operands[0], lir->operands[1]); in GetInsnSize() 698 return ComputeSize(entry, lir->operands[2], NO_REG, lir->operands[0], lir->operands[1]); in GetInsnSize() 700 return ComputeSize(entry, lir->operands[4], lir->operands[1], lir->operands[0], in GetInsnSize() 704 return ComputeSize(entry, lir->operands[1], NO_REG, NO_REG, 0x12345678); in GetInsnSize() [all …]
|
D | codegen_x86.h | 421 size_t ComputeSize(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_index,
|
/art/runtime/ |
D | stack.h | 126 static size_t ComputeSize(uint32_t num_vregs) { in ComputeSize() function 134 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)]; in Create()
|
/art/runtime/entrypoints/portable/ |
D | portable_trampoline_entrypoints.cc | 202 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artPortableToInterpreterBridge()
|
/art/runtime/interpreter/ |
D | interpreter.cc | 428 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in EnterInterpreterFromInvoke()
|
D | interpreter_common.cc | 540 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in DoCall()
|
/art/oatdump/ |
D | oatdump.cc | 260 size_t ComputeSize(const void* oat_data) { in ComputeSize() function in art::OatDumper 1404 return oat_dumper_->ComputeSize(oat_data); in ComputeOatSize()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 503 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artQuickToInterpreterBridge()
|