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

  /external/llvm/lib/Target/
TargetData.cpp 47 StructSize = 0;
56 if ((StructSize & (TyAlign-1)) != 0)
57 StructSize = TargetData::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 = TargetData::RoundUpAlignment(StructSize, StructAlignment);
  /external/llvm/include/llvm/Target/
TargetData.h 316 uint64_t StructSize;
323 return StructSize;
327 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);
305 bool Filler::needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize)
321 StructSize = MO.getImm();

Completed in 39 milliseconds