Home
last modified time | relevance | path

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

/tools/dexter/slicer/
Dinstrumentation.cc204 auto allocate_array_op = code_ir->Alloc<lir::Bytecode>(); in InjectArrayParamsHook() local
205 allocate_array_op->opcode = dex::OP_NEW_ARRAY; in InjectArrayParamsHook()
206 allocate_array_op->operands.push_back(code_ir->Alloc<lir::VReg>(array_reg)); in InjectArrayParamsHook()
207 allocate_array_op->operands.push_back(code_ir->Alloc<lir::VReg>(array_size_reg)); in InjectArrayParamsHook()
208 allocate_array_op->operands.push_back( in InjectArrayParamsHook()
210 code_ir->instructions.InsertBefore(bytecode, allocate_array_op); in InjectArrayParamsHook()