Lines Matching defs:ByteAlignment
156 unsigned ByteAlignment);
165 unsigned Size = 0, unsigned ByteAlignment = 0);
168 uint64_t Size, unsigned ByteAlignment = 0);
187 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
191 virtual void EmitCodeAlignment(unsigned ByteAlignment,
472 unsigned ByteAlignment) {
474 if (ByteAlignment != 0) {
476 OS << ',' << ByteAlignment;
478 OS << ',' << Log2_32(ByteAlignment);
494 unsigned Size, unsigned ByteAlignment) {
504 if (ByteAlignment != 0)
505 OS << ',' << Log2_32(ByteAlignment);
514 uint64_t Size, unsigned ByteAlignment) {
522 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
672 void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
677 if (isPowerOf2_32(ByteAlignment)) {
688 OS << ByteAlignment;
690 OS << Log2_32(ByteAlignment);
713 OS << ' ' << ByteAlignment;
720 void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
723 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),