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

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

Issue 548002: Add missing instructions to the IA-32 disasembler... (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 3576)
+++ src/ia32/assembler-ia32.cc (working copy)
@@ -575,6 +575,7 @@
void Assembler::mov_b(Register dst, const Operand& src) {
+ ASSERT(dst.code() < 4);
EnsureSpace ensure_space(this);
last_pc_ = pc_;
EMIT(0x8A);
@@ -592,6 +593,7 @@
void Assembler::mov_b(const Operand& dst, Register src) {
+ ASSERT(src.code() < 4);
EnsureSpace ensure_space(this);
last_pc_ = pc_;
EMIT(0x88);
@@ -1208,6 +1210,7 @@
void Assembler::subb(Register dst, const Operand& src) {
+ ASSERT(dst.code() < 4);
EnsureSpace ensure_space(this);
last_pc_ = pc_;
EMIT(0x2A);
@@ -1600,21 +1603,8 @@
}
-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
-
void Assembler::fld(int i) {
EnsureSpace ensure_space(this);
last_pc_ = pc_;
« 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