HomeSort by relevance Sort by last modified time
    Searched defs:LoadTy (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
OSAtomicChecker.cpp 126 // LoadTy specifying can be omitted. But we put it here to emphasize the
128 QualType LoadTy;
131 LoadTy = TR->getValueType();
134 state, location, &OSAtomicLoadTag, LoadTy);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 362 Type *LoadTy = cast<PointerType>(C->getType())->getElementType();
363 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy);
372 if (LoadTy->isFloatTy())
374 else if (LoadTy->isDoubleTy())
376 else if (LoadTy->isVectorTy()) {
378 TD.getTypeAllocSizeInBits(LoadTy));
385 return FoldBitCast(Res, LoadTy, TD);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 665 Type *LoadTy,
669 if (LoadTy->isStructTy() || LoadTy->isArrayTy() ||
676 TD.getTypeSizeInBits(LoadTy))
775 static int AnalyzeLoadFromClobberingWrite(Type *LoadTy, Value *LoadPtr,
781 if (LoadTy->isStructTy() || LoadTy->isArrayTy())
808 uint64_t LoadSize = TD.getTypeSizeInBits(LoadTy);
849 static int AnalyzeLoadFromClobberingStore(Type *LoadTy, Value *LoadPtr,
859 return AnalyzeLoadFromClobberingWrite(LoadTy, LoadPtr
    [all...]
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 955 milliseconds