Searched refs:LoadSize (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/PowerPC/
H A DPPCHazardRecognizers.h84 bool isLoadOfStoredAddress(uint64_t LoadSize, int64_t LoadOffset,
H A DPPCHazardRecognizers.cpp110 isLoadOfStoredAddress(uint64_t LoadSize, int64_t LoadOffset, argument
125 if (int64_t(LoadOffset+LoadSize) > StoreOffset[i]) return true;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DGVN.cpp767 uint64_t LoadSize = TD.getTypeSizeInBits(LoadedTy); local
770 if (StoreSize == LoadSize) {
798 assert(StoreSize >= LoadSize && "CanCoerceMustAliasedValueToLoad fail");
815 Constant *Val = ConstantInt::get(StoredVal->getType(), StoreSize-LoadSize);
820 Type *NewIntTy = IntegerType::get(StoredValTy->getContext(), LoadSize);
875 uint64_t LoadSize = TD.getTypeSizeInBits(LoadTy);
877 if ((WriteSizeInBits & 7) | (LoadSize & 7))
880 LoadSize >>= 3;
887 isAAFailure = LoadOffset+int64_t(LoadSize) <= StoreOffset;
906 StoreOffset+StoreSize < LoadOffset+LoadSize)
949 unsigned LoadSize = TD.getTypeStoreSize(LoadTy); local
1016 uint64_t LoadSize = (TD.getTypeSizeInBits(LoadTy) + 7) / 8; local
1055 unsigned LoadSize = TD.getTypeStoreSize(LoadTy); local
1112 uint64_t LoadSize = TD.getTypeSizeInBits(LoadTy)/8; local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DLoads.cpp119 uint64_t LoadSize = TD->getTypeStoreSize(AddrTy->getElementType()); local
120 if (ByteOffset + LoadSize <= TD->getTypeAllocSize(BaseType) &&
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Mips/
H A DMipsISelLowering.cpp2724 unsigned LoadSize = (RemainingSize == 3 ? 2 : RemainingSize); local
2730 MVT::getIntegerVT(LoadSize * 8), false,
2738 DAG.getConstant(32 - LoadSize * 8, MVT::i32));
2740 Offset += LoadSize;
2741 RemainingSize -= LoadSize;
2822 for (unsigned LoadSize = 4; Offset < ByValSize; LoadSize /= 2) {
2825 if (RemSize < LoadSize)
2832 MachinePointerInfo(), MVT::getIntegerVT(LoadSize * 8),
2838 unsigned Shamt = isLittle ? OffsetDW : 64 - (OffsetDW + LoadSize *
[all...]

Completed in 112 milliseconds