Home
last modified time | relevance | path

Searched refs:ComputeSize (Results 1 – 8 of 8) sorted by relevance

/art/compiler/dex/quick/x86/
Dassemble_x86.cc612 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 …]
Dcodegen_x86.h421 size_t ComputeSize(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_index,
/art/runtime/
Dstack.h126 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/
Dportable_trampoline_entrypoints.cc202 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artPortableToInterpreterBridge()
/art/runtime/interpreter/
Dinterpreter.cc428 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in EnterInterpreterFromInvoke()
Dinterpreter_common.cc540 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in DoCall()
/art/oatdump/
Doatdump.cc260 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/
Dquick_trampoline_entrypoints.cc503 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artQuickToInterpreterBridge()