From: Gabe Black Date: Sun, 19 Apr 2009 11:56:31 +0000 (-0700) Subject: X86: Implement a locking version of INC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4f2d4f466ad5f5fcb94d42bcc6e5a7549f1eab17;p=gem5.git X86: Implement a locking version of INC. --- diff --git a/src/arch/x86/isa/insts/general_purpose/arithmetic/increment_and_decrement.py b/src/arch/x86/isa/insts/general_purpose/arithmetic/increment_and_decrement.py index 7afd24992..b85dc6328 100644 --- a/src/arch/x86/isa/insts/general_purpose/arithmetic/increment_and_decrement.py +++ b/src/arch/x86/isa/insts/general_purpose/arithmetic/increment_and_decrement.py @@ -74,6 +74,21 @@ def macroop INC_P st t1, seg, riprel, disp }; +def macroop INC_LOCKED_M +{ + ldstl t1, seg, sib, disp + addi t1, t1, 1, flags=(OF, SF, ZF, AF, PF) + stul t1, seg, sib, disp +}; + +def macroop INC_LOCKED_P +{ + rdip t7 + ldstl t1, seg, riprel, disp + addi t1, t1, 1, flags=(OF, SF, ZF, AF, PF) + stul t1, seg, riprel, disp +}; + def macroop DEC_R { subi reg, reg, 1, flags=(OF, SF, ZF, AF, PF)