| 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 void GenerateSubString(ZoneList<Expression*>* args); | 511 void GenerateSubString(ZoneList<Expression*>* args); |
| 512 | 512 |
| 513 // Fast support for StringCompare. | 513 // Fast support for StringCompare. |
| 514 void GenerateStringCompare(ZoneList<Expression*>* args); | 514 void GenerateStringCompare(ZoneList<Expression*>* args); |
| 515 | 515 |
| 516 // Support for direct calls from JavaScript to native RegExp code. | 516 // Support for direct calls from JavaScript to native RegExp code. |
| 517 void GenerateRegExpExec(ZoneList<Expression*>* args); | 517 void GenerateRegExpExec(ZoneList<Expression*>* args); |
| 518 | 518 |
| 519 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); | 519 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); |
| 520 | 520 |
| 521 void GenerateRegExpCloneResult(ZoneList<Expression*>* args); | |
| 522 | |
| 523 // Support for fast native caches. | 521 // Support for fast native caches. |
| 524 void GenerateGetFromCache(ZoneList<Expression*>* args); | 522 void GenerateGetFromCache(ZoneList<Expression*>* args); |
| 525 | 523 |
| 526 // Fast support for number to string. | 524 // Fast support for number to string. |
| 527 void GenerateNumberToString(ZoneList<Expression*>* args); | 525 void GenerateNumberToString(ZoneList<Expression*>* args); |
| 528 | 526 |
| 529 // Fast swapping of elements. | 527 // Fast swapping of elements. |
| 530 void GenerateSwapElements(ZoneList<Expression*>* args); | 528 void GenerateSwapElements(ZoneList<Expression*>* args); |
| 531 | 529 |
| 532 // Fast call for custom callbacks. | 530 // Fast call for custom callbacks. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 friend class FullCodeGenerator; | 597 friend class FullCodeGenerator; |
| 600 friend class FullCodeGenSyntaxChecker; | 598 friend class FullCodeGenSyntaxChecker; |
| 601 | 599 |
| 602 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 600 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 603 }; | 601 }; |
| 604 | 602 |
| 605 | 603 |
| 606 } } // namespace v8::internal | 604 } } // namespace v8::internal |
| 607 | 605 |
| 608 #endif // V8_ARM_CODEGEN_ARM_H_ | 606 #endif // V8_ARM_CODEGEN_ARM_H_ |
| OLD | NEW |