| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- (**
- * The phase applies the transformations shown below. These transformations are
- * required because the CiviC VM does not offer instructions that perform these
- * operations. Another reason is that conjunction and disjunction require
- * short-circuit evaluation. In the examples below, `b1` and `b2` are
- * expressions of type boolean, `i` is of type int and `f` is of type float.
- *
- * > b1 == b2 ==> (int)b1 == (int)b2
- * > b1 != b2 ==> (int)b1 != (int)b2
- * > b1 && b2 ==> b1 ? b2 : false
- * > b1 || b2 ==> b1 ? true : b2
- * > b1 + b2 ==> (bool)((int)b1 + (int)b2)
- * > b1 * b2 ==> (bool)((int)b1 * (int)b2)
- * > (bool)i ==> i != 0
- * > (bool)f ==> f != 0.0
- * > (int)b1 ==> b1 ? 1 : 0
- * > (float)b1 ==> b1 ? 1.0 : 0.0
- *)
- open Types
- open Util
- let cast ctype node = TypeCast (ctype, node, [Type ctype])
- let boolconst value = Const (BoolVal value, [Type Bool])
- let intconst value = Const (IntVal value, [Type Int])
- let floatconst value = Const (FloatVal value, [Type Float])
- let rec trav_binop = function
- | ((Eq | Ne) as op, left, right, ann) ->
- bool_op (Binop (op, cast Int left, cast Int right, ann))
- | (And, left, right, ann) ->
- bool_op (Cond (left, right, boolconst false, ann))
- | (Or, left, right, ann) ->
- bool_op (Cond (left, boolconst true, right, ann))
- | ((Add | Mul) as op, left, right, ann) ->
- bool_op (cast Bool (Binop (op, cast Int left, cast Int right, Type Int :: ann)))
- | (op, left, right, ann) ->
- Binop (op, left, right, ann)
- and bool_op = function
- | Binop (op, left, right, ann) when typeof left = Bool && typeof right = Bool ->
- trav_binop (op, bool_op left, bool_op right, ann)
- | TypeCast (Bool, value, ann) when typeof value = Int ->
- Binop (Ne, bool_op value, intconst 0, ann)
- | TypeCast (Bool, value, ann) when typeof value = Float ->
- Binop (Ne, bool_op value, floatconst 0.0, ann)
- | TypeCast (Int, value, ann) when typeof value = Bool ->
- Cond (bool_op value, intconst 1, intconst 0, ann)
- | TypeCast (Float, value, ann) when typeof value = Bool ->
- Cond (bool_op value, floatconst 1.0, floatconst 0.0, ann)
- | TypeCast (ctype, value, ann) when typeof value = ctype ->
- bool_op value
- | node -> traverse_unit bool_op node
- let phase = function
- | Ast node -> Ast (bool_op node)
- | _ -> raise (InvalidInput "bool operations")
|