| /freebsd-13.1/sys/contrib/dev/acpica/components/executer/ |
| H A D | exprep.c | 357 UINT32 ByteAlignment; in AcpiExDecodeFieldAccess() local 371 ByteAlignment = in AcpiExDecodeFieldAccess() 375 BitLength = ByteAlignment * 8; in AcpiExDecodeFieldAccess() 378 ByteAlignment = 1; in AcpiExDecodeFieldAccess() 385 ByteAlignment = 1; in AcpiExDecodeFieldAccess() 391 ByteAlignment = 2; in AcpiExDecodeFieldAccess() 397 ByteAlignment = 4; in AcpiExDecodeFieldAccess() 403 ByteAlignment = 8; in AcpiExDecodeFieldAccess() 425 ByteAlignment = 1; in AcpiExDecodeFieldAccess() 428 *ReturnByteAlignment = ByteAlignment; in AcpiExDecodeFieldAccess() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCXCOFFStreamer.cpp | 76 unsigned ByteAlignment) { in emitCommonSymbol() argument 80 Symbol->setCommon(Size, ByteAlignment); in emitCommonSymbol() 85 Align(ByteAlignment)); in emitCommonSymbol() 88 emitValueToAlignment(ByteAlignment); in emitCommonSymbol() 93 uint64_t Size, unsigned ByteAlignment, in emitZerofill() argument 134 unsigned ByteAlignment) { in emitXCOFFLocalCommonSymbol() argument 135 emitCommonSymbol(CsectSym, Size, ByteAlignment); in emitXCOFFLocalCommonSymbol()
|
| H A D | MCWinCOFFStreamer.cpp | 265 unsigned ByteAlignment) { in emitCommonSymbol() argument 270 if (ByteAlignment > 32) in emitCommonSymbol() 274 Size = std::max(Size, static_cast<uint64_t>(ByteAlignment)); in emitCommonSymbol() 279 Symbol->setCommon(Size, ByteAlignment); in emitCommonSymbol() 281 if (!T.isWindowsMSVCEnvironment() && ByteAlignment > 1) { in emitCommonSymbol() 287 << Log2_32_Ceil(ByteAlignment); in emitCommonSymbol() 297 unsigned ByteAlignment) { in emitLocalCommonSymbol() argument 303 emitValueToAlignment(ByteAlignment, 0, 1, 0); in emitLocalCommonSymbol() 321 uint64_t Size, unsigned ByteAlignment, in emitZerofill() argument 327 uint64_t Size, unsigned ByteAlignment) { in emitTBSSSymbol() argument
|
| H A D | MCMachOStreamer.cpp | 99 unsigned ByteAlignment) override; 102 unsigned ByteAlignment) override; 104 uint64_t Size = 0, unsigned ByteAlignment = 0, 107 unsigned ByteAlignment = 0) override; 409 unsigned ByteAlignment) { in emitCommonSymbol() argument 415 Symbol->setCommon(Size, ByteAlignment); in emitCommonSymbol() 419 unsigned ByteAlignment) { in emitLocalCommonSymbol() argument 422 Symbol, Size, ByteAlignment); in emitLocalCommonSymbol() 426 uint64_t Size, unsigned ByteAlignment, in emitZerofill() argument 444 emitValueToAlignment(ByteAlignment, 0, 1, 0); in emitZerofill() [all …]
|
| H A D | MCWasmStreamer.cpp | 138 unsigned ByteAlignment) { in emitCommonSymbol() argument 147 unsigned ByteAlignment) { in emitLocalCommonSymbol() argument 209 uint64_t Size, unsigned ByteAlignment, in emitZerofill() argument 215 uint64_t Size, unsigned ByteAlignment) { in emitTBSSSymbol() argument
|
| H A D | MCNullStreamer.cpp | 34 unsigned ByteAlignment) override {} in emitCommonSymbol() argument 36 uint64_t Size = 0, unsigned ByteAlignment = 0, in emitZerofill() argument
|
| H A D | MCAsmStreamer.cpp | 841 OS << ',' << Log2_32(ByteAlignment); in emitXCOFFLocalCommonSymbol() 927 if (ByteAlignment != 0) { in emitCommonSymbol() 929 OS << ',' << ByteAlignment; in emitCommonSymbol() 953 case LCOMM::ByteAlignment: in emitLocalCommonSymbol() 985 if (ByteAlignment != 0) in emitZerofill() 1011 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment); in emitTBSSSymbol() 1373 if (!isPowerOf2_32(ByteAlignment)) in emitValueToAlignment() 1377 OS << Log2_32(ByteAlignment); in emitValueToAlignment() 1384 if (isPowerOf2_32(ByteAlignment)) { in emitValueToAlignment() 1401 OS << Log2_32(ByteAlignment); in emitValueToAlignment() [all …]
|
| H A D | MCELFStreamer.cpp | 306 unsigned ByteAlignment) { in emitCommonSymbol() argument 321 emitValueToAlignment(ByteAlignment, 0, 1, 0); in emitCommonSymbol() 327 if(Symbol->declareCommon(Size, ByteAlignment)) in emitCommonSymbol() 348 unsigned ByteAlignment) { in emitLocalCommonSymbol() argument 353 emitCommonSymbol(Symbol, Size, ByteAlignment); in emitLocalCommonSymbol() 364 void MCELFStreamer::emitValueToAlignment(unsigned ByteAlignment, in emitValueToAlignment() argument 370 MCObjectStreamer::emitValueToAlignment(ByteAlignment, Value, in emitValueToAlignment() 727 uint64_t Size, unsigned ByteAlignment, in emitZerofill() argument 733 uint64_t Size, unsigned ByteAlignment) { in emitTBSSSymbol() argument
|
| H A D | MCAsmInfoCOFF.cpp | 25 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in MCAsmInfoCOFF()
|
| H A D | MCObjectStreamer.cpp | 597 void MCObjectStreamer::emitValueToAlignment(unsigned ByteAlignment, in emitValueToAlignment() argument 602 MaxBytesToEmit = ByteAlignment; in emitValueToAlignment() 603 insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit)); in emitValueToAlignment() 607 if (ByteAlignment > CurSec->getAlignment()) in emitValueToAlignment() 608 CurSec->setAlignment(Align(ByteAlignment)); in emitValueToAlignment() 611 void MCObjectStreamer::emitCodeAlignment(unsigned ByteAlignment, in emitCodeAlignment() argument 613 emitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit); in emitCodeAlignment()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCELFStreamer.cpp | 90 unsigned ByteAlignment, in HexagonMCEmitCommonSymbol() argument 114 emitValueToAlignment(ByteAlignment, 0, 1, 0); in HexagonMCEmitCommonSymbol() 120 if (Align(ByteAlignment) > Section.getAlignment()) in HexagonMCEmitCommonSymbol() 121 Section.setAlignment(Align(ByteAlignment)); in HexagonMCEmitCommonSymbol() 125 if (ELFSymbol->declareCommon(Size, ByteAlignment)) in HexagonMCEmitCommonSymbol() 142 unsigned ByteAlignment, in HexagonMCEmitLocalCommonSymbol() argument 148 HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, AccessSize); in HexagonMCEmitLocalCommonSymbol()
|
| H A D | HexagonMCELFStreamer.h | 36 unsigned ByteAlignment, 39 unsigned ByteAlignment, unsigned AccessSize);
|
| H A D | HexagonMCAsmInfo.cpp | 27 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in HexagonMCAsmInfo()
|
| H A D | HexagonMCTargetDesc.cpp | 260 unsigned ByteAlignment, in emitCommonSymbolSorted() argument 264 HexagonELFStreamer.HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, in emitCommonSymbolSorted() 269 unsigned ByteAlignment, in emitLocalCommonSymbolSorted() argument 274 Symbol, Size, ByteAlignment, AccessSize); in emitLocalCommonSymbolSorted()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCWasmStreamer.h | 50 unsigned ByteAlignment) override; 55 unsigned ByteAlignment) override; 58 uint64_t Size = 0, unsigned ByteAlignment = 0, 61 unsigned ByteAlignment = 0) override;
|
| H A D | MCWinCOFFStreamer.h | 58 unsigned ByteAlignment) override; 60 unsigned ByteAlignment) override; 63 unsigned ByteAlignment, SMLoc Loc = SMLoc()) override; 65 unsigned ByteAlignment) override;
|
| H A D | MCELFStreamer.h | 53 unsigned ByteAlignment) override; 60 unsigned ByteAlignment) override; 63 uint64_t Size = 0, unsigned ByteAlignment = 0, 66 unsigned ByteAlignment = 0) override;
|
| H A D | MCXCOFFStreamer.h | 24 unsigned ByteAlignment) override; 26 uint64_t Size = 0, unsigned ByteAlignment = 0,
|
| H A D | MCStreamer.h | 583 unsigned ByteAlignment); 631 unsigned ByteAlignment) = 0; 639 unsigned ByteAlignment); 649 uint64_t Size = 0, unsigned ByteAlignment = 0, 660 uint64_t Size, unsigned ByteAlignment = 0); 823 virtual void emitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 837 virtual void emitCodeAlignment(unsigned ByteAlignment,
|
| H A D | MCObjectStreamer.h | 137 void emitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0, 140 void emitCodeAlignment(unsigned ByteAlignment,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonTargetStreamer.h | 18 virtual void emitCodeAlignment(unsigned ByteAlignment, 22 unsigned ByteAlignment, in emitCommonSymbolSorted() argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | RecordStreamer.h | 53 unsigned ByteAlignment, SMLoc Loc = SMLoc()) override; 55 unsigned ByteAlignment) override;
|
| H A D | RecordStreamer.cpp | 109 uint64_t Size, unsigned ByteAlignment, in emitZerofill() argument 115 unsigned ByteAlignment) { in emitCommonSymbol() argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/ |
| H A D | CodeRegionGenerator.cpp | 60 unsigned ByteAlignment) override {} in emitCommonSymbol() argument 62 uint64_t Size = 0, unsigned ByteAlignment = 0, in emitZerofill() argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| H A D | PPCMCAsmInfo.cpp | 54 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in PPCELFMCAsmInfo()
|