Searched refs:SI (Results 151 - 175 of 388) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h196 for (typename Traits::BlkSucc_iterator SI =
198 E = Traits::BlkSucc_end(Info->BB); SI != E; ++SI) {
199 BBInfo *SuccInfo = BBMap[*SI];
H A DBasicBlockUtils.h179 SplitCriticalEdge(BasicBlock *BB, succ_iterator SI, argument
182 return SplitCriticalEdge(BB->getTerminator(), SI.getSuccessorIndex(),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DAlignmentFromAssumptions.cpp328 } else if (StoreInst *SI = dyn_cast<StoreInst>(J)) {
330 SI->getPointerOperand(), SE);
332 if (NewAlignment > SI->getAlignment()) {
333 SI->setAlignment(MaybeAlign(NewAlignment));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp462 void PredicateInfo::processSwitch(SwitchInst *SI, BasicBlock *BranchBB, argument
464 Value *Op = SI->getCondition();
470 for (unsigned i = 0, e = SI->getNumSuccessors(); i != e; ++i) {
471 BasicBlock *TargetBlock = SI->getSuccessor(i);
476 for (auto C : SI->cases()) {
480 Op, SI->getParent(), TargetBlock, C.getCaseValue(), SI);
503 } else if (auto *SI = dyn_cast<SwitchInst>(BranchBB->getTerminator())) {
504 processSwitch(SI, BranchBB, OpsToRename);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp84 symbol_iterator SI = RelRef.getSymbol(); local
85 const typename ELFT::Sym *Sym = Obj->getSymbol(SI->getRawDataRefImpl());
87 Expected<section_iterator> SymSI = SI->getSection();
97 Expected<StringRef> SymName = SI->getName();
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp183 Expected<section_iterator> SI = Symbol.getSection(); local
184 if (!SI)
185 return errorToErrorCode(SI.takeError());
186 ResolvedSection = Ctx.COFF.getCOFFSection(**SI);
/freebsd-12-stable/contrib/gcc/config/
H A Ddarwin-64.c39 typedef int SI; typedef
/freebsd-12-stable/contrib/gdtoa/
H A DstrtorQ.c112 static FPI fpi0 = { 113, 1-16383-113+1, 32766-16383-113+1, 1, SI };
H A Dstrtorx.c115 static FPI fpi0 = { 64, 1-16383-64+1, 32766 - 16383 - 64 + 1, 1, SI };
/freebsd-12-stable/usr.bin/col/
H A Dcol.c70 #define SI '\017' /* shift in to normal character set */ macro
234 case SI:
361 PUTC(SI);
525 PUTC(SI);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp247 if (const StoreInst *SI = dyn_cast<StoreInst>(&I)) {
248 Alignment = SI->getAlignment();
249 ValTy = SI->getValueOperand()->getType();
439 const SwitchInst &SI = cast<SwitchInst>(U); local
442 Clusters.reserve(SI.getNumCases());
443 for (auto &I : SI.cases()) {
448 BPI ? BPI->getEdgeProbability(SI.getParent(), I.getSuccessorIndex())
449 : BranchProbability(1, SI.getNumCases() + 1);
453 MachineBasicBlock *DefaultMBB = &getMBB(*SI.getDefaultDest());
460 MachineBasicBlock *SwitchMBB = &getMBB(*SI
906 const StoreInst &SI = cast<StoreInst>(U); local
1013 const SelectInst &SI = cast<SelectInst>(U); local
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp55 if (StringInit *SI = dyn_cast<StringInit>(R.getValueInit(field)))
56 return SI->getValue();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DStatistic.cpp102 StatisticInfo &SI = *StatInfo; local
108 SI.addStatistic(this);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DDependencyAnalysis.cpp108 } else if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
111 const Value *Op = GetUnderlyingObjCPtr(SI->getPointerOperand(), DL);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp732 for (const NewSymbolInfo &SI : Config.ELF->SymbolsToAdd) {
733 SectionBase *Sec = Obj.findSection(SI.SectionName);
734 uint64_t Value = Sec ? Sec->Addr + SI.Value : SI.Value;
736 SI.SymbolName, SI.Bind, SI.Type, Sec, Value, SI.Visibility,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DCrossDSOCFI.cpp142 SwitchInst *SI = IRB.CreateSwitch(&CallSiteTypeId, TrapBB, TypeIds.size()); local
155 SI->addCase(CaseTypeId, TestBB);
/freebsd-12-stable/contrib/libpcap/msdos/
H A Dpkt_rx0.asm108 ;; to ES:DI (= DS:SI on 2nd call) by the packet driver
117 ; 2nd time (AX=1) the packet has been copied to this location (DS:SI)
172 @post: or si, si ; DS:SI->_pktRxBuf[n][n].destinAdr
175 sub si, 6 ; DS:SI -> _pktRxBuf[n].destinAdr
H A Dpkt_rx1.s73 ; 2nd time (AX=1) the packet has been copied to this location (DS:SI)
131 @post: or si, si ; DS:SI->_pktRxBuf[n][n].destinAdr
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp550 for (SymExpr::symbol_iterator SI = sym->symbol_begin(),
552 SI != SE; ++SI) {
553 bool wasVisited = !visited.insert(*SI).second;
557 if (!visitor.VisitSymbol(*SI))
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h3132 SwitchInst(const SwitchInst &SI);
3183 SwitchInstT *SI;
3187 CaseHandleImpl(SwitchInstT *SI, ptrdiff_t Index) : SI(SI), Index(Index) {} argument
3192 assert((unsigned)Index < SI->getNumCases() &&
3194 return reinterpret_cast<ConstantIntT *>(SI->getOperand(2 + Index * 2));
3199 assert(((unsigned)Index < SI->getNumCases() ||
3202 return SI->getSuccessor(getSuccessorIndex());
3211 (unsigned)Index < SI
3230 CaseHandle(SwitchInst *SI, ptrdiff_t Index) argument
3261 CaseIteratorImpl(SwitchInstT *SI, unsigned CaseNum) argument
3265 fromSuccessorIndex(SwitchInstT *SI, unsigned SuccessorIndex) argument
3489 SwitchInstProfUpdateWrapper(SwitchInst &SI) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp197 bool optimizeSelect(const SelectInst *SI);
364 DenseMap<const AllocaInst *, int>::iterator SI =
367 if (SI != FuncInfo.StaticAllocaMap.end()) {
371 .addFrameIndex(SI->second)
671 DenseMap<const AllocaInst *, int>::iterator SI = local
673 if (SI != FuncInfo.StaticAllocaMap.end()) {
675 Addr.setFI(SI->second);
1197 if (const auto *SI = dyn_cast<BinaryOperator>(LHS))
1198 if (isa<ConstantInt>(SI->getOperand(1)))
1199 if (SI
2654 optimizeSelect(const SelectInst *SI) argument
2741 const SelectInst *SI = cast<SelectInst>(I); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp466 void visitStoreInst(StoreInst &SI);
472 void visitSwitchInst(SwitchInst &SI);
475 void visitSelectInst(SelectInst &SI);
2497 void Verifier::visitSwitchInst(SwitchInst &SI) { argument
2500 Type *SwitchTy = SI.getCondition()->getType();
2502 for (auto &Case : SI.cases()) {
2504 "Switch constants must all be same type as switch value!", &SI);
2506 "Duplicate integer as switch case", &SI, Case.getCaseValue());
2509 visitTerminator(SI);
2551 void Verifier::visitSelectInst(SelectInst &SI) { argument
3432 visitStoreInst(StoreInst &SI) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp348 void instrumentOneSelectInst(SelectInst &SI);
349 void annotateOneSelectInst(SelectInst &SI);
351 // Visit \p SI instruction and perform tasks according to visit mode.
352 void visitSelectInst(SelectInst &SI);
1348 void SelectInstVisitor::instrumentOneSelectInst(SelectInst &SI) { argument
1350 IRBuilder<> Builder(&SI);
1353 auto *Step = Builder.CreateZExt(SI.getCondition(), Int64Ty);
1362 void SelectInstVisitor::annotateOneSelectInst(SelectInst &SI) { argument
1370 auto BI = UseFunc->findBBInfo(SI.getParent());
1377 setProfMetadata(F.getParent(), &SI, SCount
1380 visitSelectInst(SelectInst &SI) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp425 for (auto SI = I.succ_begin(), SE = I.succ_end(); SI != SE; ++SI) {
427 if (RPO[(*SI)->getNumber()] <= BN)
2136 SlotInfo &SI = FIRangeMap[TFI]; local
2142 RC = getCommonRC(SI.RC, RC);
2146 SI.RC = RC;
2151 if (SI.Size != 0 && SI.Size != S)
2154 SI
2301 MachineInstr &SI = *IM.getInstr(Range.start()); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DIVDescriptors.cpp520 SelectInst *SI = dyn_cast<SelectInst>(I); local
521 if (!SI)
524 CmpInst *CI = dyn_cast<CmpInst>(SI->getCondition());
529 Value *TrueVal = SI->getTrueValue();
530 Value *FalseVal = SI->getFalseValue();
547 return InstDesc(Kind == RK_FloatAdd, SI);
550 return InstDesc(Kind == RK_FloatMult, SI);

Completed in 314 milliseconds

1234567891011>>