| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 380 | 380 | 
| 381   // Fast support for string.charAt(n) and string[n]. | 381   // Fast support for string.charAt(n) and string[n]. | 
| 382   void GenerateCharFromCode(ZoneList<Expression*>* args); | 382   void GenerateCharFromCode(ZoneList<Expression*>* args); | 
| 383 | 383 | 
| 384   // Fast support for object equality testing. | 384   // Fast support for object equality testing. | 
| 385   void GenerateObjectEquals(ZoneList<Expression*>* args); | 385   void GenerateObjectEquals(ZoneList<Expression*>* args); | 
| 386 | 386 | 
| 387   void GenerateLog(ZoneList<Expression*>* args); | 387   void GenerateLog(ZoneList<Expression*>* args); | 
| 388 | 388 | 
| 389   // Fast support for Math.random(). | 389   // Fast support for Math.random(). | 
| 390   void GenerateRandomPositiveSmi(ZoneList<Expression*>* args); | 390   void GenerateRandomHeapNumber(ZoneList<Expression*>* args); | 
| 391 | 391 | 
| 392   // Fast support for StringAdd. | 392   // Fast support for StringAdd. | 
| 393   void GenerateStringAdd(ZoneList<Expression*>* args); | 393   void GenerateStringAdd(ZoneList<Expression*>* args); | 
| 394 | 394 | 
| 395   // Fast support for SubString. | 395   // Fast support for SubString. | 
| 396   void GenerateSubString(ZoneList<Expression*>* args); | 396   void GenerateSubString(ZoneList<Expression*>* args); | 
| 397 | 397 | 
| 398   // Fast support for StringCompare. | 398   // Fast support for StringCompare. | 
| 399   void GenerateStringCompare(ZoneList<Expression*>* args); | 399   void GenerateStringCompare(ZoneList<Expression*>* args); | 
| 400 | 400 | 
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 732   void Print() { | 732   void Print() { | 
| 733     PrintF("NumberToStringStub\n"); | 733     PrintF("NumberToStringStub\n"); | 
| 734   } | 734   } | 
| 735 #endif | 735 #endif | 
| 736 }; | 736 }; | 
| 737 | 737 | 
| 738 | 738 | 
| 739 } }  // namespace v8::internal | 739 } }  // namespace v8::internal | 
| 740 | 740 | 
| 741 #endif  // V8_ARM_CODEGEN_ARM_H_ | 741 #endif  // V8_ARM_CODEGEN_ARM_H_ | 
| OLD | NEW | 
|---|