HomeSort by relevance Sort by last modified time
    Searched refs:DIScope (Results 1 - 25 of 50) sorted by null

1 2

  /external/llvm/include/llvm/IR/
DIBuilder.h 166 unsigned LineNo, DIScope *Context);
191 DIDerivedType *createMemberType(DIScope *Scope, StringRef Name,
209 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNo,
222 DIDerivedType *createStaticMemberType(DIScope *Scope, StringRef Name,
274 DICompositeType *createClassType(DIScope *Scope, StringRef Name,
295 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNumber,
311 DICompositeType *createUnionType(DIScope *Scope, StringRef Name,
324 createTemplateTypeParameter(DIScope *Scope, StringRef Name, DIType *Ty);
332 DITemplateValueParameter *createTemplateValueParameter(DIScope *Scope,
342 DITemplateValueParameter *createTemplateTemplateParameter(DIScope *Scope
    [all...]
DebugInfo.h 78 void processScope(DIScope *Scope);
83 bool addScope(DIScope *Scope);
92 typedef SmallVectorImpl<DIScope *>::const_iterator scope_iterator;
125 SmallVector<DIScope *, 8> Scopes;
DebugInfoMetadata.h 83 typedef TypedDINodeRef<DIScope> DIScopeRef;
399 class DIScope : public DINode {
401 DIScope(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
404 ~DIScope() = default;
417 /// An \a DIFile is an \a DIScope, but it doesn't point at a separate file
422 return isa<DIFile>(this) ? const_cast<DIScope *>(this)
450 class DIFile : public DIScope {
455 : DIScope(C, DIFileKind, Storage, dwarf::DW_TAG_file_type, Ops) {}
492 StringRef DIScope::getFilename() const {
498 StringRef DIScope::getDirectory() const
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DebugInfo.h 154 /// DIScope - A base class for various scopes.
155 class DIScope : public DIDescriptor {
157 explicit DIScope(const MDNode *N = 0) : DIDescriptor (N) {}
158 virtual ~DIScope() {}
165 class DICompileUnit : public DIScope {
167 explicit DICompileUnit(const MDNode *N = 0) : DIScope(N) {}
204 class DIFile : public DIScope {
206 explicit DIFile(const MDNode *N = 0) : DIScope(N) {
232 class DIType : public DIScope {
237 DIType(const MDNode *N, bool, bool) : DIScope(N) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DIBuilder.h 238 unsigned LineNo, DIScope *Context);
265 DIDerivedType *createMemberType(DIScope *Scope, StringRef Name,
285 DIDerivedType *createVariantMemberType(DIScope *Scope, StringRef Name,
304 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNo,
318 DIDerivedType *createStaticMemberType(DIScope *Scope, StringRef Name,
372 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNumber,
390 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNumber,
406 DICompositeType *createUnionType(DIScope *Scope, StringRef Name,
427 DICompositeType *createVariantPart(DIScope *Scope, StringRef Name,
441 createTemplateTypeParameter(DIScope *Scope, StringRef Name, DIType *Ty)
    [all...]
DebugInfo.h 86 void processScope(DIScope *Scope);
91 bool addScope(DIScope *Scope);
102 using scope_iterator = SmallVectorImpl<DIScope *>::const_iterator;
135 SmallVector<DIScope *, 8> Scopes;
DebugInfoMetadata.h 99 using DIScopeRef = TypedDINodeRef<DIScope>;
447 class DIScope : public DINode {
449 DIScope(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
452 ~DIScope() = default;
466 /// A \a DIFile is a \a DIScope, but it doesn't point at a separate file (it
471 return isa<DIFile>(this) ? const_cast<DIScope *>(this)
499 class DIFile : public DIScope {
542 : DIScope(C, DIFileKind, Storage, dwarf::DW_TAG_file_type, Ops),
607 StringRef DIScope::getFilename() const {
613 StringRef DIScope::getDirectory() const
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DIBuilder.cpp 132 static DIScope *getNonCompileUnitScope(DIScope *N) {
135 return cast<DIScope>(N);
162 createImportedModule(LLVMContext &C, dwarf::Tag Tag, DIScope *Context,
177 DIImportedEntity *DIBuilder::createImportedModule(DIScope *Context,
185 DIImportedEntity *DIBuilder::createImportedModule(DIScope *Context,
193 DIImportedEntity *DIBuilder::createImportedModule(DIScope *Context, DIModule *M,
200 DIImportedEntity *DIBuilder::createImportedDeclaration(DIScope *Context,
306 DIScope *Context) {
331 DIDerivedType *DIBuilder::createMemberType(DIScope *Scope, StringRef Name
    [all...]
DebugInfo.cpp 149 void DebugInfoFinder::processScope(DIScope *Scope) {
269 bool DebugInfoFinder::addScope(DIScope *Scope) {
784 unwrapDI<DIScope>(ParentScope), StringRef(Name, NameLen),
795 unwrapDI<DIScope>(ParentScope), StringRef(Name, NameLen), ExportSymbols));
805 unwrapDI<DIScope>(Scope), {Name, NameLen}, {LinkageName, LinkageNameLen},
815 return wrap(unwrap(Builder)->createLexicalBlock(unwrapDI<DIScope>(Scope),
825 return wrap(unwrap(Builder)->createLexicalBlockFile(unwrapDI<DIScope>(Scope),
836 return wrap(unwrap(Builder)->createImportedModule(unwrapDI<DIScope>(Scope),
849 unwrapDI<DIScope>(Scope),
860 return wrap(unwrap(Builder)->createImportedModule(unwrapDI<DIScope>(Scope)
    [all...]
DebugLoc.cpp 111 auto *Scope = cast<DIScope>(getScope());
  /external/llvm/lib/IR/
DIBuilder.cpp 105 static DIScope *getNonCompileUnitScope(DIScope *N) {
108 return cast<DIScope>(N);
136 createImportedModule(LLVMContext &C, dwarf::Tag Tag, DIScope *Context,
148 DIImportedEntity *DIBuilder::createImportedModule(DIScope *Context,
155 DIImportedEntity *DIBuilder::createImportedModule(DIScope *Context,
162 DIImportedEntity *DIBuilder::createImportedModule(DIScope *Context, DIModule *M,
168 DIImportedEntity *DIBuilder::createImportedDeclaration(DIScope *Context,
239 DIScope *Context) {
260 DIDerivedType *DIBuilder::createMemberType(DIScope *Scope, StringRef Name
    [all...]
DebugLoc.cpp 90 auto *Scope = cast<DIScope>(getScope());
DebugInfo.cpp 117 void DebugInfoFinder::processScope(DIScope *Scope) {
231 bool DebugInfoFinder::addScope(DIScope *Scope) {
  /external/llvm/bindings/go/llvm/
DIBuilderBindings.cpp 79 return wrap(D->createFunction(unwrap<DIScope>(Scope), Name, LinkageName,
92 return wrap(D->createAutoVariable(unwrap<DIScope>(Scope), Name,
103 unwrap<DIScope>(Scope), Name, ArgNo, unwrap<DIFile>(File), Line,
141 unwrap<DIScope>(Scope), Name, File ? unwrap<DIFile>(File) : nullptr, Line,
154 Tag, Name, unwrap<DIScope>(Scope), File ? unwrap<DIFile>(File) : nullptr,
166 unwrap<DIScope>(Scope), Name, File ? unwrap<DIFile>(File) : nullptr, Line,
188 Context ? unwrap<DIScope>(Context) : nullptr));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 127 std::string getParentContextString(const DIScope *Context) const;
131 const DIScope *Context) = 0;
135 const DIScope *Context) = 0;
266 DIE *getOrCreateContextDIE(const DIScope *Context);
336 void updateAcceleratorTables(const DIScope *Context, const DIType *Ty,
397 const DIScope *Context) override;
399 const DIScope *Context) override;
DwarfCompileUnit.h 150 DIScope *Scope = IE->getScope();
250 const DIScope *Context) override;
253 void addGlobalNameForTypeUnit(StringRef Name, const DIScope *Context);
257 const DIScope *Context) override;
260 void addGlobalTypeUnitType(const DIType *Ty, const DIScope *Context);
DwarfCompileUnit.cpp 128 DIScope *DeclContext;
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.h 109 std::vector<llvm::TypedTrackingMDRef<llvm::DIScope>> LexicalBlockStack;
237 llvm::DIScope *scope,
242 llvm::DIScope *RecordTy,
397 llvm::DIScope *getDeclContextDescriptor(const Decl *D);
399 llvm::DIScope *getContextDescriptor(const Decl *Context,
400 llvm::DIScope *Default);
402 llvm::DIScope *getCurrentContextDescriptor(const Decl *Decl);
406 llvm::DIScope *);
481 llvm::GlobalVariable *Var, llvm::DIScope *DContext);
515 llvm::DIScope *&FDContext
    [all...]
CGDebugInfo.cpp 136 auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back());
154 llvm::DIScope *CGDebugInfo::getDeclContextDescriptor(const Decl *D) {
155 llvm::DIScope *Mod = getParentModuleOrNull(D);
160 llvm::DIScope *CGDebugInfo::getContextDescriptor(const Decl *Context,
161 llvm::DIScope *Default) {
168 return dyn_cast_or_null<llvm::DIScope>(V);
718 llvm::DIScope *Ctx) {
    [all...]
  /external/llvm/tools/opt/
BreakpointPrinter.cpp 31 void getContextName(const DIScope *Context, std::string &N) {
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
BreakpointPrinter.cpp 31 void getContextName(const DIScope *Context, std::string &N) {
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 138 std::string getParentContextString(const DIScope *Context) const;
141 virtual void addGlobalName(StringRef Name, DIE &Die, const DIScope *Context) {
146 const DIScope *Context) {}
293 DIE *getOrCreateContextDIE(const DIScope *Context);
360 void updateAcceleratorTables(const DIScope *Context, const DIType *Ty,
DwarfCompileUnit.h 121 DIScope *Scope = IE->getScope();
215 void addGlobalName(StringRef Name, DIE &Die, const DIScope *Context) override;
219 const DIScope *Context) override;
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
OProfileJITEventListener.cpp 84 Filename = DIScope(Scope).getFilename();
  /external/swiftshader/third_party/LLVM/lib/Analysis/
DebugInfo.cpp 296 DIType::DIType(const MDNode *N) : DIScope(N) {
551 StringRef DIScope::getFilename() const {
568 assert(0 && "Invalid DIScope!");
572 StringRef DIScope::getDirectory() const {
589 assert(0 && "Invalid DIScope!");
758 DIScope Scope(DL.getScope(Ctx));
1021 DIScope Context = LB.getContext();
    [all...]

Completed in 1195 milliseconds

1 2