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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 {&CodeGenerator::GenerateIsConstructCall, "_IsConstructCall"}, | 335 {&CodeGenerator::GenerateIsConstructCall, "_IsConstructCall"}, |
336 {&CodeGenerator::GenerateArgumentsLength, "_ArgumentsLength"}, | 336 {&CodeGenerator::GenerateArgumentsLength, "_ArgumentsLength"}, |
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::GenerateMathSin, "_Math_sin"}, | |
346 {&CodeGenerator::GenerateMathCos, "_Math_cos"}, | |
347 {&CodeGenerator::GenerateIsObject, "_IsObject"}, | 345 {&CodeGenerator::GenerateIsObject, "_IsObject"}, |
348 {&CodeGenerator::GenerateIsFunction, "_IsFunction"}, | 346 {&CodeGenerator::GenerateIsFunction, "_IsFunction"}, |
349 {&CodeGenerator::GenerateStringAdd, "_StringAdd"}, | 347 {&CodeGenerator::GenerateStringAdd, "_StringAdd"}, |
350 }; | 348 }; |
351 | 349 |
352 | 350 |
353 CodeGenerator::InlineRuntimeLUT* CodeGenerator::FindInlineRuntimeLUT( | 351 CodeGenerator::InlineRuntimeLUT* CodeGenerator::FindInlineRuntimeLUT( |
354 Handle<String> name) { | 352 Handle<String> name) { |
355 const int entries_count = | 353 const int entries_count = |
356 sizeof(kInlineRuntimeLUT) / sizeof(InlineRuntimeLUT); | 354 sizeof(kInlineRuntimeLUT) / sizeof(InlineRuntimeLUT); |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 } | 475 } |
478 } | 476 } |
479 | 477 |
480 | 478 |
481 void ApiGetterEntryStub::SetCustomCache(Code* value) { | 479 void ApiGetterEntryStub::SetCustomCache(Code* value) { |
482 info()->set_load_stub_cache(value); | 480 info()->set_load_stub_cache(value); |
483 } | 481 } |
484 | 482 |
485 | 483 |
486 } } // namespace v8::internal | 484 } } // namespace v8::internal |
OLD | NEW |