| 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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 void GenerateSubString(ZoneList<Expression*>* args); | 521 void GenerateSubString(ZoneList<Expression*>* args); |
| 522 | 522 |
| 523 // Fast support for StringCompare. | 523 // Fast support for StringCompare. |
| 524 void GenerateStringCompare(ZoneList<Expression*>* args); | 524 void GenerateStringCompare(ZoneList<Expression*>* args); |
| 525 | 525 |
| 526 // Support for direct calls from JavaScript to native RegExp code. | 526 // Support for direct calls from JavaScript to native RegExp code. |
| 527 void GenerateRegExpExec(ZoneList<Expression*>* args); | 527 void GenerateRegExpExec(ZoneList<Expression*>* args); |
| 528 | 528 |
| 529 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); | 529 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); |
| 530 | 530 |
| 531 void GenerateRegExpCloneResult(ZoneList<Expression*>* args); |
| 532 |
| 531 // Support for fast native caches. | 533 // Support for fast native caches. |
| 532 void GenerateGetFromCache(ZoneList<Expression*>* args); | 534 void GenerateGetFromCache(ZoneList<Expression*>* args); |
| 533 | 535 |
| 534 // Fast support for number to string. | 536 // Fast support for number to string. |
| 535 void GenerateNumberToString(ZoneList<Expression*>* args); | 537 void GenerateNumberToString(ZoneList<Expression*>* args); |
| 536 | 538 |
| 537 // Fast swapping of elements. | 539 // Fast swapping of elements. |
| 538 void GenerateSwapElements(ZoneList<Expression*>* args); | 540 void GenerateSwapElements(ZoneList<Expression*>* args); |
| 539 | 541 |
| 540 // Fast call for custom callbacks. | 542 // Fast call for custom callbacks. |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1110 return ObjectBits::encode(object_.code()) | | 1112 return ObjectBits::encode(object_.code()) | |
| 1111 OffsetBits::encode(offset_.code()) | | 1113 OffsetBits::encode(offset_.code()) | |
| 1112 ScratchBits::encode(scratch_.code()); | 1114 ScratchBits::encode(scratch_.code()); |
| 1113 } | 1115 } |
| 1114 }; | 1116 }; |
| 1115 | 1117 |
| 1116 | 1118 |
| 1117 } } // namespace v8::internal | 1119 } } // namespace v8::internal |
| 1118 | 1120 |
| 1119 #endif // V8_ARM_CODEGEN_ARM_H_ | 1121 #endif // V8_ARM_CODEGEN_ARM_H_ |
| OLD | NEW |