Home
last modified time | relevance | path

Searched refs:AlignText (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/bolt/lib/Passes/
H A DLongJmp.cpp21 extern llvm::cl::opt<unsigned> AlignText;
352 DotAddress = alignTo(DotAddress, opts::AlignText); in tentativeLayoutRelocMode()
405 offsetToAlignment(DotAddress, llvm::Align(opts::AlignText)); in tentativeLayout()
413 DotAddress = alignTo(BC.LayoutStartAddress, opts::AlignText); in tentativeLayout()
/llvm-project-15.0.7/bolt/include/bolt/Utils/
H A DCommandLineOpts.h32 extern llvm::cl::opt<unsigned> AlignText;
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DMachORewriteInstance.cpp32 extern cl::opt<unsigned> AlignText;
609 if (!opts::AlignText.getNumOccurrences()) in adjustCommandLineOptions()
610 opts::AlignText = BC->PageAlign; in adjustCommandLineOptions()
H A DRewriteInstance.cpp1743 if (!opts::AlignText.getNumOccurrences()) in adjustCommandLineOptions()
1744 opts::AlignText = BC->PageAlign; in adjustCommandLineOptions()
1746 if (opts::AlignText < opts::AlignFunctions) in adjustCommandLineOptions()
1747 opts::AlignText = (unsigned)opts::AlignFunctions; in adjustCommandLineOptions()
3649 << Twine::utohexstr(opts::AlignText) << " alignment\n"; in mapCodeSections()
3653 << " using 0x" << Twine::utohexstr(opts::AlignText) in mapCodeSections()
/llvm-project-15.0.7/bolt/lib/Utils/
H A DCommandLineOpts.cpp43 cl::opt<unsigned> AlignText("align-text", variable
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryEmitter.cpp203 BC.getTextSection()->setAlignment(Align(opts::AlignText)); in emitAll()