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

Side by Side Diff: src/mips64/constants-mips64.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 | « src/mips/constants-mips.h ('k') | no next file » | 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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 less_equal = 14, 593 less_equal = 14,
594 greater = 15, 594 greater = 15,
595 ueq = 16, // Unordered or Equal. 595 ueq = 16, // Unordered or Equal.
596 nue = 17, // Not (Unordered or Equal). 596 nue = 17, // Not (Unordered or Equal).
597 597
598 cc_always = 18, 598 cc_always = 18,
599 599
600 // Aliases. 600 // Aliases.
601 carry = Uless, 601 carry = Uless,
602 not_carry = Ugreater_equal, 602 not_carry = Ugreater_equal,
603 zero = equal, 603 Zero = equal,
604 eq = equal, 604 eq = equal,
605 not_zero = not_equal, 605 not_zero = not_equal,
606 ne = not_equal, 606 ne = not_equal,
607 nz = not_equal, 607 nz = not_equal,
608 sign = negative, 608 sign = negative,
609 not_sign = positive, 609 not_sign = positive,
610 mi = negative, 610 mi = negative,
611 pl = positive, 611 pl = positive,
612 hi = Ugreater, 612 hi = Ugreater,
613 ls = Uless_equal, 613 ls = Uless_equal,
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 943
944 // TODO(plind): below should be based on kPointerSize 944 // TODO(plind): below should be based on kPointerSize
945 // TODO(plind): find all usages and remove the needless instructions for n64. 945 // TODO(plind): find all usages and remove the needless instructions for n64.
946 const int kCArgsSlotsSize = kCArgSlotCount * Instruction::kInstrSize * 2; 946 const int kCArgsSlotsSize = kCArgSlotCount * Instruction::kInstrSize * 2;
947 947
948 const int kBranchReturnOffset = 2 * Instruction::kInstrSize; 948 const int kBranchReturnOffset = 2 * Instruction::kInstrSize;
949 949
950 } } // namespace v8::internal 950 } } // namespace v8::internal
951 951
952 #endif // #ifndef V8_MIPS_CONSTANTS_H_ 952 #endif // #ifndef V8_MIPS_CONSTANTS_H_
OLDNEW
« no previous file with comments | « src/mips/constants-mips.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698