Lines Matching defs:PLT
1 //===- bolt/Passes/PLTCall.h - PLT call optimization ----------------------===//
9 // This file implements the PLTCall class, which replaces calls to PLT entries
26 PLT("plt",
27 cl::desc("optimize PLT calls (requires linking with -znow)"),
31 "do not optimize PLT calls"),
34 "optimize executed (hot) PLT calls"),
37 "optimize all PLT calls")),
47 if (opts::PLT == OT_NONE)
56 if (opts::PLT == OT_HOT &&
61 if (opts::PLT == OT_HOT && !BB.getKnownExecutionCount())
76 assert(!NewCode.empty() && "PLT Call replacement must be non-empty");
87 << " PLT calls in the binary were optimized.\n";