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

Side by Side Diff: src/builtins.h

Issue 25044002: Tag handlers as HANDLER rather than STUB. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comment Created 7 years, 2 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/arm/ic-arm.cc ('k') | src/code-stubs.h » ('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 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 Code::kNoExtraICState) \ 108 Code::kNoExtraICState) \
109 V(NotifyStubFailure, BUILTIN, UNINITIALIZED, \ 109 V(NotifyStubFailure, BUILTIN, UNINITIALIZED, \
110 Code::kNoExtraICState) \ 110 Code::kNoExtraICState) \
111 \ 111 \
112 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \ 112 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \
113 Code::kNoExtraICState) \ 113 Code::kNoExtraICState) \
114 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \ 114 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \
115 Code::kNoExtraICState) \ 115 Code::kNoExtraICState) \
116 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ 116 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \
117 Code::kNoExtraICState) \ 117 Code::kNoExtraICState) \
118 V(KeyedLoadIC_Slow, STUB, MONOMORPHIC, \ 118 V(KeyedLoadIC_Slow, HANDLER, MONOMORPHIC, \
119 Code::kNoExtraICState) \ 119 Code::kNoExtraICState) \
120 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, \ 120 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, \
121 Code::kNoExtraICState) \ 121 Code::kNoExtraICState) \
122 V(StoreIC_Slow, BUILTIN, UNINITIALIZED, \ 122 V(StoreIC_Slow, BUILTIN, UNINITIALIZED, \
123 Code::kNoExtraICState) \ 123 Code::kNoExtraICState) \
124 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, \ 124 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, \
125 Code::kNoExtraICState) \ 125 Code::kNoExtraICState) \
126 V(KeyedStoreIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ 126 V(KeyedStoreIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \
127 Code::kNoExtraICState) \ 127 Code::kNoExtraICState) \
128 V(KeyedStoreIC_Slow, BUILTIN, UNINITIALIZED, \ 128 V(KeyedStoreIC_Slow, BUILTIN, UNINITIALIZED, \
129 Code::kNoExtraICState) \ 129 Code::kNoExtraICState) \
130 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ 130 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \
131 Code::kNoExtraICState) \ 131 Code::kNoExtraICState) \
132 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ 132 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \
133 Code::kNoExtraICState) \ 133 Code::kNoExtraICState) \
134 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \ 134 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \
135 Code::kNoExtraICState) \ 135 Code::kNoExtraICState) \
136 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ 136 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \
137 Code::kNoExtraICState) \ 137 Code::kNoExtraICState) \
138 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \ 138 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \
139 Code::kNoExtraICState) \ 139 Code::kNoExtraICState) \
140 V(LoadIC_Slow, STUB, MONOMORPHIC, \ 140 V(LoadIC_Slow, HANDLER, MONOMORPHIC, \
141 Code::kNoExtraICState) \ 141 Code::kNoExtraICState) \
142 \ 142 \
143 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ 143 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \
144 Code::kNoExtraICState) \ 144 Code::kNoExtraICState) \
145 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ 145 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \
146 Code::kNoExtraICState) \ 146 Code::kNoExtraICState) \
147 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, GENERIC, \ 147 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, GENERIC, \
148 Code::kNoExtraICState) \ 148 Code::kNoExtraICState) \
149 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \ 149 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \
150 Code::kNoExtraICState) \ 150 Code::kNoExtraICState) \
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 417
418 friend class BuiltinFunctionTable; 418 friend class BuiltinFunctionTable;
419 friend class Isolate; 419 friend class Isolate;
420 420
421 DISALLOW_COPY_AND_ASSIGN(Builtins); 421 DISALLOW_COPY_AND_ASSIGN(Builtins);
422 }; 422 };
423 423
424 } } // namespace v8::internal 424 } } // namespace v8::internal
425 425
426 #endif // V8_BUILTINS_H_ 426 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm/ic-arm.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698