Bug 125378 - CStack Branch: Enable basic JavaScript functionality in LLInt
Summary: CStack Branch: Enable basic JavaScript functionality in LLInt
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Michael Saboff
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-06 20:53 PST by Michael Saboff
Modified: 2013-12-06 21:43 PST (History)
0 users

See Also:


Attachments
Patch (27.71 KB, patch)
2013-12-06 21:24 PST, Michael Saboff
fpizlo: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Saboff 2013-12-06 20:53:16 PST
This task is to allow simple javascript programs to run.  For example:

function foo(x)
{
    return x+1
}

print(foo(1))
Comment 1 Michael Saboff 2013-12-06 21:24:12 PST
Created attachment 218648 [details]
Patch

This patch runs simple scripts.  When it runs v8-crypto.js, it exits with an exit code of 0 at the line "rr = "0".charCodeAt(0);".
Comment 2 Michael Saboff 2013-12-06 21:43:36 PST
Committed r160267: <http://trac.webkit.org/changeset/160267>