Searched defs:EI (Results 1 - 18 of 18) sorted by relevance

/external/llvm/lib/CodeGen/
H A DScheduleDAGPrinter.cpp56 SUnitIterator EI,
58 if (EI.isArtificialDep())
60 if (EI.isCtrlDep())
55 getEdgeAttributes(const SUnit *Node, SUnitIterator EI, const ScheduleDAG *Graph) argument
H A DSjLjEHPrepare.cpp256 Instruction *EI = ExtractValueInst::Create(AI, 0, "", AfterAllocaInsPt); local
257 Instruction *NI = InsertValueInst::Create(AI, EI, 0);
258 NI->insertAfter(EI);
262 EI->setOperand(0, AI);
H A DRegAllocFast.cpp306 MachineBasicBlock::iterator EI = MI; local
307 DL = (--EI)->getDebugLoc();
H A DMachineScheduler.cpp2735 SUnitIterator EI,
2737 if (EI.isArtificialDep())
2739 if (EI.isCtrlDep())
2734 getEdgeAttributes(const SUnit *Node, SUnitIterator EI, const ScheduleDAG *Graph) argument
/external/llvm/include/llvm/Support/
H A DGraphWriter.h71 child_iterator EI = GTraits::child_begin(Node); local
75 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
76 std::string label = DTraits.getEdgeSourceLabel(Node, EI);
89 if (EI != EE && hasEdgeSourceLabels)
229 child_iterator EI = GTraits::child_begin(Node); local
231 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
232 if (!DTraits.isNodeHidden(*EI))
233 writeEdge(Node, i, EI);
239 writeEdge(NodeType *Node, unsigned edgeidx, child_iterator EI) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp90 static std::string getEdgeAttributes(const void *Node, EdgeIter EI, argument
92 SDValue Op = EI.getNode()->getOperand(EI.getOperand());
/external/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowSolver.h242 typename EdgeDataMapTy::iterator EI = local
245 if (EI != M.end()) {
249 V.copyValues(EI->second);
252 Merge(V, EI->second);
/external/llvm/lib/Transforms/Utils/
H A DLowerInvoke.cpp295 Instruction *EI = ExtractValueInst::Create(AI, 0, "",AfterAllocaInsertPt); local
296 Instruction *NI = InsertValueInst::Create(AI, EI, 0);
297 NI->insertAfter(EI);
300 EI->setOperand(0, AI);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp111 Instruction *InstCombiner::scalarizePHI(ExtractElementInst &EI, PHINode *PN) { argument
121 if (PHIUser == cast<Instruction>(&EI))
134 PHINode::Create(EI.getType(), PN->getNumIncomingValues(), ""), *PN));
139 Value *Elt = EI.getIndexOperand();
172 return ReplaceInstUsesWith(EI, scalarPHI);
175 Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) { argument
176 // If vector val is constant with all elements the same, replace EI with
178 if (Constant *C = dyn_cast<Constant>(EI.getOperand(0)))
180 return ReplaceInstUsesWith(EI, C->getAggregateElement(0U));
184 if (ConstantInt *IdxC = dyn_cast<ConstantInt>(EI
[all...]
/external/llvm/lib/IR/
H A DVerifier.cpp286 void visitExtractElementInst(ExtractElementInst &EI);
287 void visitInsertElementInst(InsertElementInst &EI);
288 void visitShuffleVectorInst(ShuffleVectorInst &EI);
1666 void Verifier::visitExtractElementInst(ExtractElementInst &EI) { argument
1667 Assert1(ExtractElementInst::isValidOperands(EI.getOperand(0),
1668 EI.getOperand(1)),
1669 "Invalid extractelement operands!", &EI); local
1670 visitInstruction(EI);
/external/llvm/lib/Support/
H A DYAMLParser.cpp1033 EncodingInfo EI = getUnicodeEncoding(currentInput()); local
1037 T.Range = StringRef(Current, EI.second);
1039 Current += EI.second;
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp599 StructType::element_iterator EI = ST->element_begin(); local
601 for (; EI != EE; ++EI) {
602 Type* fieldTy = static_cast<Type*>(*EI);
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1542 iterator I = builder.begin(), EI = builder.end(); local
1543 bool defaultIsFeasible = I == EI;
1545 for ( ; I != EI; ++I) {
2461 EI = BR.EQClasses_begin(), EE = BR.EQClasses_end(); EI != EE; ++EI) {
2462 ExplodedNode *N = const_cast<ExplodedNode*>(EI->begin()->getErrorNode());
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp117 Expression create_extractvalue_expression(ExtractValueInst* EI);
215 Expression ValueTable::create_extractvalue_expression(ExtractValueInst *EI) { argument
216 assert(EI != 0 && "Not an ExtractValueInst?");
218 e.type = EI->getType();
221 IntrinsicInst *I = dyn_cast<IntrinsicInst>(EI->getAggregateOperand());
222 if (I != 0 && EI->getNumIndices() == 1 && *EI->idx_begin() == 0 ) {
223 // EI might be an extract from one of our recognised intrinsics. If it
255 e.opcode = EI->getOpcode();
256 for (Instruction::op_iterator OI = EI
[all...]
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1057 llvm::ExtractElementInst *EI = cast<llvm::ExtractElementInst>(Init); local
1059 if (EI->getVectorOperandType()->getNumElements() == ResElts) {
1060 llvm::ConstantInt *C = cast<llvm::ConstantInt>(EI->getIndexOperand());
1067 LHS = EI->getVectorOperand();
1079 RHS = EI->getVectorOperand();
/external/clang/lib/Sema/
H A DSemaStmt.cpp1010 EnumValsTy::const_iterator EI = EnumVals.begin(); local
1013 while (EI != EIend && EI->first < CI->first)
1014 EI++;
1015 if (EI == EIend || EI->first > CI->first)
1020 EI = EnumVals.begin();
1022 RI != CaseRanges.end() && EI != EIend; RI++) {
1023 while (EI != EIend && EI
1156 EnumValsTy::const_iterator EI = EnumVals.begin(); local
[all...]
H A DSemaType.cpp4359 FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withNoReturn(true);
4360 type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
4375 FunctionType::ExtInfo EI
4377 type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
4401 FunctionType::ExtInfo EI = local
4403 type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
4419 FunctionType::ExtInfo EI= unwrapped.get()->getExtInfo().withCallingConv(CC); local
4420 type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
4463 FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withCallingConv(CC); local
4465 unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI));
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp7787 FunctionType::ExtInfo EI; local
7788 if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
7794 return getFunctionNoProtoType(ResType, EI);
7797 EPI.ExtInfo = EI;

Completed in 456 milliseconds