Searched refs:SI (Results 126 - 150 of 217) sorted by relevance

123456789

/external/llvm/lib/CodeGen/
H A DMachineCSE.cpp428 DenseMap<MachineBasicBlock*, ScopeType*>::iterator SI = ScopeMap.find(MBB); local
429 assert(SI != ScopeMap.end());
430 delete SI->second;
431 ScopeMap.erase(SI);
H A DLiveRangeCalc.cpp22 SlotIndexes *SI,
27 Indexes = SI;
21 reset(const MachineFunction *mf, SlotIndexes *SI, MachineDominatorTree *MDT, VNInfo::Allocator *VNIA) argument
H A DAggressiveAntiDepBreaker.cpp155 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
156 SE = BB->succ_end(); SI != SE; ++SI)
157 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
158 E = (*SI)->livein_end(); I != E; ++I) {
H A DBranchFolding.cpp1406 for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
1407 E = MBB->succ_end(); SI != E; ++SI) {
1409 MachineBasicBlock *SuccBB = *SI;
1463 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1464 E = BB->succ_end(); SI != E; ++SI) {
1465 MachineBasicBlock *SuccBB = *SI;
/external/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp126 for (MCSubRegIterator SI(*I, this); SI.isValid(); ++SI)
127 if (Reserved.test(*SI)) Reserved.set(*I);
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp321 } else if (const SwitchInst *SI = dyn_cast<SwitchInst>(OldTI)) {
323 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
325 Value *V = VMap[SI->getCondition()];
329 SwitchInst::ConstCaseIt Case = SI->findCaseValue(Cond);
H A DLoopSimplify.cpp173 for (succ_iterator SI = succ_begin(*I), SE = succ_end(*I); SI != SE; ++SI)
174 (*SI)->removePredecessor(*I);
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp295 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
296 (*SI)->removePredecessor(BB);
/external/qemu/
H A Dppc-dis.c683 SI field, only negated. */
769 /* The SI field in a D form instruction. */
770 #define SI SHO + 1
773 /* The SI field in a D form instruction when we accept a wide range
775 #define SISIGNOPT SI + 1
1370 /* The NSI field in a D form instruction. This is the same as the SI
2016 { "tdlgti", OPTO(2,TOLGT), OPTO_MASK, PPC64, { RA, SI } },
2017 { "tdllti", OPTO(2,TOLLT), OPTO_MASK, PPC64, { RA, SI } },
2018 { "tdeqi", OPTO(2,TOEQ), OPTO_MASK, PPC64, { RA, SI } },
2019 { "tdlgei", OPTO(2,TOLGE), OPTO_MASK, PPC64, { RA, SI } },
766 #define SI macro
[all...]
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h326 bool add(StoreInst *SI);
339 bool remove(StoreInst *SI);
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp364 SelectInst *SI;
366 SI = cast<SelectInst>(LHS);
369 SI = cast<SelectInst>(RHS);
375 if (SI == LHS) {
376 TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
377 FV = SimplifyBinOp(Opcode, SI->getFalseValue(), RHS, Q, MaxRecurse);
379 TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
380 FV = SimplifyBinOp(Opcode, LHS, SI->getFalseValue(), Q, MaxRecurse);
396 if (TV == SI->getTrueValue() && FV == SI
443 SelectInst *SI = cast<SelectInst>(LHS); local
1688 SelectInst *SI = dyn_cast<SelectInst>(V); local
[all...]
H A DLazyValueInfo.cpp843 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
844 if (SI->getCondition() != Val)
847 bool DefaultCase = SI->getDefaultDest() == BBTo;
851 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
H A DValueTracking.cpp843 if (SelectInst *SI = dyn_cast<SelectInst>(V))
844 return isKnownToBeAPowerOfTwo(SI->getTrueValue(), OrZero, Depth) &&
845 isKnownToBeAPowerOfTwo(SI->getFalseValue(), OrZero, Depth);
1083 else if (SelectInst *SI = dyn_cast<SelectInst>(V)) {
1084 if (isKnownNonZero(SI->getTrueValue(), TD, Depth) &&
1085 isKnownNonZero(SI->getFalseValue(), TD, Depth))
1853 if (SelectInst *SI = dyn_cast<SelectInst>(V)) {
1854 uint64_t Len1 = GetStringLengthH(SI->getTrueValue(), PHIs);
1856 uint64_t Len2 = GetStringLengthH(SI->getFalseValue(), PHIs);
1928 if (SelectInst *SI
[all...]
H A DProfileInfo.cpp98 succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB); local
101 if (SI == SE) {
107 for (; SI != SE; ++SI)
108 if (ProcessedSuccs.insert(*SI).second) {
109 double w = getEdgeWeight(getEdge(BB, *SI));
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1320 const SwitchInst &SI = cast<SwitchInst>(I); local
1322 uint32_t SwitchRecordHeader = SI.hash() | (SWITCH_INST_MAGIC << 16);
1325 Vals64.push_back(VE.getTypeID(SI.getCondition()->getType()));
1326 pushValue64(SI.getCondition(), InstID, Vals64, VE);
1327 Vals64.push_back(VE.getValueID(SI.getDefaultDest()));
1328 Vals64.push_back(SI.getNumCases());
1329 for (SwitchInst::ConstCaseIt i = SI.case_begin(), e = SI.case_end();
1568 for (ValueSymbolTable::const_iterator SI = VST.begin(), SE = VST.end();
1569 SI !
[all...]
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1213 if (StringInit *SI = dyn_cast<StringInit>(PMName)) {
1214 CI->PredicateMethod = SI->getValue();
1222 if (StringInit *SI = dyn_cast<StringInit>(RMName)) {
1223 CI->RenderMethod = SI->getValue();
1231 if (StringInit *SI = dyn_cast<StringInit>(PRMName))
1232 CI->ParserMethod = SI->getValue();
1237 if (StringInit *SI = dyn_cast<StringInit>(DiagnosticType))
1238 CI->DiagnosticType = SI->getValue();
1492 for (unsigned SI = 1, SE = Operands[Idx].MINumOperands; SI !
[all...]
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp319 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
320 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
321 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() &&
322 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
323 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp476 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
480 Value *IVal = SI->getValueOperand();
491 if (SelectInst *SI = dyn_cast<SelectInst>(I)) {
492 T2 = SI->getCondition()->getType();
493 } else if (ShuffleVectorInst *SI = dyn_cast<ShuffleVectorInst>(I)) {
494 T2 = SI->getOperand(0)->getType();
604 StoreInst *SI = cast<StoreInst>(I), *SJ = cast<StoreInst>(J); local
605 IPtr = SI->getPointerOperand();
607 IAlignment = SI->getAlignment();
609 IAddressSpace = SI
1269 StoreInst *SI, *SJ; local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp129 DenseMap<const AllocaInst *, int>::iterator SI = local
131 if (SI != StaticAllocaMap.end()) { // Check for VLAs.
132 int FI = SI->second;
/external/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp329 if (SwitchInst *SI = dyn_cast<SwitchInst>(UniquePred->getTerminator()))
330 if (SI->getCondition() == V)
331 return SI->getDefaultDest() != RI->getParent();
/external/clang/lib/CodeGen/
H A DCGAtomic.cpp667 llvm::SwitchInst *SI = Builder.CreateSwitch(Order, MonotonicBB); local
679 SI->addCase(Builder.getInt32(1), AcquireBB);
680 SI->addCase(Builder.getInt32(2), AcquireBB);
687 SI->addCase(Builder.getInt32(3), ReleaseBB);
694 SI->addCase(Builder.getInt32(4), AcqRelBB);
700 SI->addCase(Builder.getInt32(5), SeqCstBB);
/external/clang/include/clang/Basic/
H A DIdentifierTable.h618 Selector(MultiKeywordSelector *SI) {
619 InfoPtr = reinterpret_cast<uintptr_t>(SI);
/external/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp67 if (StringInit *SI = dyn_cast<StringInit>(R.getValueInit(field)))
68 return SI->getValue();
/external/llvm/include/llvm/ADT/
H A DSparseMultiSet.h220 iterator_base(SMSPtrTy P, unsigned I, unsigned SI) argument
221 : SMS(P), Idx(I), SparseIdx(SI) { }
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.h93 ENTRY(SI) \
113 ENTRY(SI) \

Completed in 614 milliseconds

123456789