Displaying 1 result from an estimated 1 matches for "addu_qb".
Did you mean:
add_q
2015 May 31
1
[LLVMdev] TableGen Style Conventions
This probably qualifies as bikeshedding, but how strict are the style
norms for TableGen? Some aspects of it, like individually and
consecutively declaring all *_ENC variables in this manner:
class ADDU_QB_ENC : ADDU_QB_FMT<0b00000>;
To be used only once, in this manner:
def ADDU_QB : ADDU_QB_ENC, ADDU_QB_DESC;
Seem like avoidable clutter to me. The files tend to be pretty big, and
I think that collapsing assignments like that could make them more
readable.
I'm new to this, so let m...