HomeSort by relevance Sort by last modified time
    Searched refs:SI (Results 51 - 75 of 236) sorted by null

1 23 4 5 6 7 8 910

  /external/clang/test/Sema/
attr-mode.c 17 typedef struct {int i,j,k;} invalid_4 __attribute((mode(SI))); // expected-error{{mode attribute only supported for integer and floating-point types}}
18 typedef float invalid_5 __attribute((mode(SI))); // expected-error{{type of machine mode does not match type of base type}}
  /external/llvm/include/llvm/Analysis/
CFGPrinter.h 91 if (const SwitchInst *SI = dyn_cast<SwitchInst>(Node->getTerminator())) {
99 SwitchInst::ConstCaseIt::fromSuccessorIndex(SI, SuccNo);
DominatorInternals.h 46 for (succ_iterator SI = succ_begin(V), E = succ_end(V); SI != E; ++SI) {
47 InfoRec &SuccVInfo = DT.Info[*SI];
50 N = DTDFSPass(DT, *SI, N);
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 118 inline BasicBlock *SplitCriticalEdge(BasicBlock *BB, succ_iterator SI,
120 return SplitCriticalEdge(BB->getTerminator(), SI.getSuccessorIndex(), P);
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 181 Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI,
183 Instruction *FoldSelectIntoOp(SelectInst &SI, Value*, Value*);
187 Instruction *visitSelectInst(SelectInst &SI);
188 Instruction *visitSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI);
199 Instruction *visitStoreInst(StoreInst &SI);
201 Instruction *visitSwitchInst(SwitchInst &SI);
217 Instruction *FoldOpIntoSelect(Instruction &Op, SelectInst *SI);
373 bool SimplifyStoreAtEndOfBlock(StoreInst &SI);
InstCombineMulDivRem.cpp 114 if (BinaryOperator *SI = dyn_cast<BinaryOperator>(Op0))
115 if (SI->getOpcode() == Instruction::Shl)
116 if (Constant *ShOp = dyn_cast<Constant>(SI->getOperand(1)))
117 return BinaryOperator::CreateMul(SI->getOperand(0),
165 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
166 if (Instruction *R = FoldOpIntoSelect(I, SI))
385 if (SelectInst *SI = dyn_cast<SelectInst>(Op0))
386 if (Instruction *R = FoldOpIntoSelect(I, SI))
539 SelectInst *SI = cast<SelectInst>(I.getOperand(1));
543 if (Constant *ST = dyn_cast<Constant>(SI->getOperand(1))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 545 if (SwitchInst *SI = dyn_cast<SwitchInst>(&TI)) {
546 if (!SI->getNumCases()) {
550 LatticeVal SCValue = getValueState(SI->getCondition());
560 Succs[SI->findCaseValue(CI).getSuccessorIndex()] = true;
609 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
610 if (SI->getNumCases() < 1)
613 LatticeVal SCValue = getValueState(SI->getCondition());
619 return SI->findCaseValue(CI).getCaseSuccessor() == To;
    [all...]
CodeGenPrepare.cpp 128 bool OptimizeSelectInst(SelectInst *SI);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 208 SymExpr::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end();
209 for (; SI != SE; ++SI)
210 SymReaper.maybeDead(*SI);
  /external/guava/guava/src/com/google/common/base/
Ascii.java 204 public static final byte SI = 15;
  /external/llvm/lib/Analysis/
MemDepPrinter.cpp 132 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
133 if (!SI->isUnordered()) {
139 AliasAnalysis::Location Loc = AA.getLocation(SI);
140 MDA.getNonLocalPointerDependency(Loc, false, SI->getParent(), NLDI);
SparsePropagation.cpp 173 SwitchInst &SI = cast<SwitchInst>(TI);
176 SCValue = getOrInitValueState(SI.getCondition());
178 SCValue = getLatticeState(SI.getCondition());
191 Constant *C = LatticeFunc->GetConstant(SCValue, SI.getCondition(), *this);
197 SwitchInst::CaseIt Case = SI.findCaseValue(cast<ConstantInt>(C));
  /external/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 84 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
85 (*SI)->removePredecessor(BB);
ScheduleDAGInstrs.cpp 228 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
229 SE = BB->succ_end(); SI != SE; ++SI)
230 for (MachineBasicBlock::livein_iterator I = (*SI)->livein_begin(),
231 E = (*SI)->livein_end(); I != E; ++I) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 410 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
411 updateDebugInfo(SI);
412 SSA.AddAvailableValue(BB, SI->getOperand(0));
462 if (StoreInst *SI = dyn_cast<StoreInst>(II)) {
464 if (!isInstInList(SI, Insts)) continue;
465 updateDebugInfo(SI);
468 StoredValue = SI->getOperand(0);
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 255 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
256 if (V == SI->getOperand(1)) {
257 Writers.push_back(SI->getParent()->getParent());
258 } else if (SI->getOperand(1) != OkayStoreDest) {
321 } else if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
323 if (SI->getOperand(0) == GV) return false;
326 if (isa<ConstantPointerNull>(SI->getOperand(0)))
330 Value *Ptr = GetUnderlyingObject(SI->getOperand(0));
456 } else if (StoreInst *SI = dyn_cast<StoreInst>(&*II)) {
458 if (SI->isVolatile()
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 289 if (const StoreInst *SI = dyn_cast<StoreInst>(this))
290 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() &&
291 SI->getAlignment() == cast<StoreInst>(I)->getAlignment() &&
292 SI->getOrdering() == cast<StoreInst>(I)->getOrdering() &&
293 SI->getSynchScope() == cast<StoreInst>(I)->getSynchScope();
361 if (const StoreInst *SI = dyn_cast<StoreInst>(this))
362 return SI->isVolatile() == cast<StoreInst>(I)->isVolatile() &&
363 (SI->getAlignment() == cast<StoreInst>(I)->getAlignment() ||
365 SI->getOrdering() == cast<StoreInst>(I)->getOrdering() &&
366 SI->getSynchScope() == cast<StoreInst>(I)->getSynchScope()
    [all...]
Verifier.cpp 278 void visitStoreInst(StoreInst &SI);
284 void visitSwitchInst(SwitchInst &SI);
286 void visitSelectInst(SelectInst &SI);
    [all...]
DataLayout.cpp 79 const uint64_t *SI =
81 assert(SI != &MemberOffsets[0] && "Offset not in structure type!");
82 --SI;
83 assert(*SI <= Offset && "upper_bound didn't work");
84 assert((SI == &MemberOffsets[0] || *(SI-1) <= Offset) &&
85 (SI+1 == &MemberOffsets[NumElements] || *(SI+1) > Offset) &&
93 return SI-&MemberOffsets[0];
  /external/llvm/lib/Archive/
ArchiveWriter.cpp 242 for (std::vector<std::string>::iterator SI = symbols.begin(),
243 SE = symbols.end(); SI != SE; ++SI) {
246 symTab.insert(std::make_pair(*SI,filepos));
249 symTabSize += SI->length() +
250 numVbrBytes(SI->length()) +
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 218 } else if (const StoreInst *SI = dyn_cast<StoreInst>(I)) {
220 if (SI->getOperand(0) == V) return true;
223 if (SI->isVolatile()) return true;
225 GS.Ordering = StrongerOrdering(GS.Ordering, SI->getOrdering());
232 SI->getOperand(1))) {
233 Value *StoredVal = SI->getOperand(0);
404 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
405 Value *V = SI->getValueOperand();
408 SI->eraseFromParent();
411 Dead.push_back(std::make_pair(I, SI));
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_short/d/
T_aget_short_1.d 27 .method public run([SI)S
T_aget_short_2.d 27 .method public run([SI)S
T_aget_short_3.d 27 .method public run([SI)S

Completed in 636 milliseconds

1 23 4 5 6 7 8 910