| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCWinCOFFStreamer.cpp | 267 Align ByteAlignment) { in emitCommonSymbol() argument 272 if (ByteAlignment > 32) in emitCommonSymbol() 276 Size = std::max(Size, ByteAlignment.value()); in emitCommonSymbol() 281 Symbol->setCommon(Size, ByteAlignment); in emitCommonSymbol() 283 if (!T.isWindowsMSVCEnvironment() && ByteAlignment > 1) { in emitCommonSymbol() 289 << Log2_32_Ceil(ByteAlignment.value()); in emitCommonSymbol() 299 Align ByteAlignment) { in emitLocalCommonSymbol() argument 305 emitValueToAlignment(ByteAlignment, 0, 1, 0); in emitLocalCommonSymbol() 323 uint64_t Size, Align ByteAlignment, in emitZerofill() argument 329 uint64_t Size, Align ByteAlignment) { in emitTBSSSymbol() argument
|
| H A D | MCMachOStreamer.cpp | 106 Align ByteAlignment) override; 109 Align ByteAlignment) override; 111 uint64_t Size = 0, Align ByteAlignment = Align(1), 114 Align ByteAlignment = Align(1)) override; 434 Align ByteAlignment) { in emitCommonSymbol() argument 440 Symbol->setCommon(Size, ByteAlignment); in emitCommonSymbol() 444 Align ByteAlignment) { in emitLocalCommonSymbol() argument 447 Symbol, Size, ByteAlignment); in emitLocalCommonSymbol() 451 uint64_t Size, Align ByteAlignment, in emitZerofill() argument 469 emitValueToAlignment(ByteAlignment, 0, 1, 0); in emitZerofill() [all …]
|
| H A D | MCXCOFFStreamer.cpp | 120 Align ByteAlignment) { in emitCommonSymbol() argument 124 Symbol->setCommon(Size, ByteAlignment); in emitCommonSymbol() 129 ByteAlignment); in emitCommonSymbol() 132 emitValueToAlignment(ByteAlignment); in emitCommonSymbol() 137 uint64_t Size, Align ByteAlignment, in emitZerofill() argument
|
| H A D | MCNullStreamer.cpp | 40 Align ByteAlignment) override {} in emitCommonSymbol() argument 42 uint64_t Size = 0, Align ByteAlignment = Align(1), in emitZerofill() argument
|
| H A D | MCWasmStreamer.cpp | 167 Align ByteAlignment) { in emitCommonSymbol() argument 176 Align ByteAlignment) { in emitLocalCommonSymbol() argument 265 uint64_t Size, Align ByteAlignment, in emitZerofill() argument 271 uint64_t Size, Align ByteAlignment) { in emitTBSSSymbol() argument
|
| H A D | MCAsmStreamer.cpp | 1047 OS << ',' << ByteAlignment.value(); in emitCommonSymbol() 1049 OS << ',' << Log2(ByteAlignment); in emitCommonSymbol() 1069 case LCOMM::ByteAlignment: in emitLocalCommonSymbol() 1100 OS << ',' << Log2(ByteAlignment); in emitZerofill() 1125 if (ByteAlignment > 1) in emitTBSSSymbol() 1126 OS << ", " << Log2(ByteAlignment); in emitTBSSSymbol() 1487 if (!isPowerOf2_32(ByteAlignment)) in emitAlignmentDirective() 1491 OS << Log2_32(ByteAlignment); in emitAlignmentDirective() 1498 if (isPowerOf2_32(ByteAlignment)) { in emitAlignmentDirective() 1515 OS << Log2_32(ByteAlignment); in emitAlignmentDirective() [all …]
|
| H A D | MCELFStreamer.cpp | 314 Align ByteAlignment) { in emitCommonSymbol() argument 329 emitValueToAlignment(ByteAlignment, 0, 1, 0); in emitCommonSymbol() 335 if (Symbol->declareCommon(Size, ByteAlignment)) in emitCommonSymbol() 356 Align ByteAlignment) { in emitLocalCommonSymbol() argument 361 emitCommonSymbol(Symbol, Size, ByteAlignment); in emitLocalCommonSymbol() 732 uint64_t Size, Align ByteAlignment, in emitZerofill() argument 738 uint64_t Size, Align ByteAlignment) { in emitTBSSSymbol() argument
|
| H A D | MCAsmInfoCOFF.cpp | 25 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in MCAsmInfoCOFF()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCELFStreamer.cpp | 90 Align ByteAlignment, in HexagonMCEmitCommonSymbol() argument 114 emitValueToAlignment(ByteAlignment, 0, 1, 0); in HexagonMCEmitCommonSymbol() 120 Section.ensureMinAlignment(ByteAlignment); in HexagonMCEmitCommonSymbol() 124 if (ELFSymbol->declareCommon(Size, ByteAlignment)) in HexagonMCEmitCommonSymbol() 141 Align ByteAlignment, in HexagonMCEmitLocalCommonSymbol() argument 147 HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, AccessSize); in HexagonMCEmitLocalCommonSymbol()
|
| H A D | HexagonMCELFStreamer.h | 36 Align ByteAlignment, unsigned AccessSize); 38 Align ByteAlignment, unsigned AccessSize);
|
| H A D | HexagonMCAsmInfo.cpp | 27 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in HexagonMCAsmInfo()
|
| H A D | HexagonMCTargetDesc.cpp | 284 unsigned ByteAlignment, in emitCommonSymbolSorted() argument 289 Symbol, Size, Align(ByteAlignment), AccessSize); in emitCommonSymbolSorted() 293 unsigned ByteAlignment, in emitLocalCommonSymbolSorted() argument 298 Symbol, Size, Align(ByteAlignment), AccessSize); in emitLocalCommonSymbolSorted()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCWasmStreamer.h | 53 Align ByteAlignment) override; 58 Align ByteAlignment) override; 61 uint64_t Size = 0, Align ByteAlignment = Align(1), 64 Align ByteAlignment = Align(1)) override;
|
| H A D | MCWinCOFFStreamer.h | 58 Align ByteAlignment) override; 60 Align ByteAlignment) override; 63 Align ByteAlignment, SMLoc Loc = SMLoc()) override; 65 Align ByteAlignment) override;
|
| H A D | MCELFStreamer.h | 60 Align ByteAlignment) override; 67 Align ByteAlignment) override; 70 uint64_t Size = 0, Align ByteAlignment = Align(1), 73 Align ByteAlignment = Align(1)) override;
|
| H A D | MCGOFFStreamer.h | 31 Align ByteAlignment) override {} in emitCommonSymbol() argument 34 uint64_t Size = 0, Align ByteAlignment = Align(1),
|
| H A D | MCSPIRVStreamer.h | 37 Align ByteAlignment) override {} in emitCommonSymbol() argument 39 uint64_t Size = 0, Align ByteAlignment = Align(1),
|
| H A D | MCXCOFFStreamer.h | 24 Align ByteAlignment) override; 26 uint64_t Size = 0, Align ByteAlignment = Align(1),
|
| H A D | MCDXContainerStreamer.h | 39 Align ByteAlignment = Align(1),
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Object/ |
| H A D | RecordStreamer.h | 52 Align ByteAlignment, SMLoc Loc = SMLoc()) override; 54 Align ByteAlignment) override;
|
| H A D | RecordStreamer.cpp | 104 uint64_t Size, Align ByteAlignment, in emitZerofill() argument 110 Align ByteAlignment) { in emitCommonSymbol() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonTargetStreamer.h | 22 unsigned ByteAlignment, in emitCommonSymbolSorted() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| H A D | PPCMCAsmInfo.cpp | 53 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment; in PPCELFMCAsmInfo()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-mca/ |
| H A D | CodeRegionGenerator.h | 105 Align ByteAlignment) override {} in emitCommonSymbol() argument 107 uint64_t Size = 0, Align ByteAlignment = Align(1),
|