forked from bmeurer/emscripten-dbg-stories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (50 loc) · 3.48 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Emscripten Debugging Stories</title>
</head>
<body>
<h1>Emscripten Debugging Stories</h1>
<p>
This contains a bunch of core debugging stories that need to be supported
in DevTools for Emscripten.
</p>
<ol>
<li><a href="crbug-837572.html">Repro from chromium:837572</a></li>
<li><a href="crbug-887384.html">Repro from chromium:887384</a></li>
<li><a href="crbug-1141330.html">Repro from chromium:1141330</a></li>
<li><a href="crbug-1150303.html">Repro from chromium:1150303</a></li>
<li><a href="crbug-1153644.html">Repro from chromium:1153644</a></li>
<li><a href="crbug-1234784.html">Repro from chromium:1234784</a></li>
<li><a href="diverse-inlining.html">Inlined in one case and not inlined in another (with header)</a></li>
<li><a href="fibonacci.html">Basic fibonacci example</a></li>
<li><a href="fibonacci-O1.html">Basic fibonacci example (compiled with -O1)</a></li>
<li><a href="fibonacci-O2.html">Basic fibonacci example (compiled with -O2)</a></li>
<li><a href="fibonacci-proxytopthread.html">Basic fibonacci proxy-to-pthread example</a></li>
<li><a href="fibonacci-proxytopthread.html">Basic fibonacci proxy-to-pthread example (DWARF)</a></li>
<li><a href="globals.html">Test with various kinds of globals</a></li>
<li><a href="hello.html">Basic hello world example</a></li>
<li><a href="hello-no-symbols.html">Basic hello world example without symbols</a></li>
<li><a href="hello-separate-dwarf.html">Basic hello example (separate DWARF)</a></li>
<li><a href="hello-separate-dwarf-broken.html">Basic hello example (broken separate DWARF)</a></li>
<li><a href="hello-split-dwarf-dwp.html">Basic hello example (split DWARF with dwp, DWARF 5)</a></li>
<li><a href="hello-split-dwarf-dwo.html">Basic hello example (split DWARF with dwo, DWARF 5)</a></li>
<li><a href="hello-split-dwarf-missing-dwp.html">Basic hello example (broken split DWARF with missing dwo/dwp, DWARF 5)</a></li>
<li><a href="hello-threads.html">Basic hello threads example</a></li>
<li><a href="hello-windows.html">Basic hello world example (windows paths)</a></li>
<li><a href="inlining-crbug-1113603.html">Trivial inlining example (repro from chromium:1113603)</a></li>
<li><a href="inlining-dwarf.html">Trivial inlining example (DWARF)</a></li>
<li><a href="inlining-sourcemaps.html">Trivial inlining example (sourcemaps)</a></li>
<li><a href="lmi.html">Opening linear memory inspector example (DWARF)</a></li>
<li><a href="stepping-with-state-sourcemaps.html">Basic stepping example with source maps</a></li>
<li><a href="stepping-with-state-and-threads-sourcemaps.html">Basic stepping with source maps and threads</a></li>
<li><a href="stepping-with-state-and-threads-sourcemaps-proxytopthread.html">Basic stepping with source maps, threads and proxy-to-pthread</a></li>
<li><a href="stepping-with-state-and-threads-proxytopthread.html">Basic stepping with threads and proxy-to-pthread (DWARF)</a></li>
<li><a href="string.html">Basic std::string example</a></li>
<li><a href="deep-call-stack-with-inlining.html">Deep Call Stack (with inlining)</a></li>
<li><a href="tail-call-inlining.html">Inlining at tail call sites</a></li>
<li><a href="mandelbrot.html">Mandelbrot (SDL2)</a></li>
<li><a href="simd.html">Simple SIMD example (from v8.dev/features/simd)</a></li>
</ol>
</body>
</html>