Searched refs:SI (Results 226 - 250 of 388) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp386 if (SwitchInst *SI = dyn_cast<SwitchInst>(UniquePred->getTerminator()))
387 if (SI->getCondition() == V)
388 return SI->getDefaultDest() != RI->getParent();
H A DEarlyCSE.cpp671 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
672 return SI->isUnordered();
684 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
685 return SI->isVolatile();
742 if (auto *SI = dyn_cast<StoreInst>(Inst))
743 return SI->getValueOperand();
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1291 for (unsigned SI = 0, SE = Symbols.size(); SI != SE; ++SI) {
1292 std::string SymbolName = std::get<1>(Symbols[SI]).str();
1301 uint64_t Start = std::get<0>(Symbols[SI]);
1310 if (SI + 1 < SE)
1311 End = std::min(End, std::get<0>(Symbols[SI + 1]));
1326 if (std::get<2>(Symbols[SI]) == ELF::STT_AMDGPU_HSA_KERNEL) {
1330 if (SI == SE - 1 ||
1331 std::get<2>(Symbols[SI
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp225 for (BasicBlock *SI : successors(B)) {
227 auto SuccNo = Mapping.blockToIndex(SI);
264 LLVM_DEBUG(dbgs() << "\nblock " << I << " follower " << SI->getName()
270 LLVM_DEBUG(dbgs() << "\nblock " << I << " follower " << SI << "\n"); local
513 void visitStoreInst(StoreInst &SI) { PI.setAborted(&SI); } argument
H A DCoroInstr.h378 if (auto *SI = dyn_cast<CoroSaveInst>(Arg))
379 return SI;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseMultiSet.h228 iterator_base(SMSPtrTy P, unsigned I, unsigned SI) argument
229 : SMS(P), Idx(I), SparseIdx(SI) {}
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h299 /// \return The estimated number of case clusters when lowering \p 'SI'.
300 /// \p JTSize Set a jump table size only when \p SI is suitable for a jump
302 unsigned getEstimatedNumberOfCaseClusters(const SwitchInst &SI,
1107 bool isLegalToVectorizeStore(StoreInst *SI) const;
1194 virtual unsigned getEstimatedNumberOfCaseClusters(const SwitchInst &SI,
1381 virtual bool isLegalToVectorizeStore(StoreInst *SI) const = 0;
1708 unsigned getEstimatedNumberOfCaseClusters(const SwitchInst &SI,
1712 return Impl.getEstimatedNumberOfCaseClusters(SI, JTSize, PSI, BFI);
1844 bool isLegalToVectorizeStore(StoreInst *SI) const override {
1845 return Impl.isLegalToVectorizeStore(SI);
[all...]
H A DBasicAliasAnalysis.h209 AliasResult aliasSelect(const SelectInst *SI, LocationSize SISize,
H A DMemoryLocation.h200 static MemoryLocation get(const StoreInst *SI);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DSetTheory.cpp193 if (StringInit *SI = dyn_cast<StringInit>(Expr->arg_begin()[0]))
194 Format = SI->getValue();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PBQPRegAlloc.cpp322 SlotIndex SI = LIs.getInstructionIndex(MI); local
323 return LI.expiredAt(SI);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPerfHintAnalysis.cpp128 if (auto SI = dyn_cast<StoreInst>(Inst)) {
129 return SI->getPointerOperand();
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DIdentifierTable.h712 Selector(MultiKeywordSelector *SI) {
713 InfoPtr = reinterpret_cast<uintptr_t>(SI);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonStoreWidening.cpp177 for (auto SI : Stores) {
178 const MachineMemOperand &SMO = getStoreTarget(SI);
H A DHexagonBitSimplify.cpp3081 const MachineInstr *SI = G.Ins[i-1];
3082 unsigned DR = getDefReg(SI);
3085 DebugLoc DL = SI->getDebugLoc();
3087 auto MIB = BuildMI(LB, At, DL, HII->get(SI->getOpcode()), NewDR);
3088 for (unsigned j = 0, m = SI->getNumOperands(); j < m; ++j) {
3089 const MachineOperand &Op = SI->getOperand(j);
3211 MachineInstr *SI = ShufIns[i];
3212 if (SI == nullptr)
3216 G.Ins.push_back(SI);
3217 G.Out.Reg = getDefReg(SI);
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp192 const unsigned SI = Use64BitRegs ? X86::RSI : X86::ESI; local
199 Chain = DAG.getCopyToReg(Chain, dl, SI, Src, InFlag);
/freebsd-12-stable/contrib/gcc/config/
H A Dfp-bit.h104 typedef int SItype __attribute__ ((mode (SI)));
117 typedef unsigned int USItype __attribute__ ((mode (SI)));
/freebsd-12-stable/contrib/gcc/
H A Dlibgcc2.h143 typedef int SItype __attribute__ ((mode (SI)));
144 typedef unsigned int USItype __attribute__ ((mode (SI)));
/freebsd-12-stable/usr.bin/ul/
H A Dul.c58 #define SI '\017' macro
217 case SI:
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveVariables.cpp601 for (MachineBasicBlock::const_succ_iterator SI = MBB->succ_begin(),
602 SE = MBB->succ_end(); SI != SE; ++SI) {
603 MachineBasicBlock *SuccMBB = *SI;
H A DMachineCSE.cpp505 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB); local
506 assert(SI != ScopeMap.end());
507 delete SI->second;
508 ScopeMap.erase(SI);
H A DAggressiveAntiDepBreaker.cpp161 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
162 SE = BB->succ_end(); SI != SE; ++SI)
163 for (const auto &LI : (*SI)->liveins()) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DUninitializedValues.cpp643 for (CFGBlock::const_succ_iterator SI = Pred->succ_begin(),
645 SI != SE; ++SI)
646 if (!*SI)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h177 const MCInstPrinter *IP, MCAsmParserSemaCallback &SI) = 0;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBranchProbabilityInfo.cpp865 for (succ_const_iterator SI = succ_begin(&BI), SE = succ_end(&BI); SI != SE;
866 ++SI) {
867 printEdgeProbability(OS << " ", &BI, *SI);

Completed in 432 milliseconds

1234567891011>>