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

/external/llvm/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();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1183 BinaryOperator *OpI = dyn_cast<BinaryOperator>(CI.getOperand(0));
1184 if (OpI && OpI->hasOneUse()) {
1185 switch (OpI->getOpcode()) {
1192 Type *SrcTy = OpI->getType();
1193 Value *LHSTrunc = LookThroughFPExtensions(OpI->getOperand(0));
1194 Value *RHSTrunc = LookThroughFPExtensions(OpI->getOperand(1));
1204 return BinaryOperator::Create(OpI->getOpcode(), LHSTrunc, RHSTrunc);
1250 Instruction *OpI = dyn_cast<Instruction>(FI.getOperand(0)); local
1251 if (OpI
1270 Instruction *OpI = dyn_cast<Instruction>(FI.getOperand(0)); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp132 if (Instruction *OpI = dyn_cast<Instruction>(Op))
133 if (isInstructionTriviallyDead(OpI))
134 NowDeadInsts.push_back(OpI);
H A DLoopIdiomRecognize.cpp155 if (Instruction *OpI = dyn_cast<Instruction>(Op))
156 if (isInstructionTriviallyDead(OpI))
157 NowDeadInsts.push_back(OpI);
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp298 if (Instruction *OpI = dyn_cast<Instruction>(OpV))
299 if (isInstructionTriviallyDead(OpI))
300 DeadInsts.push_back(OpI);
H A DSimplifyCFG.cpp1004 Instruction *OpI = dyn_cast<Instruction>(*i); local
1005 if (OpI && OpI->getParent() == BIParent &&
1006 !OpI->mayHaveSideEffects() &&
1007 !OpI->isUsedInBasicBlock(BIParent))
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp4709 for (Instruction::op_iterator OpI = UseInst->op_begin(),
4710 OpE = UseInst->op_end(); OpI != OpE; ++OpI) {
4712 if (isa<Constant>(*OpI)) continue;
4714 Instruction *OpInst = dyn_cast<Instruction>(*OpI);

Completed in 182 milliseconds