Home
last modified time | relevance | path

Searched refs:UseTy (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/ObjCARC/
DObjCARCContract.cpp572 Type *UseTy = U.get()->getType(); in runOnFunction() local
577 if (Replacement->getType() != UseTy) in runOnFunction()
578 Replacement = new BitCastInst(Replacement, UseTy, "", in runOnFunction()
593 if (Replacement->getType() != UseTy) in runOnFunction()
594 Replacement = new BitCastInst(Replacement, UseTy, "", in runOnFunction()
/external/llvm/lib/IR/
DMetadata.cpp166 typedef std::pair<void *, std::pair<OwnerTy, uint64_t>> UseTy; in replaceAllUsesWith() typedef
167 SmallVector<UseTy, 8> Uses(UseMap.begin(), UseMap.end()); in replaceAllUsesWith()
168 std::sort(Uses.begin(), Uses.end(), [](const UseTy &L, const UseTy &R) { in replaceAllUsesWith()
219 typedef std::pair<void *, std::pair<OwnerTy, uint64_t>> UseTy; in resolveAllUses() typedef
220 SmallVector<UseTy, 8> Uses(UseMap.begin(), UseMap.end()); in resolveAllUses()
221 std::sort(Uses.begin(), Uses.end(), [](const UseTy &L, const UseTy &R) { in resolveAllUses()
/external/llvm/include/llvm/IR/
DCallSite.h44 typename UseTy = const Use,