Searched refs:InputUsed (Results 1 - 2 of 2) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp979 // input vectors to use as shuffle operands (recorded in InputUsed).
982 unsigned InputUsed[2] = { -1U, -1U }; // Not yet discovered. local
1003 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
1004 if (InputUsed[OpNo] == Input) {
1007 } else if (InputUsed[OpNo] == -1U) {
1009 InputUsed[OpNo] = Input;
1014 if (OpNo >= array_lengthof(InputUsed)) {
1054 } else if (InputUsed[0] == -1U) {
1058 SDValue Op0 = Inputs[InputUsed[0]];
1060 SDValue Op1 = InputUsed[
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp6763 // input vectors to use as shuffle operands (recorded in InputUsed).
6767 int InputUsed[2] = { -1, -1 }; // Not yet discovered. local
6786 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6787 if (InputUsed[OpNo] == Input)
6790 if (InputUsed[OpNo] < 0) {
6792 InputUsed[OpNo] = Input;
6797 if (OpNo >= array_lengthof(InputUsed)) {
6833 } else if (InputUsed[0] < 0) {
6837 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6838 (InputUsed[
[all...]

Completed in 268 milliseconds