MCPcopy Create free account
hub / github.com/Rust-GPU/rust-cuda / atomic_rmw

Method atomic_rmw

crates/rustc_codegen_nvvm/src/builder.rs:1046–1055  ·  view source on GitHub ↗
(
        &mut self,
        _op: rustc_codegen_ssa::common::AtomicRmwBinOp,
        _dst: &'ll Value,
        _src: &'ll Value,
        _order: rustc_codegen_ssa::common::AtomicOrdering,
    )

Source from the content-addressed store, hash-verified

1044 self.fatal("atomic cmpxchg is not supported")
1045 }
1046 fn atomic_rmw(
1047 &mut self,
1048 _op: rustc_codegen_ssa::common::AtomicRmwBinOp,
1049 _dst: &'ll Value,
1050 _src: &'ll Value,
1051 _order: rustc_codegen_ssa::common::AtomicOrdering,
1052 ) -> &'ll Value {
1053 // see cmpxchg comment
1054 self.fatal("atomic rmw is not supported")
1055 }
1056
1057 fn atomic_fence(
1058 &mut self,

Callers

nothing calls this directly

Calls 1

fatalMethod · 0.80

Tested by

no test coverage detected