Home
last modified time | relevance | path

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

/tools/dexter/slicer/export/slicer/
Dcode_ir.h58 struct Const32;
95 virtual bool Visit(Const32* const32) { return false; } in Visit()
127 struct Const32 : public Operand { struct
134 explicit Const32(dex::u4 value) { u.u4_value = value; } in Const32() argument
/tools/dexter/slicer/
Dbytecode_encoder.cc177 dex::u4 B = Trim_S0(bytecode->CastOperand<Const32>(1)->u.u4_value); in Visit()
185 dex::u4 B = Trim_S2(bytecode->CastOperand<Const32>(1)->u.u4_value); in Visit()
201 dex::u4 B = bytecode->CastOperand<Const32>(1)->u.u4_value; in Visit()
311 dex::u4 C = Trim_S1(bytecode->CastOperand<Const32>(2)->u.u4_value); in Visit()
321 dex::u4 C = Trim_S2(bytecode->CastOperand<Const32>(2)->u.u4_value); in Visit()
410 dex::u4 B = bytecode->CastOperand<Const32>(1)->u.u4_value >> 16; in Visit()
Dcode_ir.cc474 instr->operands.push_back(Alloc<Const32>(dex_instr.vB)); in DecodeBytecode()
530 instr->operands.push_back(Alloc<Const32>(dex_instr.vC)); in DecodeBytecode()
567 instr->operands.push_back(Alloc<Const32>(dex_instr.vB << 16)); in DecodeBytecode()
Dinstrumentation.cc248 const_size_op->operands.push_back(code_ir->Alloc<lir::Const32>( in InjectArrayParamsHook()
302 index_const_op->operands.push_back(code_ir->Alloc<lir::Const32>(i++)); in InjectArrayParamsHook()
342 cleanup->operands.push_back(code_ir->Alloc<lir::Const32>(0xFEFEFEFE)); in InjectArrayParamsHook()
/tools/dexter/dexter/
Ddissasembler.h39 virtual bool Visit(lir::Const32* const32) override;
Ddissasembler.cc113 bool PrintCodeIrVisitor::Visit(lir::Const32* const32) { in Visit()
Dexperimental.cc424 load_block_id->operands.push_back(code_ir.Alloc<lir::Const32>(basic_block_id)); in CodeCoverage()