Home
last modified time | relevance | path

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

/tools/dexter/slicer/
Dbytecode_encoder.cc210 auto label = bytecode->CastOperand<CodeLocation>(0)->label; in Visit()
227 auto label = bytecode->CastOperand<CodeLocation>(0)->label; in Visit()
245 auto label = bytecode->CastOperand<CodeLocation>(1)->label; in Visit()
264 auto label = bytecode->CastOperand<CodeLocation>(2)->label; in Visit()
282 auto label = bytecode->CastOperand<CodeLocation>(1)->label; in Visit()
Dcode_ir.cc486 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()
495 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()
523 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode()
/tools/dexter/slicer/export/slicer/
Dcode_ir.h64 struct CodeLocation;
94 virtual bool Visit(CodeLocation* location) { return false; } in Visit()
220 struct CodeLocation : public Operand { struct
223 explicit CodeLocation(Label* label) : label(label) {} in CodeLocation() argument
/tools/dexter/dexter/
Ddissasembler.h38 virtual bool Visit(lir::CodeLocation* location) override;
Ddissasembler.cc108 bool PrintCodeIrVisitor::Visit(lir::CodeLocation* target) { in Visit()