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

Side by Side Diff: src/mips/constants-mips.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/mips/assembler-mips.h ('k') | src/mips/constants-mips.cc » ('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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 case less: 517 case less:
518 return greater; 518 return greater;
519 case greater: 519 case greater:
520 return less; 520 return less;
521 case greater_equal: 521 case greater_equal:
522 return less_equal; 522 return less_equal;
523 case less_equal: 523 case less_equal:
524 return greater_equal; 524 return greater_equal;
525 default: 525 default:
526 return cc; 526 return cc;
527 }; 527 }
528 } 528 }
529 529
530 530
531 // ----- Coprocessor conditions. 531 // ----- Coprocessor conditions.
532 enum FPUCondition { 532 enum FPUCondition {
533 kNoFPUCondition = -1, 533 kNoFPUCondition = -1,
534 534
535 F = 0, // False. 535 F = 0, // False.
536 UN = 1, // Unordered. 536 UN = 1, // Unordered.
537 EQ = 2, // Equal. 537 EQ = 2, // Equal.
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 // JS argument slots size. 809 // JS argument slots size.
810 const int kJSArgsSlotsSize = 0 * Instruction::kInstrSize; 810 const int kJSArgsSlotsSize = 0 * Instruction::kInstrSize;
811 // Assembly builtins argument slots size. 811 // Assembly builtins argument slots size.
812 const int kBArgsSlotsSize = 0 * Instruction::kInstrSize; 812 const int kBArgsSlotsSize = 0 * Instruction::kInstrSize;
813 813
814 const int kBranchReturnOffset = 2 * Instruction::kInstrSize; 814 const int kBranchReturnOffset = 2 * Instruction::kInstrSize;
815 815
816 } } // namespace v8::internal 816 } } // namespace v8::internal
817 817
818 #endif // #ifndef V8_MIPS_CONSTANTS_H_ 818 #endif // #ifndef V8_MIPS_CONSTANTS_H_
OLDNEW
« no previous file with comments | « src/mips/assembler-mips.h ('k') | src/mips/constants-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698