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

Side by Side Diff: src/mips/macro-assembler-mips.h

Issue 2225323002: MIPS: Implement Bovc and Bnvc instruction macros. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typo Created 4 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
« no previous file with comments | « no previous file | src/mips/macro-assembler-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_MACRO_ASSEMBLER_MIPS_H_ 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/mips/assembler-mips.h" 10 #include "src/mips/assembler-mips.h"
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 // register dst. 824 // register dst.
825 void StoreToSafepointRegisterSlot(Register src, Register dst); 825 void StoreToSafepointRegisterSlot(Register src, Register dst);
826 // Load the value of the src register from its safepoint stack slot 826 // Load the value of the src register from its safepoint stack slot
827 // into register dst. 827 // into register dst.
828 void LoadFromSafepointRegisterSlot(Register dst, Register src); 828 void LoadFromSafepointRegisterSlot(Register dst, Register src);
829 829
830 // MIPS32 R2 instruction macro. 830 // MIPS32 R2 instruction macro.
831 void Ins(Register rt, Register rs, uint16_t pos, uint16_t size); 831 void Ins(Register rt, Register rs, uint16_t pos, uint16_t size);
832 void Ext(Register rt, Register rs, uint16_t pos, uint16_t size); 832 void Ext(Register rt, Register rs, uint16_t pos, uint16_t size);
833 833
834 // MIPS32 R6 instruction macros.
835 void Bovc(Register rt, Register rs, Label* L);
836 void Bnvc(Register rt, Register rs, Label* L);
837
834 // Int64Lowering instructions 838 // Int64Lowering instructions
835 void AddPair(Register dst_low, Register dst_high, Register left_low, 839 void AddPair(Register dst_low, Register dst_high, Register left_low,
836 Register left_high, Register right_low, Register right_high); 840 Register left_high, Register right_low, Register right_high);
837 841
838 void SubPair(Register dst_low, Register dst_high, Register left_low, 842 void SubPair(Register dst_low, Register dst_high, Register left_low,
839 Register left_high, Register right_low, Register right_high); 843 Register left_high, Register right_low, Register right_high);
840 844
841 void ShlPair(Register dst_low, Register dst_high, Register src_low, 845 void ShlPair(Register dst_low, Register dst_high, Register src_low,
842 Register src_high, Register shift); 846 Register src_high, Register shift);
843 847
(...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after
1909 dd(GetLabelFunction(index)); 1913 dd(GetLabelFunction(index));
1910 } 1914 }
1911 } 1915 }
1912 1916
1913 #define ACCESS_MASM(masm) masm-> 1917 #define ACCESS_MASM(masm) masm->
1914 1918
1915 } // namespace internal 1919 } // namespace internal
1916 } // namespace v8 1920 } // namespace v8
1917 1921
1918 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1922 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips/macro-assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698