/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXLowerAlloca.cpp | 90 auto LI = dyn_cast<LoadInst>(AllocaUse.getUser()); in runOnFunction() 96 auto SI = dyn_cast<StoreInst>(AllocaUse.getUser()); in runOnFunction() 102 auto GI = dyn_cast<GetElementPtrInst>(AllocaUse.getUser()); in runOnFunction() 107 auto BI = dyn_cast<BitCastInst>(AllocaUse.getUser()); in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | TypeMetadataUtils.cpp | 28 Instruction *User = cast<Instruction>(U.getUser()); in findCallsAtConstantOffset() 55 Value *User = U.getUser(); in findLoadCallsAtConstantOffset() 83 if (auto *AssumeCI = dyn_cast<CallInst>(CIU.getUser())) { in findDevirtualizableCallsForTypeTest() 112 auto CIU = U.getUser(); in findDevirtualizableCallsForTypeCheckedLoad()
|
D | CaptureTracking.cpp | 60 if (isa<ReturnInst>(U->getUser()) && !ReturnCaptures) in captured() 134 Instruction *I = cast<Instruction>(U->getUser()); in shouldExplore() 146 if (isa<ReturnInst>(U->getUser()) && !ReturnCaptures) in captured() 251 Instruction *I = cast<Instruction>(U->getUser()); in PointerMayBeCaptured()
|
D | IVUsers.cpp | 208 Instruction *User = cast<Instruction>(U.getUser()); in AddUsersImpl() 337 if (IVUse.getUser()) in print() 338 IVUse.getUser()->print(OS); in print() 424 Parent->Processed.erase(this->getUser()); in deleted()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | AbstractCallSite.cpp | 56 AbstractCallSite::AbstractCallSite(const Use *U) : CS(U->getUser()) { in AbstractCallSite() 65 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U->getUser())) in AbstractCallSite() 68 CS = CallSite(U->getUser()); in AbstractCallSite()
|
D | Use.cpp | 40 User *Use::getUser() const { in getUser() function in llvm::Use 48 return this - getUser()->op_begin(); in getOperandNo()
|
D | Dominators.cpp | 232 Instruction *UserInst = cast<Instruction>(U.getUser()); in dominates() 250 Instruction *UserInst = cast<Instruction>(U.getUser()); in dominates() 301 Instruction *I = dyn_cast<Instruction>(U.getUser()); in isReachableFromEntry()
|
D | SafepointIRVerifier.cpp | 79 return PU.getUser()->getOperandUse(PU.getOperandNo()); in getEdge() 106 assert(cast<Instruction>(U->getUser())->isTerminator() && in isDeadEdge() 110 assert(!isDeadBlock(cast<Instruction>(U->getUser())->getParent()) && in isDeadEdge() 119 const Use &U = PU.getUser()->getOperandUse(PU.getOperandNo()); in hasLiveIncomingEdges()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyAddMissingPrototypes.cpp | 94 LLVM_DEBUG(dbgs() << *U.getUser() << "\n"); in runOnModule() 95 if (auto *BC = dyn_cast<BitCastOperator>(U.getUser())) { in runOnModule()
|
D | WebAssemblyFixFunctionBitcasts.cpp | 71 if (auto *BC = dyn_cast<BitCastOperator>(U.getUser())) in findUses() 73 else if (auto *A = dyn_cast<GlobalAlias>(U.getUser())) in findUses() 76 CallSite CS(U.getUser()); in findUses()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SpeculateAroundPHIs.cpp | 58 auto *UI = cast<Instruction>(U.getUser()); in isSafeToSpeculatePHIUsers() 254 auto *UserI = cast<Instruction>(U.getUser()); in isSafeAndProfitableToSpeculateAroundPHI() 349 auto *UI = cast<Instruction>(U.getUser()); in visitPHIUsersAndDepsInPostOrder() 436 UserSet.insert(cast<Instruction>(U.getUser())); in findProfitablePHIs() 496 SpecCostMap.find(cast<Instruction>(U.getUser()))->second; in findProfitablePHIs() 517 auto *UI = cast<Instruction>(U.getUser()); in findProfitablePHIs()
|
D | SROA.cpp | 923 assert(AS.Slices[PrevIdx].getUse()->getUser() == &II && in visitMemTransferInst() 1103 OS << Indent << " used by: " << *I->getUse()->getUser() << "\n"; in printUse() 1139 if (isa<IntrinsicInst>(*U->getUser())) in findCommonType() 1145 if (LoadInst *LI = dyn_cast<LoadInst>(U->getUser())) { in findCommonType() 1147 } else if (StoreInst *SI = dyn_cast<StoreInst>(U->getUser())) { in findCommonType() 1835 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U->getUser())) { in isVectorPromotionViableForSlice() 1840 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(U->getUser())) { in isVectorPromotionViableForSlice() 1846 } else if (LoadInst *LI = dyn_cast<LoadInst>(U->getUser())) { in isVectorPromotionViableForSlice() 1856 } else if (StoreInst *SI = dyn_cast<StoreInst>(U->getUser())) { in isVectorPromotionViableForSlice() 1909 if (auto *LI = dyn_cast<LoadInst>(S.getUse()->getUser())) in isVectorPromotionViable() [all …]
|
D | InferAddressSpaces.cpp | 758 User *Inst = U.getUser(); in isSimplePointerUseValidToReplace() 861 User *CurUser = I->getUser(); in skipToNextUser() 864 while (I != End && I->getUser() == CurUser) in skipToNextUser() 892 User *V = UndefUse->getUser(); in rewriteWithNewAddressSpaces() 940 User *CurUser = U.getUser(); in rewriteWithNewAddressSpaces()
|
D | LoopSink.cpp | 183 Instruction *UI = cast<Instruction>(U.getUser()); in sinkInstruction() 235 return cast<Instruction>(U.getUser())->getParent() == N; in sinkInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCBoolRetToInt.cpp | 239 if (isa<ReturnInst>(U.getUser())) in runOnUse() 241 if (isa<CallInst>(U.getUser())) in runOnUse() 264 auto *I = cast<Instruction>(U.getUser()); in runOnUse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | IndirectBrExpandPass.cpp | 125 return isa<BlockAddress>(U.getUser()); in runOnFunction() 136 auto *BA = cast<BlockAddress>(BlockAddressUseIt->getUser()); in runOnFunction()
|
D | PreISelIntrinsicLowering.cpp | 40 auto CI = dyn_cast<CallInst>(I->getUser()); in lowerLoadRelative() 94 auto *CI = cast<CallInst>(I->getUser()); in lowerObjCCall()
|
D | GlobalMerge.cpp | 312 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U.getUser())) { in doMerge() 317 } else if (isa<Instruction>(U.getUser())) { in doMerge() 327 Instruction *I = dyn_cast<Instruction>(UI->getUser()); in doMerge()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | IPConstantPropagation.cpp | 61 User *UR = U.getUser(); in PropagateConstantsIntoArguments() 225 CallSite CS(U.getUser()); in PropagateConstantReturn()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | PredicateInfo.cpp | 165 auto *PHI = cast<PHINode>(VD.U->getUser()); in getBlockEdge() 230 return cast<Instruction>(U->getUser()); in getDefOrUser() 268 auto *PHI = dyn_cast<PHINode>(VDUse.U->getUser()); in stackIsInScope() 295 if (auto *I = dyn_cast<Instruction>(U.getUser())) { in convertUsesToDFSOrdered() 713 << *VD.U->get() << " in " << *(VD.U->getUser()) in renameUses()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | WinCFGuard.cpp | 54 const User *FnUser = U.getUser(); in isPossibleIndirectCallTarget()
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/ |
D | RBManagerGUI.java | 410 String oldUser = getUser(); in actionPerformed() 411 …if (rbm != null && rbm.getUser() != null && !(rbm.getUser().equals(Resources.getTranslation("unkno… in actionPerformed() 412 oldUser = rbm.getUser(); in actionPerformed() 440 String oldUser = getUser(); in actionPerformed() 441 …if (rbm != null && rbm.getUser() != null && !(rbm.getUser().equals(Resources.getTranslation("unkno… in actionPerformed() 442 oldUser = rbm.getUser(); in actionPerformed() 680 BundleItemDialog biDialog = new BundleItemDialog(rbm, item, (rbm == null ? "" : rbm.getUser()), in mouseClicked() 687 BundleItemDialog biDialog = new BundleItemDialog(rbm, item, (rbm == null ? "" : rbm.getUser()), in mouseClicked() 694 BundleItemDialog biDialog = new BundleItemDialog(rbm, item, (rbm == null ? "" : rbm.getUser()), in mouseClicked() 1214 public String getUser() { in getUser() method in RBManagerGUI
|
D | PreferencesDialog.java | 43 userName = gui.getUser(); in PreferencesDialog() 268 Preferences.setPreference("username", gui.getUser()); in updatePreferences()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Use.h | 88 User *getUser() const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Use.h | 113 User *getUser() const LLVM_READONLY;
|