| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 void GenerateCharFromCode(ZoneList<Expression*>* args); | 561 void GenerateCharFromCode(ZoneList<Expression*>* args); |
| 562 | 562 |
| 563 // Fast support for object equality testing. | 563 // Fast support for object equality testing. |
| 564 void GenerateObjectEquals(ZoneList<Expression*>* args); | 564 void GenerateObjectEquals(ZoneList<Expression*>* args); |
| 565 | 565 |
| 566 void GenerateLog(ZoneList<Expression*>* args); | 566 void GenerateLog(ZoneList<Expression*>* args); |
| 567 | 567 |
| 568 void GenerateGetFramePointer(ZoneList<Expression*>* args); | 568 void GenerateGetFramePointer(ZoneList<Expression*>* args); |
| 569 | 569 |
| 570 // Fast support for Math.random(). | 570 // Fast support for Math.random(). |
| 571 void GenerateRandomPositiveSmi(ZoneList<Expression*>* args); | 571 void GenerateRandomHeapNumber(ZoneList<Expression*>* args); |
| 572 | 572 |
| 573 // Fast support for StringAdd. | 573 // Fast support for StringAdd. |
| 574 void GenerateStringAdd(ZoneList<Expression*>* args); | 574 void GenerateStringAdd(ZoneList<Expression*>* args); |
| 575 | 575 |
| 576 // Fast support for SubString. | 576 // Fast support for SubString. |
| 577 void GenerateSubString(ZoneList<Expression*>* args); | 577 void GenerateSubString(ZoneList<Expression*>* args); |
| 578 | 578 |
| 579 // Fast support for StringCompare. | 579 // Fast support for StringCompare. |
| 580 void GenerateStringCompare(ZoneList<Expression*>* args); | 580 void GenerateStringCompare(ZoneList<Expression*>* args); |
| 581 | 581 |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 void Print() { | 940 void Print() { |
| 941 PrintF("NumberToStringStub\n"); | 941 PrintF("NumberToStringStub\n"); |
| 942 } | 942 } |
| 943 #endif | 943 #endif |
| 944 }; | 944 }; |
| 945 | 945 |
| 946 | 946 |
| 947 } } // namespace v8::internal | 947 } } // namespace v8::internal |
| 948 | 948 |
| 949 #endif // V8_X64_CODEGEN_X64_H_ | 949 #endif // V8_X64_CODEGEN_X64_H_ |
| OLD | NEW |