Searched refs:SI (Results 326 - 350 of 439) sorted by relevance

<<1112131415161718

/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DDebugInfo.cpp1771 const StoreInst *SI) {
1772 const Value *StoreDest = SI->getPointerOperand();
1773 uint64_t SizeInBits = DL.getTypeSizeInBits(SI->getValueOperand()->getType());
1836 } else if (auto *SI = dyn_cast<StoreInst>(&I)) {
1837 Info = getAssignmentInfo(DL, SI);
1838 ValueComponent = SI->getValueOperand();
1839 DestComponent = SI->getPointerOperand();
/openbsd-current/gnu/llvm/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1530 for (size_t SI = 0, SE = Symbols.size(); SI != SE;) {
1531 // Advance SI past all the symbols starting at the same address,
1533 unsigned FirstSI = SI;
1534 uint64_t Start = Symbols[SI].Addr;
1536 while (SI != SE && Symbols[SI].Addr == Start)
1537 ++SI;
1538 SymbolsHere = ArrayRef<SymbolInfoTy>(&Symbols[FirstSI], SI - FirstSI);
1637 if (SI < S
[all...]
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1411 auto SI = FuncInfo.StaticAllocaMap.find(AI); local
1412 if (SI != FuncInfo.StaticAllocaMap.end()) {
1413 LocationOps.emplace_back(SDDbgOperand::fromFrameIdx(SI->second));
1720 DenseMap<const AllocaInst*, int>::iterator SI = local
1722 if (SI != FuncInfo.StaticAllocaMap.end())
1724 SI->second, TLI.getValueType(DAG.getDataLayout(), AI->getType()));
6960 auto SI = FuncInfo.StaticAllocaMap.find(LifetimeObject); local
6961 if (SI == FuncInfo.StaticAllocaMap.end())
6964 const int FrameIndex = SI->second;
10383 const auto *SI local
10503 const StoreInst *SI = ArgCopyIter->second.second; local
11388 peelDominantCaseCluster( const SwitchInst &SI, CaseClusterVector &Clusters, BranchProbability &PeeledCaseProb) argument
11440 visitSwitch(const SwitchInst &SI) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp387 DenseMap<const AllocaInst*, int>::iterator SI = local
389 if (SI != FuncInfo.StaticAllocaMap.end()) {
391 Addr.Base.FI = SI->second;
2279 DenseMap<const AllocaInst*, int>::iterator SI =
2282 if (SI != FuncInfo.StaticAllocaMap.end()) {
2285 ResultReg).addFrameIndex(SI->second).addImm(0);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp1327 } else if (auto *SI = dyn_cast<SwitchInst>(I)) {
1328 ConstantInt *Cond = TryResolveConstant(SI->getCondition());
1332 BasicBlock *BB = SI->findCaseValue(Cond)->getCaseSuccessor();
1577 auto SI = cast<CoroSuspendInst>(S[I]); local
1580 if (!SI->isFinal() && simplifySuspendPoint(SI, Shape.CoroBegin)) {
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DDecoderEmitter.cpp218 for (auto &SI : VLI) {
219 if (const BitsInit *BI = dyn_cast<BitsInit>(SI.Value)) {
223 } else if (const BitInit *BI = dyn_cast<BitInit>(SI.Value)) {
226 for (unsigned Idx = 0U; Idx < SI.BitWidth; ++Idx)
1883 if (const StringInit *SI = dyn_cast<StringInit>(EncodingSegment.Value)) {
1884 OpName = SI->getValue();
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp748 auto SI = dyn_cast_or_null<SwitchInst>(I);
751 return (SI ? (SI->getNumCases() + 1) : 4) * (CBrCost + 1);
/openbsd-current/gnu/llvm/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp528 SNodeId SI(I + 1);
529 const Node &N = getNode(SI);
531 assert(I == Tree.PostorderIds[getIdInRoot(SI)] - getPostorderOffset() &&
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.h1539 bool lowerInterleavedStore(StoreInst *SI, ShuffleVectorInst *SVI,
1715 shouldExpandAtomicStoreInIR(StoreInst *SI) const override;
1726 bool lowerAtomicStoreAsStoreSDNode(const StoreInst &SI) const override;
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp1180 StoreInfo SI; local
1203 SI.insert(Store, VN);
1230 computeInsertionPoints(SI.getVNTable(), HPL, InsKind::Store);
/openbsd-current/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dscreen.py47 SI = 15 # Invoke G0 character set. variable
/openbsd-current/gnu/llvm/llvm/lib/Object/
H A DXCOFFObjectFile.cpp1247 Expected<DataRefImpl> SI = OwningObjectPtr->getSectionByNum(SectNum); local
1248 if (!SI) {
1251 consumeError(SI.takeError());
1255 return (OwningObjectPtr->getSectionFlags(SI.get()) & XCOFF::STYP_TEXT);
/openbsd-current/gnu/llvm/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.h574 AtomicExpansionKind shouldCastAtomicStoreInIR(StoreInst *SI) const override {
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h177 void addAccess(StoreInst *SI);
H A DLoopInfo.h729 LoopBounds(const Loop &Loop, Value &I, Instruction &SI, Value *SV, Value &F, argument
731 : L(Loop), InitialIVValue(I), StepInst(SI), StepValue(SV),
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp1820 baseRegNo = insn.hasAdSize ? X86::SI : X86::ESI;
1823 baseRegNo = insn.hasAdSize ? X86::ESI : X86::SI;
2102 indexReg = MCOperand::createReg(X86::SI);
2110 indexReg = MCOperand::createReg(X86::SI);
/openbsd-current/gnu/llvm/llvm/tools/llvm-profgen/
H A DProfiledBinary.h328 bool dissassembleSymbol(std::size_t SI, ArrayRef<uint8_t> Bytes,
/openbsd-current/gnu/llvm/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp2356 const SwitchInst &SI = cast<SwitchInst>(I); local
2357 Vals.push_back(getTypeID(SI.getCondition()->getType()));
2358 pushValue(SI.getCondition(), InstID, Vals);
2359 Vals.push_back(VE.getValueID(SI.getDefaultDest()));
2360 for (auto Case : SI.cases()) {
2580 for (const ValueName *SI : SortedTable) {
2581 auto &Name = *SI;
2601 if (isa<BasicBlock>(SI->getValue())) {
2613 NameVals.push_back(VE.getValueID(SI->getValue()));
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dunwind-dw2.c131 unsigned u4 __attribute__ ((mode (SI)));
134 signed s4 __attribute__ ((mode (SI)));
/openbsd-current/lib/libc/gdtoa/
H A Dstrtod.c166 static FPI fpi = { 53, 1-1023-53+1, 2046-1023-53+1, 1, SI };
296 { 52, 1-1023-53+1, 2046-1023-53+1, 1, SI };
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp282 for (auto *SI : FunctionScopes)
283 if (isa<sema::LambdaScopeInfo>(SI))
/openbsd-current/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp674 for (const NewSymbolInfo &SI : Config.SymbolsToAdd)
675 addSymbol(Obj, SI, ELFConfig.NewSymbolVisibility);
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/
H A DARMISelLowering.h657 bool lowerInterleavedStore(StoreInst *SI, ShuffleVectorInst *SVI,
664 shouldExpandAtomicStoreInIR(StoreInst *SI) const override;
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetLowering.h432 MachineMemOperand::Flags getStoreMemOperandFlags(const StoreInst &SI,
1246 virtual bool isSuitableForJumpTable(const SwitchInst *SI, uint64_t NumCases,
2132 virtual AtomicExpansionKind shouldExpandAtomicStoreInIR(StoreInst *SI) const {
2139 virtual AtomicExpansionKind shouldCastAtomicStoreInIR(StoreInst *SI) const {
2140 if (SI->getValueOperand()->getType()->isFloatingPointTy())
2911 /// \p SI is the vector store instruction.
2914 virtual bool lowerInterleavedStore(StoreInst *SI, ShuffleVectorInst *SVI, argument
4507 virtual bool lowerAtomicStoreAsStoreSDNode(const StoreInst &SI) const {
4508 assert(SI.isAtomic() && "violated precondition");
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp235 if (const auto *SI = dyn_cast<StoreInst>(I))
236 return !SI->isVolatile();

Completed in 606 milliseconds

<<1112131415161718