Home
last modified time | relevance | path

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

/tools/dexter/slicer/
Dinstrumentation.cc212 move->operands.push_back(code_ir->Alloc<lir::VRegPair>(reg - shift)); in GenerateShiftParamsCode()
213 move->operands.push_back(code_ir->Alloc<lir::VRegPair>(reg)); in GenerateShiftParamsCode()
424 reg = bytecode->CastOperand<lir::VRegPair>(0)->base_reg; in Apply()
461 move_op->operands.push_back(code_ir->Alloc<lir::VRegPair>(reg + 1)); in Apply()
462 move_op->operands.push_back(code_ir->Alloc<lir::VRegPair>(reg)); in Apply()
630 virtual bool Visit(lir::VRegPair* vreg_pair) override { in Visit()
Dcode_ir.cc426 return Alloc<VRegPair>(dex_instr.vA); in GetRegA()
435 return Alloc<VRegPair>(dex_instr.vB); in GetRegB()
444 return Alloc<VRegPair>(dex_instr.vC); in GetRegC()
Dbytecode_encoder.cc101 ? bytecode->CastOperand<VRegPair>(index)->base_reg in GetRegA()
110 ? bytecode->CastOperand<VRegPair>(index)->base_reg in GetRegB()
119 ? bytecode->CastOperand<VRegPair>(index)->base_reg in GetRegC()
/tools/dexter/slicer/export/slicer/
Dcode_ir.h61 struct VRegPair;
99 virtual bool Visit(VRegPair* vreg_pair) { return false; } in Visit()
161 struct VRegPair : public Operand { struct
164 explicit VRegPair(dex::u4 base_reg) : base_reg(base_reg) {} in VRegPair() argument
/tools/dexter/dexter/
Ddisassembler.h42 virtual bool Visit(lir::VRegPair* vreg_pair) override;
Ddisassembler.cc138 bool PrintCodeIrVisitor::Visit(lir::VRegPair* vreg_pair) { in Visit()
Dexperimental.cc257 reg = bytecode->CastOperand<lir::VRegPair>(0)->base_reg; in StressExitHook()