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

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

Issue 6310018: X64 Crankshaft: Remove relative jump to deoptimization code. Fixes logical e... (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 | « no previous file | src/x64/assembler-x64.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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 void jmp(Register adr); 1127 void jmp(Register adr);
1128 1128
1129 // Jump near absolute indirect (m64) 1129 // Jump near absolute indirect (m64)
1130 void jmp(const Operand& src); 1130 void jmp(const Operand& src);
1131 1131
1132 // Short jump 1132 // Short jump
1133 void jmp(NearLabel* L); 1133 void jmp(NearLabel* L);
1134 1134
1135 // Conditional jumps 1135 // Conditional jumps
1136 void j(Condition cc, Label* L); 1136 void j(Condition cc, Label* L);
1137 void j(Condition cc, byte* entry, RelocInfo::Mode rmode);
1138 void j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode); 1137 void j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode);
1139 1138
1140 // Conditional short jump 1139 // Conditional short jump
1141 void j(Condition cc, NearLabel* L, Hint hint = no_hint); 1140 void j(Condition cc, NearLabel* L, Hint hint = no_hint);
1142 1141
1143 // Floating-point operations 1142 // Floating-point operations
1144 void fld(int i); 1143 void fld(int i);
1145 1144
1146 void fld1(); 1145 void fld1();
1147 void fldz(); 1146 void fldz();
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
1536 private: 1535 private:
1537 Assembler* assembler_; 1536 Assembler* assembler_;
1538 #ifdef DEBUG 1537 #ifdef DEBUG
1539 int space_before_; 1538 int space_before_;
1540 #endif 1539 #endif
1541 }; 1540 };
1542 1541
1543 } } // namespace v8::internal 1542 } } // namespace v8::internal
1544 1543
1545 #endif // V8_X64_ASSEMBLER_X64_H_ 1544 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698