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

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

Issue 443983002: MIPS: Fix build after r22923. (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
« no previous file with comments | « no previous file | src/mips64/constants-mips64.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_MIPS_CONSTANTS_H_ 5 #ifndef V8_MIPS_CONSTANTS_H_
6 #define V8_MIPS_CONSTANTS_H_ 6 #define V8_MIPS_CONSTANTS_H_
7 7
8 // UNIMPLEMENTED_ macro for MIPS. 8 // UNIMPLEMENTED_ macro for MIPS.
9 #ifdef DEBUG 9 #ifdef DEBUG
10 #define UNIMPLEMENTED_MIPS() \ 10 #define UNIMPLEMENTED_MIPS() \
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 less_equal = 14, 464 less_equal = 14,
465 greater = 15, 465 greater = 15,
466 ueq = 16, // Unordered or Equal. 466 ueq = 16, // Unordered or Equal.
467 nue = 17, // Not (Unordered or Equal). 467 nue = 17, // Not (Unordered or Equal).
468 468
469 cc_always = 18, 469 cc_always = 18,
470 470
471 // Aliases. 471 // Aliases.
472 carry = Uless, 472 carry = Uless,
473 not_carry = Ugreater_equal, 473 not_carry = Ugreater_equal,
474 zero = equal, 474 Zero = equal,
475 eq = equal, 475 eq = equal,
476 not_zero = not_equal, 476 not_zero = not_equal,
477 ne = not_equal, 477 ne = not_equal,
478 nz = not_equal, 478 nz = not_equal,
479 sign = negative, 479 sign = negative,
480 not_sign = positive, 480 not_sign = positive,
481 mi = negative, 481 mi = negative,
482 pl = positive, 482 pl = positive,
483 hi = Ugreater, 483 hi = Ugreater,
484 ls = Uless_equal, 484 ls = Uless_equal,
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 // JS argument slots size. 810 // JS argument slots size.
811 const int kJSArgsSlotsSize = 0 * Instruction::kInstrSize; 811 const int kJSArgsSlotsSize = 0 * Instruction::kInstrSize;
812 // Assembly builtins argument slots size. 812 // Assembly builtins argument slots size.
813 const int kBArgsSlotsSize = 0 * Instruction::kInstrSize; 813 const int kBArgsSlotsSize = 0 * Instruction::kInstrSize;
814 814
815 const int kBranchReturnOffset = 2 * Instruction::kInstrSize; 815 const int kBranchReturnOffset = 2 * Instruction::kInstrSize;
816 816
817 } } // namespace v8::internal 817 } } // namespace v8::internal
818 818
819 #endif // #ifndef V8_MIPS_CONSTANTS_H_ 819 #endif // #ifndef V8_MIPS_CONSTANTS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips64/constants-mips64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698