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

  /external/llvm/include/llvm/Target/
TargetData.h 324 uint64_t StructSize;
331 return StructSize;
335 return 8*StructSize;
  /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/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();
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]

Completed in 191 milliseconds