Searched refs:DebugInfoSection (Results 1 – 7 of 7) sorted by relevance
28 class DebugInfoSection; variable46 virtual void visit(DebugInfoSection *) = 0;66 virtual void visit(DebugInfoSection *dinfo);
36 DebugInfoSection *Builder::MakeDebugInfoSection() { in MakeDebugInfoSection()37 return new DebugInfoSection(this); in MakeDebugInfoSection()
37 class DebugInfoSection; variable236 std::unique_ptr<DebugInfoSection> mDebugInfo;306 class DebugInfoSection : public Entity {308 DebugInfoSection() : mSourcesDeleter(mSources), mNamesDeleter(mNames) {} in DebugInfoSection() function309 DebugInfoSection(Builder *b) in DebugInfoSection() function312 virtual ~DebugInfoSection() {} in ~DebugInfoSection()316 DebugInfoSection *addSource(SourceLanguage lang, int version);317 DebugInfoSection *addSourceExtension(const char *ext);318 DebugInfoSection *addString(const char *str);
137 mDebugInfo.reset(Deserialize<DebugInfoSection>(IS)); in DeserializeInternal()493 bool DebugInfoSection::DeserializeInternal(InputWordStream &IS) { in DeserializeInternal()521 DebugInfoSection *DebugInfoSection::addSource(SourceLanguage lang, in addSource()528 DebugInfoSection *DebugInfoSection::addSourceExtension(const char *ext) { in addSourceExtension()534 DebugInfoSection *DebugInfoSection::addString(const char *str) { in addString()540 std::string DebugInfoSection::findStringOfPrefix(const char *prefix) { in findStringOfPrefix()557 Instruction *DebugInfoSection::lookupByName(const char *name) const { in lookupByName()571 DebugInfoSection::lookupNameByInstruction(const Instruction *target) const { in lookupNameByInstruction()
32 DebugInfoSection *MakeDebugInfoSection();
33 void DoNothingVisitor::visit(DebugInfoSection *dinfo) { dinfo->accept(this); } in visit()
112 EXPECT_EQ(1, countEntity<DebugInfoSection>(m)); in TEST_F()