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

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

Issue 1938993002: [turbofan] Restore basic write barrier elimination. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comments. Created 4 years, 7 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/js-native-context-specialization.cc ('k') | src/compiler/machine-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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_MACHINE_OPERATOR_H_ 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_
6 #define V8_COMPILER_MACHINE_OPERATOR_H_ 6 #define V8_COMPILER_MACHINE_OPERATOR_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/machine-type.h" 9 #include "src/machine-type.h"
10 10
(...skipping 14 matching lines...) Expand all
25 bool IsSupported() const { return op_ != nullptr; } 25 bool IsSupported() const { return op_ != nullptr; }
26 const Operator* op() const { 26 const Operator* op() const {
27 DCHECK_NOT_NULL(op_); 27 DCHECK_NOT_NULL(op_);
28 return op_; 28 return op_;
29 } 29 }
30 30
31 private: 31 private:
32 const Operator* const op_; 32 const Operator* const op_;
33 }; 33 };
34 34
35 // Supported write barrier modes.
36 enum WriteBarrierKind {
37 kNoWriteBarrier,
38 kMapWriteBarrier,
39 kPointerWriteBarrier,
40 kFullWriteBarrier
41 };
42
43 std::ostream& operator<<(std::ostream& os, WriteBarrierKind);
44
45 35
46 // A Load needs a MachineType. 36 // A Load needs a MachineType.
47 typedef MachineType LoadRepresentation; 37 typedef MachineType LoadRepresentation;
48 38
49 LoadRepresentation LoadRepresentationOf(Operator const*); 39 LoadRepresentation LoadRepresentationOf(Operator const*);
50 40
51 // A Store needs a MachineType and a WriteBarrierKind in order to emit the 41 // A Store needs a MachineType and a WriteBarrierKind in order to emit the
52 // correct write barrier. 42 // correct write barrier.
53 class StoreRepresentation final { 43 class StoreRepresentation final {
54 public: 44 public:
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 }; 546 };
557 547
558 548
559 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 549 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
560 550
561 } // namespace compiler 551 } // namespace compiler
562 } // namespace internal 552 } // namespace internal
563 } // namespace v8 553 } // namespace v8
564 554
565 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 555 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698