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

  /external/llvm/include/llvm/Target/
TargetData.h 220 /// getTypeStoreSize - Return the maximum number of bytes that may be
223 uint64_t getTypeStoreSize(Type *Ty) const {
231 return 8*getTypeStoreSize(Ty);
240 return RoundUpAlignment(getTypeStoreSize(Ty), getABITypeAlignment(Ty));
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 224 getTypeStoreSize(LI->getType()),
230 getTypeStoreSize(SI->getValueOperand()->getType()),
243 getTypeStoreSize(CXI->getCompareOperand()->getType()),
250 getTypeStoreSize(RMWI->getValOperand()->getType()),
381 /// getTypeStoreSize - Return the TargetData store size for the given type,
384 uint64_t AliasAnalysis::getTypeStoreSize(Type *Ty) {
385 return TD ? TD->getTypeStoreSize(Ty) : UnknownSize;
Loads.cpp 118 uint64_t LoadSize = TD->getTypeStoreSize(AddrTy->getElementType());
173 AccessSize = AA->getTypeStoreSize(AccessTy);
AliasAnalysisEvaluator.cpp 175 if (I1ElTy->isSized()) I1Size = AA.getTypeStoreSize(I1ElTy);
180 if (I2ElTy->isSized()) I2Size = AA.getTypeStoreSize(I2ElTy);
211 if (ElTy->isSized()) Size = AA.getTypeStoreSize(ElTy);
AliasSetTracker.cpp 303 AA.getTypeStoreSize(LI->getType()),
317 AA.getTypeStoreSize(Val->getType()),
431 uint64_t Size = AA.getTypeStoreSize(LI->getType());
440 uint64_t Size = AA.getTypeStoreSize(SI->getOperand(0)->getType());
LoopDependenceAnalysis.cpp 103 return AA->alias(aObj, AA->getTypeStoreSize(aObj->getType()),
104 bObj, AA->getTypeStoreSize(bObj->getType()));
Lint.cpp 245 visitMemoryReference(I, Actual, AA->getTypeStoreSize(Ty),
425 AA->getTypeStoreSize(I.getType()), I.getAlignment(),
431 AA->getTypeStoreSize(I.getOperand(0)->getType()),
BasicAliasAnalysis.cpp 792 TD ? TD->getTypeStoreSize(II->getType()) : UnknownSize;
801 TD ? TD->getTypeStoreSize(II->getArgOperand(1)->getType()) : UnknownSize;
    [all...]
  /external/llvm/lib/Target/
Target.cpp 70 return unwrap(TD)->getTypeStoreSize(unwrap(Ty));
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 202 ArgBytes += TD->getTypeStoreSize(ArgTy);
214 ArgDataPtr += TD->getTypeStoreSize(ArgTy);
223 ret.resize(TD->getTypeStoreSize(RetTy));
  /external/llvm/bindings/ocaml/target/
llvm_target.mli 62 See the method llvm::TargetData::getTypeStoreSize. *)
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 657 if (TD->getTypeStoreSize(A->getType()) != TD->getTypeStoreSize(B->getType()))
ELFWriter.cpp 470 TD->getTypeStoreSize(CFP->getType());
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 88 /// getTypeStoreSize - Return the TargetData store size for the given type,
91 uint64_t getTypeStoreSize(Type *Ty);
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 212 int64_t StoreSize = TD.getTypeStoreSize(SI->getOperand(0)->getType());
515 TD->getTypeStoreSize(SI->getOperand(0)->getType()), C);
    [all...]
LICM.cpp 376 Size = AA->getTypeStoreSize(LI->getType());
GVN.cpp 882 unsigned LoadSize = TD.getTypeStoreSize(LoadTy);
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 849 const unsigned StoreBytes = getTargetData()->getTypeStoreSize(Ty);
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 787 IFI.TD->getTypeStoreSize(AggTy));
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 599 const unsigned int StoreBytes = mpTD->getTypeStoreSize(Ty);
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 639 size_t RSExportType::GetTypeStoreSize(const RSExportType *ET) {
640 return ET->getRSContext()->getTargetData()->getTypeStoreSize(
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 80 if (TD && SrcETy->isSized() && TD->getTypeStoreSize(SrcETy) == Size) {
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 2253 milliseconds