Cthulhu  0.2.10
Cthulhu compiler collection
attrib.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_tree_api.h>
6 
7 #include "core/analyze.h"
8 #include "core/compiler.h"
9 
10 #include <stdint.h>
11 
12 typedef struct vector_t vector_t;
13 
15 
16 typedef struct tree_t tree_t;
17 typedef struct node_t node_t;
18 typedef struct tree_attrib_t tree_attrib_t;
19 
21 
23 typedef struct tree_attrib_t
24 {
26  size_t id;
27 
29  const tree_t *schema;
30 
33  const vector_t *args;
34 
39 
40 CT_TREE_API tree_attrib_t *tree_attrib_add(tree_attrib_t *root, IN_NOTNULL const tree_t *schema, IN_NOTNULL const vector_t *args);
41 
42 CT_TREE_API tree_t *tree_decl_attrib(const node_t *node, const char *name, vector_t *params);
43 
CT_TREE_API tree_attrib_t * tree_attrib_add(tree_attrib_t *root, const tree_t *schema, const vector_t *args)
struct tree_attrib_def_t tree_attrib_def_t
Definition: attrib.h:20
CT_TREE_API tree_t * tree_decl_attrib(const node_t *node, const char *name, vector_t *params)
Definition: decl.c:236
#define IN_NOTNULL
annotate a parameter as not being null
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
a position in a source file
Definition: node.h:23
an application of an attribute
Definition: attrib.h:24
size_t id
unique id for this attribute
Definition: attrib.h:26
const tree_t * schema
the schema this attribute is applied to
Definition: attrib.h:29
const vector_t * args
the arguments this attribute was applied with vector_t<tree_t*> where each tree_t is an expression
Definition: attrib.h:33
tree_attrib_t * next
the next attribute in the list should be NULL if this is the last attribute
Definition: attrib.h:37
Definition: tree.h:67
a generic vector of pointers
Definition: vector.c:16