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
|
#ifndef GOOSE_VERIFY_H
#define GOOSE_VERIFY_H
#include <z3++.h>
#include "llr/llr.h"
namespace goose::verify
{
using namespace ir;
using namespace llr;
class Builder;
extern z3::context& GetZ3Context();
extern bool VerifyCompTimeExpr( const Value& val );
}
#include "helpers.h"
#include "value.h"
#include "storage.h"
#include "remapper.h"
#include "builder.h"
#include "condition.h"
#include "func.h"
|
>
|
>
|
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
|
#ifndef GOOSE_VERIFY_H
#define GOOSE_VERIFY_H
#include <z3++.h>
#include "llr/llr.h"
#include "sema/sema.h"
namespace goose::verify
{
using namespace ir;
using namespace llr;
class Builder;
extern z3::context& GetZ3Context();
extern bool VerifyCompTimeExpr( const sema::Context& c, const Value& val );
}
#include "helpers.h"
#include "type.h"
#include "value.h"
#include "storage.h"
#include "remapper.h"
#include "builder.h"
#include "condition.h"
#include "func.h"
|