Home
last modified time | relevance | path

Searched refs:s_expression (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/compiler/glsl/
Dir_reader.cpp43 void ir_read_error(s_expression *, const char *fmt, ...);
45 const glsl_type *read_type(s_expression *);
47 void scan_for_prototypes(exec_list *, s_expression *);
48 ir_function *read_function(s_expression *, bool skip_body);
49 void read_function_sig(ir_function *, s_expression *, bool skip_body);
51 void read_instructions(exec_list *, s_expression *, ir_loop *);
52 ir_instruction *read_instruction(s_expression *, ir_loop *);
53 ir_variable *read_declaration(s_expression *);
54 ir_if *read_if(s_expression *, ir_loop *);
55 ir_loop *read_loop(s_expression *);
[all …]
Ds_expression.h33 #define SX_AS_(t,x) ((x) && ((s_expression*) x)->is_##t()) ? ((s_##t*) (x)) \
52 class s_expression : public exec_node
61 static s_expression *read_expression(void *ctx, const char *&src);
74 s_expression() { } in s_expression() function
79 class s_number : public s_expression
119 class s_symbol : public s_expression
135 class s_list : public s_expression
155 s_pattern(s_expression *&s) : p_expr(&s), type(EXPR) { } in s_pattern()
162 bool match(s_expression *expr);
166 s_expression **p_expr;
[all …]
Ds_expression.cpp58 static s_expression *
61 s_expression *expr = NULL; in read_atom()
99 static s_expression *
102 s_expression *atom = read_atom(ctx, src, symbol_buffer); in __read_expression()
112 s_expression *expr; in __read_expression()
129 s_expression *
130 s_expression::read_expression(void *ctx, const char *&src) in read_expression()
166 foreach_in_list(s_expression, expr, &this->subexpressions) { in print()
177 s_pattern::match(s_expression *expr) in match()
197 s_match(s_expression *top, unsigned n, s_pattern *pattern, bool partial) in s_match()
[all …]
Dmeson.build182 's_expression.cpp',
183 's_expression.h',
/external/mesa3d/src/compiler/
DMakefile.sources141 glsl/s_expression.cpp \
142 glsl/s_expression.h \