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

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

Issue 2494753003: [turbofan] Introduce an ExternalPointer type. (Closed)
Patch Set: Stronger ducktape. Created 4 years, 1 month 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/common-node-cache.h ('k') | src/compiler/common-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_COMMON_OPERATOR_H_ 5 #ifndef V8_COMPILER_COMMON_OPERATOR_H_
6 #define V8_COMPILER_COMMON_OPERATOR_H_ 6 #define V8_COMPILER_COMMON_OPERATOR_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/base/compiler-specific.h" 9 #include "src/base/compiler-specific.h"
10 #include "src/compiler/frame-states.h" 10 #include "src/compiler/frame-states.h"
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 const Operator* OsrLoopEntry(); 217 const Operator* OsrLoopEntry();
218 const Operator* OsrValue(int index); 218 const Operator* OsrValue(int index);
219 const Operator* OsrGuard(OsrGuardType type); 219 const Operator* OsrGuard(OsrGuardType type);
220 220
221 const Operator* Int32Constant(int32_t); 221 const Operator* Int32Constant(int32_t);
222 const Operator* Int64Constant(int64_t); 222 const Operator* Int64Constant(int64_t);
223 const Operator* Float32Constant(volatile float); 223 const Operator* Float32Constant(volatile float);
224 const Operator* Float64Constant(volatile double); 224 const Operator* Float64Constant(volatile double);
225 const Operator* ExternalConstant(const ExternalReference&); 225 const Operator* ExternalConstant(const ExternalReference&);
226 const Operator* NumberConstant(volatile double); 226 const Operator* NumberConstant(volatile double);
227 const Operator* PointerConstant(intptr_t);
227 const Operator* HeapConstant(const Handle<HeapObject>&); 228 const Operator* HeapConstant(const Handle<HeapObject>&);
228 229
229 const Operator* RelocatableInt32Constant(int32_t value, 230 const Operator* RelocatableInt32Constant(int32_t value,
230 RelocInfo::Mode rmode); 231 RelocInfo::Mode rmode);
231 const Operator* RelocatableInt64Constant(int64_t value, 232 const Operator* RelocatableInt64Constant(int64_t value,
232 RelocInfo::Mode rmode); 233 RelocInfo::Mode rmode);
233 234
234 const Operator* Select(MachineRepresentation, BranchHint = BranchHint::kNone); 235 const Operator* Select(MachineRepresentation, BranchHint = BranchHint::kNone);
235 const Operator* Phi(MachineRepresentation representation, 236 const Operator* Phi(MachineRepresentation representation,
236 int value_input_count); 237 int value_input_count);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 Zone* const zone_; 272 Zone* const zone_;
272 273
273 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); 274 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder);
274 }; 275 };
275 276
276 } // namespace compiler 277 } // namespace compiler
277 } // namespace internal 278 } // namespace internal
278 } // namespace v8 279 } // namespace v8
279 280
280 #endif // V8_COMPILER_COMMON_OPERATOR_H_ 281 #endif // V8_COMPILER_COMMON_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/common-node-cache.h ('k') | src/compiler/common-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698