Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: src/code-stubs.h

Issue 134333011: Clean up some A64 specific code in common code that was introduced by A64 merge (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/checks.h ('k') | test/message/message.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 V(InternalArrayConstructor) \ 94 V(InternalArrayConstructor) \
95 V(ProfileEntryHook) \ 95 V(ProfileEntryHook) \
96 V(StoreGlobal) \ 96 V(StoreGlobal) \
97 V(CallApiFunction) \ 97 V(CallApiFunction) \
98 V(CallApiGetter) \ 98 V(CallApiGetter) \
99 /* IC Handler stubs */ \ 99 /* IC Handler stubs */ \
100 V(LoadField) \ 100 V(LoadField) \
101 V(KeyedLoadField) 101 V(KeyedLoadField)
102 102
103 // List of code stubs only used on ARM platforms. 103 // List of code stubs only used on ARM platforms.
104 #if V8_TARGET_ARCH_ARM 104 #if defined(V8_TARGET_ARCH_ARM) || defined(V8_TARGET_ARCH_A64)
105 #define CODE_STUB_LIST_ARM(V) \ 105 #define CODE_STUB_LIST_ARM(V) \
106 V(GetProperty) \ 106 V(GetProperty) \
107 V(SetProperty) \ 107 V(SetProperty) \
108 V(InvokeBuiltin) \
109 V(DirectCEntry)
110 #elif V8_TARGET_ARCH_A64
111 #define CODE_STUB_LIST_ARM(V) \
112 V(GetProperty) \
113 V(SetProperty) \
114 V(InvokeBuiltin) \ 108 V(InvokeBuiltin) \
115 V(DirectCEntry) 109 V(DirectCEntry)
116 #else 110 #else
117 #define CODE_STUB_LIST_ARM(V) 111 #define CODE_STUB_LIST_ARM(V)
118 #endif 112 #endif
119 113
120 // List of code stubs only used on MIPS platforms. 114 // List of code stubs only used on MIPS platforms.
121 #if V8_TARGET_ARCH_MIPS 115 #if V8_TARGET_ARCH_MIPS
122 #define CODE_STUB_LIST_MIPS(V) \ 116 #define CODE_STUB_LIST_MIPS(V) \
123 V(RegExpCEntry) \ 117 V(RegExpCEntry) \
(...skipping 2358 matching lines...) Expand 10 before | Expand all | Expand 10 after
2482 2476
2483 2477
2484 class CallDescriptors { 2478 class CallDescriptors {
2485 public: 2479 public:
2486 static void InitializeForIsolate(Isolate* isolate); 2480 static void InitializeForIsolate(Isolate* isolate);
2487 }; 2481 };
2488 2482
2489 } } // namespace v8::internal 2483 } } // namespace v8::internal
2490 2484
2491 #endif // V8_CODE_STUBS_H_ 2485 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/checks.h ('k') | test/message/message.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698