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

Side by Side Diff: src/builtins.h

Issue 10910110: Fixed deoptimization of inlined getters. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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/stub-cache-arm.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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC, \ 116 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC, \
117 Code::kNoExtraICState) \ 117 Code::kNoExtraICState) \
118 V(LoadIC_StringLength, LOAD_IC, MONOMORPHIC, \ 118 V(LoadIC_StringLength, LOAD_IC, MONOMORPHIC, \
119 Code::kNoExtraICState) \ 119 Code::kNoExtraICState) \
120 V(LoadIC_StringWrapperLength, LOAD_IC, MONOMORPHIC, \ 120 V(LoadIC_StringWrapperLength, LOAD_IC, MONOMORPHIC, \
121 Code::kNoExtraICState) \ 121 Code::kNoExtraICState) \
122 V(LoadIC_FunctionPrototype, LOAD_IC, MONOMORPHIC, \ 122 V(LoadIC_FunctionPrototype, LOAD_IC, MONOMORPHIC, \
123 Code::kNoExtraICState) \ 123 Code::kNoExtraICState) \
124 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ 124 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \
125 Code::kNoExtraICState) \ 125 Code::kNoExtraICState) \
126 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \
127 Code::kNoExtraICState) \
126 \ 128 \
127 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ 129 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \
128 Code::kNoExtraICState) \ 130 Code::kNoExtraICState) \
129 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \ 131 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC, \
130 Code::kNoExtraICState) \ 132 Code::kNoExtraICState) \
131 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, MEGAMORPHIC, \ 133 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, MEGAMORPHIC, \
132 Code::kNoExtraICState) \ 134 Code::kNoExtraICState) \
133 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \ 135 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \
134 Code::kNoExtraICState) \ 136 Code::kNoExtraICState) \
135 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MEGAMORPHIC, \ 137 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MEGAMORPHIC, \
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 385
384 friend class BuiltinFunctionTable; 386 friend class BuiltinFunctionTable;
385 friend class Isolate; 387 friend class Isolate;
386 388
387 DISALLOW_COPY_AND_ASSIGN(Builtins); 389 DISALLOW_COPY_AND_ASSIGN(Builtins);
388 }; 390 };
389 391
390 } } // namespace v8::internal 392 } } // namespace v8::internal
391 393
392 #endif // V8_BUILTINS_H_ 394 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698