Home
last modified time | relevance | path

Searched refs:decoded_instruction (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/
Dmir_graph.cc169 int MIRGraph::ParseInsn(const uint16_t* code_ptr, MIR::DecodedInstruction* decoded_instruction) { in ParseInsn() argument
171 decoded_instruction->opcode = inst->Opcode(); in ParseInsn()
172 decoded_instruction->vA = inst->HasVRegA() ? inst->VRegA() : 0; in ParseInsn()
173 decoded_instruction->vB = inst->HasVRegB() ? inst->VRegB() : 0; in ParseInsn()
174 decoded_instruction->vB_wide = inst->HasWideVRegB() ? inst->WideVRegB() : 0; in ParseInsn()
175 decoded_instruction->vC = inst->HasVRegC() ? inst->VRegC() : 0; in ParseInsn()
177 inst->GetVarArgs(decoded_instruction->arg); in ParseInsn()
Dmir_graph.h1287 int ParseInsn(const uint16_t* code_ptr, MIR::DecodedInstruction* decoded_instruction);