/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | R600OpenCLImageTypeLoweringPass.cpp | 179 Value *Replacement = nullptr; in replaceImageUses() local 182 Replacement = ConstantInt::get(Int32Type, ResourceID); in replaceImageUses() 184 Replacement = &ImageSizeArg; in replaceImageUses() 186 Replacement = &ImageFormatArg; in replaceImageUses() 191 Inst->replaceAllUsesWith(Replacement); in replaceImageUses() 212 Value *Replacement = nullptr; in replaceSamplerUses() local 215 Replacement = ConstantInt::get(Int32Type, ResourceID); in replaceSamplerUses() 220 Inst->replaceAllUsesWith(Replacement); in replaceSamplerUses()
|
D | AMDGPURewriteOutArguments.cpp | 385 for (std::pair<ReturnInst *, ReplacementVec> &Replacement : Replacements) { in runOnFunction() 386 ReturnInst *RI = Replacement.first; in runOnFunction() 397 for (std::pair<Argument *, Value *> ReturnPoint : Replacement.second) { in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCContract.cpp | 650 Instruction *Replacement = Inst; in runOnFunction() local 656 if (Replacement->getType() != UseTy) { in runOnFunction() 667 Replacement = in runOnFunction() 668 new BitCastInst(Replacement, UseTy, "", &InsertBB->back()); in runOnFunction() 681 PHI->setIncomingValue(i, Replacement); in runOnFunction() 684 if (Replacement->getType() != UseTy) in runOnFunction() 685 Replacement = new BitCastInst(Replacement, UseTy, "", in runOnFunction() 687 U.set(Replacement); in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | InterleavedAccessPass.cpp | 406 for (auto &Replacement : ReplacementMap) { in tryReplaceExtracts() local 407 auto *Extract = Replacement.first; in tryReplaceExtracts() 408 auto *Vector = Replacement.second.first; in tryReplaceExtracts() 409 auto Index = Replacement.second.second; in tryReplaceExtracts()
|
D | SafeStack.cpp | 611 Value *Replacement = IRBUser.CreateBitCast(Off, AI->getType(), Name); in moveStaticAllocasToUnsafeStack() local 616 PHI->setIncomingValueForBlock(PHI->getIncomingBlock(U), Replacement); in moveStaticAllocasToUnsafeStack() 618 U.set(Replacement); in moveStaticAllocasToUnsafeStack()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | FunctionImportUtils.cpp | 310 auto Replacement = RenamedComdats.find(C); in processGlobalsForThinLTO() local 311 if (Replacement != RenamedComdats.end()) in processGlobalsForThinLTO() 312 GO.setComdat(Replacement->second); in processGlobalsForThinLTO()
|
D | BypassSlowDivision.cpp | 463 if (Value *Replacement = Task.getReplacement(PerBBDivCache)) { in bypassSlowDivision() local 464 I->replaceAllUsesWith(Replacement); in bypassSlowDivision()
|
/third_party/skia/third_party/externals/tint/src/ |
D | clone_context_test.cc | 66 struct Replacement : public Castable<Replacement, Replaceable> { struct 67 Replacement(Allocator* alloc, Symbol n) : Base(alloc, n) {} in Replacement() argument 192 auto* out = alloc.Create<Replacement>(out_name); in TEST_F() 247 EXPECT_FALSE(Is<Replacement>(cloned_root->a)); in TEST_F() 248 EXPECT_TRUE(Is<Replacement>(cloned_root->a->b)); in TEST_F() 249 EXPECT_FALSE(Is<Replacement>(cloned_root->a->b->b)); in TEST_F() 250 EXPECT_TRUE(Is<Replacement>(cloned_root->b)); in TEST_F() 251 EXPECT_FALSE(Is<Replacement>(cloned_root->b->b)); in TEST_F() 306 return a.Create<Replacement>(builder.Symbols().New("<unexpected-node>")); in TEST_F() 886 TINT_INSTANTIATE_TYPEINFO(Replacement);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/ |
D | RandomIRBuilder.cpp | 71 const Value *Replacement) { in isCompatibleReplacement() argument 72 if (Operand->getType() != Replacement->getType()) in isCompatibleReplacement()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
D | CoroInternal.h | 48 void replaceAllCoroAllocs(CoroBeginInst *CB, bool Replacement); 49 void replaceAllCoroFrees(CoroBeginInst *CB, Value *Replacement);
|
D | CoroEarly.cpp | 79 Value *Replacement = in lowerCoroPromise() local 82 Intrin->replaceAllUsesWith(Replacement); in lowerCoroPromise()
|
D | Coroutines.cpp | 176 Value *Replacement = in replaceCoroFree() local 181 CF->replaceAllUsesWith(Replacement); in replaceCoroFree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DIBuilder.h | 878 NodeTy *replaceTemporary(TempMDNode &&N, NodeTy *Replacement) { in replaceTemporary() argument 879 if (N.get() == Replacement) in replaceTemporary() 882 N->replaceAllUsesWith(Replacement); in replaceTemporary() 883 return Replacement; in replaceTemporary()
|
D | Constant.h | 200 static Constant *replaceUndefsWith(Constant *C, Constant *Replacement);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | SourceMgr.h | 208 SMFixIt(SMRange R, const Twine &Replacement) in SMFixIt() argument 209 : Range(R), Text(Replacement.str()) { in SMFixIt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | SourceMgr.h | 242 SMFixIt(SMRange R, const Twine &Replacement) in SMFixIt() argument 243 : Range(R), Text(Replacement.str()) { in SMFixIt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopUnswitch.cpp | 1464 Value *Replacement; in RewriteLoopBodyWithConditionConstant() local 1466 Replacement = Val; in RewriteLoopBodyWithConditionConstant() 1468 Replacement = ConstantInt::get(Type::getInt1Ty(Val->getContext()), in RewriteLoopBodyWithConditionConstant() 1479 UI->replaceUsesOfWith(LIC, Replacement); in RewriteLoopBodyWithConditionConstant() 1495 if (Value *Replacement = SimplifyInstructionWithNotEqual(UI, LIC, Val)) { in RewriteLoopBodyWithConditionConstant() local 1496 if (LI->replacementPreservesLCSSAForm(UI, Replacement)) { in RewriteLoopBodyWithConditionConstant() 1505 UI->replaceAllUsesWith(Replacement); in RewriteLoopBodyWithConditionConstant()
|
/third_party/typescript/scripts/ |
D | word2md.ts | 26 replacement: Replacement; 44 export interface Replacement { interface
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_replace_benchmark.cc | 29 struct Replacement { struct
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | ThinLTOBitcodeWriter.cpp | 76 auto Replacement = RenamedComdats.find(C); in promoteInternals() local 77 if (Replacement != RenamedComdats.end()) in promoteInternals() 78 GO.setComdat(Replacement->second); in promoteInternals()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | BasicBlock.cpp | 72 Constant *Replacement = in ~BasicBlock() local 76 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement, in ~BasicBlock()
|
D | Constants.cpp | 627 Constant *Constant::replaceUndefsWith(Constant *C, Constant *Replacement) { in replaceUndefsWith() argument 628 assert(C && Replacement && "Expected non-nullptr constant arguments"); in replaceUndefsWith() 631 assert(Ty == Replacement->getType() && "Expected matching types"); in replaceUndefsWith() 632 return Replacement; in replaceUndefsWith() 643 assert((!EltC || EltC->getType() == Replacement->getType()) && in replaceUndefsWith() 645 NewC[i] = EltC && match(EltC, m_Undef()) ? Replacement : EltC; in replaceUndefsWith() 2898 Value *Replacement = nullptr; in handleOperandChange() local 2904 Replacement = cast<Name>(this)->handleOperandChangeImpl(From, To); \ in handleOperandChange() 2911 if (!Replacement) in handleOperandChange() 2915 assert(Replacement != this && "I didn't contain From!"); in handleOperandChange() [all …]
|
D | DebugInfo.cpp | 412 auto Replacement = Replacements.find(M); in map() local 413 if (Replacement != Replacements.end()) in map() 414 return Replacement->second; in map() 1328 LLVMMetadataRef Replacement) { in LLVMMetadataReplaceAllUsesWith() argument 1330 Node->replaceAllUsesWith(unwrap<Metadata>(Replacement)); in LLVMMetadataReplaceAllUsesWith()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | InstrProfReader.cpp | 663 StringRef Replacement, in reconstituteName() argument 665 Out.reserve(OrigName.size() + Replacement.size() - ExtractedName.size()); in reconstituteName() 667 Out.insert(Out.end(), Replacement.begin(), Replacement.end()); in reconstituteName()
|
/third_party/libxml2/os400/ |
D | xmlcatalog.cmd | 83 CASE(*MIXED) PROMPT('Replacement entity URI')
|