aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authorbarras2004-07-13 13:35:42 +0000
committerbarras2004-07-13 13:35:42 +0000
commit49c842d98c3d32016a279f97497876c79cba9880 (patch)
treea21ea44f70db88003a3e20d2f06bb6ec26d6a470 /parsing
parent080869c96afe453dc49589ad47a3d0dcdc25f9a5 (diff)
bugs #667 and #783 (mimick_evar and loc_table on large files)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5894 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
-rw-r--r--parsing/lexer.ml424
1 files changed, 14 insertions, 10 deletions
diff --git a/parsing/lexer.ml4 b/parsing/lexer.ml4
index a3652c8d7a..88891b2d92 100644
--- a/parsing/lexer.ml4
+++ b/parsing/lexer.ml4
@@ -470,26 +470,30 @@ let rec next_token = parser bp
let locerr () = invalid_arg "Lexer: location function"
-let loct_create () = ref (Array.create 1024 None)
+let tsz = 256 (* up to 2^29 entries on a 32-bit machine, 2^61 on 64-bit *)
+
+let loct_create () = ref [| [| |] |]
let loct_func loct i =
match
- if i < 0 || i >= Array.length !loct then None
- else Array.unsafe_get !loct i
+ if i < 0 || i/tsz >= Array.length !loct then None
+ else if !loct.(i/tsz) = [| |] then None
+ else !loct.(i/tsz).(i mod tsz)
with
| Some loc -> loc
| _ -> locerr ()
let loct_add loct i loc =
- if i >= Array.length !loct then begin
+ while i/tsz >= Array.length !loct do
let new_tmax = Array.length !loct * 2 in
- let new_loct = Array.create new_tmax None in
+ let new_loct = Array.make new_tmax [| |] in
Array.blit !loct 0 new_loct 0 (Array.length !loct);
- loct := new_loct
- end;
- !loct.(i) <- Some loc
+ loct := new_loct;
+ done;
+ if !loct.(i/tsz) = [| |] then !loct.(i/tsz) <- Array.make tsz None;
+ !loct.(i/tsz).(i mod tsz) <- Some loc
-let current_location_table = ref (ref [||])
+let current_location_table = ref (ref [| [| |] |])
let location_function n =
loct_func !current_location_table n
@@ -505,7 +509,7 @@ let func cs =
current_location_table := loct;
(ts, loct_func loct)
-type location_table = (int * int) option array ref
+type location_table = (int * int) option array array ref
let location_table () = !current_location_table
let restore_location_table t = current_location_table := t