| /minix3/external/bsd/llvm/dist/llvm/lib/Analysis/ |
| H A D | Loads.cpp | 90 uint64_t LoadSize = DL ? DL->getTypeStoreSize(AddrTy->getElementType()) : 0; in isSafeToLoadUnconditionally() 145 LoadSize <= DL->getTypeStoreSize(AccessedTy->getElementType())) in isSafeToLoadUnconditionally() 184 uint64_t AccessSize = DL ? DL->getTypeStoreSize(AccessTy) in FindAvailableLoadedValue() 185 : AA ? AA->getTypeStoreSize(AccessTy) : 0; in FindAvailableLoadedValue()
|
| H A D | AliasAnalysis.cpp | 258 getTypeStoreSize(LI->getType()), AATags); in getLocation() 266 getTypeStoreSize(SI->getValueOperand()->getType()), AATags); in getLocation() 282 getTypeStoreSize(CXI->getCompareOperand()->getType()), in getLocation() 292 getTypeStoreSize(RMWI->getValOperand()->getType()), AATags); in getLocation() 481 uint64_t AliasAnalysis::getTypeStoreSize(Type *Ty) { in getTypeStoreSize() function in AliasAnalysis 482 return DL ? DL->getTypeStoreSize(Ty) : UnknownSize; in getTypeStoreSize()
|
| H A D | AliasAnalysisEvaluator.cpp | 191 if (I1ElTy->isSized()) I1Size = AA.getTypeStoreSize(I1ElTy); in runOnFunction() 196 if (I2ElTy->isSized()) I2Size = AA.getTypeStoreSize(I2ElTy); in runOnFunction() 280 if (ElTy->isSized()) Size = AA.getTypeStoreSize(ElTy); in runOnFunction()
|
| H A D | AliasSetTracker.cpp | 320 AA.getTypeStoreSize(LI->getType()), in add() 336 AA.getTypeStoreSize(Val->getType()), in add() 453 uint64_t Size = AA.getTypeStoreSize(LI->getType()); in remove() 465 uint64_t Size = AA.getTypeStoreSize(SI->getOperand(0)->getType()); in remove()
|
| H A D | Lint.cpp | 255 visitMemoryReference(I, Actual, AA->getTypeStoreSize(Ty), in visitCallSite() 468 AA->getTypeStoreSize(I.getType()), I.getAlignment(), in visitLoadInst() 474 AA->getTypeStoreSize(I.getOperand(0)->getType()), in visitStoreInst()
|
| H A D | BasicAliasAnalysis.cpp | 773 Loc.Size = DL->getTypeStoreSize(II->getType()); in getArgLocation() 781 Loc.Size = DL->getTypeStoreSize(II->getArgOperand(1)->getType()); in getArgLocation()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A D | DataLayout.h | 347 uint64_t getTypeStoreSize(Type *Ty) const { in getTypeStoreSize() function 356 return 8 * getTypeStoreSize(Ty); in getTypeStoreSizeInBits() 366 return RoundUpToAlignment(getTypeStoreSize(Ty), getABITypeAlignment(Ty)); in getTypeAllocSize()
|
| H A D | IRBuilder.h | 1560 assert(DL.getTypeStoreSize(ExtractedTy) + Offset <= in CreateExtractInteger() 1561 DL.getTypeStoreSize(IntTy) && in CreateExtractInteger() 1566 ShAmt = 8 * (DL.getTypeStoreSize(IntTy) - in CreateExtractInteger() 1567 DL.getTypeStoreSize(ExtractedTy) - Offset); in CreateExtractInteger()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | Value.cpp | 503 (DL->getTypeStoreSize(STy) >= in isDereferenceablePointer() 504 DL->getTypeStoreSize(DTy)) && in isDereferenceablePointer() 521 if (Ty->isSized() && DL && DL->getTypeStoreSize(Ty) <= Bytes) in isDereferenceablePointer() 533 if (Ty->isSized() && DL && DL->getTypeStoreSize(Ty) <= Bytes) in isDereferenceablePointer() 597 if (DerefBytes.uge(Offset + DL->getTypeStoreSize(Ty))) in isDereferenceablePointer()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXLowerAggrCopies.cpp | 123 if (DL->getTypeStoreSize(load->getType()) < MaxAggrCopySize) in runOnFunction() 169 unsigned numLoads = DL->getTypeStoreSize(load->getType()); in runOnFunction()
|
| H A D | NVPTXAsmPrinter.cpp | 1172 ElementSize = TD->getTypeStoreSize(ETy); in printModuleLevelGV() 1329 ElementSize = TD->getTypeStoreSize(ETy); in emitPTXGlobalVariable()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | LoadCombine.cpp | 148 PrevSize = DL->getTypeStoreSize(L.Load->getType()); in aggregateLoads() 167 PrevSize = DL->getTypeStoreSize(L.Load->getType()); in aggregateLoads()
|
| H A D | SROA.cpp | 753 uint64_t Size = DL.getTypeStoreSize(LI.getType()); in visitLoadInst() 764 uint64_t Size = DL.getTypeStoreSize(ValOp->getType()); in visitStoreInst() 909 Size = std::max(Size, DL.getTypeStoreSize(LI->getType())); in hasUnsafePHIOrSelectUse() 916 Size = std::max(Size, DL.getTypeStoreSize(Op->getType())); in hasUnsafePHIOrSelectUse() 2115 uint64_t Size = DL.getTypeStoreSize(AllocaTy); in isIntegerWideningViableForSlice() 2231 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) && in extractInteger() 2235 ShAmt = 8 * (DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset); in extractInteger() 2260 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) && in insertInteger() 2264 ShAmt = 8 * (DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset); in insertInteger() 2604 assert(SliceSize < DL.getTypeStoreSize(LI.getType()) && in visitLoadInst() [all …]
|
| H A D | MemCpyOptimizer.cpp | 224 int64_t StoreSize = DL.getTypeStoreSize(SI->getOperand(0)->getType()); in addStore() 536 DL->getTypeStoreSize(SI->getOperand(0)->getType()), in processStore()
|
| H A D | Scalarizer.cpp | 367 Layout.ElemSize = DL->getTypeStoreSize(Layout.ElemTy); in getVectorLayout()
|
| H A D | LICM.cpp | 460 Size = AA->getTypeStoreSize(LI->getType()); in canSinkOrHoistInst()
|
| H A D | GVN.cpp | 1056 unsigned LoadSize = DL.getTypeStoreSize(LoadTy); in AnalyzeLoadFromClobberingLoad() 1163 unsigned SrcValSize = DL.getTypeStoreSize(SrcVal->getType()); in GetLoadValueForLoad() 1164 unsigned LoadSize = DL.getTypeStoreSize(LoadTy); in GetLoadValueForLoad()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | ExternalFunctions.cpp | 204 ArgBytes += TD->getTypeStoreSize(ArgTy); in ffiInvoke() 216 ArgDataPtr += TD->getTypeStoreSize(ArgTy); in ffiInvoke() 225 ret.resize(TD->getTypeStoreSize(RetTy)); in ffiInvoke()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/ |
| H A D | Target.cpp | 98 return unwrap(TD)->getTypeStoreSize(unwrap(Ty)); in LLVMStoreSizeOfType()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | BoundsChecking.cpp | 129 uint64_t NeededSize = DL->getTypeStoreSize(InstVal->getType()); in instrument()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MachineFunction.cpp | 898 uint64_t StoreSize = TD->getTypeStoreSize(A->getType()); in CanShareConstantPoolEntry() 899 if (StoreSize != TD->getTypeStoreSize(B->getType()) || StoreSize > 128) in CanShareConstantPoolEntry()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | AliasAnalysis.h | 100 uint64_t getTypeStoreSize(Type *Ty);
|
| /minix3/external/bsd/llvm/dist/llvm/bindings/ocaml/target/ |
| H A D | llvm_target.mli | 103 See the method [llvm::DataLayout::getTypeStoreSize]. *)
|
| /minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngine.cpp | 960 const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty); in StoreValueToMemory() 1037 const unsigned LoadBytes = getDataLayout()->getTypeStoreSize(Ty); in LoadValueFromMemory()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 111 uint64_t AllocElTyStoreSize = DL->getTypeStoreSize(AllocElTy); in PromoteCastOfAllocation() 112 uint64_t CastElTyStoreSize = DL->getTypeStoreSize(CastElTy); in PromoteCastOfAllocation()
|