Home
last modified time | relevance | path

Searched refs:dbg_annotation (Results 1 – 8 of 8) sorted by relevance

/tools/dexter/slicer/
Ddebuginfo_encoder.cc31 bool DebugInfoEncoder::Visit(DbgInfoAnnotation* dbg_annotation) { in Visit() argument
33 if (last_address_ != dbg_annotation->offset) { in Visit()
34 SLICER_CHECK(dbg_annotation->offset > last_address_); in Visit()
36 dbginfo_.PushULeb128(dbg_annotation->offset - last_address_); in Visit()
37 last_address_ = dbg_annotation->offset; in Visit()
41 switch (dbg_annotation->dbg_opcode) { in Visit()
47 int line = dbg_annotation->CastOperand<LineNumber>(0)->line; in Visit()
72 auto reg = dbg_annotation->CastOperand<VReg>(0)->reg; in Visit()
73 auto name_index = dbg_annotation->CastOperand<String>(1)->index; in Visit()
74 auto type_index = dbg_annotation->CastOperand<Type>(2)->index; in Visit()
[all …]
Dinstrumentation.cc271 virtual bool Visit(lir::DbgInfoAnnotation* dbg_annotation) override { in Visit() argument
272 for (auto operand : dbg_annotation->operands) { in Visit()
Dbytecode_encoder.cc512 bool BytecodeEncoder::Visit(DbgInfoAnnotation* dbg_annotation) { in Visit() argument
513 dbg_annotation->offset = offset_; in Visit()
/tools/dexter/slicer/export/slicer/
Dcontrol_flow_graph.h60 …bool Visit(DbgInfoAnnotation* dbg_annotation) override { return HandleAnnotation(dbg_annotation); } in Visit() argument
Ddebuginfo_encoder.h33 virtual bool Visit(DbgInfoAnnotation* dbg_annotation) override;
Dbytecode_encoder.h48 virtual bool Visit(DbgInfoAnnotation* dbg_annotation) override;
Dcode_ir.h89 virtual bool Visit(DbgInfoAnnotation* dbg_annotation) { return false; } in Visit() argument
/tools/dexter/dexter/
Ddissasembler.h51 virtual bool Visit(lir::DbgInfoAnnotation* dbg_annotation) override;