Home
last modified time | relevance | path

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

/tools/dexter/slicer/export/slicer/
Dcode_ir.h59 struct Const64;
96 virtual bool Visit(Const64* const64) { return false; } in Visit()
139 struct Const64 : public Operand { struct
146 explicit Const64(dex::u8 value) { u.u8_value = value; } in Const64() argument
/tools/dexter/slicer/
Dcode_ir.cc572 instr->operands.push_back(Alloc<Const64>(dex::u8(dex_instr.vB) << 48)); in DecodeBytecode()
582 instr->operands.push_back(Alloc<Const64>(dex_instr.vB_wide)); in DecodeBytecode()
Dbytecode_encoder.cc397 dex::u8 B = bytecode->CastOperand<Const64>(1)->u.u8_value; in Visit()
417 dex::u4 B = bytecode->CastOperand<Const64>(1)->u.u8_value >> 48; in Visit()
/tools/dexter/dexter/
Ddissasembler.h40 virtual bool Visit(lir::Const64* const64) override;
Ddissasembler.cc123 bool PrintCodeIrVisitor::Visit(lir::Const64* const64) { in Visit()