Searched refs:StructSize (Results 1 - 7 of 7) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/
H A DTargetData.cpp47 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/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetData.h316 uint64_t StructSize; member in class:llvm::StructLayout
323 return StructSize;
327 return 8*StructSize;
/external/llvm/lib/IR/
H A DDataLayout.cpp43 StructSize = 0;
53 if ((StructSize & (TyAlign-1)) != 0) {
55 StructSize = alignTo(StructSize, TyAlign);
61 MemberOffsets[i] = StructSize;
62 StructSize += DL.getTypeAllocSize(Ty); // Consume space for this data item
70 if ((StructSize & (StructAlignment-1)) != 0) {
72 StructSize = alignTo(StructSize, StructAlignment);
/external/llvm/include/llvm/IR/
H A DDataLayout.h474 uint64_t StructSize; member in class:llvm::StructLayout
480 uint64_t getSizeInBytes() const { return StructSize; }
482 uint64_t getSizeInBits() const { return 8 * StructSize; }
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
H A DDelaySlotFiller.cpp82 bool needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize);
305 bool Filler::needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize) argument
321 StructSize = MO.getImm();
/external/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp89 bool needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize);
356 bool Filler::needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize) argument
373 StructSize = MO.getImm();
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp933 const uint64_t StructSize = SL->getSizeInBytes(); local
937 auto EltsDontOverlap = [StructSize](uint64_t V1Off, uint64_t V1Size,
940 ((V2Off + V2Size <= StructSize) ||
941 (V2Off + V2Size - StructSize <= V1Off));

Completed in 184 milliseconds