improve performance of lower_bound_of_target_clause (#1598)
This commit is contained in:
@@ -1238,6 +1238,7 @@ call_retract_helper(Head, Body, P, Module) :-
|
|||||||
ClauseQualifier = builtins
|
ClauseQualifier = builtins
|
||||||
; ClauseQualifier = Module
|
; ClauseQualifier = Module
|
||||||
),
|
),
|
||||||
|
'$debug_hook',
|
||||||
ClauseQualifier:'$clause'(Head, Body),
|
ClauseQualifier:'$clause'(Head, Body),
|
||||||
'$get_clause_p'(Head, P, Module).
|
'$get_clause_p'(Head, P, Module).
|
||||||
|
|
||||||
|
|||||||
@@ -42,42 +42,38 @@ pub(super) fn bootstrapping_compile(
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn lower_bound_of_target_clause(skeleton: &PredicateSkeleton, target_pos: usize) -> usize {
|
fn lower_bound_of_target_clause(skeleton: &mut PredicateSkeleton, target_pos: usize) -> usize {
|
||||||
if target_pos == 0 {
|
if target_pos == 0 {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
let arg_num = skeleton.clauses[target_pos - 1].opt_arg_index_key.arg_num();
|
let index = target_pos - 1;
|
||||||
|
let arg_num = skeleton.clauses[index].opt_arg_index_key.arg_num();
|
||||||
|
|
||||||
if arg_num == 0 {
|
if arg_num == 0 {
|
||||||
return target_pos - 1;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut index_loc_opt = None;
|
skeleton
|
||||||
|
.clauses[target_pos]
|
||||||
|
.opt_arg_index_key
|
||||||
|
.switch_on_term_loc()
|
||||||
|
.map(|index_loc| {
|
||||||
|
let search_result = skeleton.clauses.make_contiguous()
|
||||||
|
[0 .. skeleton.core.clause_assert_margin]
|
||||||
|
.partition_point(|clause_index_info| {
|
||||||
|
clause_index_info.clause_start > index_loc
|
||||||
|
});
|
||||||
|
|
||||||
for index in (0..target_pos).rev() {
|
if search_result < skeleton.core.clause_assert_margin {
|
||||||
let current_arg_num = skeleton.clauses[index].opt_arg_index_key.arg_num();
|
search_result
|
||||||
|
} else {
|
||||||
if current_arg_num == 0 || current_arg_num != arg_num {
|
skeleton.clauses.make_contiguous()[skeleton.core.clause_assert_margin ..]
|
||||||
return index + 1;
|
.partition_point(|clause_index_info| {
|
||||||
}
|
clause_index_info.clause_start < index_loc
|
||||||
|
}) + skeleton.core.clause_assert_margin
|
||||||
if let Some(index_loc) = index_loc_opt {
|
|
||||||
let current_index_loc = skeleton.clauses[index]
|
|
||||||
.opt_arg_index_key
|
|
||||||
.switch_on_term_loc();
|
|
||||||
|
|
||||||
if Some(index_loc) != current_index_loc {
|
|
||||||
return index + 1;
|
|
||||||
}
|
}
|
||||||
} else {
|
}).unwrap_or(index)
|
||||||
index_loc_opt = skeleton.clauses[index]
|
|
||||||
.opt_arg_index_key
|
|
||||||
.switch_on_term_loc();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn derelictize_try_me_else(
|
fn derelictize_try_me_else(
|
||||||
|
|||||||
Reference in New Issue
Block a user