Home | History | Annotate | Download | only in Scalar

Lines Matching refs:EI

94     Expression create_extractvalue_expression(ExtractValueInst* EI);
164 Expression ValueTable::create_extractvalue_expression(ExtractValueInst *EI) {
165 assert(EI != 0 && "Not an ExtractValueInst?");
167 e.type = EI->getType();
170 IntrinsicInst *I = dyn_cast<IntrinsicInst>(EI->getAggregateOperand());
171 if (I != 0 && EI->getNumIndices() == 1 && *EI->idx_begin() == 0 ) {
172 // EI might be an extract from one of our recognised intrinsics. If it
204 e.opcode = EI->getOpcode();
205 for (Instruction::op_iterator OI = EI->op_begin(), OE = EI->op_end();
209 for (ExtractValueInst::idx_iterator II = EI->idx_begin(), IE = EI->idx_end();