HomeSort by: relevance | last modified time | path
    Searched defs:tnode_t (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/xlint/lint1/
README.md 83 Lint mainly analyzes expressions (`tnode_t`), which are formed from operators
84 (`op_t`) and their operands (`tnode_t`).
104 ## tnode_t section
152 See `debug_node` for how to interpret the members of `tnode_t`.
189 | tn | `tnode_t` | a tree node, mostly used for expressions |
191 | ln | `tnode_t` | the left-hand operand of a binary operator |
192 | rn | `tnode_t` | the right-hand operand of a binary operator |
lint1.h 287 typedef struct tnode tnode_t; typedef in typeref:struct:tnode
300 tnode_t *left; /* (left) operand */
301 tnode_t *right; /* right operand */
319 tnode_t *ga_result; /* NULL means error */
450 tnode_t *c_switch_expr;
455 tnode_t *c_for_expr3; /* end of loop expr in for() */
669 constant_is_nonzero(const tnode_t *tn)
677 is_zero(const tnode_t *tn)
683 is_nonzero(const tnode_t *tn)
695 is_binary(const tnode_t *tn
    [all...]

Completed in 12 milliseconds