Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/lib/Transforms/Utils/
DModuleUtils.cpp69 bool CompilerUsed) { in collectUsedGlobalVariables() argument
70 const char *Name = CompilerUsed ? "llvm.compiler.used" : "llvm.used"; in collectUsedGlobalVariables()
/freebsd-9-stable/contrib/llvm/include/llvm/Transforms/Utils/
DModuleUtils.h38 bool CompilerUsed);
/freebsd-9-stable/contrib/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp2885 SmallPtrSet<GlobalValue *, 8> CompilerUsed; member in __anon634280090311::LLVMUsed
2892 CompilerUsedV = collectUsedGlobalVariables(M, CompilerUsed, true); in LLVMUsed()
2897 iterator compilerUsedBegin() { return CompilerUsed.begin(); } in compilerUsedBegin()
2898 iterator compilerUsedEnd() { return CompilerUsed.end(); } in compilerUsedEnd()
2901 return CompilerUsed.count(GV); in compilerUsedCount()
2904 bool compilerUsedErase(GlobalValue *GV) { return CompilerUsed.erase(GV); } in compilerUsedErase()
2906 bool compilerUsedInsert(GlobalValue *GV) { return CompilerUsed.insert(GV); } in compilerUsedInsert()
2912 setUsedInitializer(*CompilerUsedV, CompilerUsed); in syncVariablesAndSets()