@@ -3678,12 +3678,12 @@ def AtomicFetchKind : I32EnumAttr<
3678
3678
}
3679
3679
3680
3680
def AtomicFetch : CIR_Op<"atomic.fetch",
3681
- [Pure, SameSecondOperandAndResultType ]> {
3681
+ [AllTypesMatch<["result", "val"]> ]> {
3682
3682
let summary = "Atomic fetch with unary and binary operations";
3683
3683
let description = [{
3684
- Represents `__atomic_binop_fetch ` and `__atomic_fetch_binop ` builtins,
3684
+ Represents `__atomic_<binop>_fetch ` and `__atomic_fetch_<binop> ` builtins,
3685
3685
where `binop` is on of the binary opcodes : `add`, `sub`, `and`, `xor`,
3686
- `or` and `nand `.
3686
+ `or`, `nand`, `max` and `min `.
3687
3687
3688
3688
`ptr` is an integer or fp pointer, followed by `val`, which must be
3689
3689
an integer or fp (only supported for `add` and `sub`). The operation
@@ -3693,9 +3693,14 @@ def AtomicFetch : CIR_Op<"atomic.fetch",
3693
3693
`__atomic_fetch_binop` and returns the value that had
3694
3694
previously been in *ptr, otherwise it returns the final result
3695
3695
of the computation (`__atomic_binop_fetch`).
3696
+
3697
+ Example:
3698
+ %res = cir.atomic.fetch(add, %ptr : !cir.ptr<!s32i>,
3699
+ %val : !s32i, seq_cst) : !s32i
3696
3700
}];
3697
3701
let results = (outs CIR_AnyIntOrFloat:$result);
3698
- let arguments = (ins PrimitiveIntOrFPPtr:$ptr, CIR_AnyIntOrFloat:$val,
3702
+ let arguments = (ins Arg<PrimitiveIntOrFPPtr, "", [MemRead, MemWrite]>:$ptr,
3703
+ CIR_AnyIntOrFloat:$val,
3699
3704
AtomicFetchKind:$binop,
3700
3705
Arg<MemOrder, "memory order">:$mem_order,
3701
3706
UnitAttr:$is_volatile,
@@ -3715,14 +3720,19 @@ def AtomicFetch : CIR_Op<"atomic.fetch",
3715
3720
let hasVerifier = 1;
3716
3721
}
3717
3722
3718
- def AtomicXchg : CIR_Op<"atomic.xchg", [Pure, SameSecondOperandAndResultType ]> {
3723
+ def AtomicXchg : CIR_Op<"atomic.xchg", [AllTypesMatch<["result", "val"]> ]> {
3719
3724
let summary = "Atomic exchange";
3720
3725
let description = [{
3721
- Atomic exchange functionality mapped from different use of builtins in
3722
- C/C++.
3726
+ Atomic exchange operations. Implements C/C++ builtins such as
3727
+ `__atomic_exchange`and `__atomic_exchange_n`.
3728
+
3729
+ Example:
3730
+ %res = cir.atomic.xchg(%ptr : !cir.ptr<!some_struct>,
3731
+ %val : !u64i, seq_cst) : !u64i
3723
3732
}];
3724
3733
let results = (outs CIR_AnyType:$result);
3725
- let arguments = (ins CIR_PointerType:$ptr, CIR_AnyType:$val,
3734
+ let arguments = (ins Arg<CIR_PointerType, "", [MemRead, MemWrite]>:$ptr,
3735
+ CIR_AnyType:$val,
3726
3736
Arg<MemOrder, "memory order">:$mem_order,
3727
3737
UnitAttr:$is_volatile);
3728
3738
@@ -3738,14 +3748,24 @@ def AtomicXchg : CIR_Op<"atomic.xchg", [Pure, SameSecondOperandAndResultType]> {
3738
3748
let hasVerifier = 0;
3739
3749
}
3740
3750
3741
- def AtomicCmpXchg : CIR_Op<"atomic.cmp_xchg", [Pure]> {
3751
+ def AtomicCmpXchg : CIR_Op<"atomic.cmp_xchg",
3752
+ [AllTypesMatch<["old", "expected", "desired"]>]> {
3742
3753
let summary = "Atomic compare exchange";
3743
3754
let description = [{
3744
- C/C++ Atomic compare and exchange. Example:
3755
+ C/C++ Atomic compare and exchange operation. Implements builtins like
3756
+ `__atomic_compare_exchange_n` and `__atomic_compare_exchange`.
3757
+
3758
+ Example:
3759
+ %old, %cmp = cir.atomic.cmp_xchg(%ptr : !cir.ptr<!some_struct>,
3760
+ %expected : !u64i,
3761
+ %desired : !u64i,
3762
+ success = seq_cst,
3763
+ failure = seq_cst) weak
3764
+ : (!u64i, !cir.bool)
3745
3765
3746
3766
}];
3747
3767
let results = (outs CIR_AnyType:$old, CIR_BoolType:$cmp);
3748
- let arguments = (ins CIR_AnyType :$ptr,
3768
+ let arguments = (ins Arg<CIR_PointerType, "", [MemRead, MemWrite]> :$ptr,
3749
3769
CIR_AnyType:$expected,
3750
3770
CIR_AnyType:$desired,
3751
3771
Arg<MemOrder, "success memory order">:$succ_order,
0 commit comments