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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp117 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
120 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) { function in class:__anon9512::DAGCombiner
121 return CombineTo(N, &Res, 1, AddTo);
124 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, function in class:__anon9512::DAGCombiner
127 return CombineTo(N, To, 2, AddTo);
370 CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) { function in class:TargetLowering::DAGCombinerInfo
371 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
375 CombineTo(SDNode *N, SDValue Res, bool AddTo) { function in class:TargetLowering::DAGCombinerInfo
376 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
381 CombineTo(SDNod function in class:TargetLowering::DAGCombinerInfo
618 SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo, function in class:DAGCombiner
[all...]

Completed in 78 milliseconds