Home
last modified time | relevance | path

Searched refs:DebugInfoSection (Results 1 – 7 of 7) sorted by relevance

/frameworks/rs/rsov/compiler/spirit/
Dvisitor.h28 class DebugInfoSection; variable
46 virtual void visit(DebugInfoSection *) = 0;
66 virtual void visit(DebugInfoSection *dinfo);
Dbuilder.cpp36 DebugInfoSection *Builder::MakeDebugInfoSection() { in MakeDebugInfoSection()
37 return new DebugInfoSection(this); in MakeDebugInfoSection()
Dmodule.h37 class DebugInfoSection; variable
236 std::unique_ptr<DebugInfoSection> mDebugInfo;
306 class DebugInfoSection : public Entity {
308 DebugInfoSection() : mSourcesDeleter(mSources), mNamesDeleter(mNames) {} in DebugInfoSection() function
309 DebugInfoSection(Builder *b) in DebugInfoSection() function
312 virtual ~DebugInfoSection() {} in ~DebugInfoSection()
316 DebugInfoSection *addSource(SourceLanguage lang, int version);
317 DebugInfoSection *addSourceExtension(const char *ext);
318 DebugInfoSection *addString(const char *str);
Dmodule.cpp137 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()
Dbuilder.h32 DebugInfoSection *MakeDebugInfoSection();
Dvisitor.cpp33 void DoNothingVisitor::visit(DebugInfoSection *dinfo) { dinfo->accept(this); } in visit()
Dmodule_test.cpp112 EXPECT_EQ(1, countEntity<DebugInfoSection>(m)); in TEST_F()