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

Side by Side Diff: src/codegen.cc

Issue 442024: Perform string add in generated code on IA-32 platforms... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years 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
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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
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::GenerateMathSin, "_Math_sin"}, 345 {&CodeGenerator::GenerateMathSin, "_Math_sin"},
346 {&CodeGenerator::GenerateMathCos, "_Math_cos"}, 346 {&CodeGenerator::GenerateMathCos, "_Math_cos"},
347 {&CodeGenerator::GenerateIsObject, "_IsObject"}, 347 {&CodeGenerator::GenerateIsObject, "_IsObject"},
348 {&CodeGenerator::GenerateIsFunction, "_IsFunction"}, 348 {&CodeGenerator::GenerateIsFunction, "_IsFunction"},
349 {&CodeGenerator::GenerateStringAdd, "_StringAdd"},
349 }; 350 };
350 351
351 352
352 CodeGenerator::InlineRuntimeLUT* CodeGenerator::FindInlineRuntimeLUT( 353 CodeGenerator::InlineRuntimeLUT* CodeGenerator::FindInlineRuntimeLUT(
353 Handle<String> name) { 354 Handle<String> name) {
354 const int entries_count = 355 const int entries_count =
355 sizeof(kInlineRuntimeLUT) / sizeof(InlineRuntimeLUT); 356 sizeof(kInlineRuntimeLUT) / sizeof(InlineRuntimeLUT);
356 for (int i = 0; i < entries_count; i++) { 357 for (int i = 0; i < entries_count; i++) {
357 InlineRuntimeLUT* entry = &kInlineRuntimeLUT[i]; 358 InlineRuntimeLUT* entry = &kInlineRuntimeLUT[i];
358 if (name->IsEqualTo(CStrVector(entry->name))) { 359 if (name->IsEqualTo(CStrVector(entry->name))) {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 } 477 }
477 } 478 }
478 479
479 480
480 void ApiGetterEntryStub::SetCustomCache(Code* value) { 481 void ApiGetterEntryStub::SetCustomCache(Code* value) {
481 info()->set_load_stub_cache(value); 482 info()->set_load_stub_cache(value);
482 } 483 }
483 484
484 485
485 } } // namespace v8::internal 486 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/ia32/codegen-ia32.h » ('j') | src/ia32/codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698