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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
|
%---------------------------------------------------------------------------%
% Copyright (C) 1997-1999 The University of Melbourne.
% This file may only be copied under the terms of the GNU General
% Public License - see the file COPYING in the Mercury distribution.
%---------------------------------------------------------------------------%
%
% file: const_prop.m
% main author: conway.
%
% This module provides the facility to evaluate calls at compile time -
% transforming them to simpler goals such as construction unifications.
%
% XXX We should check for overflow.
% XXX Some of this code should be shared with vn_util__simplify_vnrval.
%
%------------------------------------------------------------------------------%
:- module const_prop.
:- interface.
:- import_module hlds_module, hlds_goal, hlds_pred, prog_data, instmap.
:- import_module list.
:- pred evaluate_builtin(pred_id, proc_id, list(prog_var), hlds_goal_info,
hlds_goal_expr, hlds_goal_info, instmap,
module_info, module_info).
:- mode evaluate_builtin(in, in, in, in, out, out, in, in, out) is semidet.
%------------------------------------------------------------------------------%
:- implementation.
:- import_module code_aux, det_analysis, follow_code, goal_util.
:- import_module hlds_goal, hlds_data, instmap, inst_match.
:- import_module globals, options, passes_aux, prog_data, mode_util, type_util.
:- import_module code_util, quantification, modes.
:- import_module bool, list, int, float, map, require.
:- import_module (inst), hlds_out, std_util.
%------------------------------------------------------------------------------%
evaluate_builtin(PredId, ProcId, Args, GoalInfo0, Goal, GoalInfo,
InstMap, ModuleInfo0, ModuleInfo) :-
predicate_module(ModuleInfo0, PredId, ModuleName),
predicate_name(ModuleInfo0, PredId, PredName),
proc_id_to_int(ProcId, ProcInt),
LookupVarInsts = lambda([V::in, J::out] is det, (
instmap__lookup_var(InstMap, V, VInst),
J = V - VInst
)),
list__map(LookupVarInsts, Args, ArgInsts),
evaluate_builtin_2(ModuleName, PredName, ProcInt, ArgInsts, GoalInfo0,
Goal, GoalInfo, ModuleInfo0, ModuleInfo).
:- pred evaluate_builtin_2(module_name, string, int,
list(pair(prog_var, (inst))), hlds_goal_info, hlds_goal_expr,
hlds_goal_info, module_info, module_info).
:- mode evaluate_builtin_2(in, in, in, in, in, out, out, in, out) is semidet.
% Module_info is not actually used at the moment.
evaluate_builtin_2(Module, Pred, ModeNum, Args, GoalInfo0, Goal, GoalInfo,
ModuleInfo, ModuleInfo) :-
% -- not yet:
% Module = qualified(unqualified("std"), Mod),
Module = unqualified(Mod),
(
Args = [X, Y],
evaluate_builtin_bi(Mod, Pred, ModeNum, X, Y, W, Cons)
->
make_construction(W, Cons, Goal),
goal_info_get_instmap_delta(GoalInfo0, Delta0),
W = Var - _WInst,
instmap_delta_set(Delta0, Var,
bound(unique, [functor(Cons, [])]), Delta),
goal_info_set_instmap_delta(GoalInfo0, Delta, GoalInfo)
;
Args = [X, Y, Z],
evaluate_builtin_tri(Mod, Pred, ModeNum, X, Y, Z, W, Cons)
->
make_construction(W, Cons, Goal),
goal_info_get_instmap_delta(GoalInfo0, Delta0),
W = Var - _WInst,
instmap_delta_set(Delta0, Var,
bound(unique, [functor(Cons, [])]), Delta),
goal_info_set_instmap_delta(GoalInfo0, Delta, GoalInfo)
;
evaluate_builtin_test(Mod, Pred, ModeNum, Args, Result)
->
make_true_or_fail(Result, GoalInfo0, Goal, GoalInfo)
;
fail
).
%------------------------------------------------------------------------------%
:- pred evaluate_builtin_bi(string, string, int,
pair(prog_var, (inst)), pair(prog_var, (inst)),
pair(prog_var, (inst)), cons_id).
:- mode evaluate_builtin_bi(in, in, in, in, in, out, out) is semidet.
% Integer arithmetic
evaluate_builtin_bi("int", "+", 0, X, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
ZVal is XVal.
evaluate_builtin_bi("int", "-", 0, X, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
ZVal is -XVal.
evaluate_builtin_bi("int", "\\", 0, X, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
ZVal is \ XVal.
% Floating point arithmetic
evaluate_builtin_bi("float", "+", 0, X, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
ZVal is XVal.
evaluate_builtin_bi("float", "-", 0, X, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
ZVal is -XVal.
%------------------------------------------------------------------------------%
:- pred evaluate_builtin_tri(string, string, int,
pair(prog_var, (inst)), pair(prog_var, (inst)),
pair(prog_var, (inst)), pair(prog_var, (inst)), cons_id).
:- mode evaluate_builtin_tri(in, in, in, in, in, in, out, out) is semidet.
%
% Integer arithmetic
%
evaluate_builtin_tri("int", "+", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is XVal + YVal.
evaluate_builtin_tri("int", "+", 1, X, Y, Z, X, int_const(XVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(int_const(ZVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
XVal is ZVal - YVal.
evaluate_builtin_tri("int", "+", 2, X, Y, Z, Y, int_const(YVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(int_const(ZVal), [])]),
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
YVal is ZVal - XVal.
evaluate_builtin_tri("int", "-", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is XVal - YVal.
evaluate_builtin_tri("int", "-", 1, X, Y, Z, X, int_const(XVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(int_const(ZVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
XVal is YVal + ZVal.
evaluate_builtin_tri("int", "-", 2, X, Y, Z, Y, int_const(YVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(int_const(ZVal), [])]),
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
YVal is XVal - ZVal.
evaluate_builtin_tri("int", "*", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is XVal * YVal.
/****
evaluate_builtin_tri("int", "*", 1, X, Y, Z, X, int_const(XVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(int_const(ZVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
YVal \= 0,
XVal is ZVal // YVal.
evaluate_builtin_tri("int", "*", 2, X, Y, Z, Y, int_const(YVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(int_const(ZVal), [])]),
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
XVal \= 0,
YVal is ZVal // XVal.
****/
evaluate_builtin_tri("int", "//", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
YVal \= 0,
ZVal is XVal // YVal.
/****
evaluate_builtin_tri("int", "//", 1, X, Y, Z, X, int_const(XVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(int_const(ZVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
XVal is ZVal * YVal.
evaluate_builtin_tri("int", "//", 2, X, Y, Z, Y, int_const(YVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(int_const(ZVal), [])]),
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
ZVal \= 0,
YVal is XVal // ZVal.
****/
% This isn't actually a builtin.
evaluate_builtin_tri("int", "mod", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
YVal \= 0,
ZVal is XVal mod YVal.
evaluate_builtin_tri("int", "rem", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
YVal \= 0,
ZVal is XVal rem YVal.
evaluate_builtin_tri("int", "unchecked_left_shift",
0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is unchecked_left_shift(XVal, YVal).
% This isn't actually a builtin.
evaluate_builtin_tri("int", "<<", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is XVal << YVal.
evaluate_builtin_tri("int", "unchecked_right_shift",
0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is unchecked_right_shift(XVal, YVal).
% This isn't actually a builtin.
evaluate_builtin_tri("int", ">>", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is XVal >> YVal.
evaluate_builtin_tri("int", "/\\", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is XVal /\ YVal.
evaluate_builtin_tri("int", "\\/", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal is XVal \/ YVal.
evaluate_builtin_tri("int", "^", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal = XVal `xor` YVal.
evaluate_builtin_tri("int", "xor", 0, X, Y, Z, Z, int_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
ZVal = XVal `xor` YVal.
%
% float arithmetic
%
evaluate_builtin_tri("float", "+", 0, X, Y, Z, Z, float_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
ZVal is XVal + YVal.
evaluate_builtin_tri("float", "+", 1, X, Y, Z, X, float_const(XVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(float_const(ZVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
XVal is ZVal - YVal.
evaluate_builtin_tri("float", "+", 2, X, Y, Z, Y, float_const(YVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(float_const(ZVal), [])]),
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
YVal is ZVal - XVal.
evaluate_builtin_tri("float", "-", 0, X, Y, Z, Z, float_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
ZVal is XVal - YVal.
evaluate_builtin_tri("float", "-", 1, X, Y, Z, X, float_const(XVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(float_const(ZVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
XVal is YVal + ZVal.
evaluate_builtin_tri("float", "-", 2, X, Y, Z, Y, float_const(YVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(float_const(ZVal), [])]),
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
YVal is XVal - ZVal.
evaluate_builtin_tri("float", "*", 0, X, Y, Z, Z, float_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
ZVal is XVal * YVal.
evaluate_builtin_tri("float", "*", 1, X, Y, Z, X, float_const(XVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(float_const(ZVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
YVal \= 0.0,
XVal is ZVal / YVal.
evaluate_builtin_tri("float", "*", 2, X, Y, Z, Y, float_const(YVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(float_const(ZVal), [])]),
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
XVal \= 0.0,
YVal is ZVal / XVal.
evaluate_builtin_tri("float", "//", 0, X, Y, Z, Z, float_const(ZVal)) :-
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
YVal \= 0.0,
ZVal is XVal / YVal.
evaluate_builtin_tri("float", "//", 1, X, Y, Z, X, float_const(XVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(float_const(ZVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
XVal is ZVal * YVal.
evaluate_builtin_tri("float", "//", 2, X, Y, Z, Y, float_const(YVal)) :-
Z = _ZVar - bound(_ZUniq, [functor(float_const(ZVal), [])]),
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
ZVal \= 0.0,
YVal is XVal / ZVal.
%------------------------------------------------------------------------------%
:- pred evaluate_builtin_test(string, string, int,
list(pair(prog_var, inst)), bool).
:- mode evaluate_builtin_test(in, in, in, in, out) is semidet.
% Integer comparisons
evaluate_builtin_test("int", "<", 0, Args, Result) :-
Args = [X, Y],
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
( XVal < YVal ->
Result = yes
;
Result = no
).
evaluate_builtin_test("int", "=<", 0, Args, Result) :-
Args = [X, Y],
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
( XVal =< YVal ->
Result = yes
;
Result = no
).
evaluate_builtin_test("int", ">", 0, Args, Result) :-
Args = [X, Y],
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
( XVal > YVal ->
Result = yes
;
Result = no
).
evaluate_builtin_test("int", ">=", 0, Args, Result) :-
Args = [X, Y],
X = _XVar - bound(_XUniq, [functor(int_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(int_const(YVal), [])]),
( XVal >= YVal ->
Result = yes
;
Result = no
).
% Float comparisons
evaluate_builtin_test("float", "<", 0, Args, Result) :-
Args = [X, Y],
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
( XVal < YVal ->
Result = yes
;
Result = no
).
evaluate_builtin_test("float", "=<", 0, Args, Result) :-
Args = [X, Y],
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
( XVal =< YVal ->
Result = yes
;
Result = no
).
evaluate_builtin_test("float", ">", 0, Args, Result) :-
Args = [X, Y],
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
( XVal > YVal ->
Result = yes
;
Result = no
).
evaluate_builtin_test("float", ">=", 0, Args, Result) :-
Args = [X, Y],
X = _XVar - bound(_XUniq, [functor(float_const(XVal), [])]),
Y = _YVar - bound(_YUniq, [functor(float_const(YVal), [])]),
( XVal >= YVal ->
Result = yes
;
Result = no
).
%------------------------------------------------------------------------------%
% recompute_instmap_delta is run by simplify.m if anything changes,
% so the insts are not important here.
:- pred make_construction(pair(prog_var, inst), cons_id, hlds_goal_expr).
:- mode make_construction(in, in, out) is det.
make_construction(Var - _, ConsId, Goal) :-
make_const_construction(Var, ConsId, Goal - _).
%------------------------------------------------------------------------------%
:- pred make_true_or_fail(bool, hlds_goal_info, hlds_goal_expr, hlds_goal_info).
:- mode make_true_or_fail(in, in, out, out) is det.
make_true_or_fail(yes, GoalInfo, conj([]), GoalInfo).
make_true_or_fail(no, GoalInfo, disj([], SM), GoalInfo) :-
map__init(SM).
%------------------------------------------------------------------------------%
|