-
Notifications
You must be signed in to change notification settings - Fork 277
VSD - max array length #6293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
VSD - max array length #6293
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
9750b53
Add EXPECT_INDEX & EXPECT_EMPTY_INDEX for more concise array unit tests
jezhiggins 6673edd
Initial unit tests to capture array write behaviour
jezhiggins c9c80e3
Rework array eval_index to remove out parameter
jezhiggins 5361db1
array insert/replace helper functions
jezhiggins 520a42f
Hardwire maximum array size
jezhiggins 002e1c0
merge writes beyond array maximum length
jezhiggins 627941c
Remove redundant vsd_configt::advanced_sensitivities
jezhiggins 341fae5
Export configuration on object factory, and on abstract_environmentt
jezhiggins 82aa431
Add vsd_configt::maximum_array_index, pick up in full_array_abstract_…
jezhiggins 1426b72
Combined a similiar couple of tests into one with multiple descs
jezhiggins 0a3b7e3
Add --vsd-arrays smash option
jezhiggins 2aafefa
Prevent simultaneous data-dependencies and liveness options
jezhiggins a78ea94
Bigger array in variable-sensitivity-array-nondet-access tests
jezhiggins 63203b1
Add --vsd-arrays up-to-n-elements option
jezhiggins File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
regression/goto-analyzer/variable-sensitivity-array-access/main.c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
int main(void) | ||
{ | ||
int arr[] = {1, 2, 3, 4, 5}; | ||
arr[2] = 99; | ||
int arr_0_after_write = arr[0]; | ||
int arr_1_after_write = arr[1]; | ||
int arr_2_after_write = arr[2]; | ||
int arr_3_after_write = arr[3]; | ||
int arr_4_after_write = arr[4]; | ||
return 0; | ||
} |
10 changes: 10 additions & 0 deletions
10
regression/goto-analyzer/variable-sensitivity-array-access/test-constants-every-element.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values constants --vsd-arrays every-element | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> 1 | ||
main::1::arr_1_after_write \(\) -> 2 | ||
main::1::arr_2_after_write \(\) -> 99 | ||
main::1::arr_3_after_write \(\) -> 4 | ||
main::1::arr_4_after_write \(\) -> 5 |
10 changes: 10 additions & 0 deletions
10
regression/goto-analyzer/variable-sensitivity-array-access/test-constants-smash.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values constants --vsd-arrays smash | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> TOP | ||
main::1::arr_1_after_write \(\) -> TOP | ||
main::1::arr_2_after_write \(\) -> TOP | ||
main::1::arr_3_after_write \(\) -> TOP | ||
main::1::arr_4_after_write \(\) -> TOP |
10 changes: 10 additions & 0 deletions
10
...sion/goto-analyzer/variable-sensitivity-array-access/test-constants-up-to-3-elements.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values constants --vsd-arrays up-to-n-elements --vsd-array-max-elements 3 | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> 1 | ||
main::1::arr_1_after_write \(\) -> 2 | ||
main::1::arr_2_after_write \(\) -> TOP | ||
main::1::arr_3_after_write \(\) -> TOP | ||
main::1::arr_4_after_write \(\) -> TOP |
10 changes: 10 additions & 0 deletions
10
regression/goto-analyzer/variable-sensitivity-array-access/test-intervals-every-element.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values intervals --vsd-arrays every-element | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> \[1, 1\] | ||
main::1::arr_1_after_write \(\) -> \[2, 2\] | ||
main::1::arr_2_after_write \(\) -> \[63, 63\] | ||
main::1::arr_3_after_write \(\) -> \[4, 4\] | ||
main::1::arr_4_after_write \(\) -> \[5, 5\] |
10 changes: 10 additions & 0 deletions
10
regression/goto-analyzer/variable-sensitivity-array-access/test-intervals-smash.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values intervals --vsd-arrays smash | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> \[1, 63\] | ||
main::1::arr_1_after_write \(\) -> \[1, 63\] | ||
main::1::arr_2_after_write \(\) -> \[1, 63\] | ||
main::1::arr_3_after_write \(\) -> \[1, 63\] | ||
main::1::arr_4_after_write \(\) -> \[1, 63\] |
10 changes: 10 additions & 0 deletions
10
...sion/goto-analyzer/variable-sensitivity-array-access/test-intervals-up-to-3-elements.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values intervals --vsd-arrays up-to-n-elements --vsd-array-max-elements 3 | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> \[1, 1\] | ||
main::1::arr_1_after_write \(\) -> \[2, 2\] | ||
main::1::arr_2_after_write \(\) -> \[3, 63\] | ||
main::1::arr_3_after_write \(\) -> \[3, 63\] | ||
main::1::arr_4_after_write \(\) -> \[3, 63\] |
10 changes: 10 additions & 0 deletions
10
...ession/goto-analyzer/variable-sensitivity-array-access/test-value-sets-every-element.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values set-of-constants --vsd-arrays every-element | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> value-set-begin: 1 :value-set-end | ||
main::1::arr_1_after_write \(\) -> value-set-begin: 2 :value-set-end | ||
main::1::arr_2_after_write \(\) -> value-set-begin: 99 :value-set-end | ||
main::1::arr_3_after_write \(\) -> value-set-begin: 4 :value-set-end | ||
main::1::arr_4_after_write \(\) -> value-set-begin: 5 :value-set-end |
10 changes: 10 additions & 0 deletions
10
regression/goto-analyzer/variable-sensitivity-array-access/test-value-sets-smash.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values set-of-constants --vsd-arrays smash | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end | ||
main::1::arr_1_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end | ||
main::1::arr_2_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end | ||
main::1::arr_3_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end | ||
main::1::arr_4_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end |
10 changes: 10 additions & 0 deletions
10
...ion/goto-analyzer/variable-sensitivity-array-access/test-value-sets-up-to-3-elements.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values set-of-constants --vsd-arrays up-to-n-elements --vsd-array-max-elements 3 | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_0_after_write \(\) -> value-set-begin: 1 :value-set-end | ||
main::1::arr_1_after_write \(\) -> value-set-begin: 2 :value-set-end | ||
main::1::arr_2_after_write \(\) -> value-set-begin: 3, 4, 5, 99 :value-set-end | ||
main::1::arr_3_after_write \(\) -> value-set-begin: 3, 4, 5, 99 :value-set-end | ||
main::1::arr_4_after_write \(\) -> value-set-begin: 3, 4, 5, 99 :value-set-end |
8 changes: 0 additions & 8 deletions
8
regression/goto-analyzer/variable-sensitivity-array-constant-access/main.c
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
regression/goto-analyzer/variable-sensitivity-array-constant-access/test.desc
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
regression/goto-analyzer/variable-sensitivity-array-interval-access/main.c
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
regression/goto-analyzer/variable-sensitivity-array-interval-access/test.desc
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
.../goto-analyzer/variable-sensitivity-array-nondet-access/test-constants-every-element.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values constants --vsd-arrays every-element | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> TOP @ \[9\] | ||
main::1::arr_0_after_write \(\) -> TOP @ \[18\] | ||
main::1::arr_1_after_write \(\) -> TOP @ \[20\] | ||
main::1::arr_2_after_write \(\) -> TOP @ \[22\] | ||
main::1::arr_3_after_write \(\) -> TOP @ \[24\] | ||
main::1::arr_4_after_write \(\) -> TOP @ \[26\] |
11 changes: 11 additions & 0 deletions
11
regression/goto-analyzer/variable-sensitivity-array-nondet-access/test-constants-smash.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values constants --vsd-arrays smash | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> TOP @ \[9\] | ||
main::1::arr_0_after_write \(\) -> TOP | ||
main::1::arr_1_after_write \(\) -> TOP | ||
main::1::arr_2_after_write \(\) -> TOP | ||
main::1::arr_3_after_write \(\) -> TOP | ||
main::1::arr_4_after_write \(\) -> TOP |
11 changes: 11 additions & 0 deletions
11
...to-analyzer/variable-sensitivity-array-nondet-access/test-constants-up-to-3-elements.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values constants --vsd-arrays up-to-n-elements --vsd-array-max-elements 3 | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> TOP @ \[9\] | ||
main::1::arr_0_after_write \(\) -> TOP | ||
main::1::arr_1_after_write \(\) -> TOP | ||
main::1::arr_2_after_write \(\) -> TOP | ||
main::1::arr_3_after_write \(\) -> TOP | ||
main::1::arr_4_after_write \(\) -> TOP |
11 changes: 11 additions & 0 deletions
11
.../goto-analyzer/variable-sensitivity-array-nondet-access/test-intervals-every-element.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values intervals --vsd-arrays every-element | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> \[1, 3\] @ \[9\] | ||
main::1::arr_0_after_write \(\) -> \[1, 63\] @ \[18\] | ||
main::1::arr_1_after_write \(\) -> \[2, 63\] @ \[20\] | ||
main::1::arr_2_after_write \(\) -> \[3, 63\] @ \[22\] | ||
main::1::arr_3_after_write \(\) -> \[4, 63\] @ \[24\] | ||
main::1::arr_4_after_write \(\) -> \[5, 63\] @ \[26\] |
11 changes: 11 additions & 0 deletions
11
regression/goto-analyzer/variable-sensitivity-array-nondet-access/test-intervals-smash.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values intervals --vsd-arrays smash | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> \[1, 5\] @ \[9\] | ||
main::1::arr_0_after_write \(\) -> \[1, 63\] | ||
main::1::arr_1_after_write \(\) -> \[1, 63\] | ||
main::1::arr_2_after_write \(\) -> \[1, 63\] | ||
main::1::arr_3_after_write \(\) -> \[1, 63\] | ||
main::1::arr_4_after_write \(\) -> \[1, 63\] |
11 changes: 11 additions & 0 deletions
11
...to-analyzer/variable-sensitivity-array-nondet-access/test-intervals-up-to-3-elements.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values intervals --vsd-arrays up-to-n-elements --vsd-array-max-elements 3 | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> \[1, 5\] @ \[9\] | ||
main::1::arr_0_after_write \(\) -> \[1, 63\] | ||
main::1::arr_1_after_write \(\) -> \[2, 63\] | ||
main::1::arr_2_after_write \(\) -> \[3, 63\] | ||
main::1::arr_3_after_write \(\) -> \[3, 63\] | ||
main::1::arr_4_after_write \(\) -> \[3, 63\] |
11 changes: 11 additions & 0 deletions
11
...goto-analyzer/variable-sensitivity-array-nondet-access/test-value-sets-every-element.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values set-of-constants --vsd-arrays every-element | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> value-set-begin: 1, 3 :value-set-end | ||
main::1::arr_0_after_write \(\) -> value-set-begin: 1, 99 :value-set-end | ||
main::1::arr_1_after_write \(\) -> value-set-begin: 2 :value-set-end | ||
main::1::arr_2_after_write \(\) -> value-set-begin: 3 :value-set-end | ||
main::1::arr_3_after_write \(\) -> value-set-begin: 4 :value-set-end | ||
main::1::arr_4_after_write \(\) -> value-set-begin: 5, 99 :value-set-end |
11 changes: 11 additions & 0 deletions
11
regression/goto-analyzer/variable-sensitivity-array-nondet-access/test-value-sets-smash.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values set-of-constants --vsd-arrays smash | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> value-set-begin: 1, 2, 3, 4, 5 :value-set-end | ||
main::1::arr_0_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end | ||
main::1::arr_1_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end | ||
main::1::arr_2_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end | ||
main::1::arr_3_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end | ||
main::1::arr_4_after_write \(\) -> value-set-begin: 1, 2, 3, 4, 5, 99 :value-set-end |
11 changes: 11 additions & 0 deletions
11
...o-analyzer/variable-sensitivity-array-nondet-access/test-value-sets-up-to-3-elements.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CORE | ||
main.c | ||
--show --variable-sensitivity --vsd-values set-of-constants --vsd-arrays up-to-n-elements --vsd-array-max-elements 3 | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
main::1::arr_at_ix \(\) -> value-set-begin: 1, 3, 4, 5 :value-set-end | ||
main::1::arr_0_after_write \(\) -> value-set-begin: 1, 99 :value-set-end | ||
main::1::arr_1_after_write \(\) -> value-set-begin: 2 :value-set-end | ||
main::1::arr_2_after_write \(\) -> value-set-begin: 3, 4, 5, 99 :value-set-end | ||
main::1::arr_3_after_write \(\) -> value-set-begin: 3, 4, 5, 99 :value-set-end | ||
main::1::arr_4_after_write \(\) -> value-set-begin: 3, 4, 5, 99 :value-set-end |
9 changes: 0 additions & 9 deletions
9
regression/goto-analyzer/variable-sensitivity-array-value-set-access/test.desc
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bit of a diff mismatch.
add_object_context
is redundant and was removed.configuration
is a new member function, which we need :)