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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 void GenerateSwapElements(ZoneList<Expression*>* args); | 509 void GenerateSwapElements(ZoneList<Expression*>* args); |
510 | 510 |
511 // Fast call for custom callbacks. | 511 // Fast call for custom callbacks. |
512 void GenerateCallFunction(ZoneList<Expression*>* args); | 512 void GenerateCallFunction(ZoneList<Expression*>* args); |
513 | 513 |
514 // Fast call to math functions. | 514 // Fast call to math functions. |
515 void GenerateMathPow(ZoneList<Expression*>* args); | 515 void GenerateMathPow(ZoneList<Expression*>* args); |
516 void GenerateMathSin(ZoneList<Expression*>* args); | 516 void GenerateMathSin(ZoneList<Expression*>* args); |
517 void GenerateMathCos(ZoneList<Expression*>* args); | 517 void GenerateMathCos(ZoneList<Expression*>* args); |
518 void GenerateMathSqrt(ZoneList<Expression*>* args); | 518 void GenerateMathSqrt(ZoneList<Expression*>* args); |
| 519 void GenerateMathLog(ZoneList<Expression*>* args); |
519 | 520 |
520 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args); | 521 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args); |
521 | 522 |
522 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args); | 523 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args); |
523 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args); | 524 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args); |
524 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args); | 525 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args); |
525 | 526 |
526 // Simple condition analysis. | 527 // Simple condition analysis. |
527 enum ConditionAnalysis { | 528 enum ConditionAnalysis { |
528 ALWAYS_TRUE, | 529 ALWAYS_TRUE, |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
579 friend class FullCodeGenerator; | 580 friend class FullCodeGenerator; |
580 friend class FullCodeGenSyntaxChecker; | 581 friend class FullCodeGenSyntaxChecker; |
581 | 582 |
582 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 583 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
583 }; | 584 }; |
584 | 585 |
585 | 586 |
586 } } // namespace v8::internal | 587 } } // namespace v8::internal |
587 | 588 |
588 #endif // V8_ARM_CODEGEN_ARM_H_ | 589 #endif // V8_ARM_CODEGEN_ARM_H_ |
OLD | NEW |