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

Unified Diff: src/ia32/assembler-ia32.cc

Issue 525115: Add generated code for ascii string comparison... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/ia32/codegen-ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ia32/assembler-ia32.cc
===================================================================
--- src/ia32/assembler-ia32.cc (revision 3568)
+++ src/ia32/assembler-ia32.cc (working copy)
@@ -1207,6 +1207,14 @@
}
+void Assembler::subb(Register dst, const Operand& src) {
+ EnsureSpace ensure_space(this);
+ last_pc_ = pc_;
+ EMIT(0x2A);
+ emit_operand(dst, src);
+}
+
+
void Assembler::sub(const Operand& dst, Register src) {
EnsureSpace ensure_space(this);
last_pc_ = pc_;
@@ -1592,6 +1600,18 @@
}
+void Assembler::loope(Label* L) {
+ EnsureSpace ensure_space(this);
+ last_pc_ = pc_;
+ // Only short backward jumps.
+ ASSERT(L->is_bound());
+ int offs = L->pos() - pc_offset();
+ const int kLoopInstructionSize = 2;
+ ASSERT(is_int8(offs - kLoopInstructionSize));
+ EMIT(0xE1);
+ EMIT((offs - kLoopInstructionSize) & 0xFF);
+}
+
// FPU instructions
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/ia32/codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698