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

Side by Side Diff: src/builtins.h

Issue 11941016: Migrate FunctionPrototype (Keyed|Named)LoadIC to CodeStub (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 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/ast.cc ('k') | src/builtins.cc » ('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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 V(KeyedStoreIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ 127 V(KeyedStoreIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \
128 Code::kNoExtraICState) \ 128 Code::kNoExtraICState) \
129 V(KeyedStoreIC_Slow, BUILTIN, UNINITIALIZED, \ 129 V(KeyedStoreIC_Slow, BUILTIN, UNINITIALIZED, \
130 Code::kNoExtraICState) \ 130 Code::kNoExtraICState) \
131 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ 131 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \
132 Code::kNoExtraICState) \ 132 Code::kNoExtraICState) \
133 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ 133 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \
134 Code::kNoExtraICState) \ 134 Code::kNoExtraICState) \
135 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \ 135 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \
136 Code::kNoExtraICState) \ 136 Code::kNoExtraICState) \
137 V(LoadIC_FunctionPrototype, LOAD_IC, MONOMORPHIC, \
138 Code::kNoExtraICState) \
139 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ 137 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \
140 Code::kNoExtraICState) \ 138 Code::kNoExtraICState) \
141 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \ 139 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \
142 Code::kNoExtraICState) \ 140 Code::kNoExtraICState) \
143 \ 141 \
144 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ 142 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \
145 Code::kNoExtraICState) \ 143 Code::kNoExtraICState) \
146 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ 144 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \
147 Code::kNoExtraICState) \ 145 Code::kNoExtraICState) \
148 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, GENERIC, \ 146 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, GENERIC, \
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 407
410 friend class BuiltinFunctionTable; 408 friend class BuiltinFunctionTable;
411 friend class Isolate; 409 friend class Isolate;
412 410
413 DISALLOW_COPY_AND_ASSIGN(Builtins); 411 DISALLOW_COPY_AND_ASSIGN(Builtins);
414 }; 412 };
415 413
416 } } // namespace v8::internal 414 } } // namespace v8::internal
417 415
418 #endif // V8_BUILTINS_H_ 416 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698