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

Side by Side Diff: test/cctest/compiler/value-helper.h

Issue 470593002: Unify MachineType and RepType. (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 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_CCTEST_COMPILER_VALUE_HELPER_H_ 5 #ifndef V8_CCTEST_COMPILER_VALUE_HELPER_H_
6 #define V8_CCTEST_COMPILER_VALUE_HELPER_H_ 6 #define V8_CCTEST_COMPILER_VALUE_HELPER_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/compiler/common-operator.h" 10 #include "src/compiler/common-operator.h"
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 var != var##_vec.end(); ++var) 121 var != var##_vec.end(); ++var)
122 122
123 #define FOR_INT32_INPUTS(var) FOR_INPUTS(int32_t, int32, var) 123 #define FOR_INT32_INPUTS(var) FOR_INPUTS(int32_t, int32, var)
124 #define FOR_UINT32_INPUTS(var) FOR_INPUTS(uint32_t, uint32, var) 124 #define FOR_UINT32_INPUTS(var) FOR_INPUTS(uint32_t, uint32, var)
125 #define FOR_FLOAT64_INPUTS(var) FOR_INPUTS(double, float64, var) 125 #define FOR_FLOAT64_INPUTS(var) FOR_INPUTS(double, float64, var)
126 126
127 #define FOR_INT32_SHIFTS(var) for (int32_t var = 0; var < 32; var++) 127 #define FOR_INT32_SHIFTS(var) for (int32_t var = 0; var < 32; var++)
128 128
129 #define FOR_UINT32_SHIFTS(var) for (uint32_t var = 0; var < 32; var++) 129 #define FOR_UINT32_SHIFTS(var) for (uint32_t var = 0; var < 32; var++)
130 130
131
132 } // namespace compiler 131 } // namespace compiler
133 } // namespace internal 132 } // namespace internal
134 } // namespace v8 133 } // namespace v8
135 134
136 #endif // V8_CCTEST_COMPILER_VALUE_HELPER_H_ 135 #endif // V8_CCTEST_COMPILER_VALUE_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698