Home
last modified time | relevance | path

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

/tools/dexter/slicer/export/slicer/
Dcode_ir.h64 struct CodeLocation;
95 virtual bool Visit(CodeLocation* location) { return false; } in Visit()
232 struct CodeLocation : public Operand { struct
235 explicit CodeLocation(Label* label) : label(label) {} in CodeLocation() function
/tools/dexter/slicer/
Dbytecode_encoder.cc213 auto label = bytecode->CastOperand<CodeLocation>(0)->label; in Visit()
230 auto label = bytecode->CastOperand<CodeLocation>(0)->label; in Visit()
248 auto label = bytecode->CastOperand<CodeLocation>(1)->label; in Visit()
267 auto label = bytecode->CastOperand<CodeLocation>(2)->label; in Visit()
285 auto label = bytecode->CastOperand<CodeLocation>(1)->label; in Visit()
Dcode_ir.cc485 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()
494 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()
522 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()
/tools/dexter/dexter/
Ddisassembler.h38 virtual bool Visit(lir::CodeLocation* location) override;
Ddisassembler.cc108 bool PrintCodeIrVisitor::Visit(lir::CodeLocation* target) { in Visit()