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/s390/macro-assembler-s390.h

Issue 2025083002: Version 5.1.281.58 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5.1
Patch Set: Created 4 years, 6 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 | « src/compiler/s390/code-generator-s390.cc ('k') | src/s390/macro-assembler-s390.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_S390_MACRO_ASSEMBLER_S390_H_ 5 #ifndef V8_S390_MACRO_ASSEMBLER_S390_H_
6 #define V8_S390_MACRO_ASSEMBLER_S390_H_ 6 #define V8_S390_MACRO_ASSEMBLER_S390_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 } 207 }
208 208
209 void Call(Label* target); 209 void Call(Label* target);
210 210
211 // Register move. May do nothing if the registers are identical. 211 // Register move. May do nothing if the registers are identical.
212 void Move(Register dst, Smi* smi) { LoadSmiLiteral(dst, smi); } 212 void Move(Register dst, Smi* smi) { LoadSmiLiteral(dst, smi); }
213 void Move(Register dst, Handle<Object> value); 213 void Move(Register dst, Handle<Object> value);
214 void Move(Register dst, Register src, Condition cond = al); 214 void Move(Register dst, Register src, Condition cond = al);
215 void Move(DoubleRegister dst, DoubleRegister src); 215 void Move(DoubleRegister dst, DoubleRegister src);
216 216
217 void InsertDoubleLow(DoubleRegister dst, Register src);
218 void InsertDoubleHigh(DoubleRegister dst, Register src);
219
220 void MultiPush(RegList regs, Register location = sp); 217 void MultiPush(RegList regs, Register location = sp);
221 void MultiPop(RegList regs, Register location = sp); 218 void MultiPop(RegList regs, Register location = sp);
222 219
223 void MultiPushDoubles(RegList dregs, Register location = sp); 220 void MultiPushDoubles(RegList dregs, Register location = sp);
224 void MultiPopDoubles(RegList dregs, Register location = sp); 221 void MultiPopDoubles(RegList dregs, Register location = sp);
225 222
226 // Load an object from the root table. 223 // Load an object from the root table.
227 void LoadRoot(Register destination, Heap::RootListIndex index, 224 void LoadRoot(Register destination, Heap::RootListIndex index,
228 Condition cond = al); 225 Condition cond = al);
229 // Store an object to the root table. 226 // Store an object to the root table.
(...skipping 1651 matching lines...) Expand 10 before | Expand all | Expand 10 after
1881 #define ACCESS_MASM(masm) \ 1878 #define ACCESS_MASM(masm) \
1882 masm->stop(__FILE_LINE__); \ 1879 masm->stop(__FILE_LINE__); \
1883 masm-> 1880 masm->
1884 #else 1881 #else
1885 #define ACCESS_MASM(masm) masm-> 1882 #define ACCESS_MASM(masm) masm->
1886 #endif 1883 #endif
1887 } // namespace internal 1884 } // namespace internal
1888 } // namespace v8 1885 } // namespace v8
1889 1886
1890 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ 1887 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_
OLDNEW
« no previous file with comments | « src/compiler/s390/code-generator-s390.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698