| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 BUILTIN_FP_CALL, | 640 BUILTIN_FP_CALL, |
| 641 | 641 |
| 642 // Builtin call that returns floating point. | 642 // Builtin call that returns floating point. |
| 643 // double f(double, int). | 643 // double f(double, int). |
| 644 BUILTIN_FP_INT_CALL, | 644 BUILTIN_FP_INT_CALL, |
| 645 | 645 |
| 646 // Direct call to API function callback. | 646 // Direct call to API function callback. |
| 647 // Handle<Value> f(v8::Arguments&) | 647 // Handle<Value> f(v8::Arguments&) |
| 648 DIRECT_API_CALL, | 648 DIRECT_API_CALL, |
| 649 | 649 |
| 650 // Direct call to API function callback. |
| 651 // void f(v8::Arguments&) |
| 652 DIRECT_API_CALL_NEW, |
| 653 |
| 650 // Direct call to accessor getter callback. | 654 // Direct call to accessor getter callback. |
| 651 // Handle<value> f(Local<String> property, AccessorInfo& info) | 655 // Handle<value> f(Local<String> property, AccessorInfo& info) |
| 652 DIRECT_GETTER_CALL | 656 DIRECT_GETTER_CALL, |
| 657 |
| 658 // Direct call to accessor getter callback. |
| 659 // void f(Local<String> property, AccessorInfo& info) |
| 660 DIRECT_GETTER_CALL_NEW |
| 653 }; | 661 }; |
| 654 | 662 |
| 655 static void SetUp(); | 663 static void SetUp(); |
| 656 static void InitializeMathExpData(); | 664 static void InitializeMathExpData(); |
| 657 static void TearDownMathExpData(); | 665 static void TearDownMathExpData(); |
| 658 | 666 |
| 659 typedef void* ExternalReferenceRedirector(void* original, Type type); | 667 typedef void* ExternalReferenceRedirector(void* original, Type type); |
| 660 | 668 |
| 661 ExternalReference(Builtins::CFunctionId id, Isolate* isolate); | 669 ExternalReference(Builtins::CFunctionId id, Isolate* isolate); |
| 662 | 670 |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 public: | 1041 public: |
| 1034 NullCallWrapper() { } | 1042 NullCallWrapper() { } |
| 1035 virtual ~NullCallWrapper() { } | 1043 virtual ~NullCallWrapper() { } |
| 1036 virtual void BeforeCall(int call_size) const { } | 1044 virtual void BeforeCall(int call_size) const { } |
| 1037 virtual void AfterCall() const { } | 1045 virtual void AfterCall() const { } |
| 1038 }; | 1046 }; |
| 1039 | 1047 |
| 1040 } } // namespace v8::internal | 1048 } } // namespace v8::internal |
| 1041 | 1049 |
| 1042 #endif // V8_ASSEMBLER_H_ | 1050 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |