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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
-- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries
--
-- SmartEiffel is free software; you can redistribute it and/or modify it
-- under the terms of the GNU General Public License, as published by the
-- Free Software Foundation; either version 2, or (at your option) any later
-- version.
-- SmartEiffel is distributed in the hope that it will be useful but WITHOUT
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
-- more details. You should have received a copy of the GNU General Public
-- License along with SmartEiffel; see the file COPYING. If not, write to
-- the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-- MA 02111-1307, USA.
--
-- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P.
-- - University of Nancy 1 - FRANCE
-- Copyright(C) 2003: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne
-- - University of Nancy 2 - FRANCE
--
-- Dominique COLNET, Suzanne COLLIN, Olivier ZENDRA,
-- Philippe RIBET, Cyril ADRIAN
--
-- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
--
class ASSERTION
--
-- To store one assertion.
--
inherit
GLOBALS
VISITABLE
creation make
feature
tag: TAG_NAME
expression: EXPRESSION
comment: COMMENT
current_type: E_TYPE
is_guard: BOOLEAN
feature
verify_scoop(allowed: FORMAL_ARG_LIST) is
require
smart_eiffel.scoop
do
is_guard := expression.verify_scoop(allowed)
end
feature {NONE}
make(t: like tag; exp: like expression; c: like comment) is
require
t /= void or exp /= Void or c /= Void
do
tag := t
expression := exp
comment := c
ensure
tag = t
expression = exp
comment = c
end
feature
start_position: POSITION is
do
if tag /= Void then
Result := tag.start_position
elseif expression /= Void then
Result := expression.start_position
else
Result := comment.start_position
end
end
pretty_print is
require
pretty_printer.indent_level >= 1
do
if tag /= Void then
pretty_printer.put_string(tag.to_string)
pretty_printer.put_string(once ": ")
end
if expression /= Void then
expression.pretty_print
if pretty_printer.semi_colon_flag then
pretty_printer.put_string(once "; ")
end
end
if comment /= Void then
comment.pretty_print
end
end
short(h01,r01,h02,r02,h03,r03,h04,r04,h05,r05,h06,r06,h07,r07,
h08,r08,h09,r09,h10,r10,h11,r11,h12,r12,h13,r13: STRING) is
do
short_print.hook_or(h01,r01)
if tag = Void then
short_print.hook_or(h02,r02)
else
short_print.hook_or(h03,r03)
tag.short
short_print.hook_or(h04,r04)
end
if expression = Void then
short_print.hook_or(h05,r05)
else
short_print.hook_or(h06,r06)
expression.short
short_print.hook_or(h07,r07)
end
if comment = Void then
short_print.hook_or(h08,r08)
else
short_print.hook_or(h09,r09)
comment.short(h10,r10,h11,r11)
short_print.hook_or(h12,r12)
end
short_print.hook_or(h13,r13)
end
to_runnable(ct: E_TYPE; assertion_check_tag: CHARACTER): like Current is
require
ct.is_run_type
local
e: like expression
do
if current_type = Void then
current_type := ct
Result := Current
if expression /= Void then
e := expression.to_runnable(ct)
if e = Void then
error(start_position,fz_bad_assertion)
else
expression := e
if not expression.result_type.is_boolean then
error_handler.add_type(expression.result_type,fz_is_not_boolean)
error(start_position,fz_bad_assertion)
end
end
end
if expression /= Void and then nb_errors = 0 then
if ace.require_check then
expression.assertion_check(assertion_check_tag)
end
end
else
!!Result.make(tag,expression,comment)
Result := Result.to_runnable(ct,assertion_check_tag)
end
ensure
nb_errors = 0 implies Result.is_checked
end
is_checked: BOOLEAN is
do
Result := current_type /= Void
end
use_current: BOOLEAN is
do
if expression /= Void then
Result := expression.use_current
end
end
afd_check is
require
is_checked
do
if expression /= Void then
expression.afd_check
end
end
compile_to_c is
require
is_checked
do
if expression /= Void then
if is_guard then
cpp.put_string(once "se_guard &= (")
expression.compile_to_c
cpp.put_string(fz_14)
else
cpp.check_assertion(expression,tag)
end
end
end
is_always_true: BOOLEAN is
local
bc: BOOLEAN_CONSTANT
do
if expression = Void then
Result := True
else
bc ?= expression
if bc /= Void then
Result := bc.value
end
end
end
c_frame_descriptor(format, locals: STRING) is
require
ace.no_check
do
if expression /= Void then
expression.c_frame_descriptor(format, locals)
end
end
feature {ASSERTION_LIST}
compile_to_jvm(last_chance: BOOLEAN) is
-- The boolean result of the expression is pushed.
-- When `last_chance' is True, the generated code includes an
-- error message to be printed when assertion is False.
--
require
is_checked
local
point1: INTEGER; ca: like code_attribute
do
ca := code_attribute
if expression = Void then
ca.opcode_iconst_1
else
expression.compile_to_jvm
if last_chance then
point1 := code_attribute.opcode_ifne
ca.runtime_error(expression.start_position,Void,fz_50)
ca.resolve_u2_branch(point1)
ca.opcode_iconst_1
end
end
end
feature {ASSERTION_VISITOR}
accept(visitor: ASSERTION_VISITOR) is
do
visitor.visit_assertion(Current)
end
feature {ASSERTION_LIST}
collect_c_tmp is
do
if expression /= Void then
expression.collect_c_tmp
end
end
feature {NONE}
tmp_string: STRING is
once
!!Result.make(128)
end
invariant
tag /= Void or expression /= Void or comment /= Void
end -- ASSERTION
|