Searched refs:Pow2Alignment (Results 1 – 2 of 2) sorted by relevance
703 int64_t Pow2Alignment = 0; in ParseDirectiveTBSS() local708 if (getParser().parseAbsoluteExpression(Pow2Alignment)) in ParseDirectiveTBSS()722 if (Pow2Alignment < 0) in ParseDirectiveTBSS()733 Sym, Size, 1 << Pow2Alignment); in ParseDirectiveTBSS()786 int64_t Pow2Alignment = 0; in ParseDirectiveZerofill() local791 if (getParser().parseAbsoluteExpression(Pow2Alignment)) in ParseDirectiveZerofill()807 if (Pow2Alignment < 0) in ParseDirectiveZerofill()820 Sym, Size, 1 << Pow2Alignment); in ParseDirectiveZerofill()
3453 int64_t Pow2Alignment = 0; in parseDirectiveComm() local3458 if (parseAbsoluteExpression(Pow2Alignment)) in parseDirectiveComm()3468 if (!isPowerOf2_64(Pow2Alignment)) in parseDirectiveComm()3470 Pow2Alignment = Log2_64(Pow2Alignment); in parseDirectiveComm()3488 if (Pow2Alignment < 0) in parseDirectiveComm()3497 getStreamer().EmitLocalCommonSymbol(Sym, Size, 1 << Pow2Alignment); in parseDirectiveComm()3501 getStreamer().EmitCommonSymbol(Sym, Size, 1 << Pow2Alignment); in parseDirectiveComm()