:(scenario tangle_before)
def main [
1:number <- copy 0
<label1>
3:number <- copy 0
]
before <label1> [
2:number <- copy 0
]
+mem: storing 0 in location 1
+mem: storing 0 in location 2
+mem: storing 0 in location 3
$mem: 3
:(before "End Globals")
map<string , recipe> Before_fragments, After_fragments;
set<string > Fragments_used;
:(before "End Setup")
Before_fragments.clear();
After_fragments.clear();
Fragments_used.clear();
:(before "End Command Handlers")
else if (command == "before") {
string label = next_word(in);
recipe tmp;
slurp_body(in, tmp);
if (is_waypoint(label))
Before_fragments[label].steps.insert(Before_fragments[label].steps.end(), tmp.steps.begin(), tmp.steps.end());
else
raise << "can't tangle before label " << label << '\n' << end();
}
else if (command == "after") {
string label = next_word(in);
recipe tmp;
slurp_body(in, tmp);
if (is_waypoint(label))
After_fragments[label].steps.insert(After_fragments[label].steps.begin(), tmp.steps.begin(), tmp.steps.end());
else
raise << "can't tangle after label " << label << '\n' << end();
}
:(after "Begin Instruction Inserting/Deleting Transforms")
Transform.push_back(insert_fragments);
:(before "End instruction Fields")
mutable bool tangle_done;
:(before "End instruction Constructor")
tangle_done = false;
:(code)
void insert_fragments(const recipe_ordinal r) {
insert_fragments(get(Recipe, r));
}
void insert_fragments(recipe& r) {
bool made_progress = true;
int pass = 0;
while (made_progress) {
made_progress = false;
vector<instruction> result;
for (int i = 0; i < SIZE(r.steps); ++i) {
const instruction& inst = r.steps.at(i);
if (!inst.is_label || !is_waypoint(inst.label) || inst.tangle_done) {
result.push_back(inst);
continue;
}
inst.tangle_done = true;
made_progress = true;
Fragments_used.insert(inst.label);
ostringstream prefix;
prefix << '+' << r.name << '_' << pass << '_' << i;
if (contains_key(Before_fragments, inst.label))
append_fragment(result, Before_fragments[inst.label].steps, prefix.str());
result.push_back(inst);
if (contains_key(After_fragments, inst.label))
append_fragment(result, After_fragments[inst.label].steps, prefix.str());
}
r.steps.swap(result);
++pass;
}
}
void append_fragment(vector<instruction>& base, const vector<instruction>& patch, const string prefix) {
set<string> jump_targets;
for (int i = 0; i < SIZE(patch); ++i) {
const instruction& inst = patch.at(i);
if (inst.is_label && is_jump_target(inst.label))
jump_targets.insert(inst.label);
}
for (int i = 0; i < SIZE(patch); ++i) {
instruction inst = patch.at(i);
if (inst.is_label) {
if (contains_key(jump_targets, inst.label))
inst.label = prefix+inst.label;
base.push_back(inst);
continue;
}
for (int j = 0; j < SIZE(inst.ingredients); ++j) {
reagent& x = inst.ingredients.at(j);
if (!is_literal(x)) continue;
if (x.type->name == "label" && contains_key(jump_targets, x.name))
x.name = prefix+x.name;
}
base.push_back(inst);
}
}
bool is_waypoint(string label) {
return *label.begin() == '<' && *label.rbegin() == '>';
}
:(before "End Commandline Parsing")
check_insert_fragments();
:(code)
void check_insert_fragments() {
for (map<string, recipe>::iterator p = Before_fragments.begin(); p != Before_fragments.end(); ++p) {
if (!contains_key(Fragments_used, p->first))
raise << "could not locate insert before label " << p->first << '\n' << end();
}
for (map<string, recipe>::iterator p = After_fragments.begin(); p != After_fragments.end(); ++p) {
if (!contains_key(Fragments_used, p->first))
raise << "could not locate insert after label " << p->first << '\n' << end();
}
}
:(scenario tangle_before_and_after)
def main [
1:number <- copy 0
<label1>
4:number <- copy 0
]
before <label1> [
2:number <- copy 0
]
after <label1> [
3:number <- copy 0
]
+mem: storing 0 in location 1
+mem: storing 0 in location 2
+mem: storing 0 in location 3
+mem: storing 0 in location 4
$mem: 4
:(scenario tangle_ignores_jump_target)
% Hide_errors = true;
def main [
1:number <- copy 0
+label1
4:number <- copy 0
]
before +label1 [
2:number <- copy 0
]
+error: can't tangle before label +label1
:(scenario tangle_keeps_labels_separate)
def main [
1:number <- copy 0
<label1>
<label2>
6:number <- copy 0
]
before <label1> [
2:number <- copy 0
]
after <label1> [
3:number <- copy 0
]
before <label2> [
4:number <- copy 0
]
after <label2> [
5:number <- copy 0
]
+mem: storing 0 in location 1
+mem: storing 0 in location 2
+mem: storing 0 in location 3
+mem: storing 0 in location 4
+mem: storing 0 in location 5
+mem: storing 0 in location 6
$mem: 6
:(scenario tangle_stacks_multiple_fragments)
def main [
1:number <- copy 0
<label1>
6:number <- copy 0
]
before <label1> [
2:number <- copy 0
]
after <label1> [
3:number <- copy 0
]
before <label1> [
4:number <- copy 0
]
after <label1> [
5:number <- copy 0
]
+mem: storing 0 in location 1
+mem: storing 0 in location 2
+mem: storing 0 in location 4
+mem: storing 0 in location 5
+mem: storing 0 in location 3
+mem: storing 0 in location 6
$mem: 6
:(scenario tangle_supports_fragments_with_multiple_instructions)
def main [
1:number <- copy 0
<label1>
6:number <- copy 0
]
before <label1> [
2:number <- copy 0
3:number <- copy 0
]
after <label1> [
4:number <- copy 0
5:number <- copy 0
]
+mem: storing 0 in location 1
+mem: storing 0 in location 2
+mem: storing 0 in location 3
+mem: storing 0 in location 4
+mem: storing 0 in location 5
+mem: storing 0 in location 6
$mem: 6
:(scenario tangle_tangles_into_all_labels_with_same_name)
def main [
1:number <- copy 10
<label1>
4:number <- copy 10
recipe2
]
def recipe2 [
1:number <- copy 11
<label1>
4:number <- copy 11
]
before <label1> [
2:number <- copy 12
]
after <label1> [
3:number <- copy 12
]
+mem: storing 10 in location 1
+mem: storing 12 in location 2
+mem: storing 12 in location 3
+mem: storing 10 in location 4
+mem: storing 11 in location 1
+mem: storing 12 in location 2
+mem: storing 12 in location 3
+mem: storing 11 in location 4
$mem: 8
:(scenario tangle_tangles_into_all_labels_with_same_name_2)
def main [
1:number <- copy 10
<label1>
<label1>
4:number <- copy 10
]
before <label1> [
2:number <- copy 12
]
after <label1> [
3:number <- copy 12
]
+mem: storing 10 in location 1
+mem: storing 12 in location 2
+mem: storing 12 in location 3
+mem: storing 12 in location 2
+mem: storing 12 in location 3
+mem: storing 10 in location 4
$mem: 6
:(scenario tangle_tangles_into_all_labels_with_same_name_3)
def main [
1:number <- copy 10
<label1>
<foo>
4:number <- copy 10
]
before <label1> [
2:number <- copy 12
]
after <label1> [
3:number <- copy 12
]
after <foo> [
<label1>
]
+mem: storing 10 in location 1
+mem: storing 12 in location 2
+mem: storing 12 in location 3
+mem: storing 12 in location 2
+mem: storing 12 in location 3
+mem: storing 10 in location 4
$mem: 6
:(scenario tangle_handles_jump_target_inside_fragment)
def main [
1:number <- copy 10
<label1>
4:number <- copy 10
]
before <label1> [
jump +label2:label
2:number <- copy 12
+label2
3:number <- copy 12
]
+mem: storing 10 in location 1
+mem: storing 12 in location 3
+mem: storing 10 in location 4
-mem: storing 12 in label 2
$mem: 3
:(scenario tangle_renames_jump_target)
def main [
1:number <- copy 10
<label1>
+label2
4:number <- copy 10
]
before <label1> [
jump +label2:label
2:number <- copy 12
+label2
3:number <- copy 12
]
+mem: storing 10 in location 1
+mem: storing 12 in location 3
+mem: storing 10 in location 4
-mem: storing 12 in label 2
$mem: 3
:(scenario tangle_jump_to_base_recipe)
def main [
1:number <- copy 10
<label1>
+label2
4:number <- copy 10
]
before <label1> [
jump +label2:label
2:number <- copy 12
3:number <- copy 12
]
+mem: storing 10 in location 1
+mem: storing 10 in location 4
-mem: storing 12 in label 2
-mem: storing 12 in location 3
$mem: 2
:(code)
void test_new_fragment_after_tangle() {
load("def foo [\n"
" local-scope\n"
" <label>\n"
"]\n"
"after <label> [\n"
" 1:number/raw <- copy 34\n"
"]\n");
transform_all();
CHECK_TRACE_DOESNT_CONTAIN_ERROR();
Hide_errors = true;
load("before <label> [\n"
" 2:number/raw <- copy 35\n"
"]\n");
CHECK_TRACE_CONTAINS_ERROR();
}
:(before "End before Command Handler")
if (contains_key(Fragments_used, label))
raise << "we've already tangled some code at label " << label << " in a previous call to transform_all(). Those locations won't be updated.\n" << end();
:(before "End after Command Handler")
if (contains_key(Fragments_used, label))
raise << "we've already tangled some code at label " << label << " in a previous call to transform_all(). Those locations won't be updated.\n" << end();