File: pointer_expr.cpp

package info (click to toggle)
cbmc 6.6.0-4
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 153,852 kB
  • sloc: cpp: 386,459; ansic: 114,466; java: 28,405; python: 6,003; yacc: 4,552; makefile: 4,041; lex: 2,487; xml: 2,388; sh: 2,050; perl: 557; pascal: 184; javascript: 163; ada: 36
file content (184 lines) | stat: -rw-r--r-- 6,244 bytes parent folder | download
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// Author: Diffblue Ltd.

#include <util/c_types.h>
#include <util/pointer_expr.h>
#include <util/pointer_predicates.h>

#include <testing-utils/invariant.h>
#include <testing-utils/use_catch.h>

TEST_CASE("pointer_offset_exprt", "[core][util]")
{
  const exprt pointer = symbol_exprt{"foo", pointer_type(void_type())};
  const pointer_offset_exprt pointer_offset{pointer, size_type()};
  SECTION("Is equivalent to free function.")
  {
    CHECK(::pointer_offset(pointer) == pointer_offset);
  }
  SECTION("Result type")
  {
    CHECK(pointer_offset.type() == size_type());
  }
  SECTION("Pointer operand accessor")
  {
    CHECK(pointer_offset.pointer() == pointer);
  }
  SECTION("Downcasting")
  {
    const exprt &upcast = pointer_offset;
    CHECK(expr_try_dynamic_cast<pointer_offset_exprt>(pointer_offset));
    CHECK_FALSE(expr_try_dynamic_cast<pointer_object_exprt>(upcast));
    SECTION("Validation")
    {
      SECTION("Invalid operand")
      {
        unary_exprt invalid_type = pointer_offset;
        invalid_type.op().type() = bool_typet{};
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<pointer_offset_exprt>(invalid_type),
          invariant_failedt,
          invariant_failure_containing(
            "pointer_offset must have pointer-typed operand"));
      }
      SECTION("Missing operand")
      {
        exprt missing_operand = pointer_offset;
        missing_operand.operands().clear();
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<pointer_offset_exprt>(missing_operand),
          invariant_failedt,
          invariant_failure_containing("pointer_offset must have one operand"));
      }
      SECTION("Too many operands")
      {
        exprt two_operands = pointer_offset;
        two_operands.operands().push_back(pointer);
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<pointer_offset_exprt>(two_operands),
          invariant_failedt,
          invariant_failure_containing("pointer_offset must have one operand"));
      }
    }
  }
}

TEST_CASE("pointer_object_exprt", "[core][util]")
{
  const exprt pointer = symbol_exprt{"foo", pointer_type(void_type())};
  const pointer_object_exprt pointer_object{pointer, size_type()};
  SECTION("Is equivalent to free function.")
  {
    CHECK(::pointer_object(pointer) == pointer_object);
  }
  SECTION("Result type")
  {
    CHECK(pointer_object.type() == size_type());
  }
  SECTION("Pointer operand accessor")
  {
    CHECK(pointer_object.pointer() == pointer);
  }
  SECTION("Downcasting")
  {
    const exprt &upcast = pointer_object;
    CHECK(expr_try_dynamic_cast<pointer_object_exprt>(pointer_object));
    CHECK_FALSE(expr_try_dynamic_cast<pointer_offset_exprt>(upcast));
    SECTION("Validation")
    {
      SECTION("Invalid operand")
      {
        unary_exprt invalid_type = pointer_object;
        invalid_type.op().type() = bool_typet{};
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<pointer_object_exprt>(invalid_type),
          invariant_failedt,
          invariant_failure_containing(
            "pointer_object must have pointer-typed operand"));
      }
      SECTION("Missing operand")
      {
        exprt missing_operand = pointer_object;
        missing_operand.operands().clear();
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<pointer_object_exprt>(missing_operand),
          invariant_failedt,
          invariant_failure_containing("pointer_object must have one operand"));
      }
      SECTION("Too many operands")
      {
        exprt two_operands = pointer_object;
        two_operands.operands().push_back(pointer);
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<pointer_object_exprt>(two_operands),
          invariant_failedt,
          invariant_failure_containing("pointer_object must have one operand"));
      }
    }
  }
}

TEST_CASE("object_size_exprt", "[core][util]")
{
  const exprt pointer = symbol_exprt{"foo", pointer_type(void_type())};
  const object_size_exprt object_size{pointer, size_type()};
  SECTION("Is equivalent to free function.")
  {
    CHECK(::object_size(pointer) == object_size);
  }
  SECTION("Result type")
  {
    CHECK(object_size.type() == size_type());
  }
  SECTION("Pointer operand accessor")
  {
    CHECK(object_size.pointer() == pointer);
  }
  SECTION("Downcasting")
  {
    const exprt &upcast = object_size;
    CHECK(expr_try_dynamic_cast<object_size_exprt>(upcast));
    CHECK_FALSE(expr_try_dynamic_cast<pointer_object_exprt>(upcast));
    SECTION("Validation")
    {
      SECTION("Invalid operand")
      {
        unary_exprt invalid_type = object_size;
        invalid_type.op().type() = bool_typet{};
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<object_size_exprt>(invalid_type),
          invariant_failedt,
          invariant_failure_containing(
            "Object size expression must have pointer typed operand."));
      }
      SECTION("Missing operand")
      {
        exprt missing_operand = object_size;
        missing_operand.operands().clear();
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<object_size_exprt>(missing_operand),
          invariant_failedt,
          invariant_failure_containing(
            "Object size expression must have one operand"));
      }
      SECTION("Too many operands")
      {
        exprt two_operands = object_size;
        two_operands.operands().push_back(pointer);
        const cbmc_invariants_should_throwt invariants_throw;
        REQUIRE_THROWS_MATCHES(
          expr_try_dynamic_cast<object_size_exprt>(two_operands),
          invariant_failedt,
          invariant_failure_containing(
            "Object size expression must have one operand"));
      }
    }
  }
}