Lines Matching defs:symbol_op
122 struct symbol_op { struct
123 enum keyword type;
124 int (*evaluate)(struct expression *);
125 int (*expand)(struct expression *, int);
126 int (*args)(struct expression *);
127 struct pseudo *(*linearize)(struct entrypoint *, struct expression *);
130 struct token *(*declarator)(struct token *token, struct symbol *, struct decl_state *ctx);
131 struct token *(*statement)(struct token *token, struct statement *stmt);
132 struct token *(*toplevel)(struct token *token, struct symbol_list **list);
133 struct token *(*attribute)(struct token *token, struct symbol *attr, struct decl_state *ctx);
134 struct symbol *(*to_mode)(struct symbol *);
135 void (*asm_modifier)(struct token *token, unsigned long *mods, unsigned long mod);
160 struct symbol_op *op; argument