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

Side by Side Diff: src/x87/assembler-x87.h

Issue 1332703002: X87: [builtins] Unify the various versions of [[Call]] with a Call builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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/x87/assembler-x87.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) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 void jmp(byte* entry, RelocInfo::Mode rmode); 835 void jmp(byte* entry, RelocInfo::Mode rmode);
836 void jmp(Register reg) { jmp(Operand(reg)); } 836 void jmp(Register reg) { jmp(Operand(reg)); }
837 void jmp(const Operand& adr); 837 void jmp(const Operand& adr);
838 void jmp(Handle<Code> code, RelocInfo::Mode rmode); 838 void jmp(Handle<Code> code, RelocInfo::Mode rmode);
839 839
840 // Conditional jumps 840 // Conditional jumps
841 void j(Condition cc, 841 void j(Condition cc,
842 Label* L, 842 Label* L,
843 Label::Distance distance = Label::kFar); 843 Label::Distance distance = Label::kFar);
844 void j(Condition cc, byte* entry, RelocInfo::Mode rmode); 844 void j(Condition cc, byte* entry, RelocInfo::Mode rmode);
845 void j(Condition cc, Handle<Code> code); 845 void j(Condition cc, Handle<Code> code,
846 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET);
846 847
847 // Floating-point operations 848 // Floating-point operations
848 void fld(int i); 849 void fld(int i);
849 void fstp(int i); 850 void fstp(int i);
850 851
851 void fld1(); 852 void fld1();
852 void fldz(); 853 void fldz();
853 void fldpi(); 854 void fldpi();
854 void fldln2(); 855 void fldln2();
855 856
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 private: 1093 private:
1093 Assembler* assembler_; 1094 Assembler* assembler_;
1094 #ifdef DEBUG 1095 #ifdef DEBUG
1095 int space_before_; 1096 int space_before_;
1096 #endif 1097 #endif
1097 }; 1098 };
1098 1099
1099 } } // namespace v8::internal 1100 } } // namespace v8::internal
1100 1101
1101 #endif // V8_X87_ASSEMBLER_X87_H_ 1102 #endif // V8_X87_ASSEMBLER_X87_H_
OLDNEW
« no previous file with comments | « no previous file | src/x87/assembler-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698