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

Side by Side Diff: runtime/vm/assembler_ia32.h

Issue 9909024: Fix trigonometric intrinsics: if allocation fails remember to release the loaded value on FPU stack. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_ASSEMBLER_IA32_H_ 5 #ifndef VM_ASSEMBLER_IA32_H_
6 #define VM_ASSEMBLER_IA32_H_ 6 #define VM_ASSEMBLER_IA32_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_ia32.h directly; use assembler.h instead. 9 #error Do not include assembler_ia32.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 395
396 void fnstcw(const Address& dst); 396 void fnstcw(const Address& dst);
397 void fldcw(const Address& src); 397 void fldcw(const Address& src);
398 398
399 void fistpl(const Address& dst); 399 void fistpl(const Address& dst);
400 void fistps(const Address& dst); 400 void fistps(const Address& dst);
401 void fildl(const Address& src); 401 void fildl(const Address& src);
402 void filds(const Address& src); 402 void filds(const Address& src);
403 403
404 void fincstp(); 404 void fincstp();
405 void ffree(const Immediate& index); 405 void ffree(intptr_t value);
406 406
407 void fsin(); 407 void fsin();
408 void fcos(); 408 void fcos();
409 void fptan(); 409 void fptan();
410 410
411 void xchgl(Register dst, Register src); 411 void xchgl(Register dst, Register src);
412 412
413 void cmpl(Register reg, const Immediate& imm); 413 void cmpl(Register reg, const Immediate& imm);
414 void cmpl(Register reg0, Register reg1); 414 void cmpl(Register reg0, Register reg1);
415 void cmpl(Register reg, const Address& address); 415 void cmpl(Register reg, const Address& address);
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 } 614 }
615 615
616 616
617 inline void Assembler::EmitOperandSizeOverride() { 617 inline void Assembler::EmitOperandSizeOverride() {
618 EmitUint8(0x66); 618 EmitUint8(0x66);
619 } 619 }
620 620
621 } // namespace dart 621 } // namespace dart
622 622
623 #endif // VM_ASSEMBLER_IA32_H_ 623 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698