Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 1306 | Kartik K. Agaram | 2015-05-07 | 2 | -2/+83 |
| | |||||
* | 1305 | Kartik K. Agaram | 2015-05-07 | 2 | -2/+89 |
| | |||||
* | 1304 - two bugs in 'wait-for-routine' | Kartik K. Agaram | 2015-05-07 | 1 | -7/+12 |
| | |||||
* | 1303 | Kartik K. Agaram | 2015-05-07 | 2 | -2/+2 |
| | |||||
* | 1302 | Kartik K. Agaram | 2015-05-07 | 1 | -0/+1 |
| | |||||
* | 1301 - back to the chessboard | Kartik K. Agaram | 2015-05-07 | 5 | -2/+206 |
| | | | | Still need a nice syntax for managing the routine under test. | ||||
* | 1300 | Kartik K. Agaram | 2015-05-07 | 1 | -1/+2 |
| | |||||
* | 1299 - stop using [] in any vector | Kartik K. Agaram | 2015-05-07 | 22 | -112/+112 |
| | | | | | | | | | Useful check: $ grep "[^ '\"]\[[^\"]" *.cc \ |perl -pwe 's/\Wargv\[|\WTests\[|\Wframe\[|\WMemory\[|\WName\[|\WSurrounding_space\[|\WRecipe\[|\WType\[|\WRecipe_number\[|\WType_number\[|\WBefore_fragments\[|\WAfter_fragments\[//g' \ |perl -pwe 's/\Wargv\[|\WTests\[|\Wframe\[|\WMemory\[|\WName\[|\WSurrounding_space\[|\WRecipe\[|\WType\[|\WRecipe_number\[|\WType_number\[|\WBefore_fragments\[|\WAfter_fragments\[//g' \ |grep '[^ ]\[' | ||||
* | 1298 - better ingredient/product handling | Kartik K. Agaram | 2015-05-07 | 35 | -586/+687 |
| | | | | | | | | | | | | | | | | | | | All primitives now always write to all their products. If a product is not used that's fine, but if an instruction seems to expect too many products mu will complain. In the process, many primitives can operate on more than two ingredients where it seems intuitive. You can add or divide more than two numbers together, copy or negate multiple corresponding locations, etc. There's one remaining bit of ugliness. Some instructions like get/get-address, index/index-address, wait-for-location, these can unnecessarily load values from memory when they don't need to. Useful vim commands: %s/ingredients\[\([^\]]*\)\]/ingredients.at(\1)/gc %s/products\[\([^\]]*\)\]/products.at(\1)/gc .,$s/\[\(.\)]/.at(\1)/gc | ||||
* | 1297 | Kartik K. Agaram | 2015-05-07 | 1 | -5/+8 |
| | |||||
* | 1296 - roll back 1295 | Kartik K. Agaram | 2015-05-07 | 5 | -301/+10 |
| | |||||
* | 1295 - broken snapshot | Kartik K. Agaram | 2015-05-07 | 5 | -10/+301 |
| | | | | | I spent a couple of hours debugging this because routine-state only sometimes writes to its product. This is unacceptable. Fix this first. | ||||
* | 1294 | Kartik K. Agaram | 2015-05-06 | 1 | -5/+5 |
| | |||||
* | 1293 - start porting the chessboard app over | Kartik K. Agaram | 2015-05-06 | 5 | -7/+215 |
| | | | | | | | | | Just to put all our new test primitives through their paces, and iron out any kinks. Just the one chessboard scenario is taking 1.5-2.5x all the tests we've written so far. But we're starting from a faster baseline, that was the point of the C++ port. I also have -O3 optimizations in my back-pocket. | ||||
* | 1292 | Kartik K. Agaram | 2015-05-06 | 1 | -1/+1 |
| | |||||
* | 1291 | Kartik K. Agaram | 2015-05-06 | 48 | -53/+52 |
| | |||||
* | 1290 | Kartik K. Agaram | 2015-05-06 | 1 | -5/+4 |
| | |||||
* | 1289 | Kartik K. Agaram | 2015-05-06 | 2 | -0/+57 |
| | |||||
* | 1288 | Kartik K. Agaram | 2015-05-06 | 1 | -0/+0 |
| | |||||
* | 1287 | Kartik K. Agaram | 2015-05-06 | 1 | -1/+2 |
| | |||||
* | 1286 | Kartik K. Agaram | 2015-05-06 | 1 | -4/+4 |
| | |||||
* | 1285 | Kartik K. Agaram | 2015-05-06 | 1 | -1/+1 |
| | |||||
* | 1284 | Kartik K. Agaram | 2015-05-06 | 1 | -0/+11 |
| | |||||
* | 1283 | Kartik K. Agaram | 2015-05-06 | 1 | -5/+5 |
| | |||||
* | 1282 | Kartik K. Agaram | 2015-05-06 | 1 | -1/+1 |
| | |||||
* | 1281 | Kartik K. Agaram | 2015-05-06 | 1 | -0/+2 |
| | |||||
* | 1280 - index.html for github page | Kartik K. Agaram | 2015-05-06 | 1 | -0/+71 |
| | |||||
* | 1279 - colorized rendering of the source files | Kartik K. Agaram | 2015-05-06 | 47 | -0/+9125 |
| | |||||
* | 1278 - support before/after tangle directives | Kartik K. Agaram | 2015-05-05 | 4 | -31/+254 |
| | | | | | No way to only insert code at a label in a specific recipe. Let's see how that goes. | ||||
* | 1277 | Kartik K. Agaram | 2015-05-05 | 1 | -0/+18 |
| | |||||
* | 1276 - make C++ version the default | Kartik K. Agaram | 2015-05-05 | 568 | -23345/+1989414 |
| | | | | I've tried to update the Readme, but there are at least a couple of issues. | ||||
* | 1275 | Kartik K. Agaram | 2015-05-05 | 1 | -21/+18 |
| | |||||
* | 1274 | Kartik K. Agaram | 2015-05-05 | 1 | -7/+7 |
| | |||||
* | 1273 - fix display.mu example program | Kartik K. Agaram | 2015-05-05 | 1 | -1/+10 |
| | |||||
* | 1272 | Kartik K. Agaram | 2015-05-05 | 3 | -14/+19 |
| | |||||
* | 1271 - producer/consumer example now works | Kartik K. Agaram | 2015-05-05 | 1 | -0/+43 |
| | |||||
* | 1270 - we can now pass ingredients to routines as we start them | Kartik K. Agaram | 2015-05-05 | 4 | -5/+47 |
| | |||||
* | 1269 - 'wait-for-routine' | Kartik K. Agaram | 2015-05-05 | 63 | -324/+423 |
| | |||||
* | 1268 | Kartik K. Agaram | 2015-05-05 | 2 | -1/+2 |
| | |||||
* | 1267 - 'routine-state' can use the provided routine id | Kartik K. Agaram | 2015-05-05 | 63 | -322/+396 |
| | |||||
* | 1266 - 'start-running' returns a unique routine id | Kartik K. Agaram | 2015-05-05 | 2 | -1/+55 |
| | |||||
* | 1265 | Kartik K. Agaram | 2015-05-05 | 20 | -110/+110 |
| | |||||
* | 1264 | Kartik K. Agaram | 2015-05-05 | 3 | -8/+8 |
| | |||||
* | 1263 | Kartik K. Agaram | 2015-05-05 | 1 | -0/+3 |
| | |||||
* | 1262 | Kartik K. Agaram | 2015-05-05 | 1 | -2/+2 |
| | |||||
* | 1261 | Kartik K. Agaram | 2015-05-04 | 4 | -7/+7 |
| | |||||
* | 1260 | Kartik K. Agaram | 2015-05-04 | 1 | -1/+1 |
| | |||||
* | 1259 - better failure messages for mu scenarios | Kartik K. Agaram | 2015-05-04 | 1 | -2/+12 |
| | |||||
* | 1258 | Kartik K. Agaram | 2015-05-04 | 1 | -0/+3 |
| | |||||
* | 1257 | Kartik K. Agaram | 2015-05-04 | 2 | -4/+5 |
| |