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

Unified Diff: src/x64/assembler-x64.h

Issue 2623633003: [Atomics] Make Atomics.exchange a builtin using TF (Closed)
Patch Set: [Atomics] Make Atomics.exchange a builtin using TF Created 3 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
Index: src/x64/assembler-x64.h
diff --git a/src/x64/assembler-x64.h b/src/x64/assembler-x64.h
index 08c621c9384f8799075a8be3f410b6df2560342b..0d751e616c965be15b0f7c3a97907fdf0d8f3ad1 100644
--- a/src/x64/assembler-x64.h
+++ b/src/x64/assembler-x64.h
@@ -792,8 +792,8 @@ class Assembler : public AssemblerBase {
// Lock prefix.
void lock();
- void xchgb(Register reg, const Operand& op);
- void xchgw(Register reg, const Operand& op);
+ void xchgb(Register reg, const Operand& op, bool is_signed);
+ void xchgw(Register reg, const Operand& op, bool is_signed);
void cmpxchgb(const Operand& dst, Register src);
void cmpxchgw(const Operand& dst, Register src);

Powered by Google App Engine
This is Rietveld 408576698