/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | MemoryDependenceAnalysis.h | 72 Clobber, enumerator 119 PointerSumTypeMember<Clobber, Instruction *>, 136 assert(Inst && "Clobber requires inst"); in getClobber() 137 return MemDepResult(ValueTy::create<Clobber>(Inst)); in getClobber() 151 bool isClobber() const { return Value.is<Clobber>(); } in isClobber() 181 case Clobber: in getInst() 182 return Value.cast<Clobber>(); in getInst()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | DbgEntityHistoryCalculator.h | 55 enum EntryKind { DbgValue, Clobber }; enumerator 64 bool isClobber() const { return getEntryKind() == Clobber; } in isClobber()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | MemDepPrinter.cpp | 27 Clobber = 0, enumerator 64 return InstTypePair(dep.getInst(), Clobber); in getInstTypePair() 90 = {"Clobber", "Def", "NonFuncLocal", "Unknown"};
|
H A D | MemorySSA.cpp | 404 assert(MSSA.dominates(ClobberAt, Start) && "Clobber doesn't dominate start?"); in checkClobberSanity() 549 /// Walk to the next Phi or Clobber in the def chain starting at Desc.Last. 610 MemoryAccess *Clobber; member 781 // Moves the TerminatedPath with the "most dominated" Clobber to the end of in tryOptimizePhi() 787 if (!MSSA.dominates(I->Clobber, Dom->Clobber)) in tryOptimizePhi() 803 return MSSA.dominates(P.Clobber, Target); in tryOptimizePhi() 885 if (DT.dominates(ChainBB, TP.Clobber->getBlock())) in tryOptimizePhi() 916 return MSSA.dominates(P.Clobber, R.PrimaryClobber.Clobber); in verifyOptResult() 2348 MemoryAccess *Clobber = getClobberingMemoryAccessBase() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIFixSGPRCopies.cpp | 468 auto interferes = [&MDT, From, To](MachineInstr* &Clobber) -> bool { 471 bool MayClobberFrom = isReachable(Clobber, &*From, MBBTo, MDT); 472 bool MayClobberTo = isReachable(Clobber, &*To, MBBTo, MDT); 479 // dominated by Clobber and belong to the same block or if Clobber 483 MDT.dominates(Clobber, &*From) && 484 MDT.dominates(Clobber, &*To)) || 485 MDT.properlyDominates(Clobber->getParent(), MBBTo));
|
/third_party/vixl/test/aarch64/ |
H A D | test-utils-aarch64.h | 512 void Clobber(MacroAssembler* masm, 516 // As Clobber, but for FP registers. 521 // As Clobber, but for a CPURegList with either FP or integer registers. When 523 // Clobber or ClobberFP functions. 524 void Clobber(MacroAssembler* masm, CPURegList reg_list);
|
H A D | test-utils-aarch64.cc | 551 void Clobber(MacroAssembler* masm, RegList reg_list, uint64_t const value) { in Clobber() function 593 void Clobber(MacroAssembler* masm, CPURegList reg_list) { in Clobber() function 596 Clobber(masm, reg_list.GetList()); in Clobber()
|
H A D | test-assembler-aarch64.cc | 7918 Clobber(&masm, x0_to_x3); 7928 Clobber(&masm, x10_to_x13); 7980 Clobber(&masm, x0.GetBit()); 7983 Clobber(&masm, x1.GetBit()); 7986 Clobber(&masm, x2.GetBit()); 7989 Clobber(&masm, x3.GetBit()); 7992 Clobber(&masm, x4.GetBit()); 7995 Clobber(&masm, x5.GetBit()); 7998 Clobber(&masm, x6.GetBit()); 8002 Clobber( [all...] |
/third_party/ffmpeg/tests/checkasm/x86/ |
H A D | checkasm.asm | 68 ; Clobber the stack with junk below the stack pointer
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DbgEntityHistoryCalculator.cpp | 80 Entries.emplace_back(&MI, Entry::Clobber); in startClobber() 365 dbgs() << "Clobber\n"; in dump()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | IfConversion.cpp | 1496 for (auto Clobber : Clobbers) { in UpdatePredRedefs() 1499 unsigned Reg = Clobber.first; in UpdatePredRedefs() 1500 MachineOperand &Op = const_cast<MachineOperand&>(*Clobber.second); in UpdatePredRedefs()
|