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

  /external/llvm/lib/MC/
MCELFStreamer.h 55 unsigned ByteAlignment);
78 unsigned ByteAlignment);
81 unsigned Size = 0, unsigned ByteAlignment = 0) {
85 uint64_t Size, unsigned ByteAlignment = 0) {
89 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
92 virtual void EmitCodeAlignment(unsigned ByteAlignment,
108 unsigned ByteAlignment;
MCELFStreamer.cpp 196 unsigned ByteAlignment) {
214 struct LocalCommon L = {&SD, Size, ByteAlignment};
217 SD.setCommon(Size, ByteAlignment);
224 unsigned ByteAlignment) {
230 EmitCommonSymbol(Symbol, Size, ByteAlignment);
239 void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment,
245 MaxBytesToEmit = ByteAlignment;
246 new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit,
250 if (ByteAlignment > getCurrentSectionData()->getAlignment())
251 getCurrentSectionData()->setAlignment(ByteAlignment);
    [all...]
MCAsmStreamer.cpp 159 unsigned ByteAlignment);
167 unsigned ByteAlignment);
170 unsigned Size = 0, unsigned ByteAlignment = 0);
173 uint64_t Size, unsigned ByteAlignment = 0);
192 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
196 virtual void EmitCodeAlignment(unsigned ByteAlignment,
479 unsigned ByteAlignment) {
481 if (ByteAlignment != 0) {
483 OS << ',' << ByteAlignment;
485 OS << ',' << Log2_32(ByteAlignment);
    [all...]
  /external/llvm/lib/Target/PTX/
PTXMCAsmStreamer.cpp 130 unsigned ByteAlignment);
136 /// @param ByteAlignment - The alignment of the common symbol in bytes.
138 unsigned ByteAlignment);
141 unsigned Size = 0, unsigned ByteAlignment = 0);
144 uint64_t Size, unsigned ByteAlignment = 0);
158 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
162 virtual void EmitCodeAlignment(unsigned ByteAlignment,
288 unsigned ByteAlignment) {}
291 unsigned ByteAlignment) {}
294 unsigned Size, unsigned ByteAlignment) {}
    [all...]
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 36 enum LCOMMType { None, NoAlignment, ByteAlignment };

Completed in 54 milliseconds