:(before "End Instruction Modifying Transforms")
Transform.push_back(update_instruction_operations);
:(code)
void update_instruction_operations(recipe_ordinal r) {
trace(9991, "transform") << "--- compute instruction operations for recipe " << get(Recipe, r).name << end();
for (long long int index = 0; index < SIZE(get(Recipe, r).steps); ++index) {
instruction& inst = get(Recipe, r).steps.at(index);
if (inst.is_label) continue;
if (!contains_key(Recipe_ordinal, inst.name)) {
raise_error << maybe(get(Recipe, r).name) << "instruction " << inst.name << " has no recipe\n" << end();
return;
}
inst.operation = get(Recipe_ordinal, inst.name);
}
}
string maybe(string s) {
return s + ": ";
}
void transform(string form) {
load(form);
transform_all();
}