| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 V(CEntry) \ | 68 V(CEntry) \ |
| 69 V(JSEntry) \ | 69 V(JSEntry) \ |
| 70 V(DebuggerStatement) | 70 V(DebuggerStatement) |
| 71 | 71 |
| 72 // List of code stubs only used on ARM platforms. | 72 // List of code stubs only used on ARM platforms. |
| 73 #ifdef V8_TARGET_ARCH_ARM | 73 #ifdef V8_TARGET_ARCH_ARM |
| 74 #define CODE_STUB_LIST_ARM(V) \ | 74 #define CODE_STUB_LIST_ARM(V) \ |
| 75 V(GetProperty) \ | 75 V(GetProperty) \ |
| 76 V(SetProperty) \ | 76 V(SetProperty) \ |
| 77 V(InvokeBuiltin) \ | 77 V(InvokeBuiltin) \ |
| 78 V(RegExpCEntry) | 78 V(RegExpCEntry) \ |
| 79 V(DirectCEntry) |
| 79 #else | 80 #else |
| 80 #define CODE_STUB_LIST_ARM(V) | 81 #define CODE_STUB_LIST_ARM(V) |
| 81 #endif | 82 #endif |
| 82 | 83 |
| 83 // Combined list of code stubs. | 84 // Combined list of code stubs. |
| 84 #define CODE_STUB_LIST(V) \ | 85 #define CODE_STUB_LIST(V) \ |
| 85 CODE_STUB_LIST_ALL_PLATFORMS(V) \ | 86 CODE_STUB_LIST_ALL_PLATFORMS(V) \ |
| 86 CODE_STUB_LIST_ARM(V) | 87 CODE_STUB_LIST_ARM(V) |
| 87 | 88 |
| 88 // Types of uncatchable exceptions. | 89 // Types of uncatchable exceptions. |
| (...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 private: | 944 private: |
| 944 MacroAssembler* masm_; | 945 MacroAssembler* masm_; |
| 945 bool previous_allow_; | 946 bool previous_allow_; |
| 946 | 947 |
| 947 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); | 948 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); |
| 948 }; | 949 }; |
| 949 | 950 |
| 950 } } // namespace v8::internal | 951 } } // namespace v8::internal |
| 951 | 952 |
| 952 #endif // V8_CODE_STUBS_H_ | 953 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |