HomeSort by relevance Sort by last modified time
    Searched refs:MTI (Results 1 - 25 of 37) sorted by null

1 2

  /external/llvm/lib/Analysis/
MemoryLocation.cpp 67 MemoryLocation MemoryLocation::getForSource(const MemTransferInst *MTI) {
69 if (ConstantInt *C = dyn_cast<ConstantInt>(MTI->getLength()))
75 MTI->getAAMetadata(AATags);
77 return MemoryLocation(MTI->getRawSource(), Size, AATags);
80 MemoryLocation MemoryLocation::getForDest(const MemIntrinsic *MTI) {
82 if (ConstantInt *C = dyn_cast<ConstantInt>(MTI->getLength()))
88 MTI->getAAMetadata(AATags);
90 return MemoryLocation(MTI->getRawDest(), Size, AATags);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysis.cpp 255 AliasAnalysis::getLocationForSource(const MemTransferInst *MTI) {
257 if (ConstantInt *C = dyn_cast<ConstantInt>(MTI->getLength()))
262 MDNode *TBAATag = MTI->getMetadata(LLVMContext::MD_tbaa);
264 return Location(MTI->getRawSource(), Size, TBAATag);
268 AliasAnalysis::getLocationForDest(const MemIntrinsic *MTI) {
270 if (ConstantInt *C = dyn_cast<ConstantInt>(MTI->getLength()))
275 MDNode *TBAATag = MTI->getMetadata(LLVMContext::MD_tbaa);
277 return Location(MTI->getRawDest(), Size, TBAATag);
LazyValueInfo.cpp 600 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI))
601 if (MTI->getSourceAddressSpace() == 0)
602 if (MTI->getRawSource() == Ptr || MTI->getSource() == Ptr)
    [all...]
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 145 } else if (const MemTransferInst *MTI = dyn_cast<MemTransferInst>(I)) {
146 if (MTI->isVolatile())
148 if (MTI->getArgOperand(0) == V)
150 if (MTI->getArgOperand(1) == V)
  /external/llvm/lib/Transforms/Scalar/
AlignmentFromAssumptions.cpp 342 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) {
344 MTI->getSource(), SE);
347 NewDestAlignments.find(MTI);
352 NewSrcAlignments.find(MTI);
377 NewDestAlignments.insert(std::make_pair(MTI, NewDestAlignment));
378 NewSrcAlignments.insert(std::make_pair(MTI, NewSrcAlignment));
DeadStoreElimination.cpp 185 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(Inst))
186 return MemoryLocation::getForSource(MTI);
798 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(BBI)) {
799 LoadedLoc = MemoryLocation::getForSource(MTI);
    [all...]
  /external/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
AliasSetTracker.h 355 void add(MemTransferInst *MTI);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
AliasSetTracker.h 355 void add(MemTransferInst *MTI);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
AliasSetTracker.h 355 void add(MemTransferInst *MTI);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
AliasSetTracker.h 355 void add(MemTransferInst *MTI);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
AliasSetTracker.h 355 void add(MemTransferInst *MTI);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
AliasSetTracker.h 355 void add(MemTransferInst *MTI);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
AliasSetTracker.h 355 void add(MemTransferInst *MTI);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
MemoryLocation.h 85 static MemoryLocation getForSource(const MemTransferInst *MTI);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 492 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(User)) {
493 ConstantInt *Len = dyn_cast<ConstantInt>(MTI->getLength());
604 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(User)) {
612 if (GetUnderlyingObject(MTI->getSource(), &TD, 0) != OrigAI) {
615 assert(MTI->getRawDest() == Ptr && "Neither use is of pointer?");
616 Value *SrcPtr = MTI->getSource();
626 SrcVal->setAlignment(MTI->getAlignment());
628 } else if (GetUnderlyingObject(MTI->getDest(), &TD, 0) != OrigAI) {
631 assert(MTI->getRawSource() == Ptr && "Neither use is of pointer?");
634 PointerType* DPTy = cast<PointerType>(MTI->getDest()->getType())
    [all...]
DeadStoreElimination.cpp 209 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(Inst))
210 return AA.getLocationForSource(MTI);
680 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(BBI)) {
681 LoadedLoc = AA->getLocationForSource(MTI);
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasAnalysis.h 141 static Location getLocationForSource(const MemTransferInst *MTI);

Completed in 1665 milliseconds

1 2