OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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(ToBoolean) \ | 68 V(ToBoolean) \ |
69 V(ToNumber) \ | 69 V(ToNumber) \ |
70 V(ArgumentsAccess) \ | 70 V(ArgumentsAccess) \ |
71 V(RegExpConstructResult) \ | 71 V(RegExpConstructResult) \ |
72 V(NumberToString) \ | 72 V(NumberToString) \ |
73 V(CEntry) \ | 73 V(CEntry) \ |
74 V(JSEntry) \ | 74 V(JSEntry) \ |
75 V(KeyedLoadElement) \ | 75 V(KeyedLoadElement) \ |
76 V(KeyedStoreElement) \ | 76 V(KeyedStoreElement) \ |
77 V(DebuggerStatement) \ | 77 V(DebuggerStatement) \ |
78 V(StringDictionaryLookup) \ | 78 V(NameDictionaryLookup) \ |
79 V(ElementsTransitionAndStore) \ | 79 V(ElementsTransitionAndStore) \ |
80 V(TransitionElementsKind) \ | 80 V(TransitionElementsKind) \ |
81 V(StoreArrayLiteralElement) \ | 81 V(StoreArrayLiteralElement) \ |
82 V(StubFailureTrampoline) \ | 82 V(StubFailureTrampoline) \ |
83 V(ProfileEntryHook) | 83 V(ProfileEntryHook) |
84 | 84 |
85 // List of code stubs only used on ARM platforms. | 85 // List of code stubs only used on ARM platforms. |
86 #ifdef V8_TARGET_ARCH_ARM | 86 #ifdef V8_TARGET_ARCH_ARM |
87 #define CODE_STUB_LIST_ARM(V) \ | 87 #define CODE_STUB_LIST_ARM(V) \ |
88 V(GetProperty) \ | 88 V(GetProperty) \ |
(...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1474 | 1474 |
1475 // The current function entry hook. | 1475 // The current function entry hook. |
1476 static FunctionEntryHook entry_hook_; | 1476 static FunctionEntryHook entry_hook_; |
1477 | 1477 |
1478 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); | 1478 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); |
1479 }; | 1479 }; |
1480 | 1480 |
1481 } } // namespace v8::internal | 1481 } } // namespace v8::internal |
1482 | 1482 |
1483 #endif // V8_CODE_STUBS_H_ | 1483 #endif // V8_CODE_STUBS_H_ |
OLD | NEW |