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

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

Issue 6142004: ARM: Fix comparison of NaN values.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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/arm/lithium-codegen-arm.cc ('k') | src/arm/macro-assembler-arm.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 Register dst2, 236 Register dst2,
237 const MemOperand& src, 237 const MemOperand& src,
238 Condition cond = al); 238 Condition cond = al);
239 239
240 // Store two consecutive registers to two consecutive memory locations. 240 // Store two consecutive registers to two consecutive memory locations.
241 void Strd(Register src1, 241 void Strd(Register src1,
242 Register src2, 242 Register src2,
243 const MemOperand& dst, 243 const MemOperand& dst,
244 Condition cond = al); 244 Condition cond = al);
245 245
246 // Clear FPSCR bits.
247 void ClearFPSCRBits(uint32_t bits_to_clear, Register scratch);
248
246 // --------------------------------------------------------------------------- 249 // ---------------------------------------------------------------------------
247 // Activation frames 250 // Activation frames
248 251
249 void EnterInternalFrame() { EnterFrame(StackFrame::INTERNAL); } 252 void EnterInternalFrame() { EnterFrame(StackFrame::INTERNAL); }
250 void LeaveInternalFrame() { LeaveFrame(StackFrame::INTERNAL); } 253 void LeaveInternalFrame() { LeaveFrame(StackFrame::INTERNAL); }
251 254
252 void EnterConstructFrame() { EnterFrame(StackFrame::CONSTRUCT); } 255 void EnterConstructFrame() { EnterFrame(StackFrame::CONSTRUCT); }
253 void LeaveConstructFrame() { LeaveFrame(StackFrame::CONSTRUCT); } 256 void LeaveConstructFrame() { LeaveFrame(StackFrame::CONSTRUCT); }
254 257
255 // Enter exit frame. 258 // Enter exit frame.
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 823 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
821 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 824 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
822 #else 825 #else
823 #define ACCESS_MASM(masm) masm-> 826 #define ACCESS_MASM(masm) masm->
824 #endif 827 #endif
825 828
826 829
827 } } // namespace v8::internal 830 } } // namespace v8::internal
828 831
829 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 832 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698