Searched refs:OpI (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DMachineInstrBundle.h78 MachineInstr::mop_iterator OpI, OpE; member in class:llvm::MachineOperandIteratorBase
83 while (OpI == OpE) {
87 OpI = InstrI->operands_begin();
107 OpI = InstrI->operands_begin();
113 MachineOperand &deref() const { return *OpI; }
117 bool isValid() const { return OpI != OpE; }
122 ++OpI;
130 return OpI - InstrI->operands_begin();
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1178 BinaryOperator *OpI = dyn_cast<BinaryOperator>(CI.getOperand(0));
1179 if (OpI && OpI->hasOneUse()) {
1180 switch (OpI->getOpcode()) {
1187 Type *SrcTy = OpI->getType();
1188 Value *LHSTrunc = LookThroughFPExtensions(OpI->getOperand(0));
1189 Value *RHSTrunc = LookThroughFPExtensions(OpI->getOperand(1));
1199 return BinaryOperator::Create(OpI->getOpcode(), LHSTrunc, RHSTrunc);
1245 Instruction *OpI = dyn_cast<Instruction>(FI.getOperand(0)); local
1246 if (OpI
1265 Instruction *OpI = dyn_cast<Instruction>(FI.getOperand(0)); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp136 if (Instruction *OpI = dyn_cast<Instruction>(Op))
137 if (isInstructionTriviallyDead(OpI, TLI))
138 NowDeadInsts.push_back(OpI);
H A DLoopIdiomRecognize.cpp156 if (Instruction *OpI = dyn_cast<Instruction>(Op))
157 if (isInstructionTriviallyDead(OpI, TLI))
158 NowDeadInsts.push_back(OpI);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DLocal.cpp341 if (Instruction *OpI = dyn_cast<Instruction>(OpV))
342 if (isInstructionTriviallyDead(OpI, TLI))
343 DeadInsts.push_back(OpI);
H A DSimplifyCFG.cpp1384 Instruction *OpI = dyn_cast<Instruction>(*i); local
1385 if (OpI && OpI->getParent() == BIParent &&
1386 !OpI->mayHaveSideEffects() &&
1387 !OpI->isUsedInBasicBlock(BIParent))
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DScalarEvolution.cpp4702 for (Instruction::op_iterator OpI = UseInst->op_begin(),
4703 OpE = UseInst->op_end(); OpI != OpE; ++OpI) {
4705 if (isa<Constant>(*OpI)) continue;
4707 Instruction *OpInst = dyn_cast<Instruction>(*OpI);

Completed in 114 milliseconds