HomeSort by relevance Sort by last modified time
    Searched refs:ByteAlignment (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/MC/
MCPureStreamer.cpp 43 uint64_t Size = 0, unsigned ByteAlignment = 0);
45 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
48 virtual void EmitCodeAlignment(unsigned ByteAlignment,
62 uint64_t Size, unsigned ByteAlignment = 0) {
69 unsigned ByteAlignment) {
91 unsigned ByteAlignment) {
152 uint64_t Size, unsigned ByteAlignment) {
162 void MCPureStreamer::EmitValueToAlignment(unsigned ByteAlignment,
168 MaxBytesToEmit = ByteAlignment;
169 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit
    [all...]
MCNullStreamer.cpp 66 unsigned ByteAlignment) {}
68 unsigned ByteAlignment) {}
70 uint64_t Size = 0, unsigned ByteAlignment = 0) {}
72 uint64_t Size, unsigned ByteAlignment) {}
80 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
84 virtual void EmitCodeAlignment(unsigned ByteAlignment,
WinCOFFStreamer.cpp 48 unsigned ByteAlignment, bool External);
67 unsigned ByteAlignment);
69 unsigned ByteAlignment);
71 uint64_t Size,unsigned ByteAlignment);
73 uint64_t Size, unsigned ByteAlignment);
141 unsigned ByteAlignment, bool External) {
162 if (SectionData.getAlignment() < ByteAlignment)
163 SectionData.setAlignment(ByteAlignment);
169 if (ByteAlignment != 1)
170 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectionData)
    [all...]
MCAsmInfoCOFF.cpp 25 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
MCMachOStreamer.cpp 57 unsigned ByteAlignment);
74 unsigned ByteAlignment);
76 uint64_t Size = 0, unsigned ByteAlignment = 0);
78 uint64_t Size, unsigned ByteAlignment = 0);
323 unsigned ByteAlignment) {
329 SD.setCommon(Size, ByteAlignment);
333 unsigned ByteAlignment) {
338 Symbol, Size, ByteAlignment);
342 uint64_t Size, unsigned ByteAlignment) {
356 if (ByteAlignment != 1
    [all...]
MCELFStreamer.cpp 228 unsigned ByteAlignment) {
246 struct LocalCommon L = {&SD, Size, ByteAlignment};
249 SD.setCommon(Size, ByteAlignment);
261 unsigned ByteAlignment) {
267 EmitCommonSymbol(Symbol, Size, ByteAlignment);
278 void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment,
284 MCObjectStreamer::EmitValueToAlignment(ByteAlignment, Value,
483 unsigned ByteAlignment = i->ByteAlignment;
488 new MCAlignFragment(ByteAlignment, 0, 1, ByteAlignment, &SectData)
    [all...]
MCObjectStreamer.cpp 281 void MCObjectStreamer::EmitValueToAlignment(unsigned ByteAlignment,
286 MaxBytesToEmit = ByteAlignment;
287 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit,
291 if (ByteAlignment > getCurrentSectionData()->getAlignment())
292 getCurrentSectionData()->setAlignment(ByteAlignment);
295 void MCObjectStreamer::EmitCodeAlignment(unsigned ByteAlignment,
297 EmitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit);
MCAsmStreamer.cpp 171 unsigned ByteAlignment);
177 /// @param ByteAlignment - The alignment of the common symbol in bytes.
179 unsigned ByteAlignment);
182 uint64_t Size = 0, unsigned ByteAlignment = 0);
185 uint64_t Size, unsigned ByteAlignment = 0);
206 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
210 virtual void EmitCodeAlignment(unsigned ByteAlignment,
540 unsigned ByteAlignment) {
542 if (ByteAlignment != 0) {
544 OS << ',' << ByteAlignment;
    [all...]
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.cpp 27 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /external/llvm/include/llvm/MC/
MCELFStreamer.h 62 unsigned ByteAlignment);
73 unsigned ByteAlignment);
76 uint64_t Size = 0, unsigned ByteAlignment = 0);
78 uint64_t Size, unsigned ByteAlignment = 0);
108 unsigned ByteAlignment;
MCObjectStreamer.h 90 virtual void EmitValueToAlignment(unsigned ByteAlignment,
94 virtual void EmitCodeAlignment(unsigned ByteAlignment,
MCStreamer.h 359 /// @param ByteAlignment - The alignment of the symbol if
362 unsigned ByteAlignment) = 0;
368 /// @param ByteAlignment - The alignment of the common symbol in bytes.
370 unsigned ByteAlignment) = 0;
377 /// @param ByteAlignment - The alignment of the zerofill symbol if
380 uint64_t Size = 0,unsigned ByteAlignment = 0) = 0;
387 /// @param ByteAlignment - The alignment of the thread local common symbol
390 uint64_t Size, unsigned ByteAlignment = 0) = 0;
472 /// the byte alignment @p ByteAlignment is reached.
480 /// @param ByteAlignment - The alignment to reach. This must be a power o
    [all...]
MCAsmInfo.h 36 enum LCOMMType { NoAlignment, ByteAlignment, Log2Alignment };
  /external/llvm/tools/lto/
LTOModule.cpp 761 uint64_t Size , unsigned ByteAlignment) {
765 unsigned ByteAlignment) {
787 unsigned ByteAlignment) {}
789 uint64_t Size, unsigned ByteAlignment) {}
795 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
798 virtual void EmitCodeAlignment(unsigned ByteAlignment,
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 2522 milliseconds