blob: ea736ac77c05716d4a6db92f622392c73c367f6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
#ifndef ANALYZE_H
#define ANALYZE_H
#include <assert.h>
#include "ast.h"
#include "scope.h"
int types_match(struct ast_node *a, struct ast_node *b);
/* these three might be better off in some ast_utils.c or something */
void replace_type(struct ast_node *type,
struct ast_node *from, struct ast_node *to);
void replace_param_types(struct ast_node *param,
struct ast_node *param_type,
struct ast_node *arg_type);
void init_template_type(struct ast_node *type, struct ast_node *param_type,
struct ast_node *arg_type);
void init_template_types(struct ast_node *param, struct ast_node *param_type,
struct ast_node *arg_type);
struct ast_node *extract_template(struct ast_node *type);
struct ast_node *extract_typeof(struct ast_node *type);
int analyze_root(struct scope *scope, struct ast_node *tree);
int actualize_main(struct scope *scope);
int actualize_temp_type(struct scope *scope, struct ast_node *type);
#endif /* ANALYZE_H */
|