| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 V(DebuggerStatement) \ | 86 V(DebuggerStatement) \ |
| 87 V(NameDictionaryLookup) \ | 87 V(NameDictionaryLookup) \ |
| 88 V(ElementsTransitionAndStore) \ | 88 V(ElementsTransitionAndStore) \ |
| 89 V(TransitionElementsKind) \ | 89 V(TransitionElementsKind) \ |
| 90 V(StoreArrayLiteralElement) \ | 90 V(StoreArrayLiteralElement) \ |
| 91 V(StubFailureTrampoline) \ | 91 V(StubFailureTrampoline) \ |
| 92 V(ArrayConstructor) \ | 92 V(ArrayConstructor) \ |
| 93 V(InternalArrayConstructor) \ | 93 V(InternalArrayConstructor) \ |
| 94 V(ProfileEntryHook) \ | 94 V(ProfileEntryHook) \ |
| 95 V(StoreGlobal) \ | 95 V(StoreGlobal) \ |
| 96 V(CallExternal) \ |
| 96 /* IC Handler stubs */ \ | 97 /* IC Handler stubs */ \ |
| 97 V(LoadField) \ | 98 V(LoadField) \ |
| 98 V(KeyedLoadField) | 99 V(KeyedLoadField) |
| 99 | 100 |
| 100 // List of code stubs only used on ARM platforms. | 101 // List of code stubs only used on ARM platforms. |
| 101 #if V8_TARGET_ARCH_ARM | 102 #if V8_TARGET_ARCH_ARM |
| 102 #define CODE_STUB_LIST_ARM(V) \ | 103 #define CODE_STUB_LIST_ARM(V) \ |
| 103 V(GetProperty) \ | 104 V(GetProperty) \ |
| 104 V(SetProperty) \ | 105 V(SetProperty) \ |
| 105 V(InvokeBuiltin) \ | 106 V(InvokeBuiltin) \ |
| (...skipping 2251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2357 int MinorKey() { return 0; } | 2358 int MinorKey() { return 0; } |
| 2358 | 2359 |
| 2359 void Generate(MacroAssembler* masm); | 2360 void Generate(MacroAssembler* masm); |
| 2360 | 2361 |
| 2361 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); | 2362 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); |
| 2362 }; | 2363 }; |
| 2363 | 2364 |
| 2364 } } // namespace v8::internal | 2365 } } // namespace v8::internal |
| 2365 | 2366 |
| 2366 #endif // V8_CODE_STUBS_H_ | 2367 #endif // V8_CODE_STUBS_H_ |
| OLD | NEW |