Home
last modified time | relevance | path

Searched defs:SI (Results 1 – 25 of 356) sorted by relevance

12345678910>>...15

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DObject.cpp32 inline section_iterator *unwrap(LLVMSectionIteratorRef SI) { in unwrap()
37 wrap(const section_iterator *SI) { in wrap()
42 inline symbol_iterator *unwrap(LLVMSymbolIteratorRef SI) { in unwrap()
47 wrap(const symbol_iterator *SI) { in wrap()
52 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) { in unwrap()
57 wrap(const relocation_iterator *SI) { in wrap()
158 LLVMSectionIteratorRef SI) { in LLVMObjectFileIsSectionIteratorAtEnd()
172 LLVMSymbolIteratorRef SI) { in LLVMObjectFileIsSymbolIteratorAtEnd()
200 section_iterator SI = OB->getBinary()->section_begin(); in LLVMGetSections() local
204 void LLVMDisposeSectionIterator(LLVMSectionIteratorRef SI) { in LLVMDisposeSectionIterator()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSetOperations.h25 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_union() local
52 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end(); in set_difference() local
63 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_subtract() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp87 for (LiveSegments::const_iterator SI = Segments.begin(); SI.valid(); ++SI) { in print() local
97 for (SegmentIter SI = Segments.begin(); SI.valid(); ++SI) in verify() local
105 for (LiveSegments::const_iterator SI = Segments.begin(); SI.valid(); ++SI) { in getOneVReg() local
H A DMacroFusion.cpp40 for (const SDep &SI : SU.Preds) in getPredClusterSU() local
100 for (const SDep &SI : FirstSU.Succs) { in fuseInstructionPair() local
113 for (const SDep &SI : SecondSU.Preds) { in fuseInstructionPair() local
H A DSwitchLoweringUtils.cpp47 const SwitchInst *SI, in findJumpTables()
192 const SwitchInst *SI, in buildJumpTable()
266 const SwitchInst *SI) { in findBitTestClusters()
366 const SwitchInst *SI, in buildBitTests()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DGCNRegPressure.cpp23 void llvm::printLivesAt(SlotIndex SI, in printLivesAt()
214 auto SI = LIS.getInstructionIndex(*MO.getParent()).getBaseIndex(); in getUsedRegMask() local
245 SlotIndex SI, in getLiveLaneMask()
263 GCNRPTracker::LiveRegSet llvm::getLiveRegs(SlotIndex SI, in getLiveRegs()
362 SlotIndex SI = LIS.getInstructionIndex(*NextMI).getBaseIndex(); in advanceBeforeNext() local
463 const auto &SI = LIS.getInstructionIndex(*LastTrackedMI).getBaseIndex(); in isValid() local
H A DGCNRegPressure.h217 auto SI = SII.getInstructionIndex(*I); in getLiveRegMap() local
234 for (auto SI : LiveIdxs) in getLiveRegMap() local
242 for (auto SI : SRLiveIdxs) in getLiveRegMap() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp482 static StoreInst *combineStoreToNewValue(InstCombinerImpl &IC, StoreInst &SI, in combineStoreToNewValue()
752 if (SelectInst *SI = dyn_cast<SelectInst>(P)) { in isObjectSizeLessThanOrEq() local
912 static bool canSimplifyNullStoreOrGEP(StoreInst &SI) { in canSimplifyNullStoreOrGEP()
984 StoreInst *SI = new StoreInst(UndefValue::get(LI.getType()), in visitLoadInst() local
1001 if (SelectInst *SI = dyn_cast<SelectInst>(Op)) { in visitLoadInst() local
1113 static bool combineStoreToValueType(InstCombinerImpl &IC, StoreInst &SI) { in combineStoreToValueType()
1151 static bool unpackStoreToAggregate(InstCombinerImpl &IC, StoreInst &SI) { in unpackStoreToAggregate()
1292 StoreInst &SI) { in removeBitcastsFromLoadStoreOnMinMax()
1319 auto *SI = dyn_cast<StoreInst>(U); in removeBitcastsFromLoadStoreOnMinMax() local
1340 Instruction *InstCombinerImpl::visitStoreInst(StoreInst &SI) { in visitStoreInst()
[all …]
H A DInstCombineAtomicRMW.cpp126 auto *SI = new StoreInst(RMWI.getValOperand(), in visitAtomicRMWInst() local
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp176 for (section_iterator SI = Obj->section_begin(), SE = Obj->section_end(); in setPreferredBaseAddress() local
189 for (section_iterator SI = Obj->section_begin(), SE = Obj->section_end(); in decodePseudoProbe() local
211 bool ProfiledBinary::dissassembleSymbol(std::size_t SI, ArrayRef<uint8_t> Bytes, in dissassembleSymbol()
375 for (section_iterator SI = Obj->section_begin(), SE = Obj->section_end(); in disassemble() local
405 for (std::size_t SI = 0, SE = Symbols.size(); SI != SE; ++SI) { in disassemble() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp79 if (StoreInst *SI = dyn_cast<StoreInst>(LI->user_back())) { in runOnFunction() local
106 auto *SI = cast<StoreInst>(*LI->user_begin()); in runOnFunction() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp113 static bool LowerStoreInst(StoreInst *SI) { in LowerStoreInst()
130 } else if (StoreInst *SI = dyn_cast<StoreInst>(&Inst)) { in runOnBasicBlock() local
H A DSROA.cpp365 iterator SI, SJ; member in llvm::sroa::Partition
372 Partition(iterator SI) : SI(SI), SJ(SI) {} in Partition()
445 partition_iterator(AllocaSlices::iterator SI, AllocaSlices::iterator SE) in partition_iterator()
616 static Value *foldSelectInst(SelectInst &SI) { in foldSelectInst()
794 void visitStoreInst(StoreInst &SI) { in visitStoreInst()
980 if (StoreInst *SI = dyn_cast<StoreInst>(I)) { in hasUnsafePHIOrSelectUse() local
1058 void visitSelectInst(SelectInst &SI) { visitPHINodeOrSelectInst(SI); } in visitSelectInst()
1150 } else if (StoreInst *SI = dyn_cast<StoreInst>(U->getUser())) { in findCommonType() local
1333 static bool isSafeSelectToSpeculate(SelectInst &SI) { in isSafeSelectToSpeculate()
1357 static void speculateSelectInstLoads(SelectInst &SI) { in speculateSelectInstLoads()
[all …]
H A DLowerExpectIntrinsic.cpp78 static bool handleSwitchExpect(SwitchInst &SI) { in handleSwitchExpect()
352 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB.getTerminator())) { in lowerExpectIntrinsic() local
364 if (SelectInst *SI = dyn_cast<SelectInst>(Inst)) { in lowerExpectIntrinsic() local
H A DLoopUnswitch.cpp354 void LUAnalysisCache::setUnswitched(const SwitchInst *SI, const Value *V) { in setUnswitched()
359 bool LUAnalysisCache::isUnswitched(const SwitchInst *SI, const Value *V) { in isUnswitched()
630 auto HasUndefInSelect = [](SelectInst &SI) { in equalityPropUnSafe()
767 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { in processCurrentLoop() local
831 if (SelectInst *SI = dyn_cast<SelectInst>(BBI)) { in processCurrentLoop() local
1199 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurrentTerm)) { in tryTrivialLoopUnswitch() local
1258 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurrentTerm)) { in tryTrivialLoopUnswitch() local
1623 SwitchInst *SI = dyn_cast<SwitchInst>(UI); in rewriteLoopBodyWithConditionConstant() local
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXString.cpp117 for (unsigned SI = 0, SE = Set->Count; SI < SE; ++SI) in createSet() local
186 for (unsigned SI = 0, SE = set->Count; SI < SE; ++SI) in clang_disposeStringSet() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp72 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) { in isAllocaPromotable() local
135 if (StoreInst *SI = dyn_cast<StoreInst>(User)) { in AnalyzeAlloca() local
470 if (StoreInst *SI = dyn_cast<StoreInst>(U)) in promoteSingleBlockAlloca() local
522 StoreInst *SI = cast<StoreInst>(AI->user_back()); in promoteSingleBlockAlloca() local
805 if (StoreInst *SI = dyn_cast<StoreInst>(I)) { in ComputeLiveInBlocks() local
968 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) { in RenamePass() local
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/spu/
H A Dfloat_unssidf.c33 __float_unssidf (qword SI) in __float_unssidf()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DState.cpp33 OptionalDiagnostic State::FFDiag(const SourceInfo &SI, diag::kind DiagId, in FFDiag()
57 OptionalDiagnostic State::CCEDiag(const SourceInfo &SI, diag::kind DiagId, in CCEDiag()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DWasmDump.cpp35 symbol_iterator SI = RelRef.getSymbol(); in getWasmRelocationValueString() local
/netbsd-src/external/gpl3/binutils.old/dist/include/cgen/
H A Dbasic-modes.h38 typedef int32_t SI; typedef
/netbsd-src/external/gpl3/binutils/dist/include/cgen/
H A Dbasic-modes.h38 typedef int32_t SI; typedef
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp313 SelectionDAGBuilder::StatepointLoweringInfo &SI, in lowerCallFromStatepointLoweringInfo()
515 SelectionDAGBuilder::StatepointLoweringInfo &SI, in lowerStatepointMetaArgs()
726 SelectionDAGBuilder::StatepointLoweringInfo &SI) { in LowerAsSTATEPOINT()
1019 StatepointLoweringInfo SI(DAG); in LowerStatepoint() local
1119 StatepointLoweringInfo SI(DAG); in LowerCallSiteWithDeoptBundleImpl() local
1159 const GCStatepointInst *SI = CI.getStatepoint(); in visitGCResult() local
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_type_hash_itanium.cc124 if (const abi::__si_class_type_info *SI = in isDerivedFromAtOffset() local
161 if (const abi::__si_class_type_info *SI = in findBaseAtOffset() local
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_type_hash_itanium.cc125 if (const abi::__si_class_type_info *SI = in isDerivedFromAtOffset() local
162 if (const abi::__si_class_type_info *SI = in findBaseAtOffset() local

12345678910>>...15