Home
last modified time | relevance | path

Searched refs:ExportSymbols (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DLLVMContextImpl.h776 bool ExportSymbols;
778 MDNodeKeyImpl(Metadata *Scope, MDString *Name, bool ExportSymbols)
779 : Scope(Scope), Name(Name), ExportSymbols(ExportSymbols) {}
782 ExportSymbols(N->getExportSymbols()) {}
786 ExportSymbols == RHS->getExportSymbols();
DDebugInfoMetadata.cpp567 MDString *Name, bool ExportSymbols, in getImpl() argument
570 DEFINE_GETIMPL_LOOKUP(DINamespace, (Scope, Name, ExportSymbols)); in getImpl()
573 DEFINE_GETIMPL_STORE(DINamespace, (ExportSymbols), Ops); in getImpl()
DDIBuilder.cpp808 bool ExportSymbols) { in createNameSpace() argument
816 ExportSymbols); in createNameSpace()
DDebugInfo.cpp793 LLVMBool ExportSymbols) { in LLVMDIBuilderCreateNameSpace() argument
795 unwrapDI<DIScope>(ParentScope), StringRef(Name, NameLen), ExportSymbols)); in LLVMDIBuilderCreateNameSpace()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDebugInfoMetadata.h1984 unsigned ExportSymbols : 1;
1986 DINamespace(LLVMContext &Context, StorageType Storage, bool ExportSymbols,
1990 ExportSymbols(ExportSymbols) {}
1994 StringRef Name, bool ExportSymbols,
1997 ExportSymbols, Storage, ShouldCreate);
2000 MDString *Name, bool ExportSymbols,
2010 (DIScope *Scope, StringRef Name, bool ExportSymbols),
2011 (Scope, Name, ExportSymbols))
2013 (Metadata *Scope, MDString *Name, bool ExportSymbols),
2014 (Scope, Name, ExportSymbols))
[all …]
DDIBuilder.h716 bool ExportSymbols);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DDebugInfo.h257 LLVMBool ExportSymbols);
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DMetadataTest.cpp1819 bool ExportSymbols = true; in TEST_F() local
1821 auto *N = DINamespace::get(Context, Scope, Name, ExportSymbols); in TEST_F()
1826 EXPECT_EQ(N, DINamespace::get(Context, Scope, Name, ExportSymbols)); in TEST_F()
1827 EXPECT_NE(N, DINamespace::get(Context, getFile(), Name, ExportSymbols)); in TEST_F()
1828 EXPECT_NE(N, DINamespace::get(Context, Scope, "other", ExportSymbols)); in TEST_F()
1829 EXPECT_NE(N, DINamespace::get(Context, Scope, Name, !ExportSymbols)); in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DMetadataLoader.cpp1499 bool ExportSymbols = Record[0] & 2; in parseOneMetadata() local
1502 (Context, getMDOrNull(Record[1]), Name, ExportSymbols)), in parseOneMetadata()