OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 34, | 479 34, |
480 "Deoptimizer::ComputeOutputFrames()"); | 480 "Deoptimizer::ComputeOutputFrames()"); |
481 Add(ExternalReference::address_of_min_int().address(), | 481 Add(ExternalReference::address_of_min_int().address(), |
482 UNCLASSIFIED, | 482 UNCLASSIFIED, |
483 35, | 483 35, |
484 "LDoubleConstant::min_int"); | 484 "LDoubleConstant::min_int"); |
485 Add(ExternalReference::address_of_one_half().address(), | 485 Add(ExternalReference::address_of_one_half().address(), |
486 UNCLASSIFIED, | 486 UNCLASSIFIED, |
487 36, | 487 36, |
488 "LDoubleConstant::one_half"); | 488 "LDoubleConstant::one_half"); |
| 489 Add(ExternalReference::address_of_negative_infinity().address(), |
| 490 UNCLASSIFIED, |
| 491 37, |
| 492 "LDoubleConstant::negative_infinity"); |
| 493 Add(ExternalReference::power_double_double_function().address(), |
| 494 UNCLASSIFIED, |
| 495 38, |
| 496 "power_double_double_function"); |
| 497 Add(ExternalReference::power_double_int_function().address(), |
| 498 UNCLASSIFIED, |
| 499 39, |
| 500 "power_double_int_function"); |
489 } | 501 } |
490 | 502 |
491 | 503 |
492 ExternalReferenceEncoder::ExternalReferenceEncoder() | 504 ExternalReferenceEncoder::ExternalReferenceEncoder() |
493 : encodings_(Match) { | 505 : encodings_(Match) { |
494 ExternalReferenceTable* external_references = | 506 ExternalReferenceTable* external_references = |
495 ExternalReferenceTable::instance(); | 507 ExternalReferenceTable::instance(); |
496 for (int i = 0; i < external_references->size(); ++i) { | 508 for (int i = 0; i < external_references->size(); ++i) { |
497 Put(external_references->address(i), i); | 509 Put(external_references->address(i), i); |
498 } | 510 } |
(...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1506 fullness_[space] = RoundUp(fullness_[space], Page::kPageSize); | 1518 fullness_[space] = RoundUp(fullness_[space], Page::kPageSize); |
1507 } | 1519 } |
1508 } | 1520 } |
1509 int allocation_address = fullness_[space]; | 1521 int allocation_address = fullness_[space]; |
1510 fullness_[space] = allocation_address + size; | 1522 fullness_[space] = allocation_address + size; |
1511 return allocation_address; | 1523 return allocation_address; |
1512 } | 1524 } |
1513 | 1525 |
1514 | 1526 |
1515 } } // namespace v8::internal | 1527 } } // namespace v8::internal |
OLD | NEW |