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

Side by Side Diff: src/ast/ast-types.cc

Issue 2419513002: [ic] Support data handlers that represent loads from prototypes. (Closed)
Patch Set: Rebasing Created 4 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
« no previous file with comments | « include/v8.h ('k') | src/code-stub-assembler.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <iomanip> 5 #include <iomanip>
6 6
7 #include "src/ast/ast-types.h" 7 #include "src/ast/ast-types.h"
8 8
9 #include "src/handles-inl.h" 9 #include "src/handles-inl.h"
10 #include "src/ostreams.h" 10 #include "src/ostreams.h"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 case TYPE_SWITCH_INFO_TYPE: 269 case TYPE_SWITCH_INFO_TYPE:
270 case ALLOCATION_MEMENTO_TYPE: 270 case ALLOCATION_MEMENTO_TYPE:
271 case TYPE_FEEDBACK_INFO_TYPE: 271 case TYPE_FEEDBACK_INFO_TYPE:
272 case ALIASED_ARGUMENTS_ENTRY_TYPE: 272 case ALIASED_ARGUMENTS_ENTRY_TYPE:
273 case BOX_TYPE: 273 case BOX_TYPE:
274 case DEBUG_INFO_TYPE: 274 case DEBUG_INFO_TYPE:
275 case BREAK_POINT_INFO_TYPE: 275 case BREAK_POINT_INFO_TYPE:
276 case CELL_TYPE: 276 case CELL_TYPE:
277 case WEAK_CELL_TYPE: 277 case WEAK_CELL_TYPE:
278 case PROTOTYPE_INFO_TYPE: 278 case PROTOTYPE_INFO_TYPE:
279 case TUPLE3_TYPE:
279 case CONTEXT_EXTENSION_TYPE: 280 case CONTEXT_EXTENSION_TYPE:
280 UNREACHABLE(); 281 UNREACHABLE();
281 return kNone; 282 return kNone;
282 } 283 }
283 UNREACHABLE(); 284 UNREACHABLE();
284 return kNone; 285 return kNone;
285 } 286 }
286 287
287 AstType::bitset AstBitsetType::Lub(i::Object* value) { 288 AstType::bitset AstBitsetType::Lub(i::Object* value) {
288 DisallowHeapAllocation no_allocation; 289 DisallowHeapAllocation no_allocation;
(...skipping 974 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 #undef CONSTRUCT_SIMD_TYPE 1264 #undef CONSTRUCT_SIMD_TYPE
1264 1265
1265 // ----------------------------------------------------------------------------- 1266 // -----------------------------------------------------------------------------
1266 // Instantiations. 1267 // Instantiations.
1267 1268
1268 template class AstType::Iterator<i::Map>; 1269 template class AstType::Iterator<i::Map>;
1269 template class AstType::Iterator<i::Object>; 1270 template class AstType::Iterator<i::Object>;
1270 1271
1271 } // namespace internal 1272 } // namespace internal
1272 } // namespace v8 1273 } // namespace v8
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698