| /external/llvm/lib/MC/ |
| MCNullStreamer.cpp | 34 unsigned ByteAlignment) override {} 36 uint64_t Size = 0, unsigned ByteAlignment = 0) override {}
|
| MCAsmInfoCOFF.cpp | 24 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
|
| WinCOFFStreamer.cpp | 182 unsigned ByteAlignment) { 187 if (ByteAlignment > 32) 194 SD.setCommon(Size, ByteAlignment); 198 unsigned ByteAlignment) { 203 if (SectionData.getAlignment() < ByteAlignment) 204 SectionData.setAlignment(ByteAlignment); 211 if (ByteAlignment != 1) 212 new MCAlignFragment(ByteAlignment, /*_Value=*/0, /*_ValueSize=*/0, 213 ByteAlignment, &SectionData); 222 unsigned ByteAlignment) { [all...] |
| MCMachOStreamer.cpp | 73 unsigned ByteAlignment) override; 90 unsigned ByteAlignment) override; 92 uint64_t Size = 0, unsigned ByteAlignment = 0) override; 94 uint64_t Size, unsigned ByteAlignment = 0) override; 343 unsigned ByteAlignment) { 351 SD.setCommon(Size, ByteAlignment); 355 unsigned ByteAlignment) { 358 Symbol, Size, ByteAlignment); 362 uint64_t Size, unsigned ByteAlignment) { 377 if (ByteAlignment != 1 [all...] |
| MCELFStreamer.cpp | 231 unsigned ByteAlignment) { 250 struct LocalCommon L = {&SD, Size, ByteAlignment}; 253 SD.setCommon(Size, ByteAlignment); 265 unsigned ByteAlignment) { 271 EmitCommonSymbol(Symbol, Size, ByteAlignment); 282 void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment, 288 MCObjectStreamer::EmitValueToAlignment(ByteAlignment, Value, 518 unsigned ByteAlignment = i->ByteAlignment; 523 new MCAlignFragment(ByteAlignment, 0, 1, ByteAlignment, &SectData) [all...] |
| MCAsmStreamer.cpp | 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; [all...] |
| MCObjectStreamer.cpp | 304 void MCObjectStreamer::EmitValueToAlignment(unsigned ByteAlignment, 309 MaxBytesToEmit = ByteAlignment; 310 insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit)); 313 if (ByteAlignment > getCurrentSectionData()->getAlignment()) 314 getCurrentSectionData()->setAlignment(ByteAlignment); 317 void MCObjectStreamer::EmitCodeAlignment(unsigned ByteAlignment, 319 EmitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit);
|
| MCStreamer.cpp | 667 unsigned ByteAlignment) {} 669 uint64_t Size, unsigned ByteAlignment) {} 679 void MCStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, 682 void MCStreamer::EmitCodeAlignment(unsigned ByteAlignment,
|
| /external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| HexagonMCAsmInfo.cpp | 29 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
|
| /external/llvm/lib/Object/ |
| RecordStreamer.h | 37 unsigned ByteAlignment) override; 39 unsigned ByteAlignment) override;
|
| RecordStreamer.cpp | 93 uint64_t Size, unsigned ByteAlignment) { 98 unsigned ByteAlignment) {
|
| /external/llvm/include/llvm/MC/ |
| MCWinCOFFStreamer.h | 50 unsigned ByteAlignment) override; 52 unsigned ByteAlignment) override; 54 unsigned ByteAlignment) override; 56 unsigned ByteAlignment) override;
|
| MCELFStreamer.h | 57 unsigned ByteAlignment) override; 66 unsigned ByteAlignment) override; 69 uint64_t Size = 0, unsigned ByteAlignment = 0) override; 71 uint64_t Size, unsigned ByteAlignment = 0) override; 100 unsigned ByteAlignment;
|
| MCObjectStreamer.h | 108 void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 111 void EmitCodeAlignment(unsigned ByteAlignment,
|
| MCStreamer.h | 496 /// @param ByteAlignment - The alignment of the symbol if 499 unsigned ByteAlignment) = 0; 505 /// @param ByteAlignment - The alignment of the common symbol in bytes. 507 unsigned ByteAlignment); 514 /// @param ByteAlignment - The alignment of the zerofill symbol if 518 unsigned ByteAlignment = 0) = 0; 525 /// @param ByteAlignment - The alignment of the thread local common symbol 528 uint64_t Size, unsigned ByteAlignment = 0); 605 /// the byte alignment @p ByteAlignment is reached. 613 /// @param ByteAlignment - The alignment to reach. This must be a power o [all...] |
| MCAsmInfo.h | 53 enum LCOMMType { NoAlignment, ByteAlignment, Log2Alignment };
|
| /external/chromium_org/base/memory/ |
| aligned_memory.h | 51 template <size_t Size, size_t ByteAlignment>
|
| /external/llvm/lib/MC/MCParser/ |
| AsmParser.cpp | [all...] |