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

Unified Diff: src/compiler/ia32/code-generator-ia32.cc

Issue 2814753003: [SAB] Validate index before value conversion (Closed)
Patch Set: use byte temp register only for int8/uint8 Created 3 years, 8 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
Index: src/compiler/ia32/code-generator-ia32.cc
diff --git a/src/compiler/ia32/code-generator-ia32.cc b/src/compiler/ia32/code-generator-ia32.cc
index 9dbf19c3f59eb0d0d393040e00916eb5cb9af52e..dabdab3810947a32cc054541b5c68b94e7cffe21 100644
--- a/src/compiler/ia32/code-generator-ia32.cc
+++ b/src/compiler/ia32/code-generator-ia32.cc
@@ -780,7 +780,7 @@ class OutOfLineRecordWrite final : public OutOfLineCode {
Label binop; \
__ bind(&binop); \
__ mov_inst(eax, i.MemoryOperand(1)); \
- __ mov_inst(i.TempRegister(0), Operand(eax)); \
+ __ Move(i.TempRegister(0), eax); \
__ bin_inst(i.TempRegister(0), i.InputRegister(0)); \
__ lock(); \
__ cmpxchg_inst(i.MemoryOperand(1), i.TempRegister(0)); \

Powered by Google App Engine
This is Rietveld 408576698