search for: select16

Displaying 1 result from an estimated 1 matches for "select16".

Did you mean: select18
2010 Jun 02
2
[LLVMdev] Flags and Custom Inserters in code generation
...working on. The compare operations on the architecture communicate via bits in a global status register, much like on MSP430. In fact, I've modeled my implementation after that of the MSP430. So I have custom target nodes akin to MSP430cmp and MSP430selectcc and pseudo-instructions like MSP430::Select16. The back end lowers SELECT_CC nodes to MSP430cmp/MSP430selectcc pairs that are linked together by Flag values. The instruction selection pass converts the MSP430selectcc node to a MSP430::Select16 pseudo-instruction which is later expanded to a condition branch by a custom inserter. I'm still...