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

  /external/llvm/lib/IR/
DataLayout.cpp 48 StructSize = 0;
57 if ((StructSize & (TyAlign-1)) != 0)
58 StructSize = DataLayout::RoundUpAlignment(StructSize, TyAlign);
63 MemberOffsets[i] = StructSize;
64 StructSize += DL.getTypeAllocSize(Ty); // Consume space for this data item
72 if ((StructSize & (StructAlignment-1)) != 0)
73 StructSize = DataLayout::RoundUpAlignment(StructSize, StructAlignment);
  /external/llvm/include/llvm/IR/
DataLayout.h 482 uint64_t StructSize;
489 return StructSize;
493 return 8*StructSize;
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 90 bool needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize);
152 unsigned structSize = 0;
153 if (needsUnimp(MI, structSize)) {
158 TII->get(SP::UNIMP)).addImm(structSize);
339 bool Filler::needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize)
356 StructSize = MO.getImm();

Completed in 77 milliseconds