Home
last modified time | relevance | path

Searched refs:SI (Results 151 – 175 of 477) sorted by relevance

12345678910>>...20

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStatistic.cpp109 StatisticInfo &SI = *StatInfo; in RegisterStatistic() local
115 SI.addStatistic(this); in RegisterStatistic()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp802 void visitStoreInst(StoreInst &SI);
2233 const auto SI = AllocaShadowMap.find(AI); in loadShadowOriginSansLoadTracking() local
2234 if (SI != AllocaShadowMap.end()) { in loadShadowOriginSansLoadTracking()
2566 if (SI != AllocaShadowMap.end()) { in storePrimitiveShadowOrigin()
2649 Value *Val = SI.getValueOperand(); in visitStoreInst()
2659 if (SI.isAtomic()) in visitStoreInst()
2660 SI.setOrdering(addReleaseOrdering(SI.getOrdering())); in visitStoreInst()
2689 DFSF.storePrimitiveShadowOrigin(SI.getPointerOperand(), Size, SI.getAlign(), in visitStoreInst()
2692 IRBuilder<> IRB(&SI); in visitStoreInst()
2693 Value *Addr = SI.getPointerOperand(); in visitStoreInst()
[all …]
/freebsd/share/i18n/esdb/CP/
H A DCP50222.src5 VARIABLE "INIT0=94B INIT1=94I 0=94B 0=94J 0=94$B 0=94$@ 1=94I SI SO"
H A DCP50221.src5 VARIABLE "INIT0=94B INIT1=94I 0=94B 0=94J 0=94$B 0=94$@ 0=94I 1=94I SI SO"
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1116 if (StoreInst *SI = dyn_cast<StoreInst>(I)) in isRemovable() local
1117 return SI->isUnordered(); in isRemovable()
1270 if (auto SI = dyn_cast<StoreInst>(UseInst)) in isReadClobber() local
1271 return isStrongerThan(SI->getOrdering(), AtomicOrdering::Monotonic); in isReadClobber()
1700 void deleteDeadInstruction(Instruction *SI) { in deleteDeadInstruction()
1703 NowDeadInsts.push_back(SI); in deleteDeadInstruction()
1721 if (auto *SI = dyn_cast<StoreInst>(MD->getMemoryInst())) { in deleteDeadInstruction() local
1722 if (SI->getValueOperand()->getType()->isPointerTy()) { in deleteDeadInstruction()
1791 if (auto *SI = dyn_cast<StoreInst>(DeadI)) in isDSEBarrier() local
1792 return isStrongerThanMonotonic(SI->getOrdering()); in isDSEBarrier()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackColoring.cpp922 for (const std::pair<int, int> &SI : SlotRemap) { in remapInstructions() local
923 const AllocaInst *From = MFI->getObjectAllocation(SI.first); in remapInstructions()
924 const AllocaInst *To = MFI->getObjectAllocation(SI.second); in remapInstructions()
954 = MFI->getObjectSSPLayout(SI.first); in remapInstructions()
955 MachineFrameInfo::SSPLayoutKind ToKind = MFI->getObjectSSPLayout(SI.second); in remapInstructions()
960 MFI->setObjectSSPLayout(SI.second, FromKind); in remapInstructions()
H A DMachineSink.cpp1887 for (auto *SI : SinkableBBs) { in getSingleLiveInSuccBB() local
1888 if (aliasWithRegsInLiveIn(*SI, Reg, TRI)) { in getSingleLiveInSuccBB()
1893 BB = SI; in getSingleLiveInSuccBB()
1901 for (auto *SI : CurBB.successors()) { in getSingleLiveInSuccBB() local
1902 if (!SinkableBBs.count(SI) && aliasWithRegsInLiveIn(*SI, Reg, TRI)) in getSingleLiveInSuccBB()
2005 for (MachineBasicBlock *SI : CurBB.successors()) in tryToSinkCopy()
2006 if (!SI->livein_empty() && SI->pred_size() == 1) in tryToSinkCopy()
2007 SinkableBBs.insert(SI); in tryToSinkCopy()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp346 StoreInst *SI = dyn_cast<StoreInst>(CurI); in CompareIfRegionBlock() local
347 if (!SI || SI->isVolatile()) in CompareIfRegionBlock()
H A DMoveAutoInit.cpp49 else if (auto *SI = dyn_cast<StoreInst>(&I)) in writeToAlloca() local
50 ML = MemoryLocation::get(SI); in writeToAlloca()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1324 CI->DiagnosticType = std::string(SI->getValue()); in buildRegisterClasses()
1391 if (StringInit *SI = dyn_cast<StringInit>(PMName)) { in buildOperandClasses() local
1392 CI->PredicateMethod = std::string(SI->getValue()); in buildOperandClasses()
1400 if (StringInit *SI = dyn_cast<StringInit>(RMName)) { in buildOperandClasses() local
1401 CI->RenderMethod = std::string(SI->getValue()); in buildOperandClasses()
1409 if (StringInit *SI = dyn_cast<StringInit>(PRMName)) in buildOperandClasses() local
1410 CI->ParserMethod = std::string(SI->getValue()); in buildOperandClasses()
1415 CI->DiagnosticType = std::string(SI->getValue()); in buildOperandClasses()
1431 CI->DefaultMethod = std::string(SI->getValue()); in buildOperandClasses()
1708 for (unsigned SI = 1, SE = Operands[Idx].MINumOperands; SI != SE; ++SI) { in buildInstructionOperandReference() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp128 bool addStore(uint64_t Offset, StoreInst *SI, const DataLayout *DL) { in addStore() argument
129 int64_t StoreSize = DL->getTypeStoreSize(SI->getOperand(0)->getType()); in addStore()
130 if (!addRange(Offset, Offset + StoreSize, SI)) in addStore()
132 IRBuilder<> IRB(SI); in addStore()
133 applyStore(IRB, Offset, Offset + StoreSize, SI->getOperand(0)); in addStore()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp124 symbol_iterator SI = RelRef.getSymbol(); in getRelocationValueString() local
126 Obj->getSymbol(SI->getRawDataRefImpl()); in getRelocationValueString()
132 Expected<section_iterator> SymSI = SI->getSection(); in getRelocationValueString()
142 Expected<StringRef> SymName = SI->getName(); in getRelocationValueString()
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDiffConsumer.cpp52 if (auto *SI = dyn_cast<StoreInst>(V)) { in printValue() local
54 printValue(SI->getPointerOperand(), isL); in printValue()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DJumpThreading.h158 void unfoldSelectInstr(BasicBlock *Pred, BasicBlock *BB, SelectInst *SI,
162 bool tryToUnfoldSelect(SwitchInst *SI, BasicBlock *BB);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DDependencyAnalysis.cpp101 } else if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) { in CanUse() local
104 const Value *Op = GetUnderlyingObjCPtr(SI->getPointerOperand()); in CanUse()
/freebsd/contrib/gdtoa/
H A Dstrtopf.c41 static FPI fpi0 = { 24, 1-127-24+1, 254-127-24+1, 1, SI };
H A DstrtoIf.c41 static FPI fpi = { 24, 1-127-24+1, 254-127-24+1, 1, SI };
H A DstrtoId.c41 static FPI fpi = { 53, 1-1023-53+1, 2046-1023-53+1, 1, SI };
H A DstrtoIQ.c41 static FPI fpi = { 113, 1-16383-113+1, 32766-16383-113+1, 1, SI };
H A DstrtoIxL.c41 static FPI fpi = { 64, 1-16383-64+1, 32766 - 16383 - 64 + 1, 1, SI };
H A DstrtoIx.c41 static FPI fpi = { 64, 1-16383-64+1, 32766 - 16383 - 64 + 1, 1, SI };
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVEmitIntrinsics.cpp285 if (StoreInst *SI = dyn_cast<StoreInst>(I)) { in insertPtrCastInstr() local
286 Pointer = SI->getPointerOperand(); in insertPtrCastInstr()
287 ExpectedElementType = SI->getValueOperand()->getType(); in insertPtrCastInstr()
624 StoreInst *SI = dyn_cast<StoreInst>(&I); in runOnFunction() local
625 if (!SI) in runOnFunction()
627 Type *ElTy = SI->getValueOperand()->getType(); in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DFunctionPropertiesAnalysis.cpp55 } else if (const auto *SI = dyn_cast<SwitchInst>(BB.getTerminator())) { in getNrBlocksFromCond() local
56 Ret += (SI->getNumCases() + (nullptr != SI->getDefaultDest())); in getNrBlocksFromCond()
/freebsd/contrib/llvm-project/llvm/tools/llc/
H A DNewPMDriver.cpp150 StandardInstrumentations SI(Context, Opt.DebugPM); in compileModuleWithNewPM() local
151 SI.registerCallbacks(PIC); in compileModuleWithNewPM()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h1575 for (const auto SI : children<const BlockT *>(BB)) {
1577 if (!BlockIndex.contains(SI))
1580 if (!UniqueSuccs.insert(SI).second)
1583 auto EP = BPI->getEdgeProbability(BB, SI);
1589 size_t Dst = BlockIndex.find(SI)->second;
1702 for (auto SI = GraphTraits<const BlockT *>::child_begin(BB),
1704 SI != SE; ++SI)
1706 Dist, OuterLoop, Node, getNode(*SI),
1707 getWeightFromBranchProb(BPI->getEdgeProbability(BB, SI))))

12345678910>>...20