OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 41 matching lines...) Loading... |
52 Handle<JSObject> global(isolate->context()->global_object()); | 52 Handle<JSObject> global(isolate->context()->global_object()); |
53 Runtime::SetObjectProperty(isolate, global, internalized_name, object, | 53 Runtime::SetObjectProperty(isolate, global, internalized_name, object, |
54 SLOPPY).Check(); | 54 SLOPPY).Check(); |
55 } | 55 } |
56 | 56 |
57 | 57 |
58 static Handle<JSFunction> Compile(const char* source) { | 58 static Handle<JSFunction> Compile(const char* source) { |
59 Isolate* isolate = CcTest::i_isolate(); | 59 Isolate* isolate = CcTest::i_isolate(); |
60 Handle<String> source_code = isolate->factory()->NewStringFromUtf8( | 60 Handle<String> source_code = isolate->factory()->NewStringFromUtf8( |
61 CStrVector(source)).ToHandleChecked(); | 61 CStrVector(source)).ToHandleChecked(); |
62 Handle<SharedFunctionInfo> shared_function = Compiler::CompileScript( | 62 Handle<SharedFunctionInfo> shared = Compiler::GetSharedFunctionInfoForScript( |
63 source_code, Handle<String>(), 0, 0, v8::ScriptOriginOptions(), | 63 source_code, Handle<String>(), 0, 0, v8::ScriptOriginOptions(), |
64 Handle<Object>(), Handle<Context>(isolate->native_context()), NULL, NULL, | 64 Handle<Object>(), Handle<Context>(isolate->native_context()), NULL, NULL, |
65 v8::ScriptCompiler::kNoCompileOptions, NOT_NATIVES_CODE, false); | 65 v8::ScriptCompiler::kNoCompileOptions, NOT_NATIVES_CODE, false); |
66 return isolate->factory()->NewFunctionFromSharedFunctionInfo( | 66 return isolate->factory()->NewFunctionFromSharedFunctionInfo( |
67 shared_function, isolate->native_context()); | 67 shared, isolate->native_context()); |
68 } | 68 } |
69 | 69 |
70 | 70 |
71 static double Inc(Isolate* isolate, int x) { | 71 static double Inc(Isolate* isolate, int x) { |
72 const char* source = "result = %d + 1;"; | 72 const char* source = "result = %d + 1;"; |
73 EmbeddedVector<char, 512> buffer; | 73 EmbeddedVector<char, 512> buffer; |
74 SNPrintF(buffer, source, x); | 74 SNPrintF(buffer, source, x); |
75 | 75 |
76 Handle<JSFunction> fun = Compile(buffer.start()); | 76 Handle<JSFunction> fun = Compile(buffer.start()); |
77 if (fun.is_null()) return -1; | 77 if (fun.is_null()) return -1; |
(...skipping 675 matching lines...) Loading... |
753 CompileRun("function f() { a = 12345678 }; f();"); | 753 CompileRun("function f() { a = 12345678 }; f();"); |
754 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); | 754 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); |
755 CompileRun("function f(x) { a = 12345678 + x}; f(1);"); | 755 CompileRun("function f(x) { a = 12345678 + x}; f(1);"); |
756 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); | 756 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); |
757 CompileRun("function f(x) { var arguments = 1; x += 12345678}; f(1);"); | 757 CompileRun("function f(x) { var arguments = 1; x += 12345678}; f(1);"); |
758 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); | 758 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); |
759 CompileRun("function f(x) { var arguments = 1; x = 12345678}; f(1);"); | 759 CompileRun("function f(x) { var arguments = 1; x = 12345678}; f(1);"); |
760 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); | 760 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); |
761 } | 761 } |
762 #endif | 762 #endif |
OLD | NEW |