Home
last modified time | relevance | path

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

/art/compiler/dex/quick/x86/
Dassemble_x86.cc639 size_t X86Mir2Lir::ComputeSize(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_index, in ComputeSize() function in art::X86Mir2Lir
720 return ComputeSize(entry, NO_REG, NO_REG, NO_REG, 0); in GetInsnSize()
722 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], 0); in GetInsnSize()
724 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], 0); in GetInsnSize()
726 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], lir->operands[1]); in GetInsnSize()
728 return ComputeSize(entry, NO_REG, lir->operands[1], lir->operands[0], lir->operands[3]); in GetInsnSize()
730 return ComputeSize(entry, lir->operands[2], NO_REG, lir->operands[0], lir->operands[1]); in GetInsnSize()
732 return ComputeSize(entry, lir->operands[2], NO_REG, lir->operands[0], lir->operands[1]); in GetInsnSize()
734 return ComputeSize(entry, lir->operands[4], lir->operands[1], lir->operands[0], in GetInsnSize()
738 return ComputeSize(entry, lir->operands[1], NO_REG, NO_REG, 0x12345678); in GetInsnSize()
[all …]
Dcodegen_x86.h438 size_t ComputeSize(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_index,
/art/runtime/
Dstack.h71 static size_t ComputeSize(uint32_t num_vregs) { in ComputeSize() function
79 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)]; in CreateDeoptimizedFrame()
/art/runtime/interpreter/
Dinterpreter.cc333 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in EnterInterpreterFromInvoke()
Dinterpreter_common.cc510 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in DoCall()
/art/oatdump/
Doatdump.cc482 size_t ComputeSize(const void* oat_data) { in ComputeSize() function in art::OatDumper
1886 return oat_dumper_->ComputeSize(oat_data); in ComputeOatSize()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc614 void* memory = alloca(ShadowFrame::ComputeSize(num_regs)); in artQuickToInterpreterBridge()