Home
last modified time | relevance | path

Searched refs:asmUsed (Results 1 – 2 of 2) sorted by relevance

/external/llvm/tools/lto/
DLTOCodeGenerator.cpp307 SmallPtrSet<GlobalValue*, 8> &asmUsed, in applyRestriction() argument
317 asmUsed.insert(&GV); in applyRestriction()
343 SmallPtrSet<GlobalValue*, 8> asmUsed; in applyScopeRestrictions() local
347 applyRestriction(*f, mustPreserveList, asmUsed, mangler); in applyScopeRestrictions()
350 applyRestriction(*v, mustPreserveList, asmUsed, mangler); in applyScopeRestrictions()
353 applyRestriction(*a, mustPreserveList, asmUsed, mangler); in applyScopeRestrictions()
357 findUsedValues(LLVMCompilerUsed, asmUsed); in applyScopeRestrictions()
361 if (!asmUsed.empty()) { in applyScopeRestrictions()
364 for (SmallPtrSet<GlobalValue*, 16>::const_iterator i = asmUsed.begin(), in applyScopeRestrictions()
365 e = asmUsed.end(); i !=e; ++i) { in applyScopeRestrictions()
DLTOCodeGenerator.h112 llvm::SmallPtrSet<llvm::GlobalValue*, 8> &asmUsed,