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

Side by Side Diff: src/arm64/constants-arm64.h

Issue 277913002: Presubmit checks recover. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebasing Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/simulator-arm.cc ('k') | src/arm64/cpu-arm64.h » ('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_ARM64_CONSTANTS_ARM64_H_ 5 #ifndef V8_ARM64_CONSTANTS_ARM64_H_
6 #define V8_ARM64_CONSTANTS_ARM64_H_ 6 #define V8_ARM64_CONSTANTS_ARM64_H_
7 7
8 8
9 // Assert that this is an LP64 system. 9 // Assert that this is an LP64 system.
10 STATIC_ASSERT(sizeof(int) == sizeof(int32_t)); // NOLINT(runtime/sizeof) 10 STATIC_ASSERT(sizeof(int) == sizeof(int32_t)); // NOLINT(runtime/sizeof)
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 return ge; 286 return ge;
287 case eq: 287 case eq:
288 return eq; 288 return eq;
289 default: 289 default:
290 // In practice this function is only used with a condition coming from 290 // In practice this function is only used with a condition coming from
291 // TokenToCondition in lithium-codegen-arm64.cc. Any other condition is 291 // TokenToCondition in lithium-codegen-arm64.cc. Any other condition is
292 // invalid as it doesn't necessary make sense to reverse it (consider 292 // invalid as it doesn't necessary make sense to reverse it (consider
293 // 'mi' for instance). 293 // 'mi' for instance).
294 UNREACHABLE(); 294 UNREACHABLE();
295 return nv; 295 return nv;
296 }; 296 }
297 } 297 }
298 298
299 enum FlagsUpdate { 299 enum FlagsUpdate {
300 SetFlags = 1, 300 SetFlags = 1,
301 LeaveFlags = 0 301 LeaveFlags = 0
302 }; 302 };
303 303
304 enum StatusFlags { 304 enum StatusFlags {
305 NoFlag = 0, 305 NoFlag = 0,
306 306
(...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
1242 }; 1242 };
1243 1243
1244 enum UnallocatedOp { 1244 enum UnallocatedOp {
1245 UnallocatedFixed = 0x00000000, 1245 UnallocatedFixed = 0x00000000,
1246 UnallocatedFMask = 0x00000000 1246 UnallocatedFMask = 0x00000000
1247 }; 1247 };
1248 1248
1249 } } // namespace v8::internal 1249 } } // namespace v8::internal
1250 1250
1251 #endif // V8_ARM64_CONSTANTS_ARM64_H_ 1251 #endif // V8_ARM64_CONSTANTS_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm/simulator-arm.cc ('k') | src/arm64/cpu-arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698