mirror of https://github.com/lukechilds/node.git
Ryan Dahl
14 years ago
98 changed files with 8447 additions and 7140 deletions
@ -0,0 +1,263 @@ |
|||
// Copyright 2010 the V8 project authors. All rights reserved.
|
|||
// Redistribution and use in source and binary forms, with or without
|
|||
// modification, are permitted provided that the following conditions are
|
|||
// met:
|
|||
//
|
|||
// * Redistributions of source code must retain the above copyright
|
|||
// notice, this list of conditions and the following disclaimer.
|
|||
// * Redistributions in binary form must reproduce the above
|
|||
// copyright notice, this list of conditions and the following
|
|||
// disclaimer in the documentation and/or other materials provided
|
|||
// with the distribution.
|
|||
// * Neither the name of Google Inc. nor the names of its
|
|||
// contributors may be used to endorse or promote products derived
|
|||
// from this software without specific prior written permission.
|
|||
//
|
|||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
|
|||
#include "i18n-extension.h" |
|||
|
|||
#include <algorithm> |
|||
#include <string> |
|||
|
|||
#include "unicode/locid.h" |
|||
#include "unicode/uloc.h" |
|||
|
|||
namespace v8 { |
|||
namespace internal { |
|||
|
|||
I18NExtension* I18NExtension::extension_ = NULL; |
|||
|
|||
// TODO(cira): maybe move JS code to a .js file and generata cc files from it?
|
|||
const char* const I18NExtension::kSource = |
|||
"Locale = function(optLocale) {" |
|||
" native function NativeJSLocale();" |
|||
" var properties = NativeJSLocale(optLocale);" |
|||
" this.locale = properties.locale;" |
|||
" this.language = properties.language;" |
|||
" this.script = properties.script;" |
|||
" this.region = properties.region;" |
|||
"};" |
|||
"Locale.availableLocales = function() {" |
|||
" native function NativeJSAvailableLocales();" |
|||
" return NativeJSAvailableLocales();" |
|||
"};" |
|||
"Locale.prototype.maximizedLocale = function() {" |
|||
" native function NativeJSMaximizedLocale();" |
|||
" return new Locale(NativeJSMaximizedLocale(this.locale));" |
|||
"};" |
|||
"Locale.prototype.minimizedLocale = function() {" |
|||
" native function NativeJSMinimizedLocale();" |
|||
" return new Locale(NativeJSMinimizedLocale(this.locale));" |
|||
"};" |
|||
"Locale.prototype.displayLocale_ = function(displayLocale) {" |
|||
" var result = this.locale;" |
|||
" if (displayLocale !== undefined) {" |
|||
" result = displayLocale.locale;" |
|||
" }" |
|||
" return result;" |
|||
"};" |
|||
"Locale.prototype.displayLanguage = function(optDisplayLocale) {" |
|||
" var displayLocale = this.displayLocale_(optDisplayLocale);" |
|||
" native function NativeJSDisplayLanguage();" |
|||
" return NativeJSDisplayLanguage(this.locale, displayLocale);" |
|||
"};" |
|||
"Locale.prototype.displayScript = function(optDisplayLocale) {" |
|||
" var displayLocale = this.displayLocale_(optDisplayLocale);" |
|||
" native function NativeJSDisplayScript();" |
|||
" return NativeJSDisplayScript(this.locale, displayLocale);" |
|||
"};" |
|||
"Locale.prototype.displayRegion = function(optDisplayLocale) {" |
|||
" var displayLocale = this.displayLocale_(optDisplayLocale);" |
|||
" native function NativeJSDisplayRegion();" |
|||
" return NativeJSDisplayRegion(this.locale, displayLocale);" |
|||
"};" |
|||
"Locale.prototype.displayName = function(optDisplayLocale) {" |
|||
" var displayLocale = this.displayLocale_(optDisplayLocale);" |
|||
" native function NativeJSDisplayName();" |
|||
" return NativeJSDisplayName(this.locale, displayLocale);" |
|||
"};"; |
|||
|
|||
v8::Handle<v8::FunctionTemplate> I18NExtension::GetNativeFunction( |
|||
v8::Handle<v8::String> name) { |
|||
if (name->Equals(v8::String::New("NativeJSLocale"))) { |
|||
return v8::FunctionTemplate::New(JSLocale); |
|||
} else if (name->Equals(v8::String::New("NativeJSAvailableLocales"))) { |
|||
return v8::FunctionTemplate::New(JSAvailableLocales); |
|||
} else if (name->Equals(v8::String::New("NativeJSMaximizedLocale"))) { |
|||
return v8::FunctionTemplate::New(JSMaximizedLocale); |
|||
} else if (name->Equals(v8::String::New("NativeJSMinimizedLocale"))) { |
|||
return v8::FunctionTemplate::New(JSMinimizedLocale); |
|||
} else if (name->Equals(v8::String::New("NativeJSDisplayLanguage"))) { |
|||
return v8::FunctionTemplate::New(JSDisplayLanguage); |
|||
} else if (name->Equals(v8::String::New("NativeJSDisplayScript"))) { |
|||
return v8::FunctionTemplate::New(JSDisplayScript); |
|||
} else if (name->Equals(v8::String::New("NativeJSDisplayRegion"))) { |
|||
return v8::FunctionTemplate::New(JSDisplayRegion); |
|||
} else if (name->Equals(v8::String::New("NativeJSDisplayName"))) { |
|||
return v8::FunctionTemplate::New(JSDisplayName); |
|||
} |
|||
|
|||
return v8::Handle<v8::FunctionTemplate>(); |
|||
} |
|||
|
|||
v8::Handle<v8::Value> I18NExtension::JSLocale(const v8::Arguments& args) { |
|||
// TODO(cira): Fetch browser locale. Accept en-US as good default for now.
|
|||
// We could possibly pass browser locale as a parameter in the constructor.
|
|||
std::string locale_name("en-US"); |
|||
if (args.Length() == 1 && args[0]->IsString()) { |
|||
locale_name = *v8::String::Utf8Value(args[0]->ToString()); |
|||
} |
|||
|
|||
v8::Local<v8::Object> locale = v8::Object::New(); |
|||
locale->Set(v8::String::New("locale"), v8::String::New(locale_name.c_str())); |
|||
|
|||
icu::Locale icu_locale(locale_name.c_str()); |
|||
|
|||
const char* language = icu_locale.getLanguage(); |
|||
locale->Set(v8::String::New("language"), v8::String::New(language)); |
|||
|
|||
const char* script = icu_locale.getScript(); |
|||
if (strlen(script)) { |
|||
locale->Set(v8::String::New("script"), v8::String::New(script)); |
|||
} |
|||
|
|||
const char* region = icu_locale.getCountry(); |
|||
if (strlen(region)) { |
|||
locale->Set(v8::String::New("region"), v8::String::New(region)); |
|||
} |
|||
|
|||
return locale; |
|||
} |
|||
|
|||
// TODO(cira): Filter out locales that Chrome doesn't support.
|
|||
v8::Handle<v8::Value> I18NExtension::JSAvailableLocales( |
|||
const v8::Arguments& args) { |
|||
v8::Local<v8::Array> all_locales = v8::Array::New(); |
|||
|
|||
int count = 0; |
|||
const Locale* icu_locales = icu::Locale::getAvailableLocales(count); |
|||
for (int i = 0; i < count; ++i) { |
|||
all_locales->Set(i, v8::String::New(icu_locales[i].getName())); |
|||
} |
|||
|
|||
return all_locales; |
|||
} |
|||
|
|||
// Use - as tag separator, not _ that ICU uses.
|
|||
static std::string NormalizeLocale(const std::string& locale) { |
|||
std::string result(locale); |
|||
// TODO(cira): remove STL dependency.
|
|||
std::replace(result.begin(), result.end(), '_', '-'); |
|||
return result; |
|||
} |
|||
|
|||
v8::Handle<v8::Value> I18NExtension::JSMaximizedLocale( |
|||
const v8::Arguments& args) { |
|||
if (!args.Length() || !args[0]->IsString()) { |
|||
return v8::Undefined(); |
|||
} |
|||
|
|||
UErrorCode status = U_ZERO_ERROR; |
|||
std::string locale_name = *v8::String::Utf8Value(args[0]->ToString()); |
|||
char max_locale[ULOC_FULLNAME_CAPACITY]; |
|||
uloc_addLikelySubtags(locale_name.c_str(), max_locale, |
|||
sizeof(max_locale), &status); |
|||
if (U_FAILURE(status)) { |
|||
return v8::Undefined(); |
|||
} |
|||
|
|||
return v8::String::New(NormalizeLocale(max_locale).c_str()); |
|||
} |
|||
|
|||
v8::Handle<v8::Value> I18NExtension::JSMinimizedLocale( |
|||
const v8::Arguments& args) { |
|||
if (!args.Length() || !args[0]->IsString()) { |
|||
return v8::Undefined(); |
|||
} |
|||
|
|||
UErrorCode status = U_ZERO_ERROR; |
|||
std::string locale_name = *v8::String::Utf8Value(args[0]->ToString()); |
|||
char min_locale[ULOC_FULLNAME_CAPACITY]; |
|||
uloc_minimizeSubtags(locale_name.c_str(), min_locale, |
|||
sizeof(min_locale), &status); |
|||
if (U_FAILURE(status)) { |
|||
return v8::Undefined(); |
|||
} |
|||
|
|||
return v8::String::New(NormalizeLocale(min_locale).c_str()); |
|||
} |
|||
|
|||
// Common code for JSDisplayXXX methods.
|
|||
static v8::Handle<v8::Value> GetDisplayItem(const v8::Arguments& args, |
|||
const std::string& item) { |
|||
if (args.Length() != 2 || !args[0]->IsString() || !args[1]->IsString()) { |
|||
return v8::Undefined(); |
|||
} |
|||
|
|||
std::string base_locale = *v8::String::Utf8Value(args[0]->ToString()); |
|||
icu::Locale icu_locale(base_locale.c_str()); |
|||
icu::Locale display_locale = |
|||
icu::Locale(*v8::String::Utf8Value(args[1]->ToString())); |
|||
UnicodeString result; |
|||
if (item == "language") { |
|||
icu_locale.getDisplayLanguage(display_locale, result); |
|||
} else if (item == "script") { |
|||
icu_locale.getDisplayScript(display_locale, result); |
|||
} else if (item == "region") { |
|||
icu_locale.getDisplayCountry(display_locale, result); |
|||
} else if (item == "name") { |
|||
icu_locale.getDisplayName(display_locale, result); |
|||
} else { |
|||
return v8::Undefined(); |
|||
} |
|||
|
|||
if (result.length()) { |
|||
return v8::String::New( |
|||
reinterpret_cast<const uint16_t*>(result.getBuffer()), result.length()); |
|||
} |
|||
|
|||
return v8::Undefined(); |
|||
} |
|||
|
|||
v8::Handle<v8::Value> I18NExtension::JSDisplayLanguage( |
|||
const v8::Arguments& args) { |
|||
return GetDisplayItem(args, "language"); |
|||
} |
|||
|
|||
v8::Handle<v8::Value> I18NExtension::JSDisplayScript( |
|||
const v8::Arguments& args) { |
|||
return GetDisplayItem(args, "script"); |
|||
} |
|||
|
|||
v8::Handle<v8::Value> I18NExtension::JSDisplayRegion( |
|||
const v8::Arguments& args) { |
|||
return GetDisplayItem(args, "region"); |
|||
} |
|||
|
|||
v8::Handle<v8::Value> I18NExtension::JSDisplayName(const v8::Arguments& args) { |
|||
return GetDisplayItem(args, "name"); |
|||
} |
|||
|
|||
I18NExtension* I18NExtension::get() { |
|||
if (!extension_) { |
|||
extension_ = new I18NExtension(); |
|||
} |
|||
return extension_; |
|||
} |
|||
|
|||
void I18NExtension::Register() { |
|||
static v8::DeclareExtension i18n_extension_declaration(I18NExtension::get()); |
|||
} |
|||
|
|||
} } // namespace v8::internal
|
@ -0,0 +1,64 @@ |
|||
// Copyright 2010 the V8 project authors. All rights reserved.
|
|||
// Redistribution and use in source and binary forms, with or without
|
|||
// modification, are permitted provided that the following conditions are
|
|||
// met:
|
|||
//
|
|||
// * Redistributions of source code must retain the above copyright
|
|||
// notice, this list of conditions and the following disclaimer.
|
|||
// * Redistributions in binary form must reproduce the above
|
|||
// copyright notice, this list of conditions and the following
|
|||
// disclaimer in the documentation and/or other materials provided
|
|||
// with the distribution.
|
|||
// * Neither the name of Google Inc. nor the names of its
|
|||
// contributors may be used to endorse or promote products derived
|
|||
// from this software without specific prior written permission.
|
|||
//
|
|||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
|
|||
#ifndef V8_EXTENSIONS_EXPERIMENTAL_I18N_EXTENSION_H_ |
|||
#define V8_EXTENSIONS_EXPERIMENTAL_I18N_EXTENSION_H_ |
|||
|
|||
#include <v8.h> |
|||
|
|||
namespace v8 { |
|||
namespace internal { |
|||
|
|||
|
|||
class I18NExtension : public v8::Extension { |
|||
public: |
|||
I18NExtension() : v8::Extension("v8/i18n", kSource) {} |
|||
virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction( |
|||
v8::Handle<v8::String> name); |
|||
|
|||
// Implementations of window.Locale methods.
|
|||
static v8::Handle<v8::Value> JSLocale(const v8::Arguments& args); |
|||
static v8::Handle<v8::Value> JSAvailableLocales(const v8::Arguments& args); |
|||
static v8::Handle<v8::Value> JSMaximizedLocale(const v8::Arguments& args); |
|||
static v8::Handle<v8::Value> JSMinimizedLocale(const v8::Arguments& args); |
|||
static v8::Handle<v8::Value> JSDisplayLanguage(const v8::Arguments& args); |
|||
static v8::Handle<v8::Value> JSDisplayScript(const v8::Arguments& args); |
|||
static v8::Handle<v8::Value> JSDisplayRegion(const v8::Arguments& args); |
|||
static v8::Handle<v8::Value> JSDisplayName(const v8::Arguments& args); |
|||
|
|||
// V8 code prefers Register, while Chrome and WebKit use get kind of methods.
|
|||
static void Register(); |
|||
static I18NExtension* get(); |
|||
|
|||
private: |
|||
static const char* const kSource; |
|||
static I18NExtension* extension_; |
|||
}; |
|||
|
|||
} } // namespace v8::internal
|
|||
|
|||
#endif // V8_EXTENSIONS_EXPERIMENTAL_I18N_EXTENSION_H_
|
File diff suppressed because it is too large
@ -0,0 +1,39 @@ |
|||
// Copyright 2010 the V8 project authors. All rights reserved.
|
|||
// Redistribution and use in source and binary forms, with or without
|
|||
// modification, are permitted provided that the following conditions are
|
|||
// met:
|
|||
//
|
|||
// * Redistributions of source code must retain the above copyright
|
|||
// notice, this list of conditions and the following disclaimer.
|
|||
// * Redistributions in binary form must reproduce the above
|
|||
// copyright notice, this list of conditions and the following
|
|||
// disclaimer in the documentation and/or other materials provided
|
|||
// with the distribution.
|
|||
// * Neither the name of Google Inc. nor the names of its
|
|||
// contributors may be used to endorse or promote products derived
|
|||
// from this software without specific prior written permission.
|
|||
//
|
|||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
|
|||
#include <windows.h> |
|||
|
|||
#include "../include/v8-preparser.h" |
|||
|
|||
extern "C" { |
|||
BOOL WINAPI DllMain(HANDLE hinstDLL, |
|||
DWORD dwReason, |
|||
LPVOID lpvReserved) { |
|||
// Do nothing.
|
|||
return TRUE; |
|||
} |
|||
} |
File diff suppressed because it is too large
@ -0,0 +1,53 @@ |
|||
// Copyright 2010 the V8 project authors. All rights reserved.
|
|||
// Redistribution and use in source and binary forms, with or without
|
|||
// modification, are permitted provided that the following conditions are
|
|||
// met:
|
|||
//
|
|||
// * Redistributions of source code must retain the above copyright
|
|||
// notice, this list of conditions and the following disclaimer.
|
|||
// * Redistributions in binary form must reproduce the above
|
|||
// copyright notice, this list of conditions and the following
|
|||
// disclaimer in the documentation and/or other materials provided
|
|||
// with the distribution.
|
|||
// * Neither the name of Google Inc. nor the names of its
|
|||
// contributors may be used to endorse or promote products derived
|
|||
// from this software without specific prior written permission.
|
|||
//
|
|||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
|
|||
function L(scope) { this.s = new Object(); } |
|||
|
|||
L.prototype.c = function() { return true; } |
|||
|
|||
function F() { |
|||
this.l = [new L, new L]; |
|||
} |
|||
|
|||
F.prototype.foo = function () { |
|||
var f, d = arguments, |
|||
e, b = this.l, |
|||
g; |
|||
for (e = 0; e < b.length; e++) { |
|||
g = b[e]; |
|||
f = g.c.apply(g.s, d); |
|||
if (f === false) { |
|||
break |
|||
} |
|||
} |
|||
return f |
|||
} |
|||
|
|||
|
|||
var ctx = new F; |
|||
|
|||
for (var i = 0; i < 10000000; i++) ctx.foo(); |
@ -0,0 +1,127 @@ |
|||
// Copyright 2010 the V8 project authors. All rights reserved.
|
|||
// Redistribution and use in source and binary forms, with or without
|
|||
// modification, are permitted provided that the following conditions are
|
|||
// met:
|
|||
//
|
|||
// * Redistributions of source code must retain the above copyright
|
|||
// notice, this list of conditions and the following disclaimer.
|
|||
// * Redistributions in binary form must reproduce the above
|
|||
// copyright notice, this list of conditions and the following
|
|||
// disclaimer in the documentation and/or other materials provided
|
|||
// with the distribution.
|
|||
// * Neither the name of Google Inc. nor the names of its
|
|||
// contributors may be used to endorse or promote products derived
|
|||
// from this software without specific prior written permission.
|
|||
//
|
|||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
|
|||
// Regression test for bugs when deoptimizing after assignments in effect
|
|||
// contexts.
|
|||
|
|||
// Bug 989 is that there was an extra value on the expression stack when
|
|||
// deoptimizing after an assignment in effect context (the value of the
|
|||
// assignment was lingering). This is hard to observe in the unoptimized
|
|||
// code.
|
|||
//
|
|||
// This test uses comma expressions to put assignments in effect contexts,
|
|||
// references to deleted global variables to force deoptimization, and
|
|||
// function calls to observe an extra value.
|
|||
|
|||
function first(x, y) { return x; } |
|||
var y = 0; |
|||
var o = {}; |
|||
o.x = 0; |
|||
o[0] = 0; |
|||
|
|||
// Assignment to global variable.
|
|||
x0 = 0; |
|||
function test0() { return first((y = 1, typeof x0), 2); } |
|||
// Call the function once to compile it.
|
|||
assertEquals('number', test0()); |
|||
// Delete to force deoptimization on the next call.
|
|||
delete x0; |
|||
assertEquals('undefined', test0()); |
|||
|
|||
// Compound assignment to global variable.
|
|||
x1 = 0; |
|||
function test1() { return first((y += 1, typeof x1), 2); } |
|||
assertEquals('number', test1(), 'test1 before'); |
|||
delete x1; |
|||
assertEquals('undefined', test1(), 'test1 after'); |
|||
|
|||
// Pre and post-increment of global variable.
|
|||
x2 = 0; |
|||
function test2() { return first((++y, typeof x2), 2); } |
|||
assertEquals('number', test2(), 'test2 before'); |
|||
delete x2; |
|||
assertEquals('undefined', test2(), 'test2 after'); |
|||
|
|||
x3 = 0; |
|||
function test3() { return first((y++, typeof x3), 2); } |
|||
assertEquals('number', test3(), 'test3 before'); |
|||
delete x3; |
|||
assertEquals('undefined', test3(), 'test3 after'); |
|||
|
|||
|
|||
// Assignment, compound assignment, and pre and post-increment of named
|
|||
// properties.
|
|||
x4 = 0; |
|||
function test4() { return first((o.x = 1, typeof x4), 2); } |
|||
assertEquals('number', test4()); |
|||
delete x4; |
|||
assertEquals('undefined', test4()); |
|||
|
|||
x5 = 0; |
|||
function test5() { return first((o.x += 1, typeof x5), 2); } |
|||
assertEquals('number', test5()); |
|||
delete x5; |
|||
assertEquals('undefined', test5()); |
|||
|
|||
x6 = 0; |
|||
function test6() { return first((++o.x, typeof x6), 2); } |
|||
assertEquals('number', test6()); |
|||
delete x6; |
|||
assertEquals('undefined', test6()); |
|||
|
|||
x7 = 0; |
|||
function test7() { return first((o.x++, typeof x7), 2); } |
|||
assertEquals('number', test7()); |
|||
delete x7; |
|||
assertEquals('undefined', test7()); |
|||
|
|||
|
|||
// Assignment, compound assignment, and pre and post-increment of indexed
|
|||
// properties.
|
|||
x8 = 0; |
|||
function test8(index) { return first((o[index] = 1, typeof x8), 2); } |
|||
assertEquals('number', test8()); |
|||
delete x8; |
|||
assertEquals('undefined', test8()); |
|||
|
|||
x9 = 0; |
|||
function test9(index) { return first((o[index] += 1, typeof x9), 2); } |
|||
assertEquals('number', test9()); |
|||
delete x9; |
|||
assertEquals('undefined', test9()); |
|||
|
|||
x10 = 0; |
|||
function test10(index) { return first((++o[index], typeof x10), 2); } |
|||
assertEquals('number', test10()); |
|||
delete x10; |
|||
assertEquals('undefined', test10()); |
|||
|
|||
x11 = 0; |
|||
function test11(index) { return first((o[index]++, typeof x11), 2); } |
|||
assertEquals('number', test11()); |
|||
delete x11; |
|||
assertEquals('undefined', test11()); |
@ -1,82 +0,0 @@ |
|||
// Copyright 2009 the V8 project authors. All rights reserved.
|
|||
// Redistribution and use in source and binary forms, with or without
|
|||
// modification, are permitted provided that the following conditions are
|
|||
// met:
|
|||
//
|
|||
// * Redistributions of source code must retain the above copyright
|
|||
// notice, this list of conditions and the following disclaimer.
|
|||
// * Redistributions in binary form must reproduce the above
|
|||
// copyright notice, this list of conditions and the following
|
|||
// disclaimer in the documentation and/or other materials provided
|
|||
// with the distribution.
|
|||
// * Neither the name of Google Inc. nor the names of its
|
|||
// contributors may be used to endorse or promote products derived
|
|||
// from this software without specific prior written permission.
|
|||
//
|
|||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
|
|||
// Load CSV Parser and Log Reader implementations from <project root>/tools.
|
|||
// Files: tools/csvparser.js tools/logreader.js
|
|||
|
|||
|
|||
(function testAddressParser() { |
|||
var reader = new devtools.profiler.LogReader({}); |
|||
var parser = reader.createAddressParser('test'); |
|||
|
|||
// Test that 0x values are parsed, and prevAddresses_ are untouched.
|
|||
assertFalse('test' in reader.prevAddresses_); |
|||
assertEquals(0, parser('0x0')); |
|||
assertFalse('test' in reader.prevAddresses_); |
|||
assertEquals(0x100, parser('0x100')); |
|||
assertFalse('test' in reader.prevAddresses_); |
|||
assertEquals(0xffffffff, parser('0xffffffff')); |
|||
assertFalse('test' in reader.prevAddresses_); |
|||
|
|||
// Test that values that has no '+' or '-' prefix are parsed
|
|||
// and saved to prevAddresses_.
|
|||
assertEquals(0, parser('0')); |
|||
assertEquals(0, reader.prevAddresses_.test); |
|||
assertEquals(0x100, parser('100')); |
|||
assertEquals(0x100, reader.prevAddresses_.test); |
|||
assertEquals(0xffffffff, parser('ffffffff')); |
|||
assertEquals(0xffffffff, reader.prevAddresses_.test); |
|||
|
|||
// Test that values prefixed with '+' or '-' are treated as deltas,
|
|||
// and prevAddresses_ is updated.
|
|||
// Set base value.
|
|||
assertEquals(0x100, parser('100')); |
|||
assertEquals(0x100, reader.prevAddresses_.test); |
|||
assertEquals(0x200, parser('+100')); |
|||
assertEquals(0x200, reader.prevAddresses_.test); |
|||
assertEquals(0x100, parser('-100')); |
|||
assertEquals(0x100, reader.prevAddresses_.test); |
|||
})(); |
|||
|
|||
|
|||
(function testAddressParser() { |
|||
var reader = new devtools.profiler.LogReader({}); |
|||
|
|||
assertEquals([0x10000000, 0x10001000, 0xffff000, 0x10000000], |
|||
reader.processStack(0x10000000, 0, ['overflow', |
|||
'+1000', '-2000', '+1000'])); |
|||
})(); |
|||
|
|||
|
|||
(function testExpandBackRef() { |
|||
var reader = new devtools.profiler.LogReader({}); |
|||
|
|||
assertEquals('aaaaaaaa', reader.expandBackRef_('aaaaaaaa')); |
|||
assertEquals('aaaaaaaa', reader.expandBackRef_('#1')); |
|||
assertEquals('bbbbaaaa', reader.expandBackRef_('bbbb#2:4')); |
|||
assertEquals('"#1:1"', reader.expandBackRef_('"#1:1"')); |
|||
})(); |
@ -1,6 +1,6 @@ |
|||
To run the sputniktests you must check out the test suite from |
|||
googlecode.com. The test expectations are currently relative to |
|||
version 28. To get the tests run the following command within |
|||
v8/tests/sputnik/ |
|||
v8/test/sputnik/ |
|||
|
|||
svn co http://sputniktests.googlecode.com/svn/trunk/ -r28 sputniktests |
|||
|
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
Loading…
Reference in new issue