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

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

Issue 1887003004: S390: Visit the Optimized Code Map on first call rather than closure creation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add knear Created 4 years, 8 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/s390/builtins-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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 328
329 // Compare Logical Byte (CLI/CLIY) 329 // Compare Logical Byte (CLI/CLIY)
330 void CmpLogicalByte(const MemOperand& mem, const Operand& imm); 330 void CmpLogicalByte(const MemOperand& mem, const Operand& imm);
331 331
332 // Load 32bit 332 // Load 32bit
333 void Load(Register dst, const MemOperand& opnd); 333 void Load(Register dst, const MemOperand& opnd);
334 void Load(Register dst, const Operand& opnd); 334 void Load(Register dst, const Operand& opnd);
335 void LoadW(Register dst, const MemOperand& opnd, Register scratch = no_reg); 335 void LoadW(Register dst, const MemOperand& opnd, Register scratch = no_reg);
336 void LoadlW(Register dst, const MemOperand& opnd, Register scratch = no_reg); 336 void LoadlW(Register dst, const MemOperand& opnd, Register scratch = no_reg);
337 void LoadB(Register dst, const MemOperand& opnd); 337 void LoadB(Register dst, const MemOperand& opnd);
338 void LoadB(Register dst, Register src);
338 void LoadlB(Register dst, const MemOperand& opnd); 339 void LoadlB(Register dst, const MemOperand& opnd);
339 340
340 // Load And Test 341 // Load And Test
341 void LoadAndTest32(Register dst, Register src); 342 void LoadAndTest32(Register dst, Register src);
342 void LoadAndTestP_ExtendSrc(Register dst, Register src); 343 void LoadAndTestP_ExtendSrc(Register dst, Register src);
343 void LoadAndTestP(Register dst, Register src); 344 void LoadAndTestP(Register dst, Register src);
344 345
345 void LoadAndTest32(Register dst, const MemOperand& opnd); 346 void LoadAndTest32(Register dst, const MemOperand& opnd);
346 void LoadAndTestP(Register dst, const MemOperand& opnd); 347 void LoadAndTestP(Register dst, const MemOperand& opnd);
347 348
(...skipping 1535 matching lines...) Expand 10 before | Expand all | Expand 10 after
1883 #define ACCESS_MASM(masm) \ 1884 #define ACCESS_MASM(masm) \
1884 masm->stop(__FILE_LINE__); \ 1885 masm->stop(__FILE_LINE__); \
1885 masm-> 1886 masm->
1886 #else 1887 #else
1887 #define ACCESS_MASM(masm) masm-> 1888 #define ACCESS_MASM(masm) masm->
1888 #endif 1889 #endif
1889 } // namespace internal 1890 } // namespace internal
1890 } // namespace v8 1891 } // namespace v8
1891 1892
1892 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ 1893 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_
OLDNEW
« no previous file with comments | « src/s390/builtins-s390.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698