Searched defs:ByteAlignment (Results 1 - 9 of 9) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCELFStreamer.h57 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; member in struct:llvm::MCELFStreamer::LocalCommon
H A DMCAsmInfo.h53 enum LCOMMType { NoAlignment, ByteAlignment, Log2Alignment }; enumerator in enum:llvm::LCOMM::LCOMMType
/external/llvm/lib/Object/
H A DRecordStreamer.cpp93 uint64_t Size, unsigned ByteAlignment) {
98 unsigned ByteAlignment) {
92 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
97 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
/external/llvm/lib/MC/
H A DMCMachOStreamer.cpp73 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 !
342 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
354 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
361 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
392 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
H A DWinCOFFStreamer.cpp182 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) {
181 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
197 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
220 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
226 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
H A DMCELFStreamer.cpp231 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, argument
288 MCObjectStreamer::EmitValueToAlignment(ByteAlignment, Value,
518 unsigned ByteAlignment = i->ByteAlignment; local
523 new MCAlignFragment(ByteAlignment,
230 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
264 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
579 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
584 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
H A DMCObjectStreamer.cpp304 void MCObjectStreamer::EmitValueToAlignment(unsigned ByteAlignment, argument
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, argument
319 EmitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit);
H A DMCAsmStreamer.cpp144 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; local
501 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
542 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
565 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
749 EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, unsigned ValueSize, unsigned MaxBytesToEmit) argument
772 OS << ByteAlignment; local
797 OS << ' ' << ByteAlignment; local
804 EmitCodeAlignment(unsigned ByteAlignment, unsigned MaxBytesToEmit) argument
[all...]
H A DMCStreamer.cpp667 unsigned ByteAlignment) {}
669 uint64_t Size, unsigned ByteAlignment) {}
679 void MCStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, argument
682 void MCStreamer::EmitCodeAlignment(unsigned ByteAlignment, argument
666 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
668 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument

Completed in 681 milliseconds