Lines Matching +full:align +full:- +full:end
1 //===- MCSection.h - Machine Code Sections ----------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
68 F = F->Next;
83 MCSymbol *End = nullptr;
85 Align Alignment;
89 /// Keeping track of bundle-locked state.
137 return const_cast<MCSection *>(this)->getBeginSymbol();
146 Align getAlign() const { return Alignment; }
147 void setAlignment(Align Value) { Alignment = Value; }
150 void ensureMinAlignment(Align MinAlignment) {
182 iterator begin() const { return iterator(CurFragList->Head); }
183 iterator end() const { return {}; }
184 bool empty() const { return !CurFragList->Head; }
192 /// Return true if a .align directive should use "optimized nops" to fill
203 } // end namespace llvm