| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 V(InvokeBuiltin) \ | 77 V(InvokeBuiltin) \ |
| 78 V(RegExpCEntry) \ | 78 V(RegExpCEntry) \ |
| 79 V(DirectCEntry) | 79 V(DirectCEntry) |
| 80 #else | 80 #else |
| 81 #define CODE_STUB_LIST_ARM(V) | 81 #define CODE_STUB_LIST_ARM(V) |
| 82 #endif | 82 #endif |
| 83 | 83 |
| 84 // List of code stubs only used on MIPS platforms. | 84 // List of code stubs only used on MIPS platforms. |
| 85 #ifdef V8_TARGET_ARCH_MIPS | 85 #ifdef V8_TARGET_ARCH_MIPS |
| 86 #define CODE_STUB_LIST_MIPS(V) \ | 86 #define CODE_STUB_LIST_MIPS(V) \ |
| 87 V(RegExpCEntry) | 87 V(RegExpCEntry) \ |
| 88 V(DirectCEntry) |
| 88 #else | 89 #else |
| 89 #define CODE_STUB_LIST_MIPS(V) | 90 #define CODE_STUB_LIST_MIPS(V) |
| 90 #endif | 91 #endif |
| 91 | 92 |
| 92 // Combined list of code stubs. | 93 // Combined list of code stubs. |
| 93 #define CODE_STUB_LIST(V) \ | 94 #define CODE_STUB_LIST(V) \ |
| 94 CODE_STUB_LIST_ALL_PLATFORMS(V) \ | 95 CODE_STUB_LIST_ALL_PLATFORMS(V) \ |
| 95 CODE_STUB_LIST_ARM(V) \ | 96 CODE_STUB_LIST_ARM(V) \ |
| 96 CODE_STUB_LIST_MIPS(V) | 97 CODE_STUB_LIST_MIPS(V) |
| 97 | 98 |
| (...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 private: | 918 private: |
| 918 MacroAssembler* masm_; | 919 MacroAssembler* masm_; |
| 919 bool previous_allow_; | 920 bool previous_allow_; |
| 920 | 921 |
| 921 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); | 922 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); |
| 922 }; | 923 }; |
| 923 | 924 |
| 924 } } // namespace v8::internal | 925 } } // namespace v8::internal |
| 925 | 926 |
| 926 #endif // V8_CODE_STUBS_H_ | 927 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |