Home
last modified time | relevance | path

Searched refs:CompilerUsed (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DModule.cpp615 const Module &M, SmallPtrSetImpl<GlobalValue *> &Set, bool CompilerUsed) { in collectUsedGlobalVariables() argument
616 const char *Name = CompilerUsed ? "llvm.compiler.used" : "llvm.used"; in collectUsedGlobalVariables()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp2651 SmallPtrSet<GlobalValue *, 8> CompilerUsed; member in __anon0782cb130411::LLVMUsed
2658 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true); in LLVMUsed()
2671 iterator compilerUsedBegin() { return CompilerUsed.begin(); } in compilerUsedBegin()
2672 iterator compilerUsedEnd() { return CompilerUsed.end(); } in compilerUsedEnd()
2681 return CompilerUsed.count(GV); in compilerUsedCount()
2685 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); } in compilerUsedErase()
2689 return CompilerUsed.insert(GV).second; in compilerUsedInsert()
2696 setUsedInitializer(*CompilerUsedV, CompilerUsed); in syncVariablesAndSets()
DLowerTypeTests.cpp339 SmallPtrSet<GlobalValue *, 16> Used, CompilerUsed; member
357 if (GlobalVariable *GV = collectUsedGlobalVariables(M, CompilerUsed, true)) in ScopedSaveAliaseesAndUsed()
371 appendToCompilerUsed(M, std::vector<GlobalValue *>(CompilerUsed.begin(), in ~ScopedSaveAliaseesAndUsed()
372 CompilerUsed.end())); in ~ScopedSaveAliaseesAndUsed()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DModule.h875 bool CompilerUsed);