search for: operandnumb

Displaying 2 results from an estimated 2 matches for "operandnumb".

Did you mean: operandnumber
2018 Feb 02
1
Vector Splitting for Stackmap Operands
...l get an error " Do not know how to split this operator's operand" My first attempt to fix this is to add an if statment before the switch case to see if the Node is referring to a stackmap, and if so I will get the SDNode of the particular stackmap operand using *N->getOperand(OperandNumber).getNode(); * and use that instead of the original SDNode in the switch case statement. For example, if I need to split the 3rd operand of my stackmap which is an vector operand I will create a *SDNode* that equals to* N->getOperand(3).getNode()*; This attempt gives a failed assertion of &...
2018 Feb 03
2
llvm-dev Digest, Vol 164, Issue 6
...know how to split this operator's operand" > > My first attempt to fix this is to add an if statment before the switch > case to see if the Node is referring to a stackmap, and if so I will get > the SDNode of the particular stackmap operand using > > *N->getOperand(OperandNumber).getNode(); * > > and use that instead of the original SDNode in the switch case statement. > > For example, if I need to split the 3rd operand of my stackmap which is an > vector operand > I will create a *SDNode* that equals to* N->getOperand(3).getNode()*; > > This...