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

Side by Side Diff: src/ast.cc

Issue 1178363002: Vector ICs: Turbofan vector store ic support (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix mips64 compile error. Created 5 years, 6 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 | « src/arm64/full-codegen-arm64.cc ('k') | src/compiler/ast-graph-builder.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 "src/ast.h" 5 #include "src/ast.h"
6 6
7 #include <cmath> // For isfinite. 7 #include <cmath> // For isfinite.
8 #include "src/builtins.h" 8 #include "src/builtins.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/contexts.h" 10 #include "src/contexts.h"
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 // This logic that computes the number of slots needed for vector store 282 // This logic that computes the number of slots needed for vector store
283 // ICs must mirror FullCodeGenerator::VisitClassLiteral. 283 // ICs must mirror FullCodeGenerator::VisitClassLiteral.
284 int ic_slots = 0; 284 int ic_slots = 0;
285 for (int i = 0; i < properties()->length(); i++) { 285 for (int i = 0; i < properties()->length(); i++) {
286 ObjectLiteral::Property* property = properties()->at(i); 286 ObjectLiteral::Property* property = properties()->at(i);
287 287
288 Expression* value = property->value(); 288 Expression* value = property->value();
289 if (FunctionLiteral::NeedsHomeObject(value)) ic_slots++; 289 if (FunctionLiteral::NeedsHomeObject(value)) ic_slots++;
290 } 290 }
291 291
292 if (scope() != NULL && class_variable_proxy()->var()->IsUnallocated()) {
293 ic_slots++;
294 }
295
292 #ifdef DEBUG 296 #ifdef DEBUG
293 // FullCodeGenerator::VisitClassLiteral verifies that it consumes slot_count_ 297 // FullCodeGenerator::VisitClassLiteral verifies that it consumes slot_count_
294 // slots. 298 // slots.
295 slot_count_ = ic_slots; 299 slot_count_ = ic_slots;
296 #endif 300 #endif
297 return FeedbackVectorRequirements(0, ic_slots); 301 return FeedbackVectorRequirements(0, ic_slots);
298 } 302 }
299 303
300 304
301 FeedbackVectorICSlot ClassLiteral::SlotForHomeObject(Expression* value, 305 FeedbackVectorICSlot ClassLiteral::SlotForHomeObject(Expression* value,
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 bool Literal::Match(void* literal1, void* literal2) { 1142 bool Literal::Match(void* literal1, void* literal2) {
1139 const AstValue* x = static_cast<Literal*>(literal1)->raw_value(); 1143 const AstValue* x = static_cast<Literal*>(literal1)->raw_value();
1140 const AstValue* y = static_cast<Literal*>(literal2)->raw_value(); 1144 const AstValue* y = static_cast<Literal*>(literal2)->raw_value();
1141 return (x->IsString() && y->IsString() && x->AsString() == y->AsString()) || 1145 return (x->IsString() && y->IsString() && x->AsString() == y->AsString()) ||
1142 (x->IsNumber() && y->IsNumber() && x->AsNumber() == y->AsNumber()); 1146 (x->IsNumber() && y->IsNumber() && x->AsNumber() == y->AsNumber());
1143 } 1147 }
1144 1148
1145 1149
1146 } // namespace internal 1150 } // namespace internal
1147 } // namespace v8 1151 } // namespace v8
OLDNEW
« no previous file with comments | « src/arm64/full-codegen-arm64.cc ('k') | src/compiler/ast-graph-builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698