~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to src/compiler.html

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
<body>
 
3
<h2>Run the emscripten compiler in a web page, just for laughs</h2>
 
4
Open the web console to see stderr output
 
5
<hr>
 
6
<pre id="output"></pre>
 
7
<script>
 
8
  arguments = [];
 
9
 
 
10
  var outputElement = document.getElementById('output');
 
11
  var compilerOutput = '';
 
12
  print = function(x) {
 
13
    //outputElement.innerHTML += x;
 
14
    compilerOutput += x;
 
15
  };
 
16
 
 
17
  // For generated code
 
18
  var Module = {
 
19
    print: function(x) {
 
20
      outputElement.innerHTML += x;
 
21
    }
 
22
  };
 
23
</script>
 
24
<script src="compiler.js">
 
25
</script>
 
26
<textarea id="the_input" cols=50 rows=30>
 
27
; ModuleID = 'tests/hello_world.bc'
 
28
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32-S128"
 
29
target triple = "i386-pc-linux-gnu"
 
30
 
 
31
@.str = private unnamed_addr constant [15 x i8] c"hello, world!\0A\00", align 1 ; [#uses=1 type=[15 x i8]*]
 
32
 
 
33
; [#uses=0]
 
34
define i32 @main() {
 
35
entry:
 
36
  %retval = alloca i32, align 4                   ; [#uses=1 type=i32*]
 
37
  store i32 0, i32* %retval
 
38
  %call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([15 x i8]* @.str, i32 0, i32 0)) ; [#uses=0 type=i32]
 
39
  ret i32 1
 
40
}
 
41
 
 
42
; [#uses=1]
 
43
declare i32 @printf(i8*, ...)
 
44
</textarea>
 
45
<input type="button" value="run!" onclick="compile(document.getElementById('the_input').value); eval(compilerOutput)">
 
46
</body>
 
47
</html>
 
48