summaryrefslogtreecommitdiff
path: root/test/binaryen.js/custom-section.js.txt
blob: 063ef9dde00974a5958a4894082252e1052cc443 (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;
  the_module = BinaryenModuleCreate();
  expressions[size_t(NULL)] = BinaryenExpressionRef(NULL);
  {
    const char contents[] = { 119, 111, 114, 108, 100 };
    BinaryenAddCustomSection(the_module, "hello", contents, 5);
  }
  BinaryenModuleValidate(the_module);
  BinaryenModulePrint(the_module);
(module
 ;; custom section "hello", size 5, contents: "world"
)