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 47 StructSize = 0;
56 if ((StructSize & (TyAlign-1)) != 0)
57 StructSize = DataLayout::RoundUpAlignment(StructSize, TyAlign);
62 MemberOffsets[i] = StructSize;
63 StructSize += TD.getTypeAllocSize(Ty); // Consume space for this data item
71 if ((StructSize & (StructAlignment-1)) != 0)
72 StructSize = DataLayout::RoundUpAlignment(StructSize, StructAlignment);
  /external/llvm/include/llvm/IR/
DataLayout.h 389 uint64_t StructSize;
396 return StructSize;
400 return 8*StructSize;
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 82 bool needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize);
117 unsigned structSize = 0;
118 if (needsUnimp(I, structSize)) {
122 TII->get(SP::UNIMP)).addImm(structSize);
302 bool Filler::needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize)
318 StructSize = MO.getImm();

Completed in 24 milliseconds