Searched defs:LoadSize (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Analysis/
H A DLoads.cpp119 uint64_t LoadSize = TD->getTypeStoreSize(AddrTy->getElementType()); local
120 if (ByteOffset + LoadSize <= TD->getTypeAllocSize(BaseType) &&
/external/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp110 isLoadOfStoredAddress(uint64_t LoadSize, int64_t LoadOffset, argument
125 if (int64_t(LoadOffset+LoadSize) > StoreOffset[i]) return true;
/external/llvm/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...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp2453 unsigned LoadSize = (RemainingSize == 3 ? 2 : RemainingSize); local
2459 MVT::getIntegerVT(LoadSize * 8), false,
2467 DAG.getConstant(32 - LoadSize * 8, MVT::i32));
2469 Offset += LoadSize;
2470 RemainingSize -= LoadSize;
2551 for (unsigned LoadSize = 4; Offset < ByValSize; LoadSize /= 2) {
2554 if (RemSize < LoadSize)
2561 MachinePointerInfo(), MVT::getIntegerVT(LoadSize * 8),
2567 unsigned Shamt = isLittle ? OffsetDW : 64 - (OffsetDW + LoadSize *
[all...]

Completed in 107 milliseconds