Commit 1e369a58 by Michael Schmid

added %= for unique loop labels

parent 79c7b54b
...@@ -138,11 +138,11 @@ EMBB_DEFINE_AND_ASSIGN(4, "") ...@@ -138,11 +138,11 @@ EMBB_DEFINE_AND_ASSIGN(4, "")
register uint64_t e_ins = ((uint64_t)width << 32) | pos; \ register uint64_t e_ins = ((uint64_t)width << 32) | pos; \
__asm__ __volatile__ ("dsync\n\t" \ __asm__ __volatile__ ("dsync\n\t" \
"mov.a %[pointer_to_value], %[add]\n\t" \ "mov.a %[pointer_to_value], %[add]\n\t" \
"loop_:\tld.w %H0, [%2]0\n\t" \ "loop_%=:\tld.w %H0, [%2]0\n\t" \
"insert %L0, %H0, %[value], %A1\n\t" \ "insert %L0, %H0, %[value], %A1\n\t" \
"and %L0, %H0\n\t" \ "and %L0, %H0\n\t" \
"cmpswap.w [%2]0, %A0\n\t" \ "cmpswap.w [%2]0, %A0\n\t" \
"jne %H0, %L0, loop_" \ "jne %H0, %L0, loop_%=" \
: "+d"(e_reg), [e_ins]"+d"(e_ins) \ : "+d"(e_reg), [e_ins]"+d"(e_ins) \
: [pointer_to_value]"a"(pointer_to_value), [value] "r" (value), [add] "d" (add) \ : [pointer_to_value]"a"(pointer_to_value), [value] "r" (value), [add] "d" (add) \
: "memory"); \ : "memory"); \
......
...@@ -131,11 +131,11 @@ EMBB_DEFINE_FETCH_AND_ADD(4, "") ...@@ -131,11 +131,11 @@ EMBB_DEFINE_FETCH_AND_ADD(4, "")
register uint64_t e_mask = ((uint64_t)width << 32) | pos; \ register uint64_t e_mask = ((uint64_t)width << 32) | pos; \
__asm__ __volatile__ ("dsync\n\t" \ __asm__ __volatile__ ("dsync\n\t" \
"mov.a %[pointer_to_value], %[add]\n\t" \ "mov.a %[pointer_to_value], %[add]\n\t" \
"loop_:\tld.w %H0, [%3]0\n\t" \ "loop_%=:\tld.w %H0, [%3]0\n\t" \
"insert %L0, %L0, %[value], %A1\n\t" \ "insert %L0, %L0, %[value], %A1\n\t" \
"add" EMBB_ATOMIC_TC_SIZE_SUFFIX " %L0, %L0, %H0\n\t" \ "add" EMBB_ATOMIC_TC_SIZE_SUFFIX " %L0, %L0, %H0\n\t" \
"cmpswap.w [%3]0, %A0\n\t" \ "cmpswap.w [%3]0, %A0\n\t" \
"jne %H0, %L0, loop_\n\t" \ "jne %H0, %L0, loop_%=\n\t" \
"extr.u %[result], %H0, %A1" \ "extr.u %[result], %H0, %A1" \
: "+d"(e_reg), [e_mask]"+d"(e_mask), [result] "=&d" (result) \ : "+d"(e_reg), [e_mask]"+d"(e_mask), [result] "=&d" (result) \
: [pointer_to_value]"a"(pointer_to_value), [value] "r" (value), [add] "d" (add) \ : [pointer_to_value]"a"(pointer_to_value), [value] "r" (value), [add] "d" (add) \
......
...@@ -123,11 +123,11 @@ EMBB_DEFINE_OR_ASSIGN(4, "") ...@@ -123,11 +123,11 @@ EMBB_DEFINE_OR_ASSIGN(4, "")
register uint64_t e_ins = ((uint64_t)width << 32) | pos; \ register uint64_t e_ins = ((uint64_t)width << 32) | pos; \
__asm__ __volatile__ ("dsync\n\t" \ __asm__ __volatile__ ("dsync\n\t" \
"mov.a %[pointer_to_value], %[add]\n\t" \ "mov.a %[pointer_to_value], %[add]\n\t" \
"loop_:\tld.w %H0, [%2]0\n\t" \ "loop_%=:\tld.w %H0, [%2]0\n\t" \
"insert %L0, %L0, %[value], %A1\n\t" \ "insert %L0, %L0, %[value], %A1\n\t" \
"or %L0, %H0\n\t" \ "or %L0, %H0\n\t" \
"cmpswap.w [%2]0, %A0\n\t" \ "cmpswap.w [%2]0, %A0\n\t" \
"jne %H0, %L0, loop_" \ "jne %H0, %L0, loop_%=" \
: "+d"(e_reg), [e_ins]"+d"(e_ins) \ : "+d"(e_reg), [e_ins]"+d"(e_ins) \
: [pointer_to_value]"a"(pointer_to_value), [value] "r" (value), [add] "d" (add) \ : [pointer_to_value]"a"(pointer_to_value), [value] "r" (value), [add] "d" (add) \
: "memory"); \ : "memory"); \
......
...@@ -126,11 +126,11 @@ EMBB_DEFINE_XOR_ASSIGN(4, "") ...@@ -126,11 +126,11 @@ EMBB_DEFINE_XOR_ASSIGN(4, "")
register uint64_t e_ins = ((uint64_t)width << 32) | pos; \ register uint64_t e_ins = ((uint64_t)width << 32) | pos; \
__asm__ __volatile__ ("dsync\n\t" \ __asm__ __volatile__ ("dsync\n\t" \
"mov.a %[pointer_to_value], %[add]\n\t" \ "mov.a %[pointer_to_value], %[add]\n\t" \
"loop_:\tld.w %H0, [%2]0\n\t" \ "loop_%=:\tld.w %H0, [%2]0\n\t" \
"insert %L0, %L0, %[value], %A1\n\t" \ "insert %L0, %L0, %[value], %A1\n\t" \
"xor %L0, %H0\n\t" \ "xor %L0, %H0\n\t" \
"cmpswap.w [%2]0, %A0\n\t" \ "cmpswap.w [%2]0, %A0\n\t" \
"jne %H0, %L0, loop_" \ "jne %H0, %L0, loop_%=" \
: "+d"(e_reg), [e_ins]"+d"(e_ins) \ : "+d"(e_reg), [e_ins]"+d"(e_ins) \
: [pointer_to_value]"a"(pointer_to_value), [value] "r" (value), [add] "d" (add) \ : [pointer_to_value]"a"(pointer_to_value), [value] "r" (value), [add] "d" (add) \
: "memory"); \ : "memory"); \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment