Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: test/cctest/test-compiler.cc

Issue 306473004: Reland 21502 - "Move OS::MemCopy and OS::MemMove out of platform to utils" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/cctest/test-api.cc ('k') | test/cctest/test-heap-profiler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 const char function_f[] = "function f() {}"; 271 const char function_f[] = "function f() {}";
272 const int max_rows = 1000; 272 const int max_rows = 1000;
273 const int buffer_size = max_rows + sizeof(function_f); 273 const int buffer_size = max_rows + sizeof(function_f);
274 ScopedVector<char> buffer(buffer_size); 274 ScopedVector<char> buffer(buffer_size);
275 memset(buffer.start(), '\n', buffer_size - 1); 275 memset(buffer.start(), '\n', buffer_size - 1);
276 buffer[buffer_size - 1] = '\0'; 276 buffer[buffer_size - 1] = '\0';
277 277
278 for (int i = 0; i < max_rows; ++i) { 278 for (int i = 0; i < max_rows; ++i) {
279 if (i > 0) 279 if (i > 0)
280 buffer[i - 1] = '\n'; 280 buffer[i - 1] = '\n';
281 OS::MemCopy(&buffer[i], function_f, sizeof(function_f) - 1); 281 MemCopy(&buffer[i], function_f, sizeof(function_f) - 1);
282 v8::Handle<v8::String> script_body = 282 v8::Handle<v8::String> script_body =
283 v8::String::NewFromUtf8(CcTest::isolate(), buffer.start()); 283 v8::String::NewFromUtf8(CcTest::isolate(), buffer.start());
284 v8::Script::Compile(script_body, &origin)->Run(); 284 v8::Script::Compile(script_body, &origin)->Run();
285 v8::Local<v8::Function> f = 285 v8::Local<v8::Function> f =
286 v8::Local<v8::Function>::Cast(context->Global()->Get( 286 v8::Local<v8::Function>::Cast(context->Global()->Get(
287 v8::String::NewFromUtf8(CcTest::isolate(), "f"))); 287 v8::String::NewFromUtf8(CcTest::isolate(), "f")));
288 CHECK_EQ(i, f->GetScriptLineNumber()); 288 CHECK_EQ(i, f->GetScriptLineNumber());
289 } 289 }
290 } 290 }
291 291
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 CompileRun("function f() { a = 12345678 }; f();"); 443 CompileRun("function f() { a = 12345678 }; f();");
444 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); 444 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f"));
445 CompileRun("function f(x) { a = 12345678 + x}; f(1);"); 445 CompileRun("function f(x) { a = 12345678 + x}; f(1);");
446 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); 446 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f"));
447 CompileRun("function f(x) { var arguments = 1; x += 12345678}; f(1);"); 447 CompileRun("function f(x) { var arguments = 1; x += 12345678}; f(1);");
448 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); 448 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f"));
449 CompileRun("function f(x) { var arguments = 1; x = 12345678}; f(1);"); 449 CompileRun("function f(x) { var arguments = 1; x = 12345678}; f(1);");
450 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f")); 450 CheckCodeForUnsafeLiteral(GetJSFunction(context->Global(), "f"));
451 } 451 }
452 #endif 452 #endif
OLDNEW
« no previous file with comments | « test/cctest/test-api.cc ('k') | test/cctest/test-heap-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698