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

Side by Side Diff: src/compiler/opcodes.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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 // Opcodes for control operators. 8 // Opcodes for control operators.
9 #define CONTROL_OP_LIST(V) \ 9 #define CONTROL_OP_LIST(V) \
10 V(Start) \ 10 V(Start) \
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 V(Uint32LessThanOrEqual) \ 193 V(Uint32LessThanOrEqual) \
194 V(Int64Add) \ 194 V(Int64Add) \
195 V(Int64Sub) \ 195 V(Int64Sub) \
196 V(Int64Mul) \ 196 V(Int64Mul) \
197 V(Int64Div) \ 197 V(Int64Div) \
198 V(Int64UDiv) \ 198 V(Int64UDiv) \
199 V(Int64Mod) \ 199 V(Int64Mod) \
200 V(Int64UMod) \ 200 V(Int64UMod) \
201 V(Int64LessThan) \ 201 V(Int64LessThan) \
202 V(Int64LessThanOrEqual) \ 202 V(Int64LessThanOrEqual) \
203 V(ConvertInt64ToInt32) \
204 V(ConvertInt32ToInt64) \
205 V(ChangeInt32ToFloat64) \ 203 V(ChangeInt32ToFloat64) \
206 V(ChangeUint32ToFloat64) \ 204 V(ChangeUint32ToFloat64) \
207 V(ChangeFloat64ToInt32) \ 205 V(ChangeFloat64ToInt32) \
208 V(ChangeFloat64ToUint32) \ 206 V(ChangeFloat64ToUint32) \
207 V(ChangeInt32ToInt64) \
208 V(ChangeUint32ToUint64) \
209 V(TruncateInt64ToInt32) \
209 V(Float64Add) \ 210 V(Float64Add) \
210 V(Float64Sub) \ 211 V(Float64Sub) \
211 V(Float64Mul) \ 212 V(Float64Mul) \
212 V(Float64Div) \ 213 V(Float64Div) \
213 V(Float64Mod) \ 214 V(Float64Mod) \
214 V(Float64Equal) \ 215 V(Float64Equal) \
215 V(Float64LessThan) \ 216 V(Float64LessThan) \
216 V(Float64LessThanOrEqual) 217 V(Float64LessThanOrEqual)
217 218
218 #define VALUE_OP_LIST(V) \ 219 #define VALUE_OP_LIST(V) \
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 return false; 294 return false;
294 } 295 }
295 } 296 }
296 }; 297 };
297 298
298 } // namespace compiler 299 } // namespace compiler
299 } // namespace internal 300 } // namespace internal
300 } // namespace v8 301 } // namespace v8
301 302
302 #endif // V8_COMPILER_OPCODES_H_ 303 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698