summaryrefslogtreecommitdiff
path: root/test/binaryen.js/expressionrunner.js.txt
diff options
context:
space:
mode:
authorDaniel Wirtz <dcode@dcode.io>2020-05-09 02:44:23 +0200
committerGitHub <noreply@github.com>2020-05-08 17:44:23 -0700
commit98b1e6a64e49bbec03dad679bcb716fd79dc13e1 (patch)
tree1364bf44d22ec1d0991e5f271ca0ecdc34c40d9a /test/binaryen.js/expressionrunner.js.txt
parentf23bf9a4cd45b7ed03805f217f6c4f645a513822 (diff)
downloadbinaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.tar.gz
binaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.tar.bz2
binaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.zip
Remove C API tracing (#2841)
This feature was very useful in the early days of the C API, but has not shown usefuless for quite a while, and has a significant maintenance burden, so it it's makes sense to remove it now.
Diffstat (limited to 'test/binaryen.js/expressionrunner.js.txt')
-rw-r--r--test/binaryen.js/expressionrunner.js.txt158
1 files changed, 0 insertions, 158 deletions
diff --git a/test/binaryen.js/expressionrunner.js.txt b/test/binaryen.js/expressionrunner.js.txt
index 4d74c9feb..7d686bd28 100644
--- a/test/binaryen.js/expressionrunner.js.txt
+++ b/test/binaryen.js/expressionrunner.js.txt
@@ -1,161 +1,3 @@
// ExpressionRunner.Flags.Default = 0
// ExpressionRunner.Flags.PreserveSideeffects = 1
// ExpressionRunner.Flags.TraverseCalls = 2
-// beginning a Binaryen API trace
-#include <math.h>
-#include <map>
-#include "binaryen-c.h"
-int main() {
- std::map<size_t, BinaryenType> types;
- std::map<size_t, BinaryenExpressionRef> expressions;
- std::map<size_t, BinaryenFunctionRef> functions;
- std::map<size_t, BinaryenGlobalRef> globals;
- std::map<size_t, BinaryenEventRef> events;
- std::map<size_t, BinaryenExportRef> exports;
- std::map<size_t, RelooperBlockRef> relooperBlocks;
- std::map<size_t, ExpressionRunnerRef> expressionRunners;
- BinaryenModuleRef the_module = NULL;
- RelooperRef the_relooper = NULL;
- the_module = BinaryenModuleCreate();
- expressions[size_t(NULL)] = BinaryenExpressionRef(NULL);
- expressions[1] = BinaryenConst(the_module, BinaryenLiteralInt32(0));
- globals[0] = BinaryenAddGlobal(the_module, "aGlobal", BinaryenTypeInt32(), 1, expressions[1]);
- expressionRunners[0] = ExpressionRunnerCreate(the_module, 0, 0, 0);
- expressions[2] = BinaryenConst(the_module, BinaryenLiteralInt32(1));
- expressions[3] = BinaryenConst(the_module, BinaryenLiteralInt32(2));
- expressions[4] = BinaryenBinary(the_module, 0, expressions[2], expressions[3]);
- expressions[5] = ExpressionRunnerRunAndDispose(expressionRunners[0], expressions[4]);
- BinaryenExpressionGetId(expressions[5]);
- BinaryenExpressionGetType(expressions[5]);
- BinaryenConstGetValueI32(expressions[5]);
- expressionRunners[1] = ExpressionRunnerCreate(the_module, 0, 0, 0);
- expressions[6] = BinaryenConst(the_module, BinaryenLiteralInt32(1));
- expressions[7] = BinaryenConst(the_module, BinaryenLiteralInt32(0));
- expressions[8] = BinaryenConst(the_module, BinaryenLiteralInt32(0));
- expressions[9] = BinaryenConst(the_module, BinaryenLiteralInt32(3));
- expressions[10] = BinaryenIf(the_module, expressions[7], expressions[8], expressions[9]);
- expressions[11] = BinaryenBinary(the_module, 0, expressions[6], expressions[10]);
- expressions[12] = ExpressionRunnerRunAndDispose(expressionRunners[1], expressions[11]);
- BinaryenExpressionGetId(expressions[12]);
- BinaryenExpressionGetType(expressions[12]);
- BinaryenConstGetValueI32(expressions[12]);
- expressionRunners[2] = ExpressionRunnerCreate(the_module, 0, 0, 0);
- expressions[13] = BinaryenLocalGet(the_module, 0, BinaryenTypeInt32());
- expressions[14] = BinaryenConst(the_module, BinaryenLiteralInt32(1));
- expressions[15] = BinaryenBinary(the_module, 0, expressions[13], expressions[14]);
- ExpressionRunnerRunAndDispose(expressionRunners[2], expressions[15]);
- expressionRunners[3] = ExpressionRunnerCreate(the_module, 0, 0, 0);
- expressions[16] = BinaryenUnreachable(the_module);
- ExpressionRunnerRunAndDispose(expressionRunners[3], expressions[16]);
- expressionRunners[4] = ExpressionRunnerCreate(the_module, 0, 0, 0);
- expressions[17] = BinaryenConst(the_module, BinaryenLiteralInt32(4));
- expressions[18] = BinaryenLocalTee(the_module, 0, expressions[17], BinaryenTypeInt32());
- expressions[19] = BinaryenConst(the_module, BinaryenLiteralInt32(1));
- expressions[20] = BinaryenBinary(the_module, 0, expressions[18], expressions[19]);
- expressions[21] = ExpressionRunnerRunAndDispose(expressionRunners[4], expressions[20]);
- BinaryenExpressionGetId(expressions[21]);
- BinaryenExpressionGetType(expressions[21]);
- BinaryenConstGetValueI32(expressions[21]);
- expressionRunners[5] = ExpressionRunnerCreate(the_module, 1, 0, 0);
- expressions[22] = BinaryenConst(the_module, BinaryenLiteralInt32(4));
- expressions[23] = BinaryenLocalTee(the_module, 0, expressions[22], BinaryenTypeInt32());
- expressions[24] = BinaryenConst(the_module, BinaryenLiteralInt32(1));
- expressions[25] = BinaryenBinary(the_module, 0, expressions[23], expressions[24]);
- ExpressionRunnerRunAndDispose(expressionRunners[5], expressions[25]);
- expressionRunners[6] = ExpressionRunnerCreate(the_module, 0, 0, 0);
- expressions[26] = BinaryenConst(the_module, BinaryenLiteralInt32(2));
- expressions[27] = BinaryenLocalSet(the_module, 0, expressions[26]);
- expressions[28] = BinaryenLocalGet(the_module, 0, BinaryenTypeInt32());
- {
- BinaryenExpressionRef children[] = { expressions[27], expressions[28] };
- expressions[29] = BinaryenBlock(the_module, NULL, children, 2, BinaryenTypeInt32());
- }
- expressions[30] = BinaryenConst(the_module, BinaryenLiteralInt32(4));
- expressions[31] = BinaryenGlobalSet(the_module, "aGlobal", expressions[30]);
- expressions[32] = BinaryenGlobalGet(the_module, "aGlobal", BinaryenTypeInt32());
- {
- BinaryenExpressionRef children[] = { expressions[31], expressions[32] };
- expressions[33] = BinaryenBlock(the_module, NULL, children, 2, BinaryenTypeInt32());
- }
- expressions[34] = BinaryenBinary(the_module, 0, expressions[29], expressions[33]);
- expressions[35] = ExpressionRunnerRunAndDispose(expressionRunners[6], expressions[34]);
- BinaryenExpressionGetId(expressions[35]);
- BinaryenExpressionGetType(expressions[35]);
- BinaryenConstGetValueI32(expressions[35]);
- expressionRunners[7] = ExpressionRunnerCreate(the_module, 1, 0, 0);
- expressions[36] = BinaryenConst(the_module, BinaryenLiteralInt32(3));
- ExpressionRunnerSetLocalValue(expressionRunners[7], 0, expressions[36]);
- expressions[37] = BinaryenConst(the_module, BinaryenLiteralInt32(4));
- ExpressionRunnerSetGlobalValue(expressionRunners[7], "aGlobal", expressions[37]);
- expressions[38] = BinaryenLocalGet(the_module, 0, BinaryenTypeInt32());
- expressions[39] = BinaryenGlobalGet(the_module, "aGlobal", BinaryenTypeInt32());
- expressions[40] = BinaryenBinary(the_module, 0, expressions[38], expressions[39]);
- expressions[41] = ExpressionRunnerRunAndDispose(expressionRunners[7], expressions[40]);
- BinaryenExpressionGetId(expressions[41]);
- BinaryenExpressionGetType(expressions[41]);
- BinaryenConstGetValueI32(expressions[41]);
- expressionRunners[8] = ExpressionRunnerCreate(the_module, 2, 0, 0);
- {
- BinaryenType t0[] = {BinaryenTypeInt32(), BinaryenTypeInt32()};
- types[0] = BinaryenTypeCreate(t0, 2);
- }
- expressions[42] = BinaryenLocalGet(the_module, 0, BinaryenTypeInt32());
- expressions[43] = BinaryenLocalGet(the_module, 1, BinaryenTypeInt32());
- expressions[44] = BinaryenBinary(the_module, 0, expressions[42], expressions[43]);
- {
- BinaryenExpressionRef children[] = { expressions[44] };
- expressions[45] = BinaryenBlock(the_module, NULL, children, 1, BinaryenTypeInt32());
- }
- {
- BinaryenType varTypes[] = { 0 };
- functions[0] = BinaryenAddFunction(the_module, "add", types[0], BinaryenTypeInt32(), varTypes, 0, expressions[45]);
- }
- expressions[46] = BinaryenConst(the_module, BinaryenLiteralInt32(1));
- ExpressionRunnerSetLocalValue(expressionRunners[8], 0, expressions[46]);
- expressions[47] = BinaryenLocalGet(the_module, 0, BinaryenTypeInt32());
- expressions[48] = BinaryenConst(the_module, BinaryenLiteralInt32(2));
- expressions[49] = BinaryenConst(the_module, BinaryenLiteralInt32(4));
- {
- BinaryenExpressionRef operands[] = { expressions[48], expressions[49] };
- expressions[50] = BinaryenCall(the_module, "add", operands, 2, BinaryenTypeInt32());
- }
- expressions[51] = BinaryenBinary(the_module, 0, expressions[47], expressions[50]);
- expressions[52] = BinaryenLocalGet(the_module, 0, BinaryenTypeInt32());
- expressions[53] = BinaryenBinary(the_module, 0, expressions[51], expressions[52]);
- expressions[54] = ExpressionRunnerRunAndDispose(expressionRunners[8], expressions[53]);
- BinaryenExpressionGetId(expressions[54]);
- BinaryenExpressionGetType(expressions[54]);
- BinaryenConstGetValueI32(expressions[54]);
- expressionRunners[9] = ExpressionRunnerCreate(the_module, 0, 0, 0);
- expressions[55] = BinaryenConst(the_module, BinaryenLiteralInt32(1));
- expressions[56] = BinaryenConst(the_module, BinaryenLiteralInt32(3));
- expressions[57] = BinaryenConst(the_module, BinaryenLiteralInt32(4));
- {
- BinaryenExpressionRef operands[] = { expressions[56], expressions[57] };
- expressions[58] = BinaryenCall(the_module, "add", operands, 2, BinaryenTypeInt32());
- }
- expressions[59] = BinaryenBinary(the_module, 0, expressions[55], expressions[58]);
- ExpressionRunnerRunAndDispose(expressionRunners[9], expressions[59]);
- expressionRunners[10] = ExpressionRunnerCreate(the_module, 0, 1, 0);
- expressions[60] = BinaryenConst(the_module, BinaryenLiteralInt32(1));
- {
- BinaryenExpressionRef children[] = { expressions[60] };
- expressions[61] = BinaryenBlock(the_module, NULL, children, 1, BinaryenTypeInt32());
- }
- ExpressionRunnerRunAndDispose(expressionRunners[10], expressions[61]);
- expressionRunners[11] = ExpressionRunnerCreate(the_module, 0, 50, 3);
- expressions[62] = BinaryenBreak(the_module, "theLoop", expressions[0], expressions[0]);
- expressions[63] = BinaryenLoop(the_module, "theLoop", expressions[62]);
- ExpressionRunnerRunAndDispose(expressionRunners[11], expressions[63]);
- BinaryenModuleDispose(the_module);
- types.clear();
- expressions.clear();
- functions.clear();
- globals.clear();
- events.clear();
- exports.clear();
- relooperBlocks.clear();
- expressionRunners.clear();
- return 0;
-}
-// ending a Binaryen API trace