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

Side by Side Diff: src/compiler/operator-properties-inl.h

Issue 487723002: [turbofan] Add proper conversion operators for int32<->int64. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
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_OPERATOR_PROPERTIES_INL_H_ 5 #ifndef V8_COMPILER_OPERATOR_PROPERTIES_INL_H_
6 #define V8_COMPILER_OPERATOR_PROPERTIES_INL_H_ 6 #define V8_COMPILER_OPERATOR_PROPERTIES_INL_H_
7 7
8 #include "src/v8.h" 8 #include "src/compiler/common-operator.h"
9
10 #include "src/compiler/js-operator.h" 9 #include "src/compiler/js-operator.h"
11 #include "src/compiler/opcodes.h" 10 #include "src/compiler/opcodes.h"
12 #include "src/compiler/operator-properties.h" 11 #include "src/compiler/operator-properties.h"
13 12
14 namespace v8 { 13 namespace v8 {
15 namespace internal { 14 namespace internal {
16 namespace compiler { 15 namespace compiler {
17 16
18 inline bool OperatorProperties::HasValueInput(Operator* op) { 17 inline bool OperatorProperties::HasValueInput(Operator* op) {
19 return OperatorProperties::GetValueInputCount(op) > 0; 18 return OperatorProperties::GetValueInputCount(op) > 0;
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 default: 171 default:
173 return false; 172 return false;
174 } 173 }
175 return false; 174 return false;
176 } 175 }
177 } 176 }
178 } 177 }
179 } // namespace v8::internal::compiler 178 } // namespace v8::internal::compiler
180 179
181 #endif // V8_COMPILER_OPERATOR_PROPERTIES_INL_H_ 180 #endif // V8_COMPILER_OPERATOR_PROPERTIES_INL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698