Searched refs:InLTO (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/Transforms/
H A DPGOInstrumentation.h41 PGOIndirectCallPromotion(bool IsInLTO = false) : InLTO(IsInLTO) {}
44 bool InLTO; member in class:llvm::PGOIndirectCallPromotion
H A DInstrumentation.h86 ModulePass *createPGOIndirectCallPromotionLegacyPass(bool InLTO = false);
/external/llvm/lib/Transforms/Instrumentation/
H A DIndirectCallPromotion.cpp99 PGOIndirectCallPromotionLegacyPass(bool InLTO = false)
100 : ModulePass(ID), InLTO(InLTO) {
114 bool InLTO; member in class:__anon14669::PGOIndirectCallPromotionLegacyPass
124 ModulePass *llvm::createPGOIndirectCallPromotionLegacyPass(bool InLTO) { argument
125 return new PGOIndirectCallPromotionLegacyPass(InLTO);
625 static bool promoteIndirectCalls(Module &M, bool InLTO) { argument
629 Symtab.create(M, InLTO);
652 // Command-line option has the priority for InLTO.
653 return promoteIndirectCalls(M, InLTO | ICPLTOMod
[all...]
/external/llvm/lib/ProfileData/
H A DInstrProf.cpp135 // (when \c InLTO is true): LTO's internalization privatizes many global linkage
143 std::string getPGOFuncName(const Function &F, bool InLTO, uint64_t Version) { argument
144 if (!InLTO) {
151 // In LTO mode (when InLTO is true), first check if there is a meta data.
224 void InstrProfSymtab::create(Module &M, bool InLTO) { argument
230 const std::string &PGOFuncName = getPGOFuncName(F, InLTO);
/external/llvm/include/llvm/ProfileData/
H A DInstrProf.h177 /// used the key for profile lookup. Variable \c InLTO indicates if this
179 std::string getPGOFuncName(const Function &F, bool InLTO = false,
446 /// passes such as indirect function call promotion. Variable \c InLTO
448 void create(Module &M, bool InLTO = false);

Completed in 453 milliseconds