| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "globals.h" | 31 #include "globals.h" |
| 32 | 32 |
| 33 namespace v8 { | 33 namespace v8 { |
| 34 namespace internal { | 34 namespace internal { |
| 35 | 35 |
| 36 // List of code stubs used on all platforms. The order in this list is important | 36 // List of code stubs used on all platforms. The order in this list is important |
| 37 // as only the stubs up to and including Instanceof allows nested stub calls. | 37 // as only the stubs up to and including Instanceof allows nested stub calls. |
| 38 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \ | 38 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \ |
| 39 V(CallFunction) \ | 39 V(CallFunction) \ |
| 40 V(TypeRecordingUnaryOp) \ |
| 40 V(TypeRecordingBinaryOp) \ | 41 V(TypeRecordingBinaryOp) \ |
| 41 V(StringAdd) \ | 42 V(StringAdd) \ |
| 42 V(SubString) \ | 43 V(SubString) \ |
| 43 V(StringCompare) \ | 44 V(StringCompare) \ |
| 44 V(SmiOp) \ | 45 V(SmiOp) \ |
| 45 V(Compare) \ | 46 V(Compare) \ |
| 46 V(CompareIC) \ | 47 V(CompareIC) \ |
| 47 V(MathPow) \ | 48 V(MathPow) \ |
| 48 V(TranscendentalCache) \ | 49 V(TranscendentalCache) \ |
| 49 V(Instanceof) \ | 50 V(Instanceof) \ |
| (...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 960 private: | 961 private: |
| 961 MacroAssembler* masm_; | 962 MacroAssembler* masm_; |
| 962 bool previous_allow_; | 963 bool previous_allow_; |
| 963 | 964 |
| 964 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); | 965 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); |
| 965 }; | 966 }; |
| 966 | 967 |
| 967 } } // namespace v8::internal | 968 } } // namespace v8::internal |
| 968 | 969 |
| 969 #endif // V8_CODE_STUBS_H_ | 970 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |