OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |