search for: bitpat

Displaying 3 results from an estimated 3 matches for "bitpat".

2011 Sep 13
3
[LLVMdev] Setting priority in instruction selection
...t uses an immediate value to be selected before the immediate instruction itself. So, my question is this, is there anyway to force the ordering of how the instructions get selected. For example, take this pattern (A & B) | (C & ~B), I have the following PatFrag: /// Pattern 1: (lhs & bitpat) | (rhs & ~bitpat) def bfi_pat1 : PatFrag<(ops node:$lhs, node:$rhs, node:$bitpat), (or (and node:$lhs, node:$bitpat), (and node:$rhs, (not node:$lhs)))>; def BFI_i32 : ThreeInOneOut<IL_OP_BFI, (outs GPRI32:$dst), (ins GPRI32:$lhs, GPRI32:$rhs, GPRI32:$bitpat), !s...
2011 Sep 13
0
[LLVMdev] Setting priority in instruction selection
...ate instruction itself. > > > > So, my question is this, is there anyway to force the ordering of how the > instructions get selected. > > > > For example, take this pattern (A & B) | (C & ~B), I have the following > PatFrag: > > /// Pattern 1: (lhs & bitpat) | (rhs & ~bitpat) > > def bfi_pat1 : PatFrag<(ops node:$lhs, node:$rhs, node:$bitpat), > >     (or > >      (and node:$lhs, node:$bitpat), > >      (and node:$rhs, (not node:$lhs)))>; > > def BFI_i32 : ThreeInOneOut<IL_OP_BFI, (outs GPRI32:$dst), > &gt...
2011 Sep 13
1
[LLVMdev] Setting priority in instruction selection
...question is this, is there anyway to force the ordering of how > the > > instructions get selected. > > > > > > > > For example, take this pattern (A & B) | (C & ~B), I have the > following > > PatFrag: > > > > /// Pattern 1: (lhs & bitpat) | (rhs & ~bitpat) > > > > def bfi_pat1 : PatFrag<(ops node:$lhs, node:$rhs, node:$bitpat), > > > >     (or > > > >      (and node:$lhs, node:$bitpat), > > > >      (and node:$rhs, (not node:$lhs)))>; > > > > def BFI_i32 : ThreeI...