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

/external/llvm/lib/Target/Hexagon/
H A DHexagonTargetStreamer.h19 virtual void EmitCodeAlignment(unsigned ByteAlignment, argument
23 unsigned ByteAlignment,
22 EmitCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment, unsigned AccessGranularity) argument
/external/llvm/lib/Object/
H A DRecordStreamer.cpp93 uint64_t Size, unsigned ByteAlignment) {
98 unsigned ByteAlignment) {
92 EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
97 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCELFStreamer.cpp92 unsigned ByteAlignment,
117 MCELFStreamer::EmitCommonSymbol(Symbol, Size, ByteAlignment);
120 if (ELFSymbol->declareCommon(Size, ByteAlignment))
136 MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment,
142 HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, AccessSize);
90 HexagonMCEmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment, unsigned AccessSize) argument
135 HexagonMCEmitLocalCommonSymbol( MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment, unsigned AccessSize) argument
/external/llvm/lib/MC/
H A DWinCOFFStreamer.cpp211 unsigned ByteAlignment) {
218 if (ByteAlignment > 32)
222 Size = std::max(Size, static_cast<uint64_t>(ByteAlignment));
227 Symbol->setCommon(Size, ByteAlignment);
229 if (!T.isKnownWindowsMSVCEnvironment() && ByteAlignment > 1) {
235 << Log2_32_Ceil(ByteAlignment);
245 unsigned ByteAlignment) {
250 if (Section->getAlignment() < ByteAlignment)
251 Section->setAlignment(ByteAlignment);
256 if (ByteAlignment !
210 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
244 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
265 EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
270 EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
H A DMCMachOStreamer.cpp83 unsigned ByteAlignment) override;
97 unsigned ByteAlignment) override;
99 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
101 unsigned ByteAlignment = 0) override;
382 unsigned ByteAlignment) {
388 Symbol->setCommon(Size, ByteAlignment);
392 unsigned ByteAlignment) {
395 Symbol, Size, ByteAlignment);
399 uint64_t Size, unsigned ByteAlignment) {
414 if (ByteAlignment !
381 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
391 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
398 EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
427 EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
H A DMCAsmStreamer.cpp149 unsigned ByteAlignment) override;
155 /// @param ByteAlignment - The alignment of the common symbol in bytes.
157 unsigned ByteAlignment) override;
160 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
163 unsigned ByteAlignment = 0) override;
182 void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
186 void EmitCodeAlignment(unsigned ByteAlignment,
544 unsigned ByteAlignment) {
549 if (ByteAlignment != 0) {
551 OS << ',' << ByteAlignment; local
543 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
584 EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
609 EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
H A DMCELFStreamer.cpp292 unsigned ByteAlignment) {
309 EmitValueToAlignment(ByteAlignment, 0, 1, 0);
314 if (ByteAlignment > Section.getAlignment())
315 Section.setAlignment(ByteAlignment);
319 if(Symbol->declareCommon(Size, ByteAlignment))
333 unsigned ByteAlignment) {
339 EmitCommonSymbol(Symbol, Size, ByteAlignment);
350 void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment, argument
356 MCObjectStreamer::EmitValueToAlignment(ByteAlignment, Value,
667 uint64_t Size, unsigned ByteAlignment) {
291 EmitCommonSymbol(MCSymbol *S, uint64_t Size, unsigned ByteAlignment) argument
332 EmitLocalCommonSymbol(MCSymbol *S, uint64_t Size, unsigned ByteAlignment) argument
666 EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
671 EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
H A DMCObjectStreamer.cpp374 void MCObjectStreamer::EmitValueToAlignment(unsigned ByteAlignment, argument
379 MaxBytesToEmit = ByteAlignment;
380 insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit));
384 if (ByteAlignment > CurSec->getAlignment())
385 CurSec->setAlignment(ByteAlignment);
388 void MCObjectStreamer::EmitCodeAlignment(unsigned ByteAlignment, argument
390 EmitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit);
H A DMCStreamer.cpp684 unsigned ByteAlignment) {}
686 uint64_t Size, unsigned ByteAlignment) {}
695 void MCStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, argument
698 void MCStreamer::EmitCodeAlignment(unsigned ByteAlignment, argument
683 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
685 EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
/external/llvm/include/llvm/MC/
H A DMCAsmInfo.h53 enum LCOMMType { NoAlignment, ByteAlignment, Log2Alignment }; enumerator in enum:llvm::LCOMM::LCOMMType

Completed in 410 milliseconds