search for: applyrul

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

Did you mean: applyrule
2015 Apr 17
0
[ANNOUNCE] setxkbmap 1.3.1
setxkbmap is an X11 client to change the keymaps in the X server for a specified keyboard to use the layout determined by the options listed on the command line. Alan Coopersmith (7): Move global rules variable into applyRules, the only function that uses it Make len a size_t instead of converting back & forth to an int Use C99 struct initializer for cmdNames in applyComponentNames config: Add missing AC_CONFIG_SRCDIR configure: Drop AM_MAINTAINER_MODE autogen.sh: Honor NOCONFIGURE=1...
2018 Nov 30
2
[RFC] Tablegen-erated GlobalISel Combine Rules
...ribe the information that needs to be delivered from the match step to the apply step. So it can be seen as defining*: struct { MachineOperand &d; MachineOperand &t; // due to the implicit declaration. MachineOperand &a; MachineOperand &b; } Foo; Foo matchRule(...); void applyRule(Foo &, ...); *That's not quite what the tablegenerated code will do in practice but it's the gist of what it will do. The real implementation will be managing a buffer that's shared between the whole ruleset and will tell the apply step which bits it should read. > Cheers, &g...
2018 Nov 27
2
[RFC] Tablegen-erated GlobalISel Combine Rules
...Continued from the other email Removing the defs section We can potentially infer quite a lot of the defs section but it requires both a complicated ruleset and that tblgen spends processing time doing the inferencing. That processing time is potentially significant for large combiners and for that reason we need to be careful not to let inferencing become a burden on tblgen. My main worry