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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp177 Value *createNaryFAdd(const AddendVect& Opnds, unsigned InstrQuota);
681 (const AddendVect &Opnds, unsigned InstrQuota) {
682 assert(!Opnds.empty() && "Expect at least one addend");
686 unsigned InstrNeeded = calcInstrNumber(Opnds);
704 for (AddendVect::const_iterator I = Opnds.begin(), E = Opnds.end();
786 unsigned FAddCombine::calcInstrNumber(const AddendVect &Opnds) { argument
787 unsigned OpndNum = Opnds.size();
794 for (AddendVect::const_iterator I = Opnds.begin(), E = Opnds
680 createNaryFAdd(const AddendVect &Opnds, unsigned InstrQuota) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp1268 SmallVector<XorOpnd, 8> Opnds;
1279 Opnds.push_back(O);
1284 // NOTE: From this point on, do *NOT* add/delete element to/from "Opnds".
1285 // It would otherwise invalidate the "Opnds"'s iterator, and hence invalidate
1287 // with the previous loop --- the iterator of the "Opnds" may be invalidated
1289 for (unsigned i = 0, e = Opnds.size(); i != e; ++i)
1290 OpndPtrs.push_back(&Opnds[i]);
1301 for (unsigned i = 0, e = Opnds.size(); i < e; i++) {
1342 for (unsigned int i = 0, e = Opnds.size(); i < e; i++) {
1343 XorOpnd &O = Opnds[
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5486 SmallVector<SDValue, 8> Opnds; local
5488 Opnds.push_back(BuildVect.getOperand(i));
5490 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, &Opnds[0],
5491 Opnds.size());
5542 SmallVector<SDValue, 8> Opnds; local
5545 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5550 Opnds.push_back(NV);
5553 &Opnds[0], Opnds.size());
9014 SmallVector<SDValue, 8> Opnds;
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp9184 SmallVector<SDValue, 8> Opnds; local
9190 Opnds.push_back(N->getOperand(0));
9191 Opnds.push_back(N->getOperand(1));
9193 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9194 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9197 Opnds.push_back(I->getOperand(0));
9198 Opnds.push_back(I->getOperand(1));

Completed in 274 milliseconds