(* Running dispatchers *) (* Possible simple optimizations: - in make_result_prod, see if buffer can be simply overwritten (precompute this ...) *) open Value open Ident open Patterns.Compile open Encodings let buffer = ref (Array.create 127 Absent) let cursor = ref 0 let blit a1 ofs1 a2 ofs2 len = for i = 0 to len - 1 do Array.unsafe_set a2 (ofs2 + i) (Array.unsafe_get a1 (ofs1 + i)) done (* important to do this in the increasing order ... *) let ensure_room n = let l = Array.length !buffer in if !cursor + n > l then let buffer' = Array.create (l * 2 + n) Absent in blit !buffer 0 buffer' 0 !cursor; buffer := buffer' let make_result_prod v1 r1 v2 r2 v (code,r) = let n = Array.length r in if n = 0 then code else ( ensure_room n; let buf = !buffer in let c = !cursor in for a = 0 to n - 1 do let x = match Array.unsafe_get r a with | Catch -> v | Const c -> const c | Left i -> if (i < 0) then v1 else buf.(r1 + i) | Right j -> if (j < 0) then v2 else buf.(r2 + j) | Recompose (i,j) -> Pair ((if (i < 0) then v1 else buf.(r1 + i)), (if (j < 0) then v2 else buf.(r2 + j))) in buf.(c + a) <- x done; if r1 <> c then blit buf c buf r1 n; cursor := r1 + n; (* clean space for GC ? *) code ) let make_result_basic v (code,r) = let n = Array.length r in if n = 0 then code else ( ensure_room n; let buf = !buffer in for a = 0 to n - 1 do let x = match Array.unsafe_get r a with | Catch -> v | Const c -> const c | _ -> assert false in buf.(!cursor + a) <- x done; cursor := !cursor + n; code ) let make_result_char ch (code,r) = let n = Array.length r in if n = 0 then code else ( ensure_room n; let buf = !buffer in for a = 0 to n - 1 do let x = match Array.unsafe_get r a with | Catch -> Char ch | Const c -> const c | _ -> assert false in buf.(!cursor + a) <- x done; cursor := !cursor + n; code ) let tail_string_latin1 i j s q = if i + 1 = j then q else String_latin1 (i + 1,j,s,q) let make_result_string_latin1 i j s q r1 r2 (code,r) = let n = Array.length r in if n = 0 then code else ( ensure_room n; let buf = !buffer in for a = 0 to n - 1 do let x = match Array.unsafe_get r a with | Catch -> String_latin1 (i,j,s,q) | Const c -> const c | Left n -> if (n < 0) then Char (Chars.mk_char s.[i]) else buf.(r1 + n) | Right m -> if (m < 0) then tail_string_latin1 i j s q else buf.(r2 + m) | Recompose (n,m) -> Pair ((if (n < 0) then Char (Chars.mk_char s.[i]) else buf.(r1 + n)), (if (m < 0) then tail_string_latin1 i j s q else buf.(r2 + m))) in buf.(!cursor + a) <- x done; if r1 <> !cursor then blit buf !cursor buf r1 n; cursor := r1 + n; code ) let tail_string_utf8 i j s q = let i = Utf8.advance s i in if Utf8.equal_index i j then q else String_utf8 (i,j,s,q) let make_result_string_utf8 i j s q r1 r2 (code,r) = let n = Array.length r in if n = 0 then code else ( ensure_room n; let buf = !buffer in for a = 0 to n - 1 do let x = match Array.unsafe_get r a with | Catch -> String_utf8 (i,j,s,q) | Const c -> const c | Left n -> if (n < 0) then Char (Chars.mk_int (Utf8.get s i)) else buf.(r1 + n) | Right m -> if (m < 0) then tail_string_utf8 i j s q else buf.(r2 + m) | Recompose (n,m) -> Pair ((if (n < 0) then Char (Chars.mk_int (Utf8.get s i)) else buf.(r1 + n)), (if (m < 0) then tail_string_utf8 i j s q else buf.(r2 + m))) in buf.(!cursor + a) <- x done; if r1 <> !cursor then blit buf !cursor buf r1 n; cursor := r1 + n; code ) let rec run_disp_basic v f = function | [(_,r)] -> make_result_basic v r | (t,r)::rem -> if f t then make_result_basic v r else run_disp_basic v f rem | _ -> assert false let rec run_dispatcher d v = (* Format.fprintf Format.std_formatter "Matching (%a) with:@\n" Value.print v; Patterns.Compile.print_dispatcher Format.std_formatter d; *) match actions d with | AIgnore r -> make_result_basic v r | AKind k -> run_disp_kind k v and run_disp_kind actions v = match v with | Pair (v1,v2) -> run_disp_prod v v1 v2 actions.prod | Xml (v1,v2) -> run_disp_prod v v1 v2 actions.xml | Record r -> run_disp_record false v (LabelMap.get r) actions.record | String_latin1 (i,j,s,q) -> run_disp_string_latin1 i j s q actions | String_utf8 (i,j,s,q) -> assert false | Atom a -> make_result_basic v (Atoms.get_map a actions.atoms) | Char c -> make_result_basic v (Chars.get_map c actions.chars) | Integer i -> run_disp_basic v (fun t -> Types.Int.has_int t i) actions.basic | Abstraction (iface,_) -> run_disp_basic v (fun t -> Types.Arrow.check_iface iface t) actions.basic | Absent -> run_disp_basic v (fun t -> Types.Record.has_absent t) actions.basic (* | v -> run_disp_kind actions (normalize v) *) and run_disp_prod v v1 v2 = function | Impossible -> assert false | TailCall d1 -> run_dispatcher d1 v1 | Ignore d2 -> run_disp_prod2 v1 !cursor v v2 d2 | Dispatch (d1,b1) -> let r1 = !cursor in let code1 = run_dispatcher d1 v1 in run_disp_prod2 v1 r1 v v2 b1.(code1) and run_disp_prod2 v1 r1 v v2 = function | Impossible -> assert false | Ignore r -> make_result_prod v1 r1 v2 !cursor v r | TailCall d2 -> run_dispatcher d2 v2 | Dispatch (d2,b2) -> let r2 = !cursor in let code2 = run_dispatcher d2 v2 in make_result_prod v1 r1 v2 r2 v b2.(code2) and run_disp_record other v fields = function | None -> assert false | Some (RecLabel (l,d)) -> let rec aux other = function | (l1,_) :: rem when l1 < l -> aux true rem | (l1,vl) :: rem when l1 = l -> run_disp_record1 other vl rem d | rem -> run_disp_record1 other Absent rem d in aux other fields | Some (RecNolabel (some,none)) -> let r = if other then some else none in match r with | Some r -> make_result_basic v r | None -> assert false and run_disp_record1 other v1 rem = function | Impossible -> assert false | TailCall d1 -> run_dispatcher d1 v1 | Ignore d2 -> run_disp_record2 other v1 !cursor rem d2 | Dispatch (d1,b1) -> let r1 = !cursor in let code1 = run_dispatcher d1 v1 in run_disp_record2 other v1 r1 rem b1.(code1) and run_disp_record2 other v1 r1 rem = function | Impossible -> assert false | Ignore r -> make_result_prod v1 r1 Absent 0 Absent r | TailCall d2 -> run_disp_record_loop other rem d2 | Dispatch (d2,b2) -> let r2 = !cursor in let code2 = run_disp_record_loop other rem d2 in make_result_prod v1 r1 Absent r2 Absent b2.(code2) and run_disp_record_loop other rem d = match actions d with | AIgnore r -> make_result_basic Absent r | AKind k -> run_disp_record other Absent rem k.record and run_disp_string_latin1 i j s q actions = if i = j then run_disp_kind actions q else match actions.prod with | Impossible -> assert false | TailCall d1 -> run_disp_string_latin1_char d1 (Chars.mk_char s.[i]) | Ignore d2 -> run_disp_string_latin1_2 !cursor i j s q d2 | Dispatch (d1,b1) -> let r1 = !cursor in let code1 = run_disp_string_latin1_char d1 (Chars.mk_char s.[i]) in run_disp_string_latin1_2 r1 i j s q b1.(code1) and run_disp_string_latin1_char d ch = match actions d with | AIgnore r -> make_result_char ch r | AKind k -> make_result_char ch (Chars.get_map ch k.chars) and run_disp_string_latin1_2 r1 i j s q = function | Impossible -> assert false | Ignore r -> make_result_string_latin1 i j s q r1 0 r | TailCall d2 -> run_disp_string_latin1_loop i j s q d2 | Dispatch (d2,b2) -> let r2 = !cursor in let code2 = run_disp_string_latin1_loop i j s q d2 in make_result_string_latin1 i j s q r1 r2 b2.(code2) and run_disp_string_latin1_loop i j s q d = match actions d with | AIgnore r -> make_result_basic Absent r | AKind k -> run_disp_string_latin1 (succ i) j s q k and run_disp_string_utf8 i j s q actions = if Utf8.equal_index i j then run_disp_kind actions q else match actions.prod with | Impossible -> assert false | TailCall d1 -> run_disp_string_utf8_char d1 (Chars.mk_int (Utf8.get s i)) | Ignore d2 -> run_disp_string_utf8_2 !cursor i j s q d2 | Dispatch (d1,b1) -> let r1 = !cursor in let code1 = run_disp_string_utf8_char d1 (Chars.mk_int (Utf8.get s i)) in run_disp_string_utf8_2 r1 i j s q b1.(code1) and run_disp_string_utf8_char d ch = match actions d with | AIgnore r -> make_result_char ch r | AKind k -> make_result_char ch (Chars.get_map ch k.chars) and run_disp_string_utf8_2 r1 i j s q = function | Impossible -> assert false | Ignore r -> make_result_string_utf8 i j s q r1 0 r | TailCall d2 -> run_disp_string_utf8_loop i j s q d2 | Dispatch (d2,b2) -> let r2 = !cursor in let code2 = run_disp_string_utf8_loop i j s q d2 in make_result_string_utf8 i j s q r1 r2 b2.(code2) and run_disp_string_utf8_loop i j s q d = match actions d with | AIgnore r -> make_result_basic Absent r | AKind k -> run_disp_string_utf8 (Utf8.advance s i) j s q k let run_dispatcher d v = let code = run_dispatcher d v in (* for unknown reasons, it seems to be faster to copy the interesting prefix... *) (* cursor := 0; (code,!buffer) *) let r = Array.create !cursor Absent in blit !buffer 0 r 0 !cursor; cursor := 0; (code,r) (* let rec check_overwrite_aux r i = if i < 0 then true else match r.(i) with | Right j | Recompose (_,j) -> if (j < 0) || (j >=i ) then check_overwrite_aux r (i - 1) else false | _ -> check_overwrite_aux r (i - 1) let check_overwrite r2 r = (Array.length r2 = Array.length r) && (check_overwrite_aux r (Array.length r - 1)) *)