diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-14 17:10:33 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-14 17:10:33 -0700 |
commit | 9cf71627174aebeabe9149df454785b3ef6b92d8 (patch) | |
tree | e6026a10113b1563960d84da06b84e51b5e9e5f9 /cpp/020call | |
parent | 4f5bc1e198b075c8fbec455a5614deb2c13a812e (diff) | |
download | mu-9cf71627174aebeabe9149df454785b3ef6b92d8.tar.gz |
910 - c++: call layer more coherent
Diffstat (limited to 'cpp/020call')
-rw-r--r-- | cpp/020call | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cpp/020call b/cpp/020call index 18c54e63..1a7c4b89 100644 --- a/cpp/020call +++ b/cpp/020call @@ -7,6 +7,23 @@ recipe f [ ] +mem: storing in location 3 +:(replace{} "End Primitive Recipe Implementations." then "default:") +default: { + // unknown op = try to call a defined recipe + if (Recipe.find(instructions[pc].operation) == Recipe.end()) { + raise << "undefined operation " << instructions[pc].operation << '\n'; + break; + } +//? cout << "calling " << instructions[pc].operation << '\n'; //? 2 + call callee(instructions[pc].operation); + for (vector<reagent>::iterator p = instructions[pc].ingredients.begin(); p != instructions[pc].ingredients.end(); ++p) { +//? cout << "push back: " << p->to_string() << '\n'; //? 1 + callee.incoming_atoms.push_back(read_memory(*p)); + } + rr.calls.push(callee); + continue; // not done with caller; don't increment pc +} + :(scenario "next_ingredient") recipe main [ f 2:literal |