HomeSort by: relevance | last modified time | path
    Searched refs:PGOOptions (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/opt/
NewPMDriver.cpp 247 Optional<PGOOptions> P;
250 P = PGOOptions(ProfileFile, "", "", PGOOptions::IRInstr);
253 P = PGOOptions(ProfileFile, "", ProfileRemappingFile, PGOOptions::IRUse);
256 P = PGOOptions(ProfileFile, "", ProfileRemappingFile,
257 PGOOptions::SampleUse);
261 P = PGOOptions("", "", "", PGOOptions::NoAction, PGOOptions::NoCSAction
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTOBackend.cpp 212 Optional<PGOOptions> PGOOpt;
214 PGOOpt = PGOOptions(Conf.SampleProfile, "", Conf.ProfileRemapping,
215 PGOOptions::SampleUse, PGOOptions::NoCSAction, true);
217 PGOOpt = PGOOptions("", Conf.CSIRProfile, Conf.ProfileRemapping,
218 PGOOptions::IRUse, PGOOptions::CSIRInstr,
221 PGOOpt = PGOOptions(Conf.CSIRProfile, "", Conf.ProfileRemapping,
222 PGOOptions::IRUse, PGOOptions::CSIRUse
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
BackendUtil.cpp 1201 Optional<PGOOptions> PGOOpt;
1205 PGOOpt = PGOOptions(CodeGenOpts.InstrProfileOutput.empty()
1208 "", "", PGOOptions::IRInstr, PGOOptions::NoCSAction,
1212 auto CSAction = CodeGenOpts.hasProfileCSIRUse() ? PGOOptions::CSIRUse
1213 : PGOOptions::NoCSAction;
1214 PGOOpt = PGOOptions(CodeGenOpts.ProfileInstrumentUsePath, "",
1215 CodeGenOpts.ProfileRemappingFile, PGOOptions::IRUse,
1219 PGOOpt = PGOOptions(
1221 PGOOptions::SampleUse, PGOOptions::NoCSAction
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Passes/
PassBuilder.h 35 struct PGOOptions {
38 PGOOptions(std::string ProfileFile = "", std::string CSProfileGenFile = "",
142 Optional<PGOOptions> PGOOpt;
271 Optional<PGOOptions> PGOOpt = None,
  /src/external/apache2/llvm/dist/llvm/lib/Passes/
PassBuilder.cpp 446 Optional<PGOOptions> PGOOpt,
601 PGOOpt->Action != PGOOptions::SampleUse)
717 if (PGOOpt && PGOOpt->Action == PGOOptions::IRUse &&
776 PGOOpt->Action != PGOOptions::SampleUse)
857 (PGOOpt->Action == PGOOptions::IRUse ||
858 PGOOpt->Action == PGOOptions::SampleUse))
969 PGOOpt->Action == PGOOptions::SampleUse)
1042 bool HasSampleProfile = PGOOpt && (PGOOpt->Action == PGOOptions::SampleUse);
1168 (PGOOpt->Action == PGOOptions::IRInstr ||
1169 PGOOpt->Action == PGOOptions::IRUse))
    [all...]

Completed in 94 milliseconds