Home
last modified time | relevance | path

Searched refs:ReorderFunctions (Results 1 – 7 of 7) sorted by relevance

/llvm-project/bolt/lib/Passes/
H A DReorderFunctions.cpp1 //===- bolt/Passes/ReorderFunctions.cpp - Function reordering pass --------===//
9 // This file implements ReorderFunctions class.
13 #include "bolt/Passes/ReorderFunctions.h"
34 extern cl::opt<bolt::ReorderFunctions::ReorderType> ReorderFunctions; variable
35 cl::opt<bolt::ReorderFunctions::ReorderType> ReorderFunctions(
38 cl::init(bolt::ReorderFunctions::RT_NONE),
39 cl::values(clEnumValN(bolt::ReorderFunctions::RT_NONE, "none",
41 clEnumValN(bolt::ReorderFunctions
[all...]
H A DCMakeLists.txt33 ReorderFunctions.cpp
H A DBinaryPasses.cpp17 #include "bolt/Passes/ReorderFunctions.h"
52 extern cl::opt<bolt::ReorderFunctions::ReorderType> ReorderFunctions;
1282 opts::ReorderFunctions == ReorderFunctions::RT_USER; in runOnFunctions()
/llvm-project/bolt/include/bolt/Passes/
H A DReorderFunctions.h20 class ReorderFunctions : public BinaryFunctionPass {
41 explicit ReorderFunctions(const cl::opt<bool> &PrintPass) in ReorderFunctions() function
/llvm-project/llvm/utils/gn/secondary/bolt/lib/Passes/
H A DBUILD.gn47 "ReorderFunctions.cpp",
/llvm-project/bolt/lib/Rewrite/
H A DRewriteInstance.cpp23 #include "bolt/Passes/ReorderFunctions.h"
85 extern cl::opt<bolt::ReorderFunctions::ReorderType> ReorderFunctions;
2056 opts::ReorderFunctions != ReorderFunctions::RT_NONE) { in adjustCommandLineOptions()
2070 (opts::ReorderFunctions != ReorderFunctions::RT_NONE &&
3019 if (opts::ReorderFunctions == ReorderFunctions::RT_USER) { in selectFunctionsToProcess()
3022 ReorderFunctions in selectFunctionsToProcess()
[all...]
H A DBinaryPassManager.cpp32 #include "bolt/Passes/ReorderFunctions.h"
461 std::make_unique<ReorderFunctions>(PrintReorderedFunctions)); in runAllPasses()
465 // after ReorderFunctions allows the finalized function order to be utilized in runAllPasses()