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

Side by Side Diff: src/codegen.cc

Issue 604062: Inline NumberToString... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 10 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/code-stubs.h ('k') | src/heap.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 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 {&CodeGenerator::GenerateObjectEquals, "_ObjectEquals"}, 365 {&CodeGenerator::GenerateObjectEquals, "_ObjectEquals"},
366 {&CodeGenerator::GenerateLog, "_Log"}, 366 {&CodeGenerator::GenerateLog, "_Log"},
367 {&CodeGenerator::GenerateRandomPositiveSmi, "_RandomPositiveSmi"}, 367 {&CodeGenerator::GenerateRandomPositiveSmi, "_RandomPositiveSmi"},
368 {&CodeGenerator::GenerateIsObject, "_IsObject"}, 368 {&CodeGenerator::GenerateIsObject, "_IsObject"},
369 {&CodeGenerator::GenerateIsFunction, "_IsFunction"}, 369 {&CodeGenerator::GenerateIsFunction, "_IsFunction"},
370 {&CodeGenerator::GenerateIsUndetectableObject, "_IsUndetectableObject"}, 370 {&CodeGenerator::GenerateIsUndetectableObject, "_IsUndetectableObject"},
371 {&CodeGenerator::GenerateStringAdd, "_StringAdd"}, 371 {&CodeGenerator::GenerateStringAdd, "_StringAdd"},
372 {&CodeGenerator::GenerateSubString, "_SubString"}, 372 {&CodeGenerator::GenerateSubString, "_SubString"},
373 {&CodeGenerator::GenerateStringCompare, "_StringCompare"}, 373 {&CodeGenerator::GenerateStringCompare, "_StringCompare"},
374 {&CodeGenerator::GenerateRegExpExec, "_RegExpExec"}, 374 {&CodeGenerator::GenerateRegExpExec, "_RegExpExec"},
375 {&CodeGenerator::GenerateNumberToString, "_NumberToString"},
375 }; 376 };
376 377
377 378
378 CodeGenerator::InlineRuntimeLUT* CodeGenerator::FindInlineRuntimeLUT( 379 CodeGenerator::InlineRuntimeLUT* CodeGenerator::FindInlineRuntimeLUT(
379 Handle<String> name) { 380 Handle<String> name) {
380 const int entries_count = 381 const int entries_count =
381 sizeof(kInlineRuntimeLUT) / sizeof(InlineRuntimeLUT); 382 sizeof(kInlineRuntimeLUT) / sizeof(InlineRuntimeLUT);
382 for (int i = 0; i < entries_count; i++) { 383 for (int i = 0; i < entries_count; i++) {
383 InlineRuntimeLUT* entry = &kInlineRuntimeLUT[i]; 384 InlineRuntimeLUT* entry = &kInlineRuntimeLUT[i];
384 if (name->IsEqualTo(CStrVector(entry->name))) { 385 if (name->IsEqualTo(CStrVector(entry->name))) {
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 } 518 }
518 } 519 }
519 520
520 521
521 void ApiGetterEntryStub::SetCustomCache(Code* value) { 522 void ApiGetterEntryStub::SetCustomCache(Code* value) {
522 info()->set_load_stub_cache(value); 523 info()->set_load_stub_cache(value);
523 } 524 }
524 525
525 526
526 } } // namespace v8::internal 527 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698