Home | History | Annotate | Download | only in Scalar

Lines Matching refs:EI

115     Expression create_extractvalue_expression(ExtractValueInst* EI);
213 Expression ValueTable::create_extractvalue_expression(ExtractValueInst *EI) {
214 assert(EI != 0 && "Not an ExtractValueInst?");
216 e.type = EI->getType();
219 IntrinsicInst *I = dyn_cast<IntrinsicInst>(EI->getAggregateOperand());
220 if (I != 0 && EI->getNumIndices() == 1 && *EI->idx_begin() == 0 ) {
221 // EI might be an extract from one of our recognised intrinsics. If it
253 e.opcode = EI->getOpcode();
254 for (Instruction::op_iterator OI = EI->op_begin(), OE = EI->op_end();
258 for (ExtractValueInst::idx_iterator II = EI->idx_begin(), IE = EI->idx_end();