Searched refs:Opnds (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp179 Value *createNaryFAdd(const AddendVect& Opnds, unsigned InstrQuota);
696 (const AddendVect &Opnds, unsigned InstrQuota) {
697 assert(!Opnds.empty() && "Expect at least one addend");
701 unsigned InstrNeeded = calcInstrNumber(Opnds);
719 for (AddendVect::const_iterator I = Opnds.begin(), E = Opnds.end();
803 unsigned FAddCombine::calcInstrNumber(const AddendVect &Opnds) { argument
804 unsigned OpndNum = Opnds.size();
811 for (AddendVect::const_iterator I = Opnds.begin(), E = Opnds
695 createNaryFAdd(const AddendVect &Opnds, unsigned InstrQuota) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp1395 SmallVector<XorOpnd, 8> Opnds;
1406 Opnds.push_back(O);
1411 // NOTE: From this point on, do *NOT* add/delete element to/from "Opnds".
1412 // It would otherwise invalidate the "Opnds"'s iterator, and hence invalidate
1414 // with the previous loop --- the iterator of the "Opnds" may be invalidated
1416 for (unsigned i = 0, e = Opnds.size(); i != e; ++i)
1417 OpndPtrs.push_back(&Opnds[i]);
1428 for (unsigned i = 0, e = Opnds.size(); i < e; i++) {
1469 for (unsigned int i = 0, e = Opnds.size(); i < e; i++) {
1470 XorOpnd &O = Opnds[
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6664 SmallVector<SDValue, 8> Opnds; local
6666 Opnds.push_back(BuildVect.getOperand(i));
6668 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, Opnds);
6733 SmallVector<SDValue, 8> Opnds; local
6736 Opnds.push_back(DAG.getUNDEF(VTs[i]));
6741 Opnds.push_back(NV);
6743 return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Opnds);
11320 SmallVector<SDValue, 8> Opnds;
11325 Opnds.push_back(DAG.getUNDEF(SrcVT));
11327 Opnds
11632 SmallVector<SDValue, 8> Opnds; local
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12374 SmallVector<SDValue, 8> Opnds; local
12381 Opnds.push_back(N->getOperand(0));
12382 Opnds.push_back(N->getOperand(1));
12384 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
12385 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
12388 Opnds.push_back(I->getOperand(0));
12389 Opnds.push_back(I->getOperand(1));

Completed in 287 milliseconds