Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp232 bool CompilerUsed) { in cloneUsedGlobalVariables() argument
235 collectUsedGlobalVariables(SrcM, Used, CompilerUsed); in cloneUsedGlobalVariables()
243 if (CompilerUsed) in cloneUsedGlobalVariables()
H A DGlobalOpt.cpp2166 SmallPtrSet<GlobalValue *, 4> CompilerUsed; member in __anondb0a2e990511::LLVMUsed
2177 CompilerUsed = {Vec.begin(), Vec.end()}; in LLVMUsed()
2190 iterator compilerUsedBegin() { return CompilerUsed.begin(); } in compilerUsedBegin()
2191 iterator compilerUsedEnd() { return CompilerUsed.end(); } in compilerUsedEnd()
2200 return CompilerUsed.count(GV); in compilerUsedCount()
2204 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); } in compilerUsedErase()
2208 return CompilerUsed.insert(GV).second; in compilerUsedInsert()
2215 setUsedInitializer(*CompilerUsedV, CompilerUsed); in syncVariablesAndSets()
H A DLowerTypeTests.cpp345 SmallVector<GlobalValue *, 4> Used, CompilerUsed; member
364 if (GlobalVariable *GV = collectUsedGlobalVariables(M, CompilerUsed, true)) in ScopedSaveAliaseesAndUsed()
381 appendToCompilerUsed(M, CompilerUsed); in ~ScopedSaveAliaseesAndUsed()
/llvm-project-15.0.7/llvm/lib/IR/
H A DModule.cpp799 const Module &M, SmallVectorImpl<GlobalValue *> &Vec, bool CompilerUsed) { in collectUsedGlobalVariables() argument
800 const char *Name = CompilerUsed ? "llvm.compiler.used" : "llvm.used"; in collectUsedGlobalVariables()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DModule.h969 bool CompilerUsed);