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

Side by Side Diff: src/compiler/simplified-operator.h

Issue 2763533002: [WIP] JSForInLowering and JSForInHasOwnProperty.
Patch Set: Hack around the issue with indices not being available always. Created 3 years, 9 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/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.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 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 const Operator* EnsureWritableFastElements(); 437 const Operator* EnsureWritableFastElements();
438 438
439 // maybe-grow-fast-elements object, elements, index, length 439 // maybe-grow-fast-elements object, elements, index, length
440 const Operator* MaybeGrowFastElements(GrowFastElementsFlags flags); 440 const Operator* MaybeGrowFastElements(GrowFastElementsFlags flags);
441 441
442 // transition-elements-kind object, from-map, to-map 442 // transition-elements-kind object, from-map, to-map
443 const Operator* TransitionElementsKind(ElementsTransition transition); 443 const Operator* TransitionElementsKind(ElementsTransition transition);
444 444
445 const Operator* Allocate(PretenureFlag pretenure = NOT_TENURED); 445 const Operator* Allocate(PretenureFlag pretenure = NOT_TENURED);
446 446
447 const Operator* LoadFieldByIndex();
447 const Operator* LoadField(FieldAccess const&); 448 const Operator* LoadField(FieldAccess const&);
448 const Operator* StoreField(FieldAccess const&); 449 const Operator* StoreField(FieldAccess const&);
449 450
450 // load-buffer buffer, offset, length 451 // load-buffer buffer, offset, length
451 const Operator* LoadBuffer(BufferAccess); 452 const Operator* LoadBuffer(BufferAccess);
452 453
453 // store-buffer buffer, offset, length, value 454 // store-buffer buffer, offset, length, value
454 const Operator* StoreBuffer(BufferAccess); 455 const Operator* StoreBuffer(BufferAccess);
455 456
456 // load-element [base + index] 457 // load-element [base + index]
(...skipping 15 matching lines...) Expand all
472 Zone* const zone_; 473 Zone* const zone_;
473 474
474 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 475 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
475 }; 476 };
476 477
477 } // namespace compiler 478 } // namespace compiler
478 } // namespace internal 479 } // namespace internal
479 } // namespace v8 480 } // namespace v8
480 481
481 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 482 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698