/external/llvm/lib/MC/ |
WinCOFFStreamer.cpp | 48 unsigned ByteAlignment, bool External); 65 unsigned ByteAlignment); 68 unsigned Size,unsigned ByteAlignment); 70 uint64_t Size, unsigned ByteAlignment); 72 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, 74 virtual void EmitCodeAlignment(unsigned ByteAlignment, 134 unsigned ByteAlignment, bool External) { 155 if (SectionData.getAlignment() < ByteAlignment) 156 SectionData.setAlignment(ByteAlignment); 162 if (ByteAlignment != 1 [all...] |
MCMachOStreamer.cpp | 54 unsigned ByteAlignment); 74 unsigned Size = 0, unsigned ByteAlignment = 0); 76 uint64_t Size, unsigned ByteAlignment = 0); 78 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 81 virtual void EmitCodeAlignment(unsigned ByteAlignment, 280 unsigned ByteAlignment) { 286 SD.setCommon(Size, ByteAlignment); 290 unsigned Size, unsigned ByteAlignment) { 304 if (ByteAlignment != 1) 305 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectData) [all...] |
MCPureStreamer.cpp | 42 unsigned Size = 0, unsigned ByteAlignment = 0); 44 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 47 virtual void EmitCodeAlignment(unsigned ByteAlignment, 61 uint64_t Size, unsigned ByteAlignment = 0) { 68 unsigned ByteAlignment) { 146 unsigned Size, unsigned ByteAlignment) { 156 void MCPureStreamer::EmitValueToAlignment(unsigned ByteAlignment, 162 MaxBytesToEmit = ByteAlignment; 163 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit, 167 if (ByteAlignment > getCurrentSectionData()->getAlignment() [all...] |
MCNullStreamer.cpp | 61 unsigned ByteAlignment) {} 65 unsigned Size = 0, unsigned ByteAlignment = 0) {} 67 uint64_t Size, unsigned ByteAlignment) {} 75 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 79 virtual void EmitCodeAlignment(unsigned ByteAlignment,
|
MCELFStreamer.cpp | 195 unsigned ByteAlignment) { 213 struct LocalCommon L = {&SD, Size, ByteAlignment}; 216 SD.setCommon(Size, ByteAlignment); 228 // FIXME: ByteAlignment is not needed here, but is required. 238 void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment, 244 MaxBytesToEmit = ByteAlignment; 245 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit, 249 if (ByteAlignment > getCurrentSectionData()->getAlignment()) 250 getCurrentSectionData()->setAlignment(ByteAlignment); 253 void MCELFStreamer::EmitCodeAlignment(unsigned ByteAlignment, [all...] |
MCELFStreamer.h | 55 unsigned ByteAlignment); 80 unsigned Size = 0, unsigned ByteAlignment = 0) { 84 uint64_t Size, unsigned ByteAlignment = 0) { 88 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 91 virtual void EmitCodeAlignment(unsigned ByteAlignment, 107 unsigned ByteAlignment;
|
MCLoggingStreamer.cpp | 131 unsigned ByteAlignment) { 133 return Child->EmitCommonSymbol(Symbol, Size, ByteAlignment); 142 unsigned Size = 0, unsigned ByteAlignment = 0) { 144 return Child->EmitZerofill(Section, Symbol, Size, ByteAlignment); 148 uint64_t Size, unsigned ByteAlignment = 0) { 150 return Child->EmitTBSSSymbol(Section, Symbol, Size, ByteAlignment); 185 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 189 return Child->EmitValueToAlignment(ByteAlignment, Value, 193 virtual void EmitCodeAlignment(unsigned ByteAlignment, 196 return Child->EmitCodeAlignment(ByteAlignment, MaxBytesToEmit) [all...] |
MCAsmStreamer.cpp | 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) { [all...] |
/external/llvm/lib/Target/PTX/ |
PTXMCAsmStreamer.cpp | 129 unsigned ByteAlignment); 138 unsigned Size = 0, unsigned ByteAlignment = 0); 141 uint64_t Size, unsigned ByteAlignment = 0); 155 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 159 virtual void EmitCodeAlignment(unsigned ByteAlignment, 284 unsigned ByteAlignment) {} 289 unsigned Size, unsigned ByteAlignment) {} 293 uint64_t Size, unsigned ByteAlignment) {} 424 void PTXMCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, 430 if (isPowerOf2_32(ByteAlignment)) { [all...] |
/external/llvm/include/llvm/MC/ |
MCStreamer.h | 293 /// @param ByteAlignment - The alignment of the symbol if 296 unsigned ByteAlignment) = 0; 309 /// @param ByteAlignment - The alignment of the zerofill symbol if 312 unsigned Size = 0,unsigned ByteAlignment = 0) = 0; 319 /// @param ByteAlignment - The alignment of the thread local common symbol 322 uint64_t Size, unsigned ByteAlignment = 0) = 0; 397 /// the byte alignment @p ByteAlignment is reached. 405 /// @param ByteAlignment - The alignment to reach. This must be a power of 413 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 417 /// EmitCodeAlignment - Emit nops until the byte alignment @p ByteAlignment [all...] |
/external/llvm/tools/lto/ |
LTOModule.cpp | 576 unsigned Size , unsigned ByteAlignment) { 582 unsigned ByteAlignment) { 588 uint64_t Size, unsigned ByteAlignment) {} 594 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, 597 virtual void EmitCodeAlignment(unsigned ByteAlignment,
|