Home
last modified time | relevance | path

Searched refs:Pow2Alignment (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp845 int64_t Pow2Alignment = 0; in parseDirectiveTBSS() local
850 if (getParser().parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveTBSS()
864 if (Pow2Alignment < 0) in parseDirectiveTBSS()
875 Sym, Size, Align(1ULL << Pow2Alignment)); in parseDirectiveTBSS()
930 int64_t Pow2Alignment = 0; in parseDirectiveZerofill() local
935 if (getParser().parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveZerofill()
951 if (Pow2Alignment < 0) in parseDirectiveZerofill()
964 Sym, Size, Align(1ULL << Pow2Alignment), SectionLoc); in parseDirectiveZerofill()
H A DAsmParser.cpp5052 int64_t Pow2Alignment = 0; in parseDirectiveComm() local
5057 if (parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveComm()
5067 if (!isPowerOf2_64(Pow2Alignment)) in parseDirectiveComm()
5069 Pow2Alignment = Log2_64(Pow2Alignment); in parseDirectiveComm()
5088 Align(1ULL << Pow2Alignment)); in parseDirectiveComm()
5092 getStreamer().emitCommonSymbol(Sym, Size, Align(1ULL << Pow2Alignment)); in parseDirectiveComm()
H A DMasmParser.cpp6041 int64_t Pow2Alignment = 0; in parseDirectiveComm() local
6046 if (parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveComm()
6056 if (!isPowerOf2_64(Pow2Alignment)) in parseDirectiveComm()
6058 Pow2Alignment = Log2_64(Pow2Alignment); in parseDirectiveComm()
6074 if (Pow2Alignment < 0) in parseDirectiveComm()
6085 Align(1ULL << Pow2Alignment)); in parseDirectiveComm()
6089 getStreamer().emitCommonSymbol(Sym, Size, Align(1ULL << Pow2Alignment)); in parseDirectiveComm()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DGOFFObjectFile.cpp512 GOFF::ESDAlignment Pow2Alignment; in getSectionAlignment() local
513 ESDRecord::getAlignment(EsdRecord, Pow2Alignment); in getSectionAlignment()
514 return 1ULL << static_cast<uint64_t>(Pow2Alignment); in getSectionAlignment()