forked from csmith-project/csmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CVQualifiers.h
106 lines (91 loc) · 4.36 KB
/
CVQualifiers.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// -*- mode: C++ -*-
//
// Copyright (c) 2008, 2009, 2010, 2011, 2013, 2015, 2017 The University of Utah
// All rights reserved.
//
// This file is part of `csmith', a random generator of C programs.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#ifndef CVQUALIFIERS_H
#define CVQUALIFIERS_H
#include <vector>
#include <string>
using namespace std;
#include "Effect.h"
class Type;
class CGContext;
class CVQualifiers
{
public:
CVQualifiers(void);
CVQualifiers(bool wild, bool accept_stricter);
CVQualifiers(const vector<bool>& isConsts, const vector<bool>& isVolatiles);
virtual ~CVQualifiers();
CVQualifiers(const CVQualifiers &qfer);
CVQualifiers &operator=(const CVQualifiers &qfer);
bool is_const(void) const { return is_const_after_deref(0);}
bool is_volatile(void) const { return is_volatile_after_deref(0); }
bool is_storage_const(void) const { return is_consts[0];}
bool is_storage_volatile(void) const { return is_volatiles[0];}
bool is_const_after_deref(int deref_level) const;
bool is_volatile_after_deref(int deref_level) const;
void set_const(bool is_const, int pos=0);
void set_volatile(bool is_volatile, int pos=0);
void restrict(Effect::Access access, const CGContext& cg_context);
bool stricter_than(const CVQualifiers& qfer) const;
bool match(const CVQualifiers& qfer) const;
bool match_indirect(const CVQualifiers& qfer) const;
const vector<bool>& get_consts(void) const { return is_consts;}
const vector<bool>& get_volatiles(void) const { return is_volatiles;}
CVQualifiers random_qualifiers(bool no_volatile, Effect::Access access, const CGContext &cg_context) const;
CVQualifiers random_loose_qualifiers(bool no_volatile, Effect::Access access, const CGContext &cg_context) const;
static void make_scalar_volatiles(std::vector<bool> &volatiles);
static void make_scalar_consts(std::vector<bool> &consts);
static CVQualifiers random_qualifiers(const Type* t, Effect::Access access,
const CGContext &cg_context, bool no_volatile);
static CVQualifiers random_qualifiers(const Type* t, Effect::Access access,
const CGContext &cg_context, bool no_volatile, unsigned int const_prob, unsigned int volatile_prob);
static CVQualifiers random_qualifiers(const Type* t);
static CVQualifiers random_qualifiers(const Type* t, unsigned int const_prob, unsigned int volatile_prob);
static void get_all_qualifiers(std::vector<CVQualifiers> &quals,
unsigned int const_prob, unsigned int volatile_prob);
void add_qualifiers(bool is_const, bool is_volatile);
CVQualifiers random_add_qualifiers(bool no_volatile) const;
void remove_qualifiers(int len);
CVQualifiers indirect_qualifiers(int level) const;
bool sanity_check(const Type* t) const;
void output_qualified_type(const Type* t, std::ostream &out) const;
void output() const;
void OutputFirstQuals(std::ostream &out) const;
bool wildcard;
bool accept_stricter;
private:
// Type qualifiers.
vector<bool> is_consts;
vector<bool> is_volatiles;
vector<bool> random_stricter_consts(void) const;
vector<bool> random_stricter_volatiles(void) const;
vector<bool> random_looser_consts(void) const;
vector<bool> random_looser_volatiles(void) const;
};
#endif // CVQUALIFIERS_H