diff --git a/llvm/test/Instrumentation/SanitizerBinaryMetadata/atomics.ll b/llvm/test/Instrumentation/SanitizerBinaryMetadata/atomics.ll index 5511f2286ed52..06893b21aa6e1 100644 --- a/llvm/test/Instrumentation/SanitizerBinaryMetadata/atomics.ll +++ b/llvm/test/Instrumentation/SanitizerBinaryMetadata/atomics.ll @@ -3,2025 +3,2025 @@ ; Check that atomic memory operations receive PC sections metadata. target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" -define i8 @atomic8_load_unordered(i8* %a) nounwind uwtable { +define i8 @atomic8_load_unordered(ptr %a) nounwind uwtable { entry: - %0 = load atomic i8, i8* %a unordered, align 1 + %0 = load atomic i8, ptr %a unordered, align 1 ret i8 %0 } ; CHECK-LABEL: atomic8_load_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i8 @atomic8_load_monotonic(i8* %a) nounwind uwtable { +define i8 @atomic8_load_monotonic(ptr %a) nounwind uwtable { entry: - %0 = load atomic i8, i8* %a monotonic, align 1 + %0 = load atomic i8, ptr %a monotonic, align 1 ret i8 %0 } ; CHECK-LABEL: atomic8_load_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i8 @atomic8_load_acquire(i8* %a) nounwind uwtable { +define i8 @atomic8_load_acquire(ptr %a) nounwind uwtable { entry: - %0 = load atomic i8, i8* %a acquire, align 1 + %0 = load atomic i8, ptr %a acquire, align 1 ret i8 %0 } ; CHECK-LABEL: atomic8_load_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i8 @atomic8_load_seq_cst(i8* %a) nounwind uwtable { +define i8 @atomic8_load_seq_cst(ptr %a) nounwind uwtable { entry: - %0 = load atomic i8, i8* %a seq_cst, align 1 + %0 = load atomic i8, ptr %a seq_cst, align 1 ret i8 %0 } ; CHECK-LABEL: atomic8_load_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_store_unordered(i8* %a) nounwind uwtable { +define void @atomic8_store_unordered(ptr %a) nounwind uwtable { entry: - store atomic i8 0, i8* %a unordered, align 1 + store atomic i8 0, ptr %a unordered, align 1 ret void } ; CHECK-LABEL: atomic8_store_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_store_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_store_monotonic(ptr %a) nounwind uwtable { entry: - store atomic i8 0, i8* %a monotonic, align 1 + store atomic i8 0, ptr %a monotonic, align 1 ret void } ; CHECK-LABEL: atomic8_store_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_store_release(i8* %a) nounwind uwtable { +define void @atomic8_store_release(ptr %a) nounwind uwtable { entry: - store atomic i8 0, i8* %a release, align 1 + store atomic i8 0, ptr %a release, align 1 ret void } ; CHECK-LABEL: atomic8_store_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_store_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_store_seq_cst(ptr %a) nounwind uwtable { entry: - store atomic i8 0, i8* %a seq_cst, align 1 + store atomic i8 0, ptr %a seq_cst, align 1 ret void } ; CHECK-LABEL: atomic8_store_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xchg_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_xchg_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i8* %a, i8 0 monotonic + atomicrmw xchg ptr %a, i8 0 monotonic ret void } ; CHECK-LABEL: atomic8_xchg_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_add_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_add_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw add i8* %a, i8 0 monotonic + atomicrmw add ptr %a, i8 0 monotonic ret void } ; CHECK-LABEL: atomic8_add_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_sub_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_sub_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw sub i8* %a, i8 0 monotonic + atomicrmw sub ptr %a, i8 0 monotonic ret void } ; CHECK-LABEL: atomic8_sub_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_and_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_and_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw and i8* %a, i8 0 monotonic + atomicrmw and ptr %a, i8 0 monotonic ret void } ; CHECK-LABEL: atomic8_and_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_or_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_or_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw or i8* %a, i8 0 monotonic + atomicrmw or ptr %a, i8 0 monotonic ret void } ; CHECK-LABEL: atomic8_or_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xor_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_xor_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xor i8* %a, i8 0 monotonic + atomicrmw xor ptr %a, i8 0 monotonic ret void } ; CHECK-LABEL: atomic8_xor_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_nand_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_nand_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw nand i8* %a, i8 0 monotonic + atomicrmw nand ptr %a, i8 0 monotonic ret void } ; CHECK-LABEL: atomic8_nand_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xchg_acquire(i8* %a) nounwind uwtable { +define void @atomic8_xchg_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i8* %a, i8 0 acquire + atomicrmw xchg ptr %a, i8 0 acquire ret void } ; CHECK-LABEL: atomic8_xchg_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_add_acquire(i8* %a) nounwind uwtable { +define void @atomic8_add_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw add i8* %a, i8 0 acquire + atomicrmw add ptr %a, i8 0 acquire ret void } ; CHECK-LABEL: atomic8_add_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_sub_acquire(i8* %a) nounwind uwtable { +define void @atomic8_sub_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw sub i8* %a, i8 0 acquire + atomicrmw sub ptr %a, i8 0 acquire ret void } ; CHECK-LABEL: atomic8_sub_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_and_acquire(i8* %a) nounwind uwtable { +define void @atomic8_and_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw and i8* %a, i8 0 acquire + atomicrmw and ptr %a, i8 0 acquire ret void } ; CHECK-LABEL: atomic8_and_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_or_acquire(i8* %a) nounwind uwtable { +define void @atomic8_or_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw or i8* %a, i8 0 acquire + atomicrmw or ptr %a, i8 0 acquire ret void } ; CHECK-LABEL: atomic8_or_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xor_acquire(i8* %a) nounwind uwtable { +define void @atomic8_xor_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xor i8* %a, i8 0 acquire + atomicrmw xor ptr %a, i8 0 acquire ret void } ; CHECK-LABEL: atomic8_xor_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_nand_acquire(i8* %a) nounwind uwtable { +define void @atomic8_nand_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw nand i8* %a, i8 0 acquire + atomicrmw nand ptr %a, i8 0 acquire ret void } ; CHECK-LABEL: atomic8_nand_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xchg_release(i8* %a) nounwind uwtable { +define void @atomic8_xchg_release(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i8* %a, i8 0 release + atomicrmw xchg ptr %a, i8 0 release ret void } ; CHECK-LABEL: atomic8_xchg_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_add_release(i8* %a) nounwind uwtable { +define void @atomic8_add_release(ptr %a) nounwind uwtable { entry: - atomicrmw add i8* %a, i8 0 release + atomicrmw add ptr %a, i8 0 release ret void } ; CHECK-LABEL: atomic8_add_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_sub_release(i8* %a) nounwind uwtable { +define void @atomic8_sub_release(ptr %a) nounwind uwtable { entry: - atomicrmw sub i8* %a, i8 0 release + atomicrmw sub ptr %a, i8 0 release ret void } ; CHECK-LABEL: atomic8_sub_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_and_release(i8* %a) nounwind uwtable { +define void @atomic8_and_release(ptr %a) nounwind uwtable { entry: - atomicrmw and i8* %a, i8 0 release + atomicrmw and ptr %a, i8 0 release ret void } ; CHECK-LABEL: atomic8_and_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_or_release(i8* %a) nounwind uwtable { +define void @atomic8_or_release(ptr %a) nounwind uwtable { entry: - atomicrmw or i8* %a, i8 0 release + atomicrmw or ptr %a, i8 0 release ret void } ; CHECK-LABEL: atomic8_or_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xor_release(i8* %a) nounwind uwtable { +define void @atomic8_xor_release(ptr %a) nounwind uwtable { entry: - atomicrmw xor i8* %a, i8 0 release + atomicrmw xor ptr %a, i8 0 release ret void } ; CHECK-LABEL: atomic8_xor_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_nand_release(i8* %a) nounwind uwtable { +define void @atomic8_nand_release(ptr %a) nounwind uwtable { entry: - atomicrmw nand i8* %a, i8 0 release + atomicrmw nand ptr %a, i8 0 release ret void } ; CHECK-LABEL: atomic8_nand_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xchg_acq_rel(i8* %a) nounwind uwtable { +define void @atomic8_xchg_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i8* %a, i8 0 acq_rel + atomicrmw xchg ptr %a, i8 0 acq_rel ret void } ; CHECK-LABEL: atomic8_xchg_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_add_acq_rel(i8* %a) nounwind uwtable { +define void @atomic8_add_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw add i8* %a, i8 0 acq_rel + atomicrmw add ptr %a, i8 0 acq_rel ret void } ; CHECK-LABEL: atomic8_add_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_sub_acq_rel(i8* %a) nounwind uwtable { +define void @atomic8_sub_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw sub i8* %a, i8 0 acq_rel + atomicrmw sub ptr %a, i8 0 acq_rel ret void } ; CHECK-LABEL: atomic8_sub_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_and_acq_rel(i8* %a) nounwind uwtable { +define void @atomic8_and_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw and i8* %a, i8 0 acq_rel + atomicrmw and ptr %a, i8 0 acq_rel ret void } ; CHECK-LABEL: atomic8_and_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_or_acq_rel(i8* %a) nounwind uwtable { +define void @atomic8_or_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw or i8* %a, i8 0 acq_rel + atomicrmw or ptr %a, i8 0 acq_rel ret void } ; CHECK-LABEL: atomic8_or_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xor_acq_rel(i8* %a) nounwind uwtable { +define void @atomic8_xor_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xor i8* %a, i8 0 acq_rel + atomicrmw xor ptr %a, i8 0 acq_rel ret void } ; CHECK-LABEL: atomic8_xor_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_nand_acq_rel(i8* %a) nounwind uwtable { +define void @atomic8_nand_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw nand i8* %a, i8 0 acq_rel + atomicrmw nand ptr %a, i8 0 acq_rel ret void } ; CHECK-LABEL: atomic8_nand_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xchg_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_xchg_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i8* %a, i8 0 seq_cst + atomicrmw xchg ptr %a, i8 0 seq_cst ret void } ; CHECK-LABEL: atomic8_xchg_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_add_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_add_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw add i8* %a, i8 0 seq_cst + atomicrmw add ptr %a, i8 0 seq_cst ret void } ; CHECK-LABEL: atomic8_add_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_sub_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_sub_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw sub i8* %a, i8 0 seq_cst + atomicrmw sub ptr %a, i8 0 seq_cst ret void } ; CHECK-LABEL: atomic8_sub_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_and_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_and_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw and i8* %a, i8 0 seq_cst + atomicrmw and ptr %a, i8 0 seq_cst ret void } ; CHECK-LABEL: atomic8_and_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_or_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_or_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw or i8* %a, i8 0 seq_cst + atomicrmw or ptr %a, i8 0 seq_cst ret void } ; CHECK-LABEL: atomic8_or_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_xor_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_xor_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xor i8* %a, i8 0 seq_cst + atomicrmw xor ptr %a, i8 0 seq_cst ret void } ; CHECK-LABEL: atomic8_xor_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_nand_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_nand_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw nand i8* %a, i8 0 seq_cst + atomicrmw nand ptr %a, i8 0 seq_cst ret void } ; CHECK-LABEL: atomic8_nand_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic8_cas_monotonic(i8* %a) nounwind uwtable { +define void @atomic8_cas_monotonic(ptr %a) nounwind uwtable { entry: - cmpxchg i8* %a, i8 0, i8 1 monotonic monotonic - cmpxchg i8* %a, i8 0, i8 1 monotonic acquire - cmpxchg i8* %a, i8 0, i8 1 monotonic seq_cst + cmpxchg ptr %a, i8 0, i8 1 monotonic monotonic + cmpxchg ptr %a, i8 0, i8 1 monotonic acquire + cmpxchg ptr %a, i8 0, i8 1 monotonic seq_cst ret void } ; CHECK-LABEL: atomic8_cas_monotonic{{.*}}!pcsections !0 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 monotonic monotonic, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 monotonic acquire, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 monotonic seq_cst, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 monotonic monotonic, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 monotonic acquire, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 monotonic seq_cst, align 1, !pcsections !2 -define void @atomic8_cas_acquire(i8* %a) nounwind uwtable { +define void @atomic8_cas_acquire(ptr %a) nounwind uwtable { entry: - cmpxchg i8* %a, i8 0, i8 1 acquire monotonic - cmpxchg i8* %a, i8 0, i8 1 acquire acquire - cmpxchg i8* %a, i8 0, i8 1 acquire seq_cst + cmpxchg ptr %a, i8 0, i8 1 acquire monotonic + cmpxchg ptr %a, i8 0, i8 1 acquire acquire + cmpxchg ptr %a, i8 0, i8 1 acquire seq_cst ret void } ; CHECK-LABEL: atomic8_cas_acquire{{.*}}!pcsections !0 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 acquire monotonic, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 acquire acquire, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 acquire seq_cst, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 acquire monotonic, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 acquire acquire, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 acquire seq_cst, align 1, !pcsections !2 -define void @atomic8_cas_release(i8* %a) nounwind uwtable { +define void @atomic8_cas_release(ptr %a) nounwind uwtable { entry: - cmpxchg i8* %a, i8 0, i8 1 release monotonic - cmpxchg i8* %a, i8 0, i8 1 release acquire - cmpxchg i8* %a, i8 0, i8 1 release seq_cst + cmpxchg ptr %a, i8 0, i8 1 release monotonic + cmpxchg ptr %a, i8 0, i8 1 release acquire + cmpxchg ptr %a, i8 0, i8 1 release seq_cst ret void } ; CHECK-LABEL: atomic8_cas_release{{.*}}!pcsections !0 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 release monotonic, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 release acquire, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 release seq_cst, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 release monotonic, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 release acquire, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 release seq_cst, align 1, !pcsections !2 -define void @atomic8_cas_acq_rel(i8* %a) nounwind uwtable { +define void @atomic8_cas_acq_rel(ptr %a) nounwind uwtable { entry: - cmpxchg i8* %a, i8 0, i8 1 acq_rel monotonic - cmpxchg i8* %a, i8 0, i8 1 acq_rel acquire - cmpxchg i8* %a, i8 0, i8 1 acq_rel seq_cst + cmpxchg ptr %a, i8 0, i8 1 acq_rel monotonic + cmpxchg ptr %a, i8 0, i8 1 acq_rel acquire + cmpxchg ptr %a, i8 0, i8 1 acq_rel seq_cst ret void } ; CHECK-LABEL: atomic8_cas_acq_rel{{.*}}!pcsections !0 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 acq_rel monotonic, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 acq_rel acquire, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 acq_rel seq_cst, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 acq_rel monotonic, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 acq_rel acquire, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 acq_rel seq_cst, align 1, !pcsections !2 -define void @atomic8_cas_seq_cst(i8* %a) nounwind uwtable { +define void @atomic8_cas_seq_cst(ptr %a) nounwind uwtable { entry: - cmpxchg i8* %a, i8 0, i8 1 seq_cst monotonic - cmpxchg i8* %a, i8 0, i8 1 seq_cst acquire - cmpxchg i8* %a, i8 0, i8 1 seq_cst seq_cst + cmpxchg ptr %a, i8 0, i8 1 seq_cst monotonic + cmpxchg ptr %a, i8 0, i8 1 seq_cst acquire + cmpxchg ptr %a, i8 0, i8 1 seq_cst seq_cst ret void } ; CHECK-LABEL: atomic8_cas_seq_cst{{.*}}!pcsections !0 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 seq_cst monotonic, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 seq_cst acquire, align 1, !pcsections !2 -; CHECK: cmpxchg i8* %a, i8 0, i8 1 seq_cst seq_cst, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 seq_cst monotonic, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 seq_cst acquire, align 1, !pcsections !2 +; CHECK: cmpxchg ptr %a, i8 0, i8 1 seq_cst seq_cst, align 1, !pcsections !2 -define i16 @atomic16_load_unordered(i16* %a) nounwind uwtable { +define i16 @atomic16_load_unordered(ptr %a) nounwind uwtable { entry: - %0 = load atomic i16, i16* %a unordered, align 2 + %0 = load atomic i16, ptr %a unordered, align 2 ret i16 %0 } ; CHECK-LABEL: atomic16_load_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i16 @atomic16_load_monotonic(i16* %a) nounwind uwtable { +define i16 @atomic16_load_monotonic(ptr %a) nounwind uwtable { entry: - %0 = load atomic i16, i16* %a monotonic, align 2 + %0 = load atomic i16, ptr %a monotonic, align 2 ret i16 %0 } ; CHECK-LABEL: atomic16_load_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i16 @atomic16_load_acquire(i16* %a) nounwind uwtable { +define i16 @atomic16_load_acquire(ptr %a) nounwind uwtable { entry: - %0 = load atomic i16, i16* %a acquire, align 2 + %0 = load atomic i16, ptr %a acquire, align 2 ret i16 %0 } ; CHECK-LABEL: atomic16_load_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i16 @atomic16_load_seq_cst(i16* %a) nounwind uwtable { +define i16 @atomic16_load_seq_cst(ptr %a) nounwind uwtable { entry: - %0 = load atomic i16, i16* %a seq_cst, align 2 + %0 = load atomic i16, ptr %a seq_cst, align 2 ret i16 %0 } ; CHECK-LABEL: atomic16_load_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_store_unordered(i16* %a) nounwind uwtable { +define void @atomic16_store_unordered(ptr %a) nounwind uwtable { entry: - store atomic i16 0, i16* %a unordered, align 2 + store atomic i16 0, ptr %a unordered, align 2 ret void } ; CHECK-LABEL: atomic16_store_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_store_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_store_monotonic(ptr %a) nounwind uwtable { entry: - store atomic i16 0, i16* %a monotonic, align 2 + store atomic i16 0, ptr %a monotonic, align 2 ret void } ; CHECK-LABEL: atomic16_store_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_store_release(i16* %a) nounwind uwtable { +define void @atomic16_store_release(ptr %a) nounwind uwtable { entry: - store atomic i16 0, i16* %a release, align 2 + store atomic i16 0, ptr %a release, align 2 ret void } ; CHECK-LABEL: atomic16_store_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_store_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_store_seq_cst(ptr %a) nounwind uwtable { entry: - store atomic i16 0, i16* %a seq_cst, align 2 + store atomic i16 0, ptr %a seq_cst, align 2 ret void } ; CHECK-LABEL: atomic16_store_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xchg_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_xchg_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i16* %a, i16 0 monotonic + atomicrmw xchg ptr %a, i16 0 monotonic ret void } ; CHECK-LABEL: atomic16_xchg_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_add_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_add_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw add i16* %a, i16 0 monotonic + atomicrmw add ptr %a, i16 0 monotonic ret void } ; CHECK-LABEL: atomic16_add_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_sub_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_sub_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw sub i16* %a, i16 0 monotonic + atomicrmw sub ptr %a, i16 0 monotonic ret void } ; CHECK-LABEL: atomic16_sub_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_and_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_and_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw and i16* %a, i16 0 monotonic + atomicrmw and ptr %a, i16 0 monotonic ret void } ; CHECK-LABEL: atomic16_and_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_or_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_or_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw or i16* %a, i16 0 monotonic + atomicrmw or ptr %a, i16 0 monotonic ret void } ; CHECK-LABEL: atomic16_or_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xor_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_xor_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xor i16* %a, i16 0 monotonic + atomicrmw xor ptr %a, i16 0 monotonic ret void } ; CHECK-LABEL: atomic16_xor_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_nand_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_nand_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw nand i16* %a, i16 0 monotonic + atomicrmw nand ptr %a, i16 0 monotonic ret void } ; CHECK-LABEL: atomic16_nand_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xchg_acquire(i16* %a) nounwind uwtable { +define void @atomic16_xchg_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i16* %a, i16 0 acquire + atomicrmw xchg ptr %a, i16 0 acquire ret void } ; CHECK-LABEL: atomic16_xchg_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_add_acquire(i16* %a) nounwind uwtable { +define void @atomic16_add_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw add i16* %a, i16 0 acquire + atomicrmw add ptr %a, i16 0 acquire ret void } ; CHECK-LABEL: atomic16_add_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_sub_acquire(i16* %a) nounwind uwtable { +define void @atomic16_sub_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw sub i16* %a, i16 0 acquire + atomicrmw sub ptr %a, i16 0 acquire ret void } ; CHECK-LABEL: atomic16_sub_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_and_acquire(i16* %a) nounwind uwtable { +define void @atomic16_and_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw and i16* %a, i16 0 acquire + atomicrmw and ptr %a, i16 0 acquire ret void } ; CHECK-LABEL: atomic16_and_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_or_acquire(i16* %a) nounwind uwtable { +define void @atomic16_or_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw or i16* %a, i16 0 acquire + atomicrmw or ptr %a, i16 0 acquire ret void } ; CHECK-LABEL: atomic16_or_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xor_acquire(i16* %a) nounwind uwtable { +define void @atomic16_xor_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xor i16* %a, i16 0 acquire + atomicrmw xor ptr %a, i16 0 acquire ret void } ; CHECK-LABEL: atomic16_xor_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_nand_acquire(i16* %a) nounwind uwtable { +define void @atomic16_nand_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw nand i16* %a, i16 0 acquire + atomicrmw nand ptr %a, i16 0 acquire ret void } ; CHECK-LABEL: atomic16_nand_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xchg_release(i16* %a) nounwind uwtable { +define void @atomic16_xchg_release(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i16* %a, i16 0 release + atomicrmw xchg ptr %a, i16 0 release ret void } ; CHECK-LABEL: atomic16_xchg_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_add_release(i16* %a) nounwind uwtable { +define void @atomic16_add_release(ptr %a) nounwind uwtable { entry: - atomicrmw add i16* %a, i16 0 release + atomicrmw add ptr %a, i16 0 release ret void } ; CHECK-LABEL: atomic16_add_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_sub_release(i16* %a) nounwind uwtable { +define void @atomic16_sub_release(ptr %a) nounwind uwtable { entry: - atomicrmw sub i16* %a, i16 0 release + atomicrmw sub ptr %a, i16 0 release ret void } ; CHECK-LABEL: atomic16_sub_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_and_release(i16* %a) nounwind uwtable { +define void @atomic16_and_release(ptr %a) nounwind uwtable { entry: - atomicrmw and i16* %a, i16 0 release + atomicrmw and ptr %a, i16 0 release ret void } ; CHECK-LABEL: atomic16_and_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_or_release(i16* %a) nounwind uwtable { +define void @atomic16_or_release(ptr %a) nounwind uwtable { entry: - atomicrmw or i16* %a, i16 0 release + atomicrmw or ptr %a, i16 0 release ret void } ; CHECK-LABEL: atomic16_or_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xor_release(i16* %a) nounwind uwtable { +define void @atomic16_xor_release(ptr %a) nounwind uwtable { entry: - atomicrmw xor i16* %a, i16 0 release + atomicrmw xor ptr %a, i16 0 release ret void } ; CHECK-LABEL: atomic16_xor_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_nand_release(i16* %a) nounwind uwtable { +define void @atomic16_nand_release(ptr %a) nounwind uwtable { entry: - atomicrmw nand i16* %a, i16 0 release + atomicrmw nand ptr %a, i16 0 release ret void } ; CHECK-LABEL: atomic16_nand_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xchg_acq_rel(i16* %a) nounwind uwtable { +define void @atomic16_xchg_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i16* %a, i16 0 acq_rel + atomicrmw xchg ptr %a, i16 0 acq_rel ret void } ; CHECK-LABEL: atomic16_xchg_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_add_acq_rel(i16* %a) nounwind uwtable { +define void @atomic16_add_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw add i16* %a, i16 0 acq_rel + atomicrmw add ptr %a, i16 0 acq_rel ret void } ; CHECK-LABEL: atomic16_add_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_sub_acq_rel(i16* %a) nounwind uwtable { +define void @atomic16_sub_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw sub i16* %a, i16 0 acq_rel + atomicrmw sub ptr %a, i16 0 acq_rel ret void } ; CHECK-LABEL: atomic16_sub_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_and_acq_rel(i16* %a) nounwind uwtable { +define void @atomic16_and_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw and i16* %a, i16 0 acq_rel + atomicrmw and ptr %a, i16 0 acq_rel ret void } ; CHECK-LABEL: atomic16_and_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_or_acq_rel(i16* %a) nounwind uwtable { +define void @atomic16_or_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw or i16* %a, i16 0 acq_rel + atomicrmw or ptr %a, i16 0 acq_rel ret void } ; CHECK-LABEL: atomic16_or_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xor_acq_rel(i16* %a) nounwind uwtable { +define void @atomic16_xor_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xor i16* %a, i16 0 acq_rel + atomicrmw xor ptr %a, i16 0 acq_rel ret void } ; CHECK-LABEL: atomic16_xor_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_nand_acq_rel(i16* %a) nounwind uwtable { +define void @atomic16_nand_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw nand i16* %a, i16 0 acq_rel + atomicrmw nand ptr %a, i16 0 acq_rel ret void } ; CHECK-LABEL: atomic16_nand_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xchg_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_xchg_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i16* %a, i16 0 seq_cst + atomicrmw xchg ptr %a, i16 0 seq_cst ret void } ; CHECK-LABEL: atomic16_xchg_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_add_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_add_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw add i16* %a, i16 0 seq_cst + atomicrmw add ptr %a, i16 0 seq_cst ret void } ; CHECK-LABEL: atomic16_add_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_sub_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_sub_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw sub i16* %a, i16 0 seq_cst + atomicrmw sub ptr %a, i16 0 seq_cst ret void } ; CHECK-LABEL: atomic16_sub_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_and_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_and_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw and i16* %a, i16 0 seq_cst + atomicrmw and ptr %a, i16 0 seq_cst ret void } ; CHECK-LABEL: atomic16_and_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_or_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_or_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw or i16* %a, i16 0 seq_cst + atomicrmw or ptr %a, i16 0 seq_cst ret void } ; CHECK-LABEL: atomic16_or_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_xor_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_xor_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xor i16* %a, i16 0 seq_cst + atomicrmw xor ptr %a, i16 0 seq_cst ret void } ; CHECK-LABEL: atomic16_xor_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_nand_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_nand_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw nand i16* %a, i16 0 seq_cst + atomicrmw nand ptr %a, i16 0 seq_cst ret void } ; CHECK-LABEL: atomic16_nand_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic16_cas_monotonic(i16* %a) nounwind uwtable { +define void @atomic16_cas_monotonic(ptr %a) nounwind uwtable { entry: - cmpxchg i16* %a, i16 0, i16 1 monotonic monotonic - cmpxchg i16* %a, i16 0, i16 1 monotonic acquire - cmpxchg i16* %a, i16 0, i16 1 monotonic seq_cst + cmpxchg ptr %a, i16 0, i16 1 monotonic monotonic + cmpxchg ptr %a, i16 0, i16 1 monotonic acquire + cmpxchg ptr %a, i16 0, i16 1 monotonic seq_cst ret void } ; CHECK-LABEL: atomic16_cas_monotonic{{.*}}!pcsections !0 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 monotonic monotonic, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 monotonic acquire, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 monotonic seq_cst, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 monotonic monotonic, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 monotonic acquire, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 monotonic seq_cst, align 2, !pcsections !2 -define void @atomic16_cas_acquire(i16* %a) nounwind uwtable { +define void @atomic16_cas_acquire(ptr %a) nounwind uwtable { entry: - cmpxchg i16* %a, i16 0, i16 1 acquire monotonic - cmpxchg i16* %a, i16 0, i16 1 acquire acquire - cmpxchg i16* %a, i16 0, i16 1 acquire seq_cst + cmpxchg ptr %a, i16 0, i16 1 acquire monotonic + cmpxchg ptr %a, i16 0, i16 1 acquire acquire + cmpxchg ptr %a, i16 0, i16 1 acquire seq_cst ret void } ; CHECK-LABEL: atomic16_cas_acquire{{.*}}!pcsections !0 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 acquire monotonic, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 acquire acquire, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 acquire seq_cst, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 acquire monotonic, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 acquire acquire, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 acquire seq_cst, align 2, !pcsections !2 -define void @atomic16_cas_release(i16* %a) nounwind uwtable { +define void @atomic16_cas_release(ptr %a) nounwind uwtable { entry: - cmpxchg i16* %a, i16 0, i16 1 release monotonic - cmpxchg i16* %a, i16 0, i16 1 release acquire - cmpxchg i16* %a, i16 0, i16 1 release seq_cst + cmpxchg ptr %a, i16 0, i16 1 release monotonic + cmpxchg ptr %a, i16 0, i16 1 release acquire + cmpxchg ptr %a, i16 0, i16 1 release seq_cst ret void } ; CHECK-LABEL: atomic16_cas_release{{.*}}!pcsections !0 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 release monotonic, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 release acquire, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 release seq_cst, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 release monotonic, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 release acquire, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 release seq_cst, align 2, !pcsections !2 -define void @atomic16_cas_acq_rel(i16* %a) nounwind uwtable { +define void @atomic16_cas_acq_rel(ptr %a) nounwind uwtable { entry: - cmpxchg i16* %a, i16 0, i16 1 acq_rel monotonic - cmpxchg i16* %a, i16 0, i16 1 acq_rel acquire - cmpxchg i16* %a, i16 0, i16 1 acq_rel seq_cst + cmpxchg ptr %a, i16 0, i16 1 acq_rel monotonic + cmpxchg ptr %a, i16 0, i16 1 acq_rel acquire + cmpxchg ptr %a, i16 0, i16 1 acq_rel seq_cst ret void } ; CHECK-LABEL: atomic16_cas_acq_rel{{.*}}!pcsections !0 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 acq_rel monotonic, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 acq_rel acquire, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 acq_rel seq_cst, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 acq_rel monotonic, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 acq_rel acquire, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 acq_rel seq_cst, align 2, !pcsections !2 -define void @atomic16_cas_seq_cst(i16* %a) nounwind uwtable { +define void @atomic16_cas_seq_cst(ptr %a) nounwind uwtable { entry: - cmpxchg i16* %a, i16 0, i16 1 seq_cst monotonic - cmpxchg i16* %a, i16 0, i16 1 seq_cst acquire - cmpxchg i16* %a, i16 0, i16 1 seq_cst seq_cst + cmpxchg ptr %a, i16 0, i16 1 seq_cst monotonic + cmpxchg ptr %a, i16 0, i16 1 seq_cst acquire + cmpxchg ptr %a, i16 0, i16 1 seq_cst seq_cst ret void } ; CHECK-LABEL: atomic16_cas_seq_cst{{.*}}!pcsections !0 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 seq_cst monotonic, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 seq_cst acquire, align 2, !pcsections !2 -; CHECK: cmpxchg i16* %a, i16 0, i16 1 seq_cst seq_cst, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 seq_cst monotonic, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 seq_cst acquire, align 2, !pcsections !2 +; CHECK: cmpxchg ptr %a, i16 0, i16 1 seq_cst seq_cst, align 2, !pcsections !2 -define i32 @atomic32_load_unordered(i32* %a) nounwind uwtable { +define i32 @atomic32_load_unordered(ptr %a) nounwind uwtable { entry: - %0 = load atomic i32, i32* %a unordered, align 4 + %0 = load atomic i32, ptr %a unordered, align 4 ret i32 %0 } ; CHECK-LABEL: atomic32_load_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i32 @atomic32_load_monotonic(i32* %a) nounwind uwtable { +define i32 @atomic32_load_monotonic(ptr %a) nounwind uwtable { entry: - %0 = load atomic i32, i32* %a monotonic, align 4 + %0 = load atomic i32, ptr %a monotonic, align 4 ret i32 %0 } ; CHECK-LABEL: atomic32_load_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i32 @atomic32_load_acquire(i32* %a) nounwind uwtable { +define i32 @atomic32_load_acquire(ptr %a) nounwind uwtable { entry: - %0 = load atomic i32, i32* %a acquire, align 4 + %0 = load atomic i32, ptr %a acquire, align 4 ret i32 %0 } ; CHECK-LABEL: atomic32_load_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i32 @atomic32_load_seq_cst(i32* %a) nounwind uwtable { +define i32 @atomic32_load_seq_cst(ptr %a) nounwind uwtable { entry: - %0 = load atomic i32, i32* %a seq_cst, align 4 + %0 = load atomic i32, ptr %a seq_cst, align 4 ret i32 %0 } ; CHECK-LABEL: atomic32_load_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_store_unordered(i32* %a) nounwind uwtable { +define void @atomic32_store_unordered(ptr %a) nounwind uwtable { entry: - store atomic i32 0, i32* %a unordered, align 4 + store atomic i32 0, ptr %a unordered, align 4 ret void } ; CHECK-LABEL: atomic32_store_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_store_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_store_monotonic(ptr %a) nounwind uwtable { entry: - store atomic i32 0, i32* %a monotonic, align 4 + store atomic i32 0, ptr %a monotonic, align 4 ret void } ; CHECK-LABEL: atomic32_store_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_store_release(i32* %a) nounwind uwtable { +define void @atomic32_store_release(ptr %a) nounwind uwtable { entry: - store atomic i32 0, i32* %a release, align 4 + store atomic i32 0, ptr %a release, align 4 ret void } ; CHECK-LABEL: atomic32_store_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_store_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_store_seq_cst(ptr %a) nounwind uwtable { entry: - store atomic i32 0, i32* %a seq_cst, align 4 + store atomic i32 0, ptr %a seq_cst, align 4 ret void } ; CHECK-LABEL: atomic32_store_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xchg_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_xchg_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i32* %a, i32 0 monotonic + atomicrmw xchg ptr %a, i32 0 monotonic ret void } ; CHECK-LABEL: atomic32_xchg_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_add_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_add_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw add i32* %a, i32 0 monotonic + atomicrmw add ptr %a, i32 0 monotonic ret void } ; CHECK-LABEL: atomic32_add_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_sub_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_sub_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw sub i32* %a, i32 0 monotonic + atomicrmw sub ptr %a, i32 0 monotonic ret void } ; CHECK-LABEL: atomic32_sub_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_and_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_and_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw and i32* %a, i32 0 monotonic + atomicrmw and ptr %a, i32 0 monotonic ret void } ; CHECK-LABEL: atomic32_and_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_or_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_or_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw or i32* %a, i32 0 monotonic + atomicrmw or ptr %a, i32 0 monotonic ret void } ; CHECK-LABEL: atomic32_or_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xor_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_xor_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xor i32* %a, i32 0 monotonic + atomicrmw xor ptr %a, i32 0 monotonic ret void } ; CHECK-LABEL: atomic32_xor_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_nand_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_nand_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw nand i32* %a, i32 0 monotonic + atomicrmw nand ptr %a, i32 0 monotonic ret void } ; CHECK-LABEL: atomic32_nand_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xchg_acquire(i32* %a) nounwind uwtable { +define void @atomic32_xchg_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i32* %a, i32 0 acquire + atomicrmw xchg ptr %a, i32 0 acquire ret void } ; CHECK-LABEL: atomic32_xchg_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_add_acquire(i32* %a) nounwind uwtable { +define void @atomic32_add_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw add i32* %a, i32 0 acquire + atomicrmw add ptr %a, i32 0 acquire ret void } ; CHECK-LABEL: atomic32_add_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_sub_acquire(i32* %a) nounwind uwtable { +define void @atomic32_sub_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw sub i32* %a, i32 0 acquire + atomicrmw sub ptr %a, i32 0 acquire ret void } ; CHECK-LABEL: atomic32_sub_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_and_acquire(i32* %a) nounwind uwtable { +define void @atomic32_and_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw and i32* %a, i32 0 acquire + atomicrmw and ptr %a, i32 0 acquire ret void } ; CHECK-LABEL: atomic32_and_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_or_acquire(i32* %a) nounwind uwtable { +define void @atomic32_or_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw or i32* %a, i32 0 acquire + atomicrmw or ptr %a, i32 0 acquire ret void } ; CHECK-LABEL: atomic32_or_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xor_acquire(i32* %a) nounwind uwtable { +define void @atomic32_xor_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xor i32* %a, i32 0 acquire + atomicrmw xor ptr %a, i32 0 acquire ret void } ; CHECK-LABEL: atomic32_xor_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_nand_acquire(i32* %a) nounwind uwtable { +define void @atomic32_nand_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw nand i32* %a, i32 0 acquire + atomicrmw nand ptr %a, i32 0 acquire ret void } ; CHECK-LABEL: atomic32_nand_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xchg_release(i32* %a) nounwind uwtable { +define void @atomic32_xchg_release(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i32* %a, i32 0 release + atomicrmw xchg ptr %a, i32 0 release ret void } ; CHECK-LABEL: atomic32_xchg_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_add_release(i32* %a) nounwind uwtable { +define void @atomic32_add_release(ptr %a) nounwind uwtable { entry: - atomicrmw add i32* %a, i32 0 release + atomicrmw add ptr %a, i32 0 release ret void } ; CHECK-LABEL: atomic32_add_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_sub_release(i32* %a) nounwind uwtable { +define void @atomic32_sub_release(ptr %a) nounwind uwtable { entry: - atomicrmw sub i32* %a, i32 0 release + atomicrmw sub ptr %a, i32 0 release ret void } ; CHECK-LABEL: atomic32_sub_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_and_release(i32* %a) nounwind uwtable { +define void @atomic32_and_release(ptr %a) nounwind uwtable { entry: - atomicrmw and i32* %a, i32 0 release + atomicrmw and ptr %a, i32 0 release ret void } ; CHECK-LABEL: atomic32_and_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_or_release(i32* %a) nounwind uwtable { +define void @atomic32_or_release(ptr %a) nounwind uwtable { entry: - atomicrmw or i32* %a, i32 0 release + atomicrmw or ptr %a, i32 0 release ret void } ; CHECK-LABEL: atomic32_or_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xor_release(i32* %a) nounwind uwtable { +define void @atomic32_xor_release(ptr %a) nounwind uwtable { entry: - atomicrmw xor i32* %a, i32 0 release + atomicrmw xor ptr %a, i32 0 release ret void } ; CHECK-LABEL: atomic32_xor_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_nand_release(i32* %a) nounwind uwtable { +define void @atomic32_nand_release(ptr %a) nounwind uwtable { entry: - atomicrmw nand i32* %a, i32 0 release + atomicrmw nand ptr %a, i32 0 release ret void } ; CHECK-LABEL: atomic32_nand_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xchg_acq_rel(i32* %a) nounwind uwtable { +define void @atomic32_xchg_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i32* %a, i32 0 acq_rel + atomicrmw xchg ptr %a, i32 0 acq_rel ret void } ; CHECK-LABEL: atomic32_xchg_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_add_acq_rel(i32* %a) nounwind uwtable { +define void @atomic32_add_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw add i32* %a, i32 0 acq_rel + atomicrmw add ptr %a, i32 0 acq_rel ret void } ; CHECK-LABEL: atomic32_add_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_sub_acq_rel(i32* %a) nounwind uwtable { +define void @atomic32_sub_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw sub i32* %a, i32 0 acq_rel + atomicrmw sub ptr %a, i32 0 acq_rel ret void } ; CHECK-LABEL: atomic32_sub_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_and_acq_rel(i32* %a) nounwind uwtable { +define void @atomic32_and_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw and i32* %a, i32 0 acq_rel + atomicrmw and ptr %a, i32 0 acq_rel ret void } ; CHECK-LABEL: atomic32_and_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_or_acq_rel(i32* %a) nounwind uwtable { +define void @atomic32_or_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw or i32* %a, i32 0 acq_rel + atomicrmw or ptr %a, i32 0 acq_rel ret void } ; CHECK-LABEL: atomic32_or_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xor_acq_rel(i32* %a) nounwind uwtable { +define void @atomic32_xor_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xor i32* %a, i32 0 acq_rel + atomicrmw xor ptr %a, i32 0 acq_rel ret void } ; CHECK-LABEL: atomic32_xor_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_nand_acq_rel(i32* %a) nounwind uwtable { +define void @atomic32_nand_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw nand i32* %a, i32 0 acq_rel + atomicrmw nand ptr %a, i32 0 acq_rel ret void } ; CHECK-LABEL: atomic32_nand_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xchg_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_xchg_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i32* %a, i32 0 seq_cst + atomicrmw xchg ptr %a, i32 0 seq_cst ret void } ; CHECK-LABEL: atomic32_xchg_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_add_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_add_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw add i32* %a, i32 0 seq_cst + atomicrmw add ptr %a, i32 0 seq_cst ret void } ; CHECK-LABEL: atomic32_add_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_sub_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_sub_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw sub i32* %a, i32 0 seq_cst + atomicrmw sub ptr %a, i32 0 seq_cst ret void } ; CHECK-LABEL: atomic32_sub_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_and_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_and_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw and i32* %a, i32 0 seq_cst + atomicrmw and ptr %a, i32 0 seq_cst ret void } ; CHECK-LABEL: atomic32_and_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_or_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_or_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw or i32* %a, i32 0 seq_cst + atomicrmw or ptr %a, i32 0 seq_cst ret void } ; CHECK-LABEL: atomic32_or_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_xor_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_xor_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xor i32* %a, i32 0 seq_cst + atomicrmw xor ptr %a, i32 0 seq_cst ret void } ; CHECK-LABEL: atomic32_xor_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_nand_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_nand_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw nand i32* %a, i32 0 seq_cst + atomicrmw nand ptr %a, i32 0 seq_cst ret void } ; CHECK-LABEL: atomic32_nand_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic32_cas_monotonic(i32* %a) nounwind uwtable { +define void @atomic32_cas_monotonic(ptr %a) nounwind uwtable { entry: - cmpxchg i32* %a, i32 0, i32 1 monotonic monotonic - cmpxchg i32* %a, i32 0, i32 1 monotonic acquire - cmpxchg i32* %a, i32 0, i32 1 monotonic seq_cst + cmpxchg ptr %a, i32 0, i32 1 monotonic monotonic + cmpxchg ptr %a, i32 0, i32 1 monotonic acquire + cmpxchg ptr %a, i32 0, i32 1 monotonic seq_cst ret void } ; CHECK-LABEL: atomic32_cas_monotonic{{.*}}!pcsections !0 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 monotonic monotonic, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 monotonic acquire, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 monotonic seq_cst, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 monotonic monotonic, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 monotonic acquire, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 monotonic seq_cst, align 4, !pcsections !2 -define void @atomic32_cas_acquire(i32* %a) nounwind uwtable { +define void @atomic32_cas_acquire(ptr %a) nounwind uwtable { entry: - cmpxchg i32* %a, i32 0, i32 1 acquire monotonic - cmpxchg i32* %a, i32 0, i32 1 acquire acquire - cmpxchg i32* %a, i32 0, i32 1 acquire seq_cst + cmpxchg ptr %a, i32 0, i32 1 acquire monotonic + cmpxchg ptr %a, i32 0, i32 1 acquire acquire + cmpxchg ptr %a, i32 0, i32 1 acquire seq_cst ret void } ; CHECK-LABEL: atomic32_cas_acquire{{.*}}!pcsections !0 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 acquire monotonic, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 acquire acquire, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 acquire seq_cst, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 acquire monotonic, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 acquire acquire, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 acquire seq_cst, align 4, !pcsections !2 -define void @atomic32_cas_release(i32* %a) nounwind uwtable { +define void @atomic32_cas_release(ptr %a) nounwind uwtable { entry: - cmpxchg i32* %a, i32 0, i32 1 release monotonic - cmpxchg i32* %a, i32 0, i32 1 release acquire - cmpxchg i32* %a, i32 0, i32 1 release seq_cst + cmpxchg ptr %a, i32 0, i32 1 release monotonic + cmpxchg ptr %a, i32 0, i32 1 release acquire + cmpxchg ptr %a, i32 0, i32 1 release seq_cst ret void } ; CHECK-LABEL: atomic32_cas_release{{.*}}!pcsections !0 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 release monotonic, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 release acquire, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 release seq_cst, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 release monotonic, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 release acquire, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 release seq_cst, align 4, !pcsections !2 -define void @atomic32_cas_acq_rel(i32* %a) nounwind uwtable { +define void @atomic32_cas_acq_rel(ptr %a) nounwind uwtable { entry: - cmpxchg i32* %a, i32 0, i32 1 acq_rel monotonic - cmpxchg i32* %a, i32 0, i32 1 acq_rel acquire - cmpxchg i32* %a, i32 0, i32 1 acq_rel seq_cst + cmpxchg ptr %a, i32 0, i32 1 acq_rel monotonic + cmpxchg ptr %a, i32 0, i32 1 acq_rel acquire + cmpxchg ptr %a, i32 0, i32 1 acq_rel seq_cst ret void } ; CHECK-LABEL: atomic32_cas_acq_rel{{.*}}!pcsections !0 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 acq_rel monotonic, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 acq_rel acquire, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 acq_rel seq_cst, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 acq_rel monotonic, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 acq_rel acquire, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 acq_rel seq_cst, align 4, !pcsections !2 -define void @atomic32_cas_seq_cst(i32* %a) nounwind uwtable { +define void @atomic32_cas_seq_cst(ptr %a) nounwind uwtable { entry: - cmpxchg i32* %a, i32 0, i32 1 seq_cst monotonic - cmpxchg i32* %a, i32 0, i32 1 seq_cst acquire - cmpxchg i32* %a, i32 0, i32 1 seq_cst seq_cst + cmpxchg ptr %a, i32 0, i32 1 seq_cst monotonic + cmpxchg ptr %a, i32 0, i32 1 seq_cst acquire + cmpxchg ptr %a, i32 0, i32 1 seq_cst seq_cst ret void } ; CHECK-LABEL: atomic32_cas_seq_cst{{.*}}!pcsections !0 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 seq_cst monotonic, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 seq_cst acquire, align 4, !pcsections !2 -; CHECK: cmpxchg i32* %a, i32 0, i32 1 seq_cst seq_cst, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 seq_cst monotonic, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 seq_cst acquire, align 4, !pcsections !2 +; CHECK: cmpxchg ptr %a, i32 0, i32 1 seq_cst seq_cst, align 4, !pcsections !2 -define i64 @atomic64_load_unordered(i64* %a) nounwind uwtable { +define i64 @atomic64_load_unordered(ptr %a) nounwind uwtable { entry: - %0 = load atomic i64, i64* %a unordered, align 8 + %0 = load atomic i64, ptr %a unordered, align 8 ret i64 %0 } ; CHECK-LABEL: atomic64_load_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i64 @atomic64_load_monotonic(i64* %a) nounwind uwtable { +define i64 @atomic64_load_monotonic(ptr %a) nounwind uwtable { entry: - %0 = load atomic i64, i64* %a monotonic, align 8 + %0 = load atomic i64, ptr %a monotonic, align 8 ret i64 %0 } ; CHECK-LABEL: atomic64_load_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i64 @atomic64_load_acquire(i64* %a) nounwind uwtable { +define i64 @atomic64_load_acquire(ptr %a) nounwind uwtable { entry: - %0 = load atomic i64, i64* %a acquire, align 8 + %0 = load atomic i64, ptr %a acquire, align 8 ret i64 %0 } ; CHECK-LABEL: atomic64_load_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i64 @atomic64_load_seq_cst(i64* %a) nounwind uwtable { +define i64 @atomic64_load_seq_cst(ptr %a) nounwind uwtable { entry: - %0 = load atomic i64, i64* %a seq_cst, align 8 + %0 = load atomic i64, ptr %a seq_cst, align 8 ret i64 %0 } ; CHECK-LABEL: atomic64_load_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i8* @atomic64_load_seq_cst_ptr_ty(i8** %a) nounwind uwtable { +define ptr @atomic64_load_seq_cst_ptr_ty(ptr %a) nounwind uwtable { entry: - %0 = load atomic i8*, i8** %a seq_cst, align 8 - ret i8* %0 + %0 = load atomic ptr, ptr %a seq_cst, align 8 + ret ptr %0 } ; CHECK-LABEL: atomic64_load_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_store_unordered(i64* %a) nounwind uwtable { +define void @atomic64_store_unordered(ptr %a) nounwind uwtable { entry: - store atomic i64 0, i64* %a unordered, align 8 + store atomic i64 0, ptr %a unordered, align 8 ret void } ; CHECK-LABEL: atomic64_store_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_store_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_store_monotonic(ptr %a) nounwind uwtable { entry: - store atomic i64 0, i64* %a monotonic, align 8 + store atomic i64 0, ptr %a monotonic, align 8 ret void } ; CHECK-LABEL: atomic64_store_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_store_release(i64* %a) nounwind uwtable { +define void @atomic64_store_release(ptr %a) nounwind uwtable { entry: - store atomic i64 0, i64* %a release, align 8 + store atomic i64 0, ptr %a release, align 8 ret void } ; CHECK-LABEL: atomic64_store_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_store_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_store_seq_cst(ptr %a) nounwind uwtable { entry: - store atomic i64 0, i64* %a seq_cst, align 8 + store atomic i64 0, ptr %a seq_cst, align 8 ret void } ; CHECK-LABEL: atomic64_store_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_store_seq_cst_ptr_ty(i8** %a, i8* %v) nounwind uwtable { +define void @atomic64_store_seq_cst_ptr_ty(ptr %a, ptr %v) nounwind uwtable { entry: - store atomic i8* %v, i8** %a seq_cst, align 8 + store atomic ptr %v, ptr %a seq_cst, align 8 ret void } ; CHECK-LABEL: atomic64_store_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xchg_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_xchg_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i64* %a, i64 0 monotonic + atomicrmw xchg ptr %a, i64 0 monotonic ret void } ; CHECK-LABEL: atomic64_xchg_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_add_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_add_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw add i64* %a, i64 0 monotonic + atomicrmw add ptr %a, i64 0 monotonic ret void } ; CHECK-LABEL: atomic64_add_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_sub_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_sub_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw sub i64* %a, i64 0 monotonic + atomicrmw sub ptr %a, i64 0 monotonic ret void } ; CHECK-LABEL: atomic64_sub_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_and_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_and_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw and i64* %a, i64 0 monotonic + atomicrmw and ptr %a, i64 0 monotonic ret void } ; CHECK-LABEL: atomic64_and_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_or_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_or_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw or i64* %a, i64 0 monotonic + atomicrmw or ptr %a, i64 0 monotonic ret void } ; CHECK-LABEL: atomic64_or_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xor_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_xor_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xor i64* %a, i64 0 monotonic + atomicrmw xor ptr %a, i64 0 monotonic ret void } ; CHECK-LABEL: atomic64_xor_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_nand_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_nand_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw nand i64* %a, i64 0 monotonic + atomicrmw nand ptr %a, i64 0 monotonic ret void } ; CHECK-LABEL: atomic64_nand_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xchg_acquire(i64* %a) nounwind uwtable { +define void @atomic64_xchg_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i64* %a, i64 0 acquire + atomicrmw xchg ptr %a, i64 0 acquire ret void } ; CHECK-LABEL: atomic64_xchg_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_add_acquire(i64* %a) nounwind uwtable { +define void @atomic64_add_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw add i64* %a, i64 0 acquire + atomicrmw add ptr %a, i64 0 acquire ret void } ; CHECK-LABEL: atomic64_add_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_sub_acquire(i64* %a) nounwind uwtable { +define void @atomic64_sub_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw sub i64* %a, i64 0 acquire + atomicrmw sub ptr %a, i64 0 acquire ret void } ; CHECK-LABEL: atomic64_sub_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_and_acquire(i64* %a) nounwind uwtable { +define void @atomic64_and_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw and i64* %a, i64 0 acquire + atomicrmw and ptr %a, i64 0 acquire ret void } ; CHECK-LABEL: atomic64_and_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_or_acquire(i64* %a) nounwind uwtable { +define void @atomic64_or_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw or i64* %a, i64 0 acquire + atomicrmw or ptr %a, i64 0 acquire ret void } ; CHECK-LABEL: atomic64_or_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xor_acquire(i64* %a) nounwind uwtable { +define void @atomic64_xor_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xor i64* %a, i64 0 acquire + atomicrmw xor ptr %a, i64 0 acquire ret void } ; CHECK-LABEL: atomic64_xor_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_nand_acquire(i64* %a) nounwind uwtable { +define void @atomic64_nand_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw nand i64* %a, i64 0 acquire + atomicrmw nand ptr %a, i64 0 acquire ret void } ; CHECK-LABEL: atomic64_nand_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xchg_release(i64* %a) nounwind uwtable { +define void @atomic64_xchg_release(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i64* %a, i64 0 release + atomicrmw xchg ptr %a, i64 0 release ret void } ; CHECK-LABEL: atomic64_xchg_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_add_release(i64* %a) nounwind uwtable { +define void @atomic64_add_release(ptr %a) nounwind uwtable { entry: - atomicrmw add i64* %a, i64 0 release + atomicrmw add ptr %a, i64 0 release ret void } ; CHECK-LABEL: atomic64_add_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_sub_release(i64* %a) nounwind uwtable { +define void @atomic64_sub_release(ptr %a) nounwind uwtable { entry: - atomicrmw sub i64* %a, i64 0 release + atomicrmw sub ptr %a, i64 0 release ret void } ; CHECK-LABEL: atomic64_sub_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_and_release(i64* %a) nounwind uwtable { +define void @atomic64_and_release(ptr %a) nounwind uwtable { entry: - atomicrmw and i64* %a, i64 0 release + atomicrmw and ptr %a, i64 0 release ret void } ; CHECK-LABEL: atomic64_and_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_or_release(i64* %a) nounwind uwtable { +define void @atomic64_or_release(ptr %a) nounwind uwtable { entry: - atomicrmw or i64* %a, i64 0 release + atomicrmw or ptr %a, i64 0 release ret void } ; CHECK-LABEL: atomic64_or_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xor_release(i64* %a) nounwind uwtable { +define void @atomic64_xor_release(ptr %a) nounwind uwtable { entry: - atomicrmw xor i64* %a, i64 0 release + atomicrmw xor ptr %a, i64 0 release ret void } ; CHECK-LABEL: atomic64_xor_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_nand_release(i64* %a) nounwind uwtable { +define void @atomic64_nand_release(ptr %a) nounwind uwtable { entry: - atomicrmw nand i64* %a, i64 0 release + atomicrmw nand ptr %a, i64 0 release ret void } ; CHECK-LABEL: atomic64_nand_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xchg_acq_rel(i64* %a) nounwind uwtable { +define void @atomic64_xchg_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i64* %a, i64 0 acq_rel + atomicrmw xchg ptr %a, i64 0 acq_rel ret void } ; CHECK-LABEL: atomic64_xchg_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_add_acq_rel(i64* %a) nounwind uwtable { +define void @atomic64_add_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw add i64* %a, i64 0 acq_rel + atomicrmw add ptr %a, i64 0 acq_rel ret void } ; CHECK-LABEL: atomic64_add_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_sub_acq_rel(i64* %a) nounwind uwtable { +define void @atomic64_sub_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw sub i64* %a, i64 0 acq_rel + atomicrmw sub ptr %a, i64 0 acq_rel ret void } ; CHECK-LABEL: atomic64_sub_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_and_acq_rel(i64* %a) nounwind uwtable { +define void @atomic64_and_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw and i64* %a, i64 0 acq_rel + atomicrmw and ptr %a, i64 0 acq_rel ret void } ; CHECK-LABEL: atomic64_and_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_or_acq_rel(i64* %a) nounwind uwtable { +define void @atomic64_or_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw or i64* %a, i64 0 acq_rel + atomicrmw or ptr %a, i64 0 acq_rel ret void } ; CHECK-LABEL: atomic64_or_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xor_acq_rel(i64* %a) nounwind uwtable { +define void @atomic64_xor_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xor i64* %a, i64 0 acq_rel + atomicrmw xor ptr %a, i64 0 acq_rel ret void } ; CHECK-LABEL: atomic64_xor_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_nand_acq_rel(i64* %a) nounwind uwtable { +define void @atomic64_nand_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw nand i64* %a, i64 0 acq_rel + atomicrmw nand ptr %a, i64 0 acq_rel ret void } ; CHECK-LABEL: atomic64_nand_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xchg_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_xchg_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i64* %a, i64 0 seq_cst + atomicrmw xchg ptr %a, i64 0 seq_cst ret void } ; CHECK-LABEL: atomic64_xchg_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_add_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_add_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw add i64* %a, i64 0 seq_cst + atomicrmw add ptr %a, i64 0 seq_cst ret void } ; CHECK-LABEL: atomic64_add_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_sub_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_sub_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw sub i64* %a, i64 0 seq_cst + atomicrmw sub ptr %a, i64 0 seq_cst ret void } ; CHECK-LABEL: atomic64_sub_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_and_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_and_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw and i64* %a, i64 0 seq_cst + atomicrmw and ptr %a, i64 0 seq_cst ret void } ; CHECK-LABEL: atomic64_and_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_or_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_or_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw or i64* %a, i64 0 seq_cst + atomicrmw or ptr %a, i64 0 seq_cst ret void } ; CHECK-LABEL: atomic64_or_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_xor_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_xor_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xor i64* %a, i64 0 seq_cst + atomicrmw xor ptr %a, i64 0 seq_cst ret void } ; CHECK-LABEL: atomic64_xor_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_nand_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_nand_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw nand i64* %a, i64 0 seq_cst + atomicrmw nand ptr %a, i64 0 seq_cst ret void } ; CHECK-LABEL: atomic64_nand_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic64_cas_monotonic(i64* %a) nounwind uwtable { +define void @atomic64_cas_monotonic(ptr %a) nounwind uwtable { entry: - cmpxchg i64* %a, i64 0, i64 1 monotonic monotonic - cmpxchg i64* %a, i64 0, i64 1 monotonic acquire - cmpxchg i64* %a, i64 0, i64 1 monotonic seq_cst + cmpxchg ptr %a, i64 0, i64 1 monotonic monotonic + cmpxchg ptr %a, i64 0, i64 1 monotonic acquire + cmpxchg ptr %a, i64 0, i64 1 monotonic seq_cst ret void } ; CHECK-LABEL: atomic64_cas_monotonic{{.*}}!pcsections !0 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 monotonic monotonic, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 monotonic acquire, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 monotonic seq_cst, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 monotonic monotonic, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 monotonic acquire, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 monotonic seq_cst, align 8, !pcsections !2 -define void @atomic64_cas_acquire(i64* %a) nounwind uwtable { +define void @atomic64_cas_acquire(ptr %a) nounwind uwtable { entry: - cmpxchg i64* %a, i64 0, i64 1 acquire monotonic - cmpxchg i64* %a, i64 0, i64 1 acquire acquire - cmpxchg i64* %a, i64 0, i64 1 acquire seq_cst + cmpxchg ptr %a, i64 0, i64 1 acquire monotonic + cmpxchg ptr %a, i64 0, i64 1 acquire acquire + cmpxchg ptr %a, i64 0, i64 1 acquire seq_cst ret void } ; CHECK-LABEL: atomic64_cas_acquire{{.*}}!pcsections !0 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 acquire monotonic, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 acquire acquire, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 acquire seq_cst, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 acquire monotonic, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 acquire acquire, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 acquire seq_cst, align 8, !pcsections !2 -define void @atomic64_cas_release(i64* %a) nounwind uwtable { +define void @atomic64_cas_release(ptr %a) nounwind uwtable { entry: - cmpxchg i64* %a, i64 0, i64 1 release monotonic - cmpxchg i64* %a, i64 0, i64 1 release acquire - cmpxchg i64* %a, i64 0, i64 1 release seq_cst + cmpxchg ptr %a, i64 0, i64 1 release monotonic + cmpxchg ptr %a, i64 0, i64 1 release acquire + cmpxchg ptr %a, i64 0, i64 1 release seq_cst ret void } ; CHECK-LABEL: atomic64_cas_release{{.*}}!pcsections !0 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 release monotonic, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 release acquire, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 release seq_cst, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 release monotonic, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 release acquire, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 release seq_cst, align 8, !pcsections !2 -define void @atomic64_cas_acq_rel(i64* %a) nounwind uwtable { +define void @atomic64_cas_acq_rel(ptr %a) nounwind uwtable { entry: - cmpxchg i64* %a, i64 0, i64 1 acq_rel monotonic - cmpxchg i64* %a, i64 0, i64 1 acq_rel acquire - cmpxchg i64* %a, i64 0, i64 1 acq_rel seq_cst + cmpxchg ptr %a, i64 0, i64 1 acq_rel monotonic + cmpxchg ptr %a, i64 0, i64 1 acq_rel acquire + cmpxchg ptr %a, i64 0, i64 1 acq_rel seq_cst ret void } ; CHECK-LABEL: atomic64_cas_acq_rel{{.*}}!pcsections !0 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 acq_rel monotonic, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 acq_rel acquire, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 acq_rel seq_cst, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 acq_rel monotonic, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 acq_rel acquire, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 acq_rel seq_cst, align 8, !pcsections !2 -define void @atomic64_cas_seq_cst(i64* %a) nounwind uwtable { +define void @atomic64_cas_seq_cst(ptr %a) nounwind uwtable { entry: - cmpxchg i64* %a, i64 0, i64 1 seq_cst monotonic - cmpxchg i64* %a, i64 0, i64 1 seq_cst acquire - cmpxchg i64* %a, i64 0, i64 1 seq_cst seq_cst + cmpxchg ptr %a, i64 0, i64 1 seq_cst monotonic + cmpxchg ptr %a, i64 0, i64 1 seq_cst acquire + cmpxchg ptr %a, i64 0, i64 1 seq_cst seq_cst ret void } ; CHECK-LABEL: atomic64_cas_seq_cst{{.*}}!pcsections !0 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 seq_cst monotonic, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 seq_cst acquire, align 8, !pcsections !2 -; CHECK: cmpxchg i64* %a, i64 0, i64 1 seq_cst seq_cst, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 seq_cst monotonic, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 seq_cst acquire, align 8, !pcsections !2 +; CHECK: cmpxchg ptr %a, i64 0, i64 1 seq_cst seq_cst, align 8, !pcsections !2 -define void @atomic64_cas_seq_cst_ptr_ty(i8** %a, i8* %v1, i8* %v2) nounwind uwtable { +define void @atomic64_cas_seq_cst_ptr_ty(ptr %a, ptr %v1, ptr %v2) nounwind uwtable { entry: - cmpxchg i8** %a, i8* %v1, i8* %v2 seq_cst seq_cst + cmpxchg ptr %a, ptr %v1, ptr %v2 seq_cst seq_cst ret void } ; CHECK-LABEL: atomic64_cas_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i128 @atomic128_load_unordered(i128* %a) nounwind uwtable { +define i128 @atomic128_load_unordered(ptr %a) nounwind uwtable { entry: - %0 = load atomic i128, i128* %a unordered, align 16 + %0 = load atomic i128, ptr %a unordered, align 16 ret i128 %0 } ; CHECK-LABEL: atomic128_load_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i128 @atomic128_load_monotonic(i128* %a) nounwind uwtable { +define i128 @atomic128_load_monotonic(ptr %a) nounwind uwtable { entry: - %0 = load atomic i128, i128* %a monotonic, align 16 + %0 = load atomic i128, ptr %a monotonic, align 16 ret i128 %0 } ; CHECK-LABEL: atomic128_load_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i128 @atomic128_load_acquire(i128* %a) nounwind uwtable { +define i128 @atomic128_load_acquire(ptr %a) nounwind uwtable { entry: - %0 = load atomic i128, i128* %a acquire, align 16 + %0 = load atomic i128, ptr %a acquire, align 16 ret i128 %0 } ; CHECK-LABEL: atomic128_load_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define i128 @atomic128_load_seq_cst(i128* %a) nounwind uwtable { +define i128 @atomic128_load_seq_cst(ptr %a) nounwind uwtable { entry: - %0 = load atomic i128, i128* %a seq_cst, align 16 + %0 = load atomic i128, ptr %a seq_cst, align 16 ret i128 %0 } ; CHECK-LABEL: atomic128_load_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_store_unordered(i128* %a) nounwind uwtable { +define void @atomic128_store_unordered(ptr %a) nounwind uwtable { entry: - store atomic i128 0, i128* %a unordered, align 16 + store atomic i128 0, ptr %a unordered, align 16 ret void } ; CHECK-LABEL: atomic128_store_unordered{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_store_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_store_monotonic(ptr %a) nounwind uwtable { entry: - store atomic i128 0, i128* %a monotonic, align 16 + store atomic i128 0, ptr %a monotonic, align 16 ret void } ; CHECK-LABEL: atomic128_store_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_store_release(i128* %a) nounwind uwtable { +define void @atomic128_store_release(ptr %a) nounwind uwtable { entry: - store atomic i128 0, i128* %a release, align 16 + store atomic i128 0, ptr %a release, align 16 ret void } ; CHECK-LABEL: atomic128_store_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_store_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_store_seq_cst(ptr %a) nounwind uwtable { entry: - store atomic i128 0, i128* %a seq_cst, align 16 + store atomic i128 0, ptr %a seq_cst, align 16 ret void } ; CHECK-LABEL: atomic128_store_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xchg_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_xchg_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i128* %a, i128 0 monotonic + atomicrmw xchg ptr %a, i128 0 monotonic ret void } ; CHECK-LABEL: atomic128_xchg_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_add_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_add_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw add i128* %a, i128 0 monotonic + atomicrmw add ptr %a, i128 0 monotonic ret void } ; CHECK-LABEL: atomic128_add_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_sub_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_sub_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw sub i128* %a, i128 0 monotonic + atomicrmw sub ptr %a, i128 0 monotonic ret void } ; CHECK-LABEL: atomic128_sub_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_and_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_and_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw and i128* %a, i128 0 monotonic + atomicrmw and ptr %a, i128 0 monotonic ret void } ; CHECK-LABEL: atomic128_and_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_or_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_or_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw or i128* %a, i128 0 monotonic + atomicrmw or ptr %a, i128 0 monotonic ret void } ; CHECK-LABEL: atomic128_or_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xor_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_xor_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw xor i128* %a, i128 0 monotonic + atomicrmw xor ptr %a, i128 0 monotonic ret void } ; CHECK-LABEL: atomic128_xor_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_nand_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_nand_monotonic(ptr %a) nounwind uwtable { entry: - atomicrmw nand i128* %a, i128 0 monotonic + atomicrmw nand ptr %a, i128 0 monotonic ret void } ; CHECK-LABEL: atomic128_nand_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xchg_acquire(i128* %a) nounwind uwtable { +define void @atomic128_xchg_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i128* %a, i128 0 acquire + atomicrmw xchg ptr %a, i128 0 acquire ret void } ; CHECK-LABEL: atomic128_xchg_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_add_acquire(i128* %a) nounwind uwtable { +define void @atomic128_add_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw add i128* %a, i128 0 acquire + atomicrmw add ptr %a, i128 0 acquire ret void } ; CHECK-LABEL: atomic128_add_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_sub_acquire(i128* %a) nounwind uwtable { +define void @atomic128_sub_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw sub i128* %a, i128 0 acquire + atomicrmw sub ptr %a, i128 0 acquire ret void } ; CHECK-LABEL: atomic128_sub_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_and_acquire(i128* %a) nounwind uwtable { +define void @atomic128_and_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw and i128* %a, i128 0 acquire + atomicrmw and ptr %a, i128 0 acquire ret void } ; CHECK-LABEL: atomic128_and_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_or_acquire(i128* %a) nounwind uwtable { +define void @atomic128_or_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw or i128* %a, i128 0 acquire + atomicrmw or ptr %a, i128 0 acquire ret void } ; CHECK-LABEL: atomic128_or_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xor_acquire(i128* %a) nounwind uwtable { +define void @atomic128_xor_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw xor i128* %a, i128 0 acquire + atomicrmw xor ptr %a, i128 0 acquire ret void } ; CHECK-LABEL: atomic128_xor_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_nand_acquire(i128* %a) nounwind uwtable { +define void @atomic128_nand_acquire(ptr %a) nounwind uwtable { entry: - atomicrmw nand i128* %a, i128 0 acquire + atomicrmw nand ptr %a, i128 0 acquire ret void } ; CHECK-LABEL: atomic128_nand_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xchg_release(i128* %a) nounwind uwtable { +define void @atomic128_xchg_release(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i128* %a, i128 0 release + atomicrmw xchg ptr %a, i128 0 release ret void } ; CHECK-LABEL: atomic128_xchg_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_add_release(i128* %a) nounwind uwtable { +define void @atomic128_add_release(ptr %a) nounwind uwtable { entry: - atomicrmw add i128* %a, i128 0 release + atomicrmw add ptr %a, i128 0 release ret void } ; CHECK-LABEL: atomic128_add_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_sub_release(i128* %a) nounwind uwtable { +define void @atomic128_sub_release(ptr %a) nounwind uwtable { entry: - atomicrmw sub i128* %a, i128 0 release + atomicrmw sub ptr %a, i128 0 release ret void } ; CHECK-LABEL: atomic128_sub_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_and_release(i128* %a) nounwind uwtable { +define void @atomic128_and_release(ptr %a) nounwind uwtable { entry: - atomicrmw and i128* %a, i128 0 release + atomicrmw and ptr %a, i128 0 release ret void } ; CHECK-LABEL: atomic128_and_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_or_release(i128* %a) nounwind uwtable { +define void @atomic128_or_release(ptr %a) nounwind uwtable { entry: - atomicrmw or i128* %a, i128 0 release + atomicrmw or ptr %a, i128 0 release ret void } ; CHECK-LABEL: atomic128_or_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xor_release(i128* %a) nounwind uwtable { +define void @atomic128_xor_release(ptr %a) nounwind uwtable { entry: - atomicrmw xor i128* %a, i128 0 release + atomicrmw xor ptr %a, i128 0 release ret void } ; CHECK-LABEL: atomic128_xor_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_nand_release(i128* %a) nounwind uwtable { +define void @atomic128_nand_release(ptr %a) nounwind uwtable { entry: - atomicrmw nand i128* %a, i128 0 release + atomicrmw nand ptr %a, i128 0 release ret void } ; CHECK-LABEL: atomic128_nand_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xchg_acq_rel(i128* %a) nounwind uwtable { +define void @atomic128_xchg_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i128* %a, i128 0 acq_rel + atomicrmw xchg ptr %a, i128 0 acq_rel ret void } ; CHECK-LABEL: atomic128_xchg_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_add_acq_rel(i128* %a) nounwind uwtable { +define void @atomic128_add_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw add i128* %a, i128 0 acq_rel + atomicrmw add ptr %a, i128 0 acq_rel ret void } ; CHECK-LABEL: atomic128_add_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_sub_acq_rel(i128* %a) nounwind uwtable { +define void @atomic128_sub_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw sub i128* %a, i128 0 acq_rel + atomicrmw sub ptr %a, i128 0 acq_rel ret void } ; CHECK-LABEL: atomic128_sub_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_and_acq_rel(i128* %a) nounwind uwtable { +define void @atomic128_and_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw and i128* %a, i128 0 acq_rel + atomicrmw and ptr %a, i128 0 acq_rel ret void } ; CHECK-LABEL: atomic128_and_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_or_acq_rel(i128* %a) nounwind uwtable { +define void @atomic128_or_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw or i128* %a, i128 0 acq_rel + atomicrmw or ptr %a, i128 0 acq_rel ret void } ; CHECK-LABEL: atomic128_or_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xor_acq_rel(i128* %a) nounwind uwtable { +define void @atomic128_xor_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw xor i128* %a, i128 0 acq_rel + atomicrmw xor ptr %a, i128 0 acq_rel ret void } ; CHECK-LABEL: atomic128_xor_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_nand_acq_rel(i128* %a) nounwind uwtable { +define void @atomic128_nand_acq_rel(ptr %a) nounwind uwtable { entry: - atomicrmw nand i128* %a, i128 0 acq_rel + atomicrmw nand ptr %a, i128 0 acq_rel ret void } ; CHECK-LABEL: atomic128_nand_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xchg_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_xchg_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xchg i128* %a, i128 0 seq_cst + atomicrmw xchg ptr %a, i128 0 seq_cst ret void } ; CHECK-LABEL: atomic128_xchg_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_add_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_add_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw add i128* %a, i128 0 seq_cst + atomicrmw add ptr %a, i128 0 seq_cst ret void } ; CHECK-LABEL: atomic128_add_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_sub_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_sub_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw sub i128* %a, i128 0 seq_cst + atomicrmw sub ptr %a, i128 0 seq_cst ret void } ; CHECK-LABEL: atomic128_sub_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_and_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_and_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw and i128* %a, i128 0 seq_cst + atomicrmw and ptr %a, i128 0 seq_cst ret void } ; CHECK-LABEL: atomic128_and_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_or_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_or_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw or i128* %a, i128 0 seq_cst + atomicrmw or ptr %a, i128 0 seq_cst ret void } ; CHECK-LABEL: atomic128_or_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_xor_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_xor_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw xor i128* %a, i128 0 seq_cst + atomicrmw xor ptr %a, i128 0 seq_cst ret void } ; CHECK-LABEL: atomic128_xor_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_nand_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_nand_seq_cst(ptr %a) nounwind uwtable { entry: - atomicrmw nand i128* %a, i128 0 seq_cst + atomicrmw nand ptr %a, i128 0 seq_cst ret void } ; CHECK-LABEL: atomic128_nand_seq_cst{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_cas_monotonic(i128* %a) nounwind uwtable { +define void @atomic128_cas_monotonic(ptr %a) nounwind uwtable { entry: - cmpxchg i128* %a, i128 0, i128 1 monotonic monotonic + cmpxchg ptr %a, i128 0, i128 1 monotonic monotonic ret void } ; CHECK-LABEL: atomic128_cas_monotonic{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_cas_acquire(i128* %a) nounwind uwtable { +define void @atomic128_cas_acquire(ptr %a) nounwind uwtable { entry: - cmpxchg i128* %a, i128 0, i128 1 acquire acquire + cmpxchg ptr %a, i128 0, i128 1 acquire acquire ret void } ; CHECK-LABEL: atomic128_cas_acquire{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_cas_release(i128* %a) nounwind uwtable { +define void @atomic128_cas_release(ptr %a) nounwind uwtable { entry: - cmpxchg i128* %a, i128 0, i128 1 release monotonic + cmpxchg ptr %a, i128 0, i128 1 release monotonic ret void } ; CHECK-LABEL: atomic128_cas_release{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_cas_acq_rel(i128* %a) nounwind uwtable { +define void @atomic128_cas_acq_rel(ptr %a) nounwind uwtable { entry: - cmpxchg i128* %a, i128 0, i128 1 acq_rel acquire + cmpxchg ptr %a, i128 0, i128 1 acq_rel acquire ret void } ; CHECK-LABEL: atomic128_cas_acq_rel{{.*}}!pcsections !0 ; CHECK: !pcsections !2 -define void @atomic128_cas_seq_cst(i128* %a) nounwind uwtable { +define void @atomic128_cas_seq_cst(ptr %a) nounwind uwtable { entry: - cmpxchg i128* %a, i128 0, i128 1 seq_cst seq_cst + cmpxchg ptr %a, i128 0, i128 1 seq_cst seq_cst ret void } ; CHECK-LABEL: atomic128_cas_seq_cst{{.*}}!pcsections !0 @@ -2030,16 +2030,16 @@ entry: ; Check that callbacks are emitted. ; CHECK-LABEL: __sanitizer_metadata_atomics.module_ctor -; CHECK: call void @__sanitizer_metadata_atomics_add(i32 1, i8** @__start_sanmd_atomics, i8** @__stop_sanmd_atomics) +; CHECK: call void @__sanitizer_metadata_atomics_add(i32 1, ptr @__start_sanmd_atomics, ptr @__stop_sanmd_atomics) ; CHECK-LABEL: __sanitizer_metadata_atomics.module_dtor -; CHECK: call void @__sanitizer_metadata_atomics_del(i32 1, i8** @__start_sanmd_atomics, i8** @__stop_sanmd_atomics) +; CHECK: call void @__sanitizer_metadata_atomics_del(i32 1, ptr @__start_sanmd_atomics, ptr @__stop_sanmd_atomics) ; CHECK-LABEL: __sanitizer_metadata_covered.module_ctor -; CHECK: call void @__sanitizer_metadata_covered_add(i32 1, i8** @__start_sanmd_covered, i8** @__stop_sanmd_covered) +; CHECK: call void @__sanitizer_metadata_covered_add(i32 1, ptr @__start_sanmd_covered, ptr @__stop_sanmd_covered) ; CHECK-LABEL: __sanitizer_metadata_covered.module_dtor -; CHECK: call void @__sanitizer_metadata_covered_del(i32 1, i8** @__start_sanmd_covered, i8** @__stop_sanmd_covered) +; CHECK: call void @__sanitizer_metadata_covered_del(i32 1, ptr @__start_sanmd_covered, ptr @__stop_sanmd_covered) ; CHECK: !0 = !{!"sanmd_covered", !1} ; CHECK: !1 = !{i32 1}