Home
last modified time | relevance | path

Searched refs:DbgInfoAnnotation (Results 1 – 10 of 10) sorted by relevance

/tools/dexter/slicer/
Dcode_ir.cc129 auto annotation = Alloc<DbgInfoAnnotation>(dex::DBG_SET_FILE); in DissasembleDebugInfo()
138 auto annotation = Alloc<DbgInfoAnnotation>(dex::DBG_ADVANCE_LINE); in DissasembleDebugInfo()
148 DbgInfoAnnotation* annotation = nullptr; in DissasembleDebugInfo()
163 annotation = Alloc<DbgInfoAnnotation>(opcode); in DissasembleDebugInfo()
178 annotation = Alloc<DbgInfoAnnotation>(opcode); in DissasembleDebugInfo()
198 annotation = Alloc<DbgInfoAnnotation>(opcode); in DissasembleDebugInfo()
204 annotation = Alloc<DbgInfoAnnotation>(opcode); in DissasembleDebugInfo()
208 annotation = Alloc<DbgInfoAnnotation>(opcode); in DissasembleDebugInfo()
212 annotation = Alloc<DbgInfoAnnotation>(opcode); in DissasembleDebugInfo()
227 annotation = Alloc<DbgInfoAnnotation>(dex::DBG_ADVANCE_LINE); in DissasembleDebugInfo()
Ddebuginfo_encoder.cc31 bool DebugInfoEncoder::Visit(DbgInfoAnnotation* dbg_annotation) { in Visit()
Dinstrumentation.cc531 virtual bool Visit(lir::DbgInfoAnnotation* dbg_annotation) override { in Visit()
Dbytecode_encoder.cc512 bool BytecodeEncoder::Visit(DbgInfoAnnotation* dbg_annotation) { in Visit()
/tools/dexter/slicer/export/slicer/
Dcode_ir.h71 struct DbgInfoAnnotation;
89 virtual bool Visit(DbgInfoAnnotation* dbg_annotation) { return false; } in Visit()
381 struct DbgInfoAnnotation : public Instruction { struct
385 explicit DbgInfoAnnotation(dex::u1 dbg_opcode) : dbg_opcode(dbg_opcode) {} in DbgInfoAnnotation() function
Ddebuginfo_encoder.h33 virtual bool Visit(DbgInfoAnnotation* dbg_annotation) override;
Dbytecode_encoder.h48 virtual bool Visit(DbgInfoAnnotation* dbg_annotation) override;
Dcontrol_flow_graph.h60 …bool Visit(DbgInfoAnnotation* dbg_annotation) override { return HandleAnnotation(dbg_annotation); } in Visit()
/tools/dexter/dexter/
Ddissasembler.h51 virtual bool Visit(lir::DbgInfoAnnotation* dbg_annotation) override;
Ddissasembler.cc268 bool PrintCodeIrVisitor::Visit(lir::DbgInfoAnnotation* annotation) { in Visit()