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.cpp832 int64_t Pow2Alignment = 0; in parseDirectiveTBSS() local
837 if (getParser().parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveTBSS()
851 if (Pow2Alignment < 0) in parseDirectiveTBSS()
862 Sym, Size, Align(1ULL << Pow2Alignment)); in parseDirectiveTBSS()
914 int64_t Pow2Alignment = 0; in parseDirectiveZerofill() local
919 if (getParser().parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveZerofill()
935 if (Pow2Alignment < 0) in parseDirectiveZerofill()
948 Sym, Size, Align(1ULL << Pow2Alignment), SectionLoc); in parseDirectiveZerofill()
H A DMasmParser.cpp4578 int64_t Pow2Alignment = 0; in parseDirectiveComm() local
4583 if (parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveComm()
4593 if (!isPowerOf2_64(Pow2Alignment)) in parseDirectiveComm()
4595 Pow2Alignment = Log2_64(Pow2Alignment); in parseDirectiveComm()
4611 if (Pow2Alignment < 0) in parseDirectiveComm()
4622 Align(1ULL << Pow2Alignment)); in parseDirectiveComm()
4626 getStreamer().emitCommonSymbol(Sym, Size, Align(1ULL << Pow2Alignment)); in parseDirectiveComm()
H A DAsmParser.cpp4990 int64_t Pow2Alignment = 0; in parseDirectiveComm() local
4995 if (parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveComm()
5005 if (!isPowerOf2_64(Pow2Alignment)) in parseDirectiveComm()
5007 Pow2Alignment = Log2_64(Pow2Alignment); in parseDirectiveComm()
5026 Align(1ULL << Pow2Alignment)); in parseDirectiveComm()
5030 getStreamer().emitCommonSymbol(Sym, Size, Align(1ULL << Pow2Alignment)); in parseDirectiveComm()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DGOFFObjectFile.cpp513 GOFF::ESDAlignment Pow2Alignment; in getSectionAlignment() local
514 ESDRecord::getAlignment(EsdRecord, Pow2Alignment); in getSectionAlignment()
515 return 1ULL << static_cast<uint64_t>(Pow2Alignment); in getSectionAlignment()