Home | History | Annotate | Download | only in MC

Lines Matching defs:ByteAlignment

144                         unsigned ByteAlignment) override;
150 /// @param ByteAlignment - The alignment of the common symbol in bytes.
152 unsigned ByteAlignment) override;
155 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
158 uint64_t Size, unsigned ByteAlignment = 0) override;
177 void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
181 void EmitCodeAlignment(unsigned ByteAlignment,
502 unsigned ByteAlignment) {
507 if (ByteAlignment != 0) {
509 OS << ',' << ByteAlignment;
511 OS << ',' << Log2_32(ByteAlignment);
530 case LCOMM::ByteAlignment:
543 uint64_t Size, unsigned ByteAlignment) {
556 if (ByteAlignment != 0)
557 OS << ',' << Log2_32(ByteAlignment);
566 uint64_t Size, unsigned ByteAlignment) {
576 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
749 void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
754 if (isPowerOf2_32(ByteAlignment)) {
772 OS << ByteAlignment;
774 OS << Log2_32(ByteAlignment);
797 OS << ' ' << ByteAlignment;
804 void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
807 EmitValueToAlignment(ByteAlignment, MAI->getTextAlignFillValue(),