blob: df98df08ce50ddc291abadb138f3c50cfd113de6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// 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;
BinaryenModuleRef the_module = NULL;
RelooperRef the_relooper = NULL;
BinaryenGetPassArgument("theKey");
BinaryenSetPassArgument("theKey", "theValue");
BinaryenGetPassArgument("theKey");
BinaryenSetPassArgument("theKey", NULL);
BinaryenGetPassArgument("theKey");
BinaryenSetPassArgument("theKey", "theValue2");
BinaryenGetPassArgument("theKey");
BinaryenClearPassArguments();
BinaryenGetPassArgument("theKey");
return 0;
}
// ending a Binaryen API trace
|