Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp226 bool CompilerUsed) { in cloneUsedGlobalVariables() argument
229 collectUsedGlobalVariables(SrcM, Used, CompilerUsed); in cloneUsedGlobalVariables()
237 if (CompilerUsed) in cloneUsedGlobalVariables()
H A DGlobalOpt.cpp2298 SmallPtrSet<GlobalValue *, 4> CompilerUsed; member in __anonee3d851d0411::LLVMUsed
2309 CompilerUsed = {Vec.begin(), Vec.end()}; in LLVMUsed()
2322 iterator compilerUsedBegin() { return CompilerUsed.begin(); } in compilerUsedBegin()
2323 iterator compilerUsedEnd() { return CompilerUsed.end(); } in compilerUsedEnd()
2332 return CompilerUsed.count(GV); in compilerUsedCount()
2336 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); } in compilerUsedErase()
2340 return CompilerUsed.insert(GV).second; in compilerUsedInsert()
2347 setUsedInitializer(*CompilerUsedV, CompilerUsed); in syncVariablesAndSets()
H A DLowerTypeTests.cpp344 SmallVector<GlobalValue *, 4> Used, CompilerUsed; member
362 if (GlobalVariable *GV = collectUsedGlobalVariables(M, CompilerUsed, true)) in ScopedSaveAliaseesAndUsed()
376 appendToCompilerUsed(M, CompilerUsed); in ~ScopedSaveAliaseesAndUsed()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp779 const Module &M, SmallVectorImpl<GlobalValue *> &Vec, bool CompilerUsed) { in collectUsedGlobalVariables() argument
780 const char *Name = CompilerUsed ? "llvm.compiler.used" : "llvm.used"; in collectUsedGlobalVariables()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h944 bool CompilerUsed);