Lines Matching refs:recording
133 builtins_manager::builtins_manager (recording::context *ctxt)
142 Create a recording::function of the appropriate type, reusing them
145 recording::function *
159 Create a recording::function of the appropriate type, reusing them
162 recording::function *
172 recording::function *fn = make_builtin_function (builtin_id);
183 /* Create the recording::function for a given builtin function, by ID. */
185 recording::function *
190 recording::type *t = get_type (type_id);
193 recording::function_type *func_type = t->as_a_function_type ();
197 vec<recording::type *> param_types = func_type->get_param_types ();
198 recording::param **params = new recording::param *[param_types.length ()];
201 recording::type *param_type;
211 recording::function *result =
212 new recording::function (m_ctxt,
327 /* Get the recording::type for a given type of builtin function,
330 recording::type *
338 /* Create the recording::type for a given type of builtin function. */
340 recording::type *
452 /* Create the recording::type for a given primitive type within the
457 recording::type*
554 /* Create the recording::function_type for a given function type
557 recording::function_type *
565 recording::type **param_types = new recording::type *[num_args];
566 recording::type *return_type = NULL;
567 recording::function_type *result = NULL;
596 recording::type *
600 recording::type *base_type = get_type (other_type_id);
618 /* A builtins_manager is associated with a recording::context