| /NextBSD/contrib/llvm/lib/MC/ |
| HD | WinCOFFStreamer.cpp | 204 unsigned ByteAlignment) { in EmitCommonSymbol() argument 211 if (ByteAlignment > 32) in EmitCommonSymbol() 215 Size = std::max(Size, static_cast<uint64_t>(ByteAlignment)); in EmitCommonSymbol() 222 Symbol->setCommon(Size, ByteAlignment); in EmitCommonSymbol() 224 if (!T.isKnownWindowsMSVCEnvironment() && ByteAlignment > 1) { in EmitCommonSymbol() 230 << Log2_32_Ceil(ByteAlignment); in EmitCommonSymbol() 241 unsigned ByteAlignment) { in EmitLocalCommonSymbol() argument 246 if (Section->getAlignment() < ByteAlignment) in EmitLocalCommonSymbol() 247 Section->setAlignment(ByteAlignment); in EmitLocalCommonSymbol() 254 if (ByteAlignment != 1) in EmitLocalCommonSymbol() [all …]
|
| HD | MCMachOStreamer.cpp | 82 unsigned ByteAlignment) override; 96 unsigned ByteAlignment) override; 98 uint64_t Size = 0, unsigned ByteAlignment = 0) override; 100 unsigned ByteAlignment = 0) override; 383 unsigned ByteAlignment) { in EmitCommonSymbol() argument 391 Symbol->setCommon(Size, ByteAlignment); in EmitCommonSymbol() 395 unsigned ByteAlignment) { in EmitLocalCommonSymbol() argument 398 Symbol, Size, ByteAlignment); in EmitLocalCommonSymbol() 402 uint64_t Size, unsigned ByteAlignment) { in EmitZerofill() argument 417 if (ByteAlignment != 1) in EmitZerofill() [all …]
|
| HD | MCELFStreamer.cpp | 303 unsigned ByteAlignment) { in EmitCommonSymbol() argument 320 struct LocalCommon L = {Symbol, Size, ByteAlignment}; in EmitCommonSymbol() 323 if(Symbol->declareCommon(Size, ByteAlignment)) in EmitCommonSymbol() 337 unsigned ByteAlignment) { in EmitLocalCommonSymbol() argument 343 EmitCommonSymbol(Symbol, Size, ByteAlignment); in EmitLocalCommonSymbol() 354 void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment, in EmitValueToAlignment() argument 360 MCObjectStreamer::EmitValueToAlignment(ByteAlignment, Value, in EmitValueToAlignment() 634 unsigned ByteAlignment = i->ByteAlignment; in Flush() local 638 new MCAlignFragment(ByteAlignment, 0, 1, ByteAlignment, &Section); in Flush() 644 if (ByteAlignment > Section.getAlignment()) in Flush() [all …]
|
| HD | MCAsmStreamer.cpp | 144 unsigned ByteAlignment) override; 152 unsigned ByteAlignment) override; 155 uint64_t Size = 0, unsigned ByteAlignment = 0) override; 158 unsigned ByteAlignment = 0) override; 177 void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 181 void EmitCodeAlignment(unsigned ByteAlignment, 533 unsigned ByteAlignment) { in EmitCommonSymbol() argument 541 if (ByteAlignment != 0) { in EmitCommonSymbol() 543 OS << ',' << ByteAlignment; in EmitCommonSymbol() 545 OS << ',' << Log2_32(ByteAlignment); in EmitCommonSymbol() [all …]
|
| HD | MCObjectStreamer.cpp | 371 void MCObjectStreamer::EmitValueToAlignment(unsigned ByteAlignment, in EmitValueToAlignment() argument 376 MaxBytesToEmit = ByteAlignment; in EmitValueToAlignment() 377 insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit)); in EmitValueToAlignment() 381 if (ByteAlignment > CurSec->getAlignment()) in EmitValueToAlignment() 382 CurSec->setAlignment(ByteAlignment); in EmitValueToAlignment() 385 void MCObjectStreamer::EmitCodeAlignment(unsigned ByteAlignment, in EmitCodeAlignment() argument 387 EmitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit); in EmitCodeAlignment()
|
| HD | MCNullStreamer.cpp | 33 unsigned ByteAlignment) override {} in EmitCommonSymbol() argument 35 uint64_t Size = 0, unsigned ByteAlignment = 0) override {} in EmitZerofill() argument
|
| HD | MCAsmInfoCOFF.cpp | 24 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in MCAsmInfoCOFF()
|
| HD | MCStreamer.cpp | 676 unsigned ByteAlignment) {} in EmitLocalCommonSymbol() argument 678 uint64_t Size, unsigned ByteAlignment) {} in EmitTBSSSymbol() argument 688 void MCStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, in EmitValueToAlignment() argument 691 void MCStreamer::EmitCodeAlignment(unsigned ByteAlignment, in EmitCodeAlignment() argument
|
| /NextBSD/sys/contrib/dev/acpica/components/executer/ |
| HD | exprep.c | 241 UINT32 ByteAlignment; in AcpiExDecodeFieldAccess() local 255 ByteAlignment = in AcpiExDecodeFieldAccess() 259 BitLength = ByteAlignment * 8; in AcpiExDecodeFieldAccess() 262 ByteAlignment = 1; in AcpiExDecodeFieldAccess() 269 ByteAlignment = 1; in AcpiExDecodeFieldAccess() 275 ByteAlignment = 2; in AcpiExDecodeFieldAccess() 281 ByteAlignment = 4; in AcpiExDecodeFieldAccess() 287 ByteAlignment = 8; in AcpiExDecodeFieldAccess() 308 ByteAlignment = 1; in AcpiExDecodeFieldAccess() 311 *ReturnByteAlignment = ByteAlignment; in AcpiExDecodeFieldAccess() [all …]
|
| /NextBSD/contrib/llvm/include/llvm/MC/ |
| HD | MCELFStreamer.h | 56 unsigned ByteAlignment) override; 65 unsigned ByteAlignment) override; 68 uint64_t Size = 0, unsigned ByteAlignment = 0) override; 70 unsigned ByteAlignment = 0) override; 103 unsigned ByteAlignment; member
|
| HD | MCWinCOFFStreamer.h | 57 unsigned ByteAlignment) override; 59 unsigned ByteAlignment) override; 61 unsigned ByteAlignment) override; 63 unsigned ByteAlignment) override;
|
| HD | MCStreamer.h | 474 unsigned ByteAlignment) = 0; 482 unsigned ByteAlignment); 492 uint64_t Size = 0, unsigned ByteAlignment = 0) = 0; 502 uint64_t Size, unsigned ByteAlignment = 0); 590 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 604 virtual void EmitCodeAlignment(unsigned ByteAlignment,
|
| HD | MCObjectStreamer.h | 110 void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 113 void EmitCodeAlignment(unsigned ByteAlignment,
|
| HD | MCAsmInfo.h | 53 enum LCOMMType { NoAlignment, ByteAlignment, Log2Alignment }; enumerator
|
| /NextBSD/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| HD | HexagonMCELFStreamer.cpp | 94 unsigned ByteAlignment, in HexagonMCEmitCommonSymbol() argument 119 MCELFStreamer::EmitCommonSymbol(Symbol, Size, ByteAlignment); in HexagonMCEmitCommonSymbol() 122 if (ELFSymbol->declareCommon(Size, ByteAlignment)) in HexagonMCEmitCommonSymbol() 138 MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment, in HexagonMCEmitLocalCommonSymbol() argument 144 HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, AccessSize); in HexagonMCEmitLocalCommonSymbol()
|
| HD | HexagonMCTargetDesc.cpp | 122 unsigned ByteAlignment, in EmitCommonSymbolSorted() argument 126 HexagonELFStreamer.HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, in EmitCommonSymbolSorted() 130 unsigned ByteAlignment, in EmitLocalCommonSymbolSorted() argument 135 Symbol, Size, ByteAlignment, AccessSize); in EmitLocalCommonSymbolSorted()
|
| HD | HexagonMCELFStreamer.h | 34 unsigned ByteAlignment, 37 unsigned ByteAlignment, unsigned AccessSize);
|
| HD | HexagonMCAsmInfo.cpp | 28 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in HexagonMCAsmInfo()
|
| /NextBSD/contrib/llvm/lib/Target/Hexagon/ |
| HD | HexagonTargetStreamer.h | 19 virtual void EmitCodeAlignment(unsigned ByteAlignment, 23 unsigned ByteAlignment, in EmitCommonSymbolSorted() argument
|
| /NextBSD/contrib/llvm/lib/Object/ |
| HD | RecordStreamer.h | 37 unsigned ByteAlignment) override; 39 unsigned ByteAlignment) override;
|
| HD | RecordStreamer.cpp | 93 uint64_t Size, unsigned ByteAlignment) { in EmitZerofill() argument 98 unsigned ByteAlignment) { in EmitCommonSymbol() argument
|
| /NextBSD/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| HD | PPCMCAsmInfo.cpp | 79 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in PPCELFMCAsmInfo()
|
| /NextBSD/contrib/llvm/lib/MC/MCParser/ |
| HD | AsmParser.cpp | 3728 (IsLocal && LCOMM == LCOMM::ByteAlignment)) { in parseDirectiveComm()
|