HomeSort by relevance Sort by last modified time
    Searched defs:SI (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/llvm/lib/Target/R600/
AMDGPUMCInstLower.h 25 SI = 0
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 66 SExtInst* SI = new SExtInst(Arg, I->getType());
67 assert (EVT::getEVT(SI->getType()) ==
70 I->replaceAllUsesWith(SI);
72 SI->insertBefore(First);
HexagonCFGOptimizer.cpp 147 MachineBasicBlock::succ_iterator SI = MBB->succ_begin();
148 MachineBasicBlock* FirstSucc = *SI;
149 MachineBasicBlock* SecondSucc = *(++SI);
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/radeon/drm/
radeon_drm_winsys.h 39 SI
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 107 static bool LowerStoreInst(StoreInst *SI) {
108 SI->setAtomic(NotAtomic);
133 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
134 if (SI->isAtomic())
135 LowerStoreInst(SI);
CorrelatedValuePropagation.cpp 40 bool processSelect(SelectInst *SI);
44 bool processSwitch(SwitchInst *SI);
110 SelectInst *SI = dyn_cast<SelectInst>(Incoming);
111 if (!SI) continue;
113 Constant *C = dyn_cast<Constant>(SI->getFalseValue());
116 if (LVI->getPredicateOnEdge(ICmpInst::ICMP_EQ, SI, C,
121 DEBUG(dbgs() << "CVP: Threading PHI over " << *SI << '\n');
122 V = SI->getTrueValue();
206 bool CorrelatedValuePropagation::processSwitch(SwitchInst *SI) {
207 Value *Cond = SI->getCondition()
    [all...]
  /external/mesa3d/src/gallium/winsys/radeon/drm/
radeon_drm_winsys.h 39 SI
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 181 SymExpr::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end();
182 for (; SI != SE; ++SI)
183 SymReaper.maybeDead(*SI);
  /external/llvm/lib/IR/
DataLayout.cpp 80 const uint64_t *SI =
82 assert(SI != &MemberOffsets[0] && "Offset not in structure type!");
83 --SI;
84 assert(*SI <= Offset && "upper_bound didn't work");
85 assert((SI == &MemberOffsets[0] || *(SI-1) <= Offset) &&
86 (SI+1 == &MemberOffsets[NumElements] || *(SI+1) > Offset) &&
94 return SI-&MemberOffsets[0];
  /external/clang/lib/Driver/
Multilib.cpp 103 llvm::StringMap<int>::iterator SI = FlagSet.find(Flag.substr(1));
107 if (SI == FlagSet.end())
109 else if (Flags[I] != Flags[SI->getValue()])
279 llvm::StringMap<bool>::const_iterator SI = FlagSet.find(Flag.substr(1));
280 if (SI != FlagSet.end())
281 if (SI->getValue() != isFlagEnabled(Flag))
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 174 SwitchInst &SI = cast<SwitchInst>(TI);
177 SCValue = getOrInitValueState(SI.getCondition());
179 SCValue = getLatticeState(SI.getCondition());
192 Constant *C = LatticeFunc->GetConstant(SCValue, SI.getCondition(), *this);
198 SwitchInst::CaseIt Case = SI.findCaseValue(cast<ConstantInt>(C));
CostModel.cpp 137 static bool matchPairwiseShuffleMask(ShuffleVectorInst *SI, bool IsLeft,
141 if (!SI && Level == 0 && IsLeft)
143 else if (!SI)
146 SmallVector<int, 32> Mask(SI->getType()->getVectorNumElements(), -1);
153 SmallVector<int, 16> ActualMask = SI->getShuffleMask();
421 const SelectInst *SI = cast<SelectInst>(I);
422 Type *CondTy = SI->getCondition()->getType();
431 const StoreInst *SI = cast<StoreInst>(I);
432 Type *ValTy = SI->getValueOperand()->getType();
434 SI->getAlignment()
    [all...]
  /external/llvm/lib/CodeGen/
MachineCopyPropagation.cpp 70 SourceMap::iterator SI = SrcMap.find(*AI);
71 if (SI != SrcMap.end()) {
72 const DestList& Defs = SI->second;
RegisterScavenging.cpp 397 unsigned SI;
398 for (SI = 0; SI < Scavenged.size(); ++SI)
399 if (Scavenged[SI].Reg == 0)
402 if (SI == Scavenged.size()) {
409 Scavenged[SI].Reg = SReg;
415 assert(Scavenged[SI].FrameIndex >= 0 &&
417 TII->storeRegToStackSlot(*MBB, I, SReg, true, Scavenged[SI].FrameIndex,
425 TII->loadRegFromStackSlot(*MBB, UseMI, SReg, Scavenged[SI].FrameIndex
    [all...]
GCStrategy.cpp 181 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
183 dyn_cast<AllocaInst>(SI->getOperand(1)->stripPointerCasts()))
191 StoreInst* SI = new StoreInst(ConstantPointerNull::get(cast<PointerType>(
194 SI->insertAfter(*I);
  /external/llvm/lib/MC/MCAnalysis/
MCObjectSymbolizer.cpp 90 symbol_iterator SI = MOOF->symbol_begin();
92 ++SI;
93 SI->getName(SymName);
94 assert(SI != MOOF->symbol_end() && "Stub wasn't found in the symbol table!");
  /external/llvm/lib/Object/
Object.cpp 30 inline section_iterator *unwrap(LLVMSectionIteratorRef SI) {
31 return reinterpret_cast<section_iterator*>(SI);
35 wrap(const section_iterator *SI) {
37 (const_cast<section_iterator*>(SI));
40 inline symbol_iterator *unwrap(LLVMSymbolIteratorRef SI) {
41 return reinterpret_cast<symbol_iterator*>(SI);
45 wrap(const symbol_iterator *SI) {
47 (const_cast<symbol_iterator*>(SI));
50 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) {
51 return reinterpret_cast<relocation_iterator*>(SI);
    [all...]
  /external/llvm/utils/TableGen/
CodeGenSchedule.cpp 65 StringInit *SI = dyn_cast<StringInit>(*AI);
66 if (!SI)
69 std::string pat = SI->getValue();
    [all...]
  /external/chromium_org/third_party/pexpect/
screen.py 37 SI = 15 # Invoke G0 character set.
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 302 Stmt::child_iterator SI = scope.End, SE = compoundS->body_end();
303 ++SI;
306 if (SI != SE)
307 if (ReturnStmt *retS = dyn_cast<ReturnStmt>(*SI))
312 ++SI; // the return will be included in scope, don't check it.
315 for (; SI != SE; ++SI) {
318 declarationLoc).TraverseStmt(*SI);
  /external/guava/guava/src/com/google/common/base/
Ascii.java 204 public static final byte SI = 15;
  /external/lldb/test/pexpect-2.4/
screen.py 21 SI = 15 # Invoke G0 character set.
  /external/llvm/include/llvm/Analysis/
LoopInfoImpl.h 115 typename BlockTraits::ChildIteratorType SI = BlockTraits::child_begin(Out);
116 ++SI;
117 if (SI != BlockTraits::child_end(Out))
248 for (typename BlockTraits::ChildIteratorType SI =
250 SI != SE; ++SI)
251 if (contains(*SI)) {
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 165 DenseMap<const AllocaInst *, int>::iterator SI =
167 if (SI != StaticAllocaMap.end()) { // Check for VLAs.
168 int FI = SI->second;
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 347 StoreInst *SI = dyn_cast<StoreInst>(CurI);
348 if (!SI || SI->isVolatile())

Completed in 636 milliseconds

1 2 3 4