HomeSort by relevance Sort by last modified time
    Searched refs:ByteAlignment (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/MC/
MCPureStreamer.cpp 42 uint64_t Size = 0, unsigned ByteAlignment = 0);
44 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
47 virtual void EmitCodeAlignment(unsigned ByteAlignment,
61 uint64_t Size, unsigned ByteAlignment = 0) {
68 unsigned ByteAlignment) {
90 unsigned ByteAlignment) {
148 uint64_t Size, unsigned ByteAlignment) {
158 void MCPureStreamer::EmitValueToAlignment(unsigned ByteAlignment,
164 MaxBytesToEmit = ByteAlignment;
165 insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit))
    [all...]
MCNullStreamer.cpp 67 unsigned ByteAlignment) {}
69 unsigned ByteAlignment) {}
71 uint64_t Size = 0, unsigned ByteAlignment = 0) {}
73 uint64_t Size, unsigned ByteAlignment) {}
80 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
84 virtual void EmitCodeAlignment(unsigned ByteAlignment,
WinCOFFStreamer.cpp 48 unsigned ByteAlignment, bool External);
67 unsigned ByteAlignment);
69 unsigned ByteAlignment);
71 uint64_t Size,unsigned ByteAlignment);
73 uint64_t Size, unsigned ByteAlignment);
141 unsigned ByteAlignment, bool External) {
162 if (SectionData.getAlignment() < ByteAlignment)
163 SectionData.setAlignment(ByteAlignment);
169 if (ByteAlignment != 1)
170 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectionData)
    [all...]
MCAsmInfoCOFF.cpp 25 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
MCMachOStreamer.cpp 57 unsigned ByteAlignment);
74 unsigned ByteAlignment);
76 uint64_t Size = 0, unsigned ByteAlignment = 0);
78 uint64_t Size, unsigned ByteAlignment = 0);
323 unsigned ByteAlignment) {
329 SD.setCommon(Size, ByteAlignment);
333 unsigned ByteAlignment) {
338 Symbol, Size, ByteAlignment);
342 uint64_t Size, unsigned ByteAlignment) {
357 if (ByteAlignment != 1
    [all...]
MCELFStreamer.cpp 257 unsigned ByteAlignment) {
275 struct LocalCommon L = {&SD, Size, ByteAlignment};
278 SD.setCommon(Size, ByteAlignment);
290 unsigned ByteAlignment) {
296 EmitCommonSymbol(Symbol, Size, ByteAlignment);
306 void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment,
312 MCObjectStreamer::EmitValueToAlignment(ByteAlignment, Value,
536 unsigned ByteAlignment = i->ByteAlignment;
541 new MCAlignFragment(ByteAlignment, 0, 1, ByteAlignment, &SectData)
    [all...]
MCAsmStreamer.cpp 167 unsigned ByteAlignment);
173 /// @param ByteAlignment - The alignment of the common symbol in bytes.
175 unsigned ByteAlignment);
178 uint64_t Size = 0, unsigned ByteAlignment = 0);
181 uint64_t Size, unsigned ByteAlignment = 0);
199 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
203 virtual void EmitCodeAlignment(unsigned ByteAlignment,
532 unsigned ByteAlignment) {
534 if (ByteAlignment != 0) {
536 OS << ',' << ByteAlignment;
    [all...]
MCObjectStreamer.cpp 308 void MCObjectStreamer::EmitValueToAlignment(unsigned ByteAlignment,
313 MaxBytesToEmit = ByteAlignment;
314 insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit));
317 if (ByteAlignment > getCurrentSectionData()->getAlignment())
318 getCurrentSectionData()->setAlignment(ByteAlignment);
321 void MCObjectStreamer::EmitCodeAlignment(unsigned ByteAlignment,
323 EmitValueToAlignment(ByteAlignment, 0, 1, MaxBytesToEmit);
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.cpp 27 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /external/llvm/include/llvm/MC/
MCELFStreamer.h 63 unsigned ByteAlignment);
74 unsigned ByteAlignment);
77 uint64_t Size = 0, unsigned ByteAlignment = 0);
79 uint64_t Size, unsigned ByteAlignment = 0);
108 unsigned ByteAlignment;
MCStreamer.h 369 /// @param ByteAlignment - The alignment of the symbol if
372 unsigned ByteAlignment) = 0;
378 /// @param ByteAlignment - The alignment of the common symbol in bytes.
380 unsigned ByteAlignment) = 0;
387 /// @param ByteAlignment - The alignment of the zerofill symbol if
390 uint64_t Size = 0,unsigned ByteAlignment = 0) = 0;
397 /// @param ByteAlignment - The alignment of the thread local common symbol
400 uint64_t Size, unsigned ByteAlignment = 0) = 0;
474 /// the byte alignment @p ByteAlignment is reached.
482 /// @param ByteAlignment - The alignment to reach. This must be a power o
    [all...]
MCObjectStreamer.h 97 virtual void EmitValueToAlignment(unsigned ByteAlignment,
101 virtual void EmitCodeAlignment(unsigned ByteAlignment,
MCAsmInfo.h 37 enum LCOMMType { NoAlignment, ByteAlignment, Log2Alignment };
  /external/chromium_org/base/memory/
aligned_memory.h 51 template <size_t Size, size_t ByteAlignment>
  /external/llvm/tools/lto/
LTOModule.cpp 746 uint64_t Size , unsigned ByteAlignment) {
750 unsigned ByteAlignment) {
773 unsigned ByteAlignment) {}
775 uint64_t Size, unsigned ByteAlignment) {}
780 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
783 virtual void EmitCodeAlignment(unsigned ByteAlignment,
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 204 milliseconds