HomeSort by: relevance | last modified time | path
    Searched refs:ByteAlignment (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonTargetStreamer.h 18 virtual void emitCodeAlignment(unsigned ByteAlignment,
22 unsigned ByteAlignment,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.cpp 27 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
HexagonMCELFStreamer.cpp 89 unsigned ByteAlignment,
113 emitValueToAlignment(ByteAlignment, 0, 1, 0);
119 if (Align(ByteAlignment) > Section.getAlignment())
120 Section.setAlignment(Align(ByteAlignment));
124 if (ELFSymbol->declareCommon(Size, ByteAlignment))
141 unsigned ByteAlignment,
147 HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, AccessSize);
HexagonMCELFStreamer.h 36 unsigned ByteAlignment,
39 unsigned ByteAlignment, unsigned AccessSize);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCXCOFFStreamer.h 24 unsigned ByteAlignment) override;
26 uint64_t Size = 0, unsigned ByteAlignment = 0,
MCWasmStreamer.h 50 unsigned ByteAlignment) override;
55 unsigned ByteAlignment) override;
58 uint64_t Size = 0, unsigned ByteAlignment = 0,
61 unsigned ByteAlignment = 0) override;
MCELFStreamer.h 52 unsigned ByteAlignment) override;
59 unsigned ByteAlignment) override;
62 uint64_t Size = 0, unsigned ByteAlignment = 0,
65 unsigned ByteAlignment = 0) override;
MCWinCOFFStreamer.h 58 unsigned ByteAlignment) override;
60 unsigned ByteAlignment) override;
63 unsigned ByteAlignment, SMLoc Loc = SMLoc()) override;
65 unsigned ByteAlignment) override;
MCObjectStreamer.h 137 void emitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
140 void emitCodeAlignment(unsigned ByteAlignment,
MCStreamer.h 579 /// \param ByteAlignment - The alignment of the symbol in bytes. Must be a
583 unsigned ByteAlignment);
625 /// \param ByteAlignment - The alignment of the symbol if
628 unsigned ByteAlignment) = 0;
634 /// \param ByteAlignment - The alignment of the common symbol in bytes.
636 unsigned ByteAlignment);
643 /// \param ByteAlignment - The alignment of the zerofill symbol if
646 uint64_t Size = 0, unsigned ByteAlignment = 0,
654 /// \param ByteAlignment - The alignment of the thread local common symbol
657 uint64_t Size, unsigned ByteAlignment = 0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCNullStreamer.cpp 34 unsigned ByteAlignment) override {}
36 uint64_t Size = 0, unsigned ByteAlignment = 0,
MCAsmInfoCOFF.cpp 25 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
MCXCOFFStreamer.cpp 76 unsigned ByteAlignment) {
80 Symbol->setCommon(Size, ByteAlignment);
85 Align(ByteAlignment));
88 emitValueToAlignment(ByteAlignment);
93 uint64_t Size, unsigned ByteAlignment,
134 unsigned ByteAlignment) {
135 emitCommonSymbol(CsectSym, Size, ByteAlignment);
MCWinCOFFStreamer.cpp 265 unsigned ByteAlignment) {
270 if (ByteAlignment > 32)
274 Size = std::max(Size, static_cast<uint64_t>(ByteAlignment));
279 Symbol->setCommon(Size, ByteAlignment);
281 if (!T.isWindowsMSVCEnvironment() && ByteAlignment > 1) {
287 << Log2_32_Ceil(ByteAlignment);
297 unsigned ByteAlignment) {
303 emitValueToAlignment(ByteAlignment, 0, 1, 0);
321 uint64_t Size, unsigned ByteAlignment,
327 uint64_t Size, unsigned ByteAlignment) {
    [all...]
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) {
415 Symbol->setCommon(Size, ByteAlignment);
419 unsigned ByteAlignment) {
422 Symbol, Size, ByteAlignment);
426 uint64_t Size, unsigned ByteAlignment,
444 emitValueToAlignment(ByteAlignment, 0, 1, 0)
    [all...]
MCWasmStreamer.cpp 138 unsigned ByteAlignment) {
147 unsigned ByteAlignment) {
209 uint64_t Size, unsigned ByteAlignment,
215 uint64_t Size, unsigned ByteAlignment) {
MCAsmStreamer.cpp 196 unsigned ByteAlignment) override;
202 /// @param ByteAlignment - The alignment of the common symbol in bytes.
204 unsigned ByteAlignment) override;
207 uint64_t Size = 0, unsigned ByteAlignment = 0,
211 unsigned ByteAlignment = 0) override;
242 void emitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
246 void emitCodeAlignment(unsigned ByteAlignment,
822 unsigned ByteAlignment) {
825 assert(isPowerOf2_32(ByteAlignment) && "Alignment must be a power of 2.");
831 OS << ',' << Log2_32(ByteAlignment);
    [all...]
MCELFStreamer.cpp 305 unsigned ByteAlignment) {
320 emitValueToAlignment(ByteAlignment, 0, 1, 0);
326 if(Symbol->declareCommon(Size, ByteAlignment))
347 unsigned ByteAlignment) {
352 emitCommonSymbol(Symbol, Size, ByteAlignment);
363 void MCELFStreamer::emitValueToAlignment(unsigned ByteAlignment,
369 MCObjectStreamer::emitValueToAlignment(ByteAlignment, Value,
704 uint64_t Size, unsigned ByteAlignment,
710 uint64_t Size, unsigned ByteAlignment) {
MCObjectStreamer.cpp 602 void MCObjectStreamer::emitValueToAlignment(unsigned ByteAlignment,
607 MaxBytesToEmit = ByteAlignment;
608 insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit));
612 if (ByteAlignment > CurSec->getAlignment())
613 CurSec->setAlignment(Align(ByteAlignment));
616 void MCObjectStreamer::emitCodeAlignment(unsigned ByteAlignment,
618 emitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit);
  /src/sys/external/bsd/acpica/dist/executer/
exprep.c 82 * ByteAlignment (1, 2, 3, or 4)
236 * ByteAlignment (1, 2, 3, or 4)
249 UINT32 ByteAlignment;
263 ByteAlignment =
267 BitLength = ByteAlignment * 8;
270 ByteAlignment = 1;
277 ByteAlignment = 1;
283 ByteAlignment = 2;
289 ByteAlignment = 4;
295 ByteAlignment = 8
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.cpp 54 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
RecordStreamer.h 53 unsigned ByteAlignment, SMLoc Loc = SMLoc()) override;
55 unsigned ByteAlignment) override;
RecordStreamer.cpp 109 uint64_t Size, unsigned ByteAlignment,
115 unsigned ByteAlignment) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SnippetFile.cpp 91 unsigned ByteAlignment) override {}
95 void emitValueToAlignment(unsigned ByteAlignment, int64_t Value,
99 unsigned ByteAlignment, SMLoc Loc) override {}
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
CodeRegionGenerator.cpp 60 unsigned ByteAlignment) override {}
62 uint64_t Size = 0, unsigned ByteAlignment = 0,

Completed in 55 milliseconds

1 2