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

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

Issue 6729016: Implemented FastAsciiStringJoin in X64 full codegen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 9 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') | src/x64/full-codegen-x64.cc » ('J')
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 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 void xor_(const Operand& dst, Immediate src) { 1130 void xor_(const Operand& dst, Immediate src) {
1131 immediate_arithmetic_op(0x6, dst, src); 1131 immediate_arithmetic_op(0x6, dst, src);
1132 } 1132 }
1133 1133
1134 // Bit operations. 1134 // Bit operations.
1135 void bt(const Operand& dst, Register src); 1135 void bt(const Operand& dst, Register src);
1136 void bts(const Operand& dst, Register src); 1136 void bts(const Operand& dst, Register src);
1137 1137
1138 // Miscellaneous 1138 // Miscellaneous
1139 void clc(); 1139 void clc();
1140 void cld();
1140 void cpuid(); 1141 void cpuid();
1141 void hlt(); 1142 void hlt();
1142 void int3(); 1143 void int3();
1143 void nop(); 1144 void nop();
1144 void nop(int n); 1145 void nop(int n);
1145 void rdtsc(); 1146 void rdtsc();
1146 void ret(int imm16); 1147 void ret(int imm16);
1147 void setcc(Condition cc, Register reg); 1148 void setcc(Condition cc, Register reg);
1148 1149
1149 // Label operations & relative jumps (PPUM Appendix D) 1150 // Label operations & relative jumps (PPUM Appendix D)
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
1607 private: 1608 private:
1608 Assembler* assembler_; 1609 Assembler* assembler_;
1609 #ifdef DEBUG 1610 #ifdef DEBUG
1610 int space_before_; 1611 int space_before_;
1611 #endif 1612 #endif
1612 }; 1613 };
1613 1614
1614 } } // namespace v8::internal 1615 } } // namespace v8::internal
1615 1616
1616 #endif // V8_X64_ASSEMBLER_X64_H_ 1617 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | src/x64/full-codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698