Home
last modified time | relevance | path

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

/tools/dexter/slicer/
Dcode_ir.cc128 auto annotation = Alloc<DbgInfoAnnotation>(dex::DBG_SET_FILE); in DisassembleDebugInfo()
137 auto annotation = Alloc<DbgInfoAnnotation>(dex::DBG_ADVANCE_LINE); in DisassembleDebugInfo()
147 DbgInfoAnnotation* annotation = nullptr; in DisassembleDebugInfo()
162 annotation = Alloc<DbgInfoAnnotation>(opcode); in DisassembleDebugInfo()
177 annotation = Alloc<DbgInfoAnnotation>(opcode); in DisassembleDebugInfo()
197 annotation = Alloc<DbgInfoAnnotation>(opcode); in DisassembleDebugInfo()
203 annotation = Alloc<DbgInfoAnnotation>(opcode); in DisassembleDebugInfo()
207 annotation = Alloc<DbgInfoAnnotation>(opcode); in DisassembleDebugInfo()
211 annotation = Alloc<DbgInfoAnnotation>(opcode); in DisassembleDebugInfo()
226 annotation = Alloc<DbgInfoAnnotation>(dex::DBG_ADVANCE_LINE); in DisassembleDebugInfo()
Ddebuginfo_encoder.cc34 bool DebugInfoEncoder::Visit(DbgInfoAnnotation* dbg_annotation) { in Visit()
Dinstrumentation.cc618 virtual bool Visit(lir::DbgInfoAnnotation* dbg_annotation) override { in Visit()
Dbytecode_encoder.cc563 bool BytecodeEncoder::Visit(DbgInfoAnnotation* dbg_annotation) { in Visit()
/tools/dexter/slicer/export/slicer/
Dcode_ir.h72 struct DbgInfoAnnotation;
90 virtual bool Visit(DbgInfoAnnotation* dbg_annotation) { return false; } in Visit()
393 struct DbgInfoAnnotation : public Instruction { struct
397 explicit DbgInfoAnnotation(dex::u1 dbg_opcode) : dbg_opcode(dbg_opcode) {} in DbgInfoAnnotation() argument
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/
Ddisassembler.h52 virtual bool Visit(lir::DbgInfoAnnotation* dbg_annotation) override;
Ddisassembler.cc275 bool PrintCodeIrVisitor::Visit(lir::DbgInfoAnnotation* annotation) { in Visit()