Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
cp526 committed Sep 29, 2020
1 parent c0e8fe1 commit 108fc2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion src_web_interface/web_assets/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ function StateModel () {
this.litmus_library = ko.observableArray();
this.elf_library = ko.observableArray();
this.tree_speculation = ko.observable("allow");
this.embedding = ko.observable("interpreter");
this.force_sc = ko.observable("force_sc_false");
this.relaxed_fetch = ko.observable("relaxed_fetch");
this.fetch_flat_idc = ko.observable("fetch_flat_idc");
Expand Down
5 changes: 2 additions & 3 deletions src_web_interface/web_assets/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ make_button_row("Execution", "eager_shortcut_buttons_none", {
make_line("Execution", "eager_sep");
make_toggler("Execution", "eager_fetch_single", "Eager fetch (single-successor)", "Are single-successor fetches considered eagerly takeable?");
make_toggler("Execution", "eager_fetch_multi", "Eager fetch (multiple-successor)", "Are multiple-successor fetches (e.g. branches) considered eagerly takeable?");
make_toggler("Execution", "eager_pseudocode_internal", "Eager pseudocode internal", "Are pseudocode-internal transitions considered eagerly takeable?", "css: { disabled: embedding() !== 'interpreter' }", "N/A to shallow embedding");
make_toggler("Execution", "eager_pseudocode_internal", "Eager pseudocode internal", "Are pseudocode-internal transitions considered eagerly takeable?");
make_toggler("Execution", "eager_constant_reg_read", "Eager constant reg reads", "Are constant reg reads considered eagerly takeable?");
make_toggler("Execution", "eager_reg_rw", "Eager register read/write", "Are all register reads/writes considered eagerly takeable?");
make_toggler("Execution", "eager_memory_aux", "Eager memory aux", "Are memory auxiliary transitions considered eagerly takeable?");
Expand All @@ -461,8 +461,7 @@ make_button_row("Execution", "eager_shortcut_buttons_none", {


make_custom_toggler("Interface", "pp_style", "Show instruction metadata", "Show or hide instruction bookkeeping/metadata in state printing, e.g. register read/writes", ["full", "compact"]);
make_toggler("Interface", "pp_sail", "Show Sail state and code", "Show the Sail interpreter state and code for each in-flight instruction. Note: " +
"only works if the Sail interpreter is being used, as opposed to the shallow embedding.", "css: { disabled: embedding() !== 'interpreter' }", "N/A to shallow embedding")
make_toggler("Interface", "pp_sail", "Show Sail state and code", "Show the Sail state and code for each in-flight instruction.")
make_toggler("Interface", "condense_finished_instructions", "Condense finished instructions", "Condense finished instructions in states");
make_int_option("Interface", "max_finished", "Hide finished instructions but last", "Maximum number of finished instructions printed at the start of each thread");

Expand Down

0 comments on commit 108fc2b

Please sign in to comment.