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

/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp176 Value *createNaryFAdd(const AddendVect& Opnds, unsigned InstrQuota);
680 (const AddendVect &Opnds, unsigned InstrQuota) {
681 assert(!Opnds.empty() && "Expect at least one addend");
685 unsigned InstrNeeded = calcInstrNumber(Opnds);
703 for (AddendVect::const_iterator I = Opnds.begin(), E = Opnds.end();
785 unsigned FAddCombine::calcInstrNumber(const AddendVect &Opnds) { argument
786 unsigned OpndNum = Opnds.size();
793 for (AddendVect::const_iterator I = Opnds.begin(), E = Opnds
679 createNaryFAdd(const AddendVect &Opnds, unsigned InstrQuota) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp1275 SmallVector<XorOpnd, 8> Opnds;
1286 Opnds.push_back(O);
1291 // NOTE: From this point on, do *NOT* add/delete element to/from "Opnds".
1292 // It would otherwise invalidate the "Opnds"'s iterator, and hence invalidate
1294 // with the previous loop --- the iterator of the "Opnds" may be invalidated
1296 for (unsigned i = 0, e = Opnds.size(); i != e; ++i)
1297 OpndPtrs.push_back(&Opnds[i]);
1308 for (unsigned i = 0, e = Opnds.size(); i < e; i++) {
1349 for (unsigned int i = 0, e = Opnds.size(); i < e; i++) {
1350 XorOpnd &O = Opnds[
[all...]
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5429 SmallVector<SDValue, 8> Opnds; local
5431 Opnds.push_back(BuildVect.getOperand(i));
5433 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT, &Opnds[0],
5434 Opnds.size());
5485 SmallVector<SDValue, 8> Opnds; local
5488 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5493 Opnds.push_back(NV);
5496 &Opnds[0], Opnds.size());
8968 SmallVector<SDValue, 8> Opnds;
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp8801 SmallVector<SDValue, 8> Opnds; local
8807 Opnds.push_back(N->getOperand(0));
8808 Opnds.push_back(N->getOperand(1));
8810 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
8811 SmallVector<SDValue, 8>::const_iterator I = Opnds.begin() + Slot;
8814 Opnds.push_back(I->getOperand(0));
8815 Opnds.push_back(I->getOperand(1));

Completed in 301 milliseconds