HomeSort by relevance Sort by last modified time
    Searched refs:DIFile (Results 1 - 18 of 18) sorted by null

  /external/clang/lib/CodeGen/
CGDebugInfo.h 91 llvm::DIFile *Unit;
93 llvm::DIFile *Unit)
145 llvm::DIType *CreateQualifiedType(QualType Ty, llvm::DIFile *Fg);
146 llvm::DIType *CreateType(const TypedefType *Ty, llvm::DIFile *Fg);
148 llvm::DIFile *Fg);
149 llvm::DIType *CreateType(const ObjCObjectPointerType *Ty, llvm::DIFile *F);
150 llvm::DIType *CreateType(const PointerType *Ty, llvm::DIFile *F);
151 llvm::DIType *CreateType(const BlockPointerType *Ty, llvm::DIFile *F);
152 llvm::DIType *CreateType(const FunctionType *Ty, llvm::DIFile *F);
160 llvm::DIType *CreateType(const ObjCInterfaceType *Ty, llvm::DIFile *F)
    [all...]
CGDebugInfo.cpp 273 llvm::DIFile *CGDebugInfo::getOrCreateFile(SourceLocation Loc) {
294 return cast<llvm::DIFile>(V);
297 llvm::DIFile *F = DBuilder.createFile(remapDIPath(PLoc.getFilename()),
304 llvm::DIFile *CGDebugInfo::getOrCreateMainFile() {
588 llvm::DIFile *Unit) {
622 llvm::DIFile *Unit) {
635 llvm::DIFile *Unit) {
696 llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation());
723 llvm::DIFile *Unit) {
752 llvm::DIFile *Unit)
    [all...]
  /external/llvm/include/llvm/IR/
DIBuilder.h 115 DIFile *createFile(StringRef Filename, StringRef Directory);
171 DIDerivedType *createTypedef(DIType *Ty, StringRef Name, DIFile *File,
198 DIFile *File, unsigned LineNo,
213 DIFile *File, unsigned LineNo,
228 DIDerivedType *createObjCIVar(StringRef Name, DIFile *File, unsigned LineNo,
242 DIObjCProperty *createObjCProperty(StringRef Name, DIFile *File,
265 DIFile *File, unsigned LineNumber,
285 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNumber,
302 DIFile *File, unsigned LineNumber,
375 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNumber
    [all...]
DebugInfoMetadata.h 415 DIFile *getFile() const { return cast_or_null<DIFile>(getRawFile()); }
425 /// An \a DIFile is an \a DIScope, but it doesn't point at a separate file
426 /// (it\em is the file). If \c this is an \a DIFile, we need to return \c
430 return isa<DIFile>(this) ? const_cast<DIScope *>(this)
460 class DIFile : public DIScope {
464 DIFile(LLVMContext &C, StorageType Storage, ArrayRef<Metadata *> Ops)
466 ~DIFile() = default;
468 static DIFile *getImpl(LLVMContext &Context, StringRef Filename,
475 static DIFile *getImpl(LLVMContext &Context, MDString *Filename
    [all...]
  /external/llvm/bindings/go/llvm/
DIBuilderBindings.cpp 60 unwrap<DIFile>(File), Line, Column);
70 unwrap<DIFile>(File), Discriminator));
80 File ? unwrap<DIFile>(File) : nullptr, Line,
93 unwrap<DIFile>(File), Line,
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,
187 File ? unwrap<DIFile>(File) : nullptr, Line,
  /external/llvm/lib/IR/
DIBuilder.cpp 149 VMContext, Lang, DIFile::get(VMContext, Filename, Directory), Producer,
207 DIFile *DIBuilder::createFile(StringRef Filename, StringRef Directory) {
208 return DIFile::get(VMContext, Filename, Directory);
267 DIFile *File, unsigned LineNo,
293 DIFile *File, unsigned LineNumber,
311 DIFile *File,
322 DIDerivedType *DIBuilder::createObjCIVar(StringRef Name, DIFile *File,
335 DIBuilder::createObjCProperty(StringRef Name, DIFile *File, unsigned LineNumber,
384 DIScope *Context, StringRef Name, DIFile *File, unsigned LineNumber,
404 DIScope *Context, StringRef Name, DIFile *File, unsigned LineNumber
    [all...]
DebugInfoMetadata.cpp 144 assert((isa<DIFile>(this) || isa<DICompileUnit>(this)) &&
158 assert((isa<DILexicalBlockBase>(this) || isa<DIFile>(this) ||
302 DIFile *DIFile::getImpl(LLVMContext &Context, MDString *Filename,
307 DEFINE_GETIMPL_LOOKUP(DIFile, (getString(Filename), getString(Directory)));
309 DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(DIFile, Ops);
LLVMContextImpl.h 446 template <> struct MDNodeKeyImpl<DIFile> {
452 MDNodeKeyImpl(const DIFile *N)
455 bool isKeyOf(const DIFile *RHS) const {
    [all...]
Verifier.cpp 773 Assert(isa<DIFile>(F), "invalid file", &N, F);
874 void Verifier::visitDIFile(const DIFile &N) {
884 Assert(N.getRawFile() && isa<DIFile>(N.getRawFile()), "invalid file", &N,
    [all...]
AsmWriter.cpp     [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp 91 DIFile *getFile() {
92 return DIFile::getDistinct(Context, "file.c", "/path/to/dir");
988 DIFile *File = getFile();
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSAddDebugInfoPass.cpp 257 llvm::DIFile *sourceFileName;
  /external/llvm/lib/CodeGen/AsmPrinter/
WinCodeViewLineTables.cpp 23 assert((isa<DICompileUnit>(S) || isa<DIFile>(S) || isa<DISubprogram>(S) ||
DwarfUnit.cpp 688 if (!Context || isa<DIFile>(Context))
775 if (!Context || isa<DICompileUnit>(Context) || isa<DIFile>(Context) ||
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 841 static DISubroutineType *CreateFunctionType(unsigned NumArgs, DIFile *Unit) {
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 304 milliseconds