Searched defs:NewOps (Results 1 - 9 of 9) sorted by relevance

/external/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp110 unsigned NewOps = local
112 OpsAdded += NewOps;
114 BaseIdx += NewOps - 1;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp468 SmallVector<SDValue, 8> NewOps; local
479 if (!NewOps.empty()) {
481 NewOps.push_back(Op);
484 NewOps.append(N->op_begin(), N->op_begin() + i);
485 NewOps.push_back(Op);
490 if (!NewOps.empty()) {
491 SDNode *M = DAG.UpdateNodeOperands(N, &NewOps[0], NewOps.size());
H A DLegalizeIntegerTypes.cpp931 SmallVector<SDValue, 16> NewOps; local
933 NewOps.push_back(GetPromotedInteger(N->getOperand(i)));
935 return SDValue(DAG.UpdateNodeOperands(N, &NewOps[0], NumElts), 0);
3032 SmallVector<SDValue, 8> NewOps; local
3033 NewOps.reserve(NumElems);
3046 NewOps.push_back(Tr);
3051 &NewOps[0], NewOps.size());
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp575 static Value *BuildNew(Instruction *I, ArrayRef<Value*> NewOps) { argument
598 assert(NewOps.size() == 2 && "binary operator with #ops != 2");
601 NewOps[0], NewOps[1], "", BO);
612 assert(NewOps.size() == 2 && "icmp with #ops != 2");
614 NewOps[0], NewOps[1]);
616 assert(NewOps.size() == 2 && "fcmp with #ops != 2");
618 NewOps[0], NewOps[
707 SmallVector<Value*, 8> NewOps; local
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp1386 SmallVectorImpl<const SCEV *> &NewOps,
1414 CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
1425 NewOps.push_back(Pair.first->first);
1438 NewOps.push_back(Pair.first->first);
1625 SmallVector<const SCEV *, 8> NewOps; variable
1627 if (CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
1634 for (SmallVectorImpl<const SCEV *>::const_iterator I = NewOps.begin(),
1635 E = NewOps.end(); I != E; ++I)
1931 SmallVector<const SCEV *, 4> NewOps;
1937 NewOps
1385 CollectAddOperandsWithScales(DenseMap<const SCEV *, APInt> &M, SmallVectorImpl<const SCEV *> &NewOps, APInt &AccumulatedConstant, const SCEV *const *Ops, size_t NumOperands, const APInt &Scale, ScalarEvolution &SE) argument
[all...]
H A DScalarEvolutionExpander.cpp421 SmallVector<const SCEV *, 8> NewOps; local
429 NewOps.push_back(Remainder);
434 NewOps.push_back(Ops[i]);
439 Ops = NewOps;
739 SmallVector<const SCEV *, 4> NewOps; local
747 NewOps.push_back(X);
749 Sum = expandAddToGEP(NewOps.begin(), NewOps.end(), PTy, Ty, Sum);
754 SmallVector<const SCEV *, 4> NewOps; local
755 NewOps
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp306 SmallVector<Constant*, 64> NewOps; local
349 NewOps.push_back(cast<Constant>(NewOp));
355 NewC = ConstantArray::get(UserCA->getType(), NewOps);
357 NewC = ConstantStruct::get(UserCS->getType(), NewOps);
359 NewC = ConstantVector::get(NewOps);
362 NewC = cast<ConstantExpr>(UserC)->getWithOperands(NewOps);
367 NewOps.clear();
/external/llvm/lib/IR/
H A DConstants.cpp1096 SmallVector<Constant*, 8> NewOps;
1098 NewOps.push_back(i == OpNo ? Op : getOperand(i));
1100 return getWithOperands(NewOps);
2723 SmallVector<Constant*, 8> NewOps; local
2726 NewOps.push_back(Op == From ? To : Op);
2729 Constant *Replacement = getWithOperands(NewOps);
H A DInstructions.cpp242 Use *NewOps = allocHungoffUses(ReservedSpace); local
245 NewOps[i] = OldOps[i];
247 OperandList = NewOps;
3347 Use *NewOps = allocHungoffUses(NumOps); local
3350 NewOps[i] = OldOps[i];
3352 OperandList = NewOps;
3390 Use *NewOps = allocHungoffUses(NumOps); local
3393 NewOps[i] = OldOps[i];
3394 OperandList = NewOps;

Completed in 458 milliseconds