Home
last modified time | relevance | path

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

12345678910>>...16

/external/llvm/lib/Object/
DObject.cpp31 inline section_iterator *unwrap(LLVMSectionIteratorRef SI) { in unwrap()
36 wrap(const section_iterator *SI) { in wrap()
41 inline symbol_iterator *unwrap(LLVMSymbolIteratorRef SI) { in unwrap()
46 wrap(const symbol_iterator *SI) { in wrap()
51 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) { in unwrap()
56 wrap(const relocation_iterator *SI) { in wrap()
84 section_iterator SI = OB->getBinary()->section_begin(); in LLVMGetSections() local
88 void LLVMDisposeSectionIterator(LLVMSectionIteratorRef SI) { in LLVMDisposeSectionIterator()
93 LLVMSectionIteratorRef SI) { in LLVMIsSectionIteratorAtEnd()
98 void LLVMMoveToNextSection(LLVMSectionIteratorRef SI) { in LLVMMoveToNextSection()
[all …]
/external/swiftshader/third_party/LLVM/lib/Object/
DObject.cpp30 section_iterator SI = unwrap(ObjectFile)->begin_sections(); in LLVMGetSections() local
34 void LLVMDisposeSectionIterator(LLVMSectionIteratorRef SI) { in LLVMDisposeSectionIterator()
39 LLVMSectionIteratorRef SI) { in LLVMIsSectionIteratorAtEnd()
43 void LLVMMoveToNextSection(LLVMSectionIteratorRef SI) { in LLVMMoveToNextSection()
49 const char *LLVMGetSectionName(LLVMSectionIteratorRef SI) { in LLVMGetSectionName()
56 uint64_t LLVMGetSectionSize(LLVMSectionIteratorRef SI) { in LLVMGetSectionSize()
63 const char *LLVMGetSectionContents(LLVMSectionIteratorRef SI) { in LLVMGetSectionContents()
/external/llvm/include/llvm/ADT/
DSetOperations.h26 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_union() local
53 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end(); in set_difference() local
64 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_subtract() local
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DSetOperations.h26 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_union() local
53 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end(); in set_difference() local
64 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_subtract() local
/external/swiftshader/third_party/LLVM/include/llvm-c/
DObject.h62 inline section_iterator *unwrap(LLVMSectionIteratorRef SI) { in unwrap()
67 wrap(const section_iterator *SI) { in wrap()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DSimplifyCFGPass.cpp68 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI) in ChangeToUnreachable() local
143 if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) { in MarkAliveBlocks() local
167 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI) in MarkAliveBlocks() local
193 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI) in RemoveUnreachableBlocksFromFn() local
DLowerAtomic.cpp103 static bool LowerStoreInst(StoreInst *SI) { in LowerStoreInst()
127 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { in runOnBasicBlock() local
/external/llvm/lib/CodeGen/
DEdgeBundles.cpp47 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(), in runOnMachineFunction() local
84 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(), in WriteGraph() local
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
DStackProtector.cpp168 if (const StoreInst *SI = dyn_cast<StoreInst>(U)) { in HasAddressTaken() local
171 } else if (const PtrToIntInst *SI = dyn_cast<PtrToIntInst>(U)) { in HasAddressTaken() local
178 } else if (const SelectInst *SI = dyn_cast<SelectInst>(U)) { in HasAddressTaken() local
/external/skia/src/jumper/
DSkJumper_misc.h17 #define SI __attribute__((always_inline)) static inline macro
19 #define SI static inline macro
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DEdgeBundles.cpp49 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(), in runOnMachineFunction() local
90 for (MachineBasicBlock::const_succ_iterator SI = I->succ_begin(), in WriteGraph() local
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
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineSelect.cpp26 SelectInst *SI = dyn_cast<SelectInst>(V); in MatchSelectPattern() local
124 Instruction *InstCombiner::FoldSelectOpOp(SelectInst &SI, Instruction *TI, in FoldSelectOpOp()
205 Instruction *InstCombiner::FoldSelectIntoOp(SelectInst &SI, Value *TrueVal, in FoldSelectIntoOp()
343 Instruction *InstCombiner::visitSelectInstWithICmp(SelectInst &SI, in visitSelectInstWithICmp()
527 const SelectInst &SI) { in CanSelectOperandBeMappingIntoPredBlock()
583 static Value *foldSelectICmpAnd(const SelectInst &SI, ConstantInt *TrueVal, in foldSelectICmpAnd()
649 Instruction *InstCombiner::visitSelectInst(SelectInst &SI) { in visitSelectInst()
DInstCombineLoadStoreAlloca.cpp221 if (SelectInst *SI = dyn_cast<SelectInst>(Op)) { in visitLoadInst() local
256 static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) { in InstCombineStoreToCast()
369 Instruction *InstCombiner::visitStoreInst(StoreInst &SI) { in visitStoreInst()
499 bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) { in SimplifyStoreAtEndOfBlock()
DInstCombineMulDivRem.cpp115 if (BinaryOperator *SI = dyn_cast<BinaryOperator>(Op0)) in visitMul() local
166 if (SelectInst *SI = dyn_cast<SelectInst>(Op0)) in visitMul() local
278 if (SelectInst *SI = dyn_cast<SelectInst>(Op0)) in visitFMul() local
297 SelectInst *SI = cast<SelectInst>(I.getOperand(1)); in SimplifyDivRemOfSelect() local
397 if (SelectInst *SI = dyn_cast<SelectInst>(Op0)) in commonIDivTransforms() local
596 if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) { in commonIRemTransforms() local
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DSimplifyCFG.cpp436 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { in EraseTerminatorInstAndDCECond() local
453 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { in isValueEqualityComparison() local
480 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { in GetValueEqualityComparisonCases() local
597 SwitchInst *SI = cast<SwitchInst>(TI); in SimplifyEqualityComparisonWithOnlyPredecessor() local
642 for (succ_iterator SI = succ_begin(TIBB), e = succ_end(TIBB); SI != e; ++SI) in SimplifyEqualityComparisonWithOnlyPredecessor() local
823 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) { in isSafeToHoistInvoke() local
919 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) { in HoistThenElseCodeToIf() local
929 SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)]; in HoistThenElseCodeToIf() local
943 for (succ_iterator SI = succ_begin(BB1), E = succ_end(BB1); SI != E; ++SI) in HoistThenElseCodeToIf() local
1093 SelectInst *SI; in SpeculativelyExecuteBB() local
[all …]
DLowerExpectIntrinsic.cpp46 bool LowerExpectIntrinsic::HandleSwitchExpect(SwitchInst *SI) { in HandleSwitchExpect()
135 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB->getTerminator())) { in runOnFunction() local
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp120 Instruction *InstCombiner::FoldSelectOpOp(SelectInst &SI, Instruction *TI, in FoldSelectOpOp()
229 Instruction *InstCombiner::FoldSelectIntoOp(SelectInst &SI, Value *TrueVal, in FoldSelectIntoOp()
309 static Value *foldSelectICmpAndOr(const SelectInst &SI, Value *TrueVal, in foldSelectICmpAndOr()
415 Instruction *InstCombiner::visitSelectInstWithICmp(SelectInst &SI, in visitSelectInstWithICmp()
624 const SelectInst &SI) { in CanSelectOperandBeMappingIntoPredBlock()
711 SelectInst *SI = cast<SelectInst>(Inner); in FoldSPFofSPF() local
769 static Value *foldSelectICmpAnd(const SelectInst &SI, ConstantInt *TrueVal, in foldSelectICmpAnd()
842 static Instruction *foldAddSubSelect(SelectInst &SI, in foldAddSubSelect()
912 Instruction *InstCombiner::visitSelectInst(SelectInst &SI) { in visitSelectInst()
DInstCombineLoadStoreAlloca.cpp394 static StoreInst *combineStoreToNewValue(InstCombiner &IC, StoreInst &SI, Value *V) { in combineStoreToNewValue()
480 auto *SI = dyn_cast<StoreInst>(U); in combineLoadToOperationType() local
488 auto *SI = cast<StoreInst>(*UI++); in combineLoadToOperationType() local
632 if (SelectInst *SI = dyn_cast<SelectInst>(P)) { in isObjectSizeLessThanOrEq() local
885 if (SelectInst *SI = dyn_cast<SelectInst>(Op)) { in visitLoadInst() local
995 static bool combineStoreToValueType(InstCombiner &IC, StoreInst &SI) { in combineStoreToValueType()
1020 static bool unpackStoreToAggregate(InstCombiner &IC, StoreInst &SI) { in unpackStoreToAggregate()
1148 Instruction *InstCombiner::visitStoreInst(StoreInst &SI) { in visitStoreInst()
1279 bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) { in SimplifyStoreAtEndOfBlock()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DLoads.cpp143 } else if (StoreInst *SI = dyn_cast<StoreInst>(BBI)) { in isSafeToLoadUnconditionally() local
197 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { in FindAvailableLoadedValue() local
/external/llvm/lib/Transforms/Scalar/
DLowerExpectIntrinsic.cpp56 static bool handleSwitchExpect(SwitchInst &SI) { in handleSwitchExpect()
149 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB.getTerminator())) { in lowerExpectIntrinsic() local
DLowerAtomic.cpp108 static bool LowerStoreInst(StoreInst *SI) { in LowerStoreInst()
126 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { in runOnBasicBlock() local
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.unused/
Dp2.cpp5 …static int SI [[maybe_unused]]; // expected-warning {{'maybe_unused' attribute only applies to var… member
/external/clang/tools/libclang/
DCXString.cpp119 for (unsigned SI = 0, SE = Set->Count; SI < SE; ++SI) in createSet() local
189 for (unsigned SI = 0, SE = set->Count; SI < SE; ++SI) in clang_disposeStringSet() local

12345678910>>...16