Home | History | Annotate | Download | only in glsl

Lines Matching refs:function

26  * Import function prototypes from one IR tree into another.
34 * Visitor used to import function prototypes
39 * body of the function.
51 this->function = NULL;
56 assert(this->function == NULL);
58 this->function = this->symbols->get_function(ir->name);
59 if (!this->function) {
60 this->function = new(this->mem_ctx) ir_function(ir->name);
62 list->push_tail(this->function);
64 /* Add the new function to the symbol table.
66 this->symbols->add_function(this->function);
74 assert(this->function != NULL);
76 this->function = NULL;
82 assert(this->function != NULL);
86 this->function->add_signature(copy);
97 ir_function *function;
104 * Import function prototypes from one IR tree into another