/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveRangeEdit.cpp | 364 LiveInterval &NewLI = createEmptyIntervalFrom(Dest, false); in eliminateDeadDef() local 365 VNInfo *VNI = NewLI.getNextValue(Idx, LIS.getVNInfoAllocator()); in eliminateDeadDef() 366 NewLI.addSegment(LiveInterval::Segment(Idx, Idx.getDeadSlot(), VNI)); in eliminateDeadDef() 370 MI->substituteRegister(Dest, NewLI.reg, 0, TRI); in eliminateDeadDef()
|
D | RenameIndependentSubregs.cpp | 143 LiveInterval &NewLI = LIS->createEmptyInterval(NewVReg); in INITIALIZE_PASS_DEPENDENCY() local 144 Intervals.push_back(&NewLI); in INITIALIZE_PASS_DEPENDENCY()
|
D | AtomicExpandPass.cpp | 385 auto *NewLI = Builder.CreateLoad(NewTy, NewAddr); in convertAtomicLoadToIntegerType() local 386 NewLI->setAlignment(MaybeAlign(LI->getAlignment())); in convertAtomicLoadToIntegerType() 387 NewLI->setVolatile(LI->isVolatile()); in convertAtomicLoadToIntegerType() 388 NewLI->setAtomic(LI->getOrdering(), LI->getSyncScopeID()); in convertAtomicLoadToIntegerType() 389 LLVM_DEBUG(dbgs() << "Replaced " << *LI << " with " << *NewLI << "\n"); in convertAtomicLoadToIntegerType() 391 Value *NewVal = Builder.CreateBitCast(NewLI, LI->getType()); in convertAtomicLoadToIntegerType() 394 return NewLI; in convertAtomicLoadToIntegerType()
|
D | LiveIntervals.cpp | 1674 LiveInterval &NewLI = createEmptyInterval(NewVReg); in splitSeparateComponents() local 1675 SplitLIs.push_back(&NewLI); in splitSeparateComponents()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonCFGOptimizer.cpp | 229 for (const auto &NewLI : NewLiveIn) in runOnMachineFunction() local 230 LayoutSucc->addLiveIn(NewLI); in runOnMachineFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombinePHI.cpp | 610 LoadInst *NewLI = in FoldPHIArgLoadIntoPHI() local 627 NewLI->setMetadata(ID, FirstLI->getMetadata(ID)); in FoldPHIArgLoadIntoPHI() 632 combineMetadata(NewLI, LI, KnownIDs, true); in FoldPHIArgLoadIntoPHI() 642 NewLI->setOperand(0, InVal); in FoldPHIArgLoadIntoPHI() 655 PHIArgMergedDebugLoc(NewLI, PN); in FoldPHIArgLoadIntoPHI() 656 return NewLI; in FoldPHIArgLoadIntoPHI()
|
D | InstCombineLoadStoreAlloca.cpp | 1359 LoadInst *NewLI = IC.combineLoadToNewType(*LI, CmpLoadTy); in removeBitcastsFromLoadStoreOnMinMax() local 1364 combineStoreToNewValue(IC, *USI, NewLI); in removeBitcastsFromLoadStoreOnMinMax()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | Local.h | 475 void copyNonnullMetadata(const LoadInst &OldLI, MDNode *N, LoadInst &NewLI); 482 LoadInst &NewLI);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 2559 LoadInst &NewLI) { in copyNonnullMetadata() argument 2560 auto *NewTy = NewLI.getType(); in copyNonnullMetadata() 2564 NewLI.setMetadata(LLVMContext::MD_nonnull, N); in copyNonnullMetadata() 2573 MDBuilder MDB(NewLI.getContext()); in copyNonnullMetadata() 2579 NewLI.setMetadata(LLVMContext::MD_range, in copyNonnullMetadata() 2584 MDNode *N, LoadInst &NewLI) { in copyRangeMetadata() argument 2585 auto *NewTy = NewLI.getType(); in copyRangeMetadata() 2597 NewLI.setMetadata(LLVMContext::MD_nonnull, NN); in copyRangeMetadata()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SROA.cpp | 2515 LoadInst *NewLI = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI, in visitLoadInst() local 2519 NewLI->setAAMetadata(AATags); in visitLoadInst() 2521 NewLI->setAtomic(LI.getOrdering(), LI.getSyncScopeID()); in visitLoadInst() 2522 if (NewLI->isAtomic()) in visitLoadInst() 2523 NewLI->setAlignment(LI.getAlign()); in visitLoadInst() 2536 copyNonnullMetadata(LI, N, *NewLI); in visitLoadInst() 2539 V = NewLI; in visitLoadInst() 2554 LoadInst *NewLI = IRB.CreateAlignedLoad( in visitLoadInst() local 2558 NewLI->setAAMetadata(AATags); in visitLoadInst() 2560 NewLI->setAtomic(LI.getOrdering(), LI.getSyncScopeID()); in visitLoadInst() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 2465 Value *NewLI; in vectorizeMemoryInstruction() local 2469 NewLI = Builder.CreateMaskedGather(VectorGep, Alignment.value(), MaskPart, in vectorizeMemoryInstruction() 2471 addMetadata(NewLI, LI); in vectorizeMemoryInstruction() 2475 NewLI = Builder.CreateMaskedLoad( in vectorizeMemoryInstruction() 2479 NewLI = Builder.CreateAlignedLoad(DataTy, VecPtr, Alignment.value(), in vectorizeMemoryInstruction() 2483 addMetadata(NewLI, LI); in vectorizeMemoryInstruction() 2485 NewLI = reverseVector(NewLI); in vectorizeMemoryInstruction() 2487 VectorLoopValueMap.setVectorValue(Instr, Part, NewLI); in vectorizeMemoryInstruction()
|