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

Side by Side Diff: src/codegen.cc

Issue 542112: Fix some usage of "this" in builtins (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 11 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 | « src/arm/codegen-arm.cc ('k') | src/ia32/codegen-ia32.h » ('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 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 {&CodeGenerator::GenerateArgumentsAccess, "_Arguments"}, 337 {&CodeGenerator::GenerateArgumentsAccess, "_Arguments"},
338 {&CodeGenerator::GenerateClassOf, "_ClassOf"}, 338 {&CodeGenerator::GenerateClassOf, "_ClassOf"},
339 {&CodeGenerator::GenerateValueOf, "_ValueOf"}, 339 {&CodeGenerator::GenerateValueOf, "_ValueOf"},
340 {&CodeGenerator::GenerateSetValueOf, "_SetValueOf"}, 340 {&CodeGenerator::GenerateSetValueOf, "_SetValueOf"},
341 {&CodeGenerator::GenerateFastCharCodeAt, "_FastCharCodeAt"}, 341 {&CodeGenerator::GenerateFastCharCodeAt, "_FastCharCodeAt"},
342 {&CodeGenerator::GenerateObjectEquals, "_ObjectEquals"}, 342 {&CodeGenerator::GenerateObjectEquals, "_ObjectEquals"},
343 {&CodeGenerator::GenerateLog, "_Log"}, 343 {&CodeGenerator::GenerateLog, "_Log"},
344 {&CodeGenerator::GenerateRandomPositiveSmi, "_RandomPositiveSmi"}, 344 {&CodeGenerator::GenerateRandomPositiveSmi, "_RandomPositiveSmi"},
345 {&CodeGenerator::GenerateIsObject, "_IsObject"}, 345 {&CodeGenerator::GenerateIsObject, "_IsObject"},
346 {&CodeGenerator::GenerateIsFunction, "_IsFunction"}, 346 {&CodeGenerator::GenerateIsFunction, "_IsFunction"},
347 {&CodeGenerator::GenerateIsUndetectableObject, "_IsUndetectableObject"},
347 {&CodeGenerator::GenerateStringAdd, "_StringAdd"}, 348 {&CodeGenerator::GenerateStringAdd, "_StringAdd"},
348 {&CodeGenerator::GenerateSubString, "_SubString"}, 349 {&CodeGenerator::GenerateSubString, "_SubString"},
349 {&CodeGenerator::GenerateStringCompare, "_StringCompare"}, 350 {&CodeGenerator::GenerateStringCompare, "_StringCompare"},
350 {&CodeGenerator::GenerateRegExpExec, "_RegExpExec"}, 351 {&CodeGenerator::GenerateRegExpExec, "_RegExpExec"},
351 }; 352 };
352 353
353 354
354 CodeGenerator::InlineRuntimeLUT* CodeGenerator::FindInlineRuntimeLUT( 355 CodeGenerator::InlineRuntimeLUT* CodeGenerator::FindInlineRuntimeLUT(
355 Handle<String> name) { 356 Handle<String> name) {
356 const int entries_count = 357 const int entries_count =
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 } 496 }
496 } 497 }
497 498
498 499
499 void ApiGetterEntryStub::SetCustomCache(Code* value) { 500 void ApiGetterEntryStub::SetCustomCache(Code* value) {
500 info()->set_load_stub_cache(value); 501 info()->set_load_stub_cache(value);
501 } 502 }
502 503
503 504
504 } } // namespace v8::internal 505 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/ia32/codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698