| 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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args); | 522 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args); |
| 523 void GenerateIsArray(ZoneList<Expression*>* args); | 523 void GenerateIsArray(ZoneList<Expression*>* args); |
| 524 | 524 |
| 525 // Support for construct call checks. | 525 // Support for construct call checks. |
| 526 void GenerateIsConstructCall(ZoneList<Expression*>* args); | 526 void GenerateIsConstructCall(ZoneList<Expression*>* args); |
| 527 | 527 |
| 528 // Support for arguments.length and arguments[?]. | 528 // Support for arguments.length and arguments[?]. |
| 529 void GenerateArgumentsLength(ZoneList<Expression*>* args); | 529 void GenerateArgumentsLength(ZoneList<Expression*>* args); |
| 530 void GenerateArgumentsAccess(ZoneList<Expression*>* args); | 530 void GenerateArgumentsAccess(ZoneList<Expression*>* args); |
| 531 | 531 |
| 532 // Support for accessing the value field of an object (used by Date). | 532 // Support for accessing the class and value fields of an object. |
| 533 void GenerateClassOf(ZoneList<Expression*>* args); |
| 533 void GenerateValueOf(ZoneList<Expression*>* args); | 534 void GenerateValueOf(ZoneList<Expression*>* args); |
| 534 void GenerateSetValueOf(ZoneList<Expression*>* args); | 535 void GenerateSetValueOf(ZoneList<Expression*>* args); |
| 535 | 536 |
| 536 // Fast support for charCodeAt(n). | 537 // Fast support for charCodeAt(n). |
| 537 void GenerateFastCharCodeAt(ZoneList<Expression*>* args); | 538 void GenerateFastCharCodeAt(ZoneList<Expression*>* args); |
| 538 | 539 |
| 539 // Fast support for object equality testing. | 540 // Fast support for object equality testing. |
| 540 void GenerateObjectEquals(ZoneList<Expression*>* args); | 541 void GenerateObjectEquals(ZoneList<Expression*>* args); |
| 541 | 542 |
| 542 void GenerateLog(ZoneList<Expression*>* args); | 543 void GenerateLog(ZoneList<Expression*>* args); |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 friend class Reference; | 653 friend class Reference; |
| 653 friend class Result; | 654 friend class Result; |
| 654 | 655 |
| 655 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 656 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 656 }; | 657 }; |
| 657 | 658 |
| 658 | 659 |
| 659 } } // namespace v8::internal | 660 } } // namespace v8::internal |
| 660 | 661 |
| 661 #endif // V8_X64_CODEGEN_X64_H_ | 662 #endif // V8_X64_CODEGEN_X64_H_ |
| OLD | NEW |