> For the complete Mojo documentation index, see [llms.txt](/llms.txt).
> Markdown versions of all pages are available by appending .md to any URL (e.g. /docs/manual/basics.md).

# Unsafe pointers

The [`UnsafePointer`](/docs/std/memory/unsafe_pointer/UnsafePointer/) type
is one of several pointer types available in the standard library to indirectly
reference locations in memory.

You can use an `UnsafePointer` to dynamically allocate and free memory, or to
point to memory allocated by some other piece of code. You can use these
pointers to write code that interacts with low-level interfaces, to interface
with other programming languages, or to build array-like data structures.
But as the name suggests, they're inherently *unsafe*. For example, when using
unsafe pointers, you're responsible for ensuring that memory gets allocated and
freed correctly.

In general, you should prefer safe pointer types when possible, reserving
`UnsafePointer` for those use cases where no other pointer type works.
For a comparison of standard library pointer types, see [Intro to
pointers](/docs/manual/pointers/).

## Unsafe pointer basics

An `UnsafePointer` is a type that holds an address to memory. You can store
and retrieve values in that memory. The `UnsafePointer` type is *generic*—it can
point to any type of value, and the value type is specified as a parameter. The
value pointed to by a pointer is sometimes called a *pointee*.

```mojo
# Allocate memory to hold a value
var ptr = alloc[Int](https://mojolang.org/docs/manual/pointers/1.md)
# Initialize the allocated memory
ptr.init_pointee_copy(100)
```

<!-- markdownlint-disable MD033 MD045 -->
<figure>

![](../images/pointer-diagram.png#light)
![](../images/pointer-diagram-dark.png#dark)

<figcaption>**Figure 1.** Pointer and pointee</figcaption>
</figure>
<!-- markdownlint-enable MD033 MD045 -->

Accessing the memory—to retrieve or update a value—is called
*dereferencing* the pointer. You can dereference a pointer by following the
variable name with an empty pair of square brackets:

```mojo
# Update an initialized value
ptr[] += 10
# Access an initialized value
print(ptr[])
```

```output
110
```

You can also allocate memory to hold multiple values to build array-like
structures. For details, see
[Storing multiple values](#storing-multiple-values).

## Lifecycle of a pointer

At any given time, a pointer can be in one of several states. An
`UnsafePointer` is non-nullable. It can be *uninitialized*, *dangling*,
or point to a memory location:

- Uninitialized. Just like any variable, a variable of type `UnsafePointer` can
  be declared but uninitialized.

  ```mojo
  var ptr: UnsafePointer[Int, MutExternalOrigin]
  ```

- Pointing to allocated, uninitialized memory. The `alloc()` function
  returns a pointer to a newly-allocated block of memory with space for the
  specified number of elements of the pointee's type.

  ```mojo
  ptr = alloc[Int](https://mojolang.org/docs/manual/pointers/1.md)
  ```

  Trying to dereference a pointer to uninitialized memory results in undefined
  behavior.

- Pointing to initialized memory. You can initialize an allocated, uninitialized
  pointer by moving or copying an existing value into the memory. Or you can get
  a pointer to an existing value by calling the constructor with the `to`
  keyword argument.

  ```mojo
  ptr.init_pointee_copy(value)
  # or
  ptr.init_pointee_move(value^)
  # or
  ptr = UnsafePointer(to=value)
  ```

  Once the value is initialized, you can read or mutate it using the dereference
  syntax:

  ```mojo
  var oldValue = ptr[]
  ptr[] = newValue
  ```

- Dangling. When you free the pointer's allocated memory, you're left with a
  *dangling pointer*. The address still points to its previous location, but the
  memory is no longer allocated to this pointer. Trying to dereference the
  pointer, or calling any method that would access the memory location results
  in undefined behavior.

  ```mojo
  ptr.free()
  ```

The following diagram shows the lifecycle of an `UnsafePointer`:

<!-- markdownlint-disable MD033 MD045 -->
<figure>

![](../images/pointer-lifecycle.png#light)
![](../images/pointer-lifecycle-dark.png#dark)

<figcaption>**Figure 2.** Lifecycle of an <code>UnsafePointer</code></figcaption>
</figure>
<!-- markdownlint-enable MD033 MD045 -->

### Allocating memory

Use the `alloc()` function to allocate memory. This function returns a new
pointer pointing to the requested memory. You can allocate space for one or
more values of the pointee's type. Allocation failure traps the program.
The `alloc()` function always returns a valid, non-null pointer:

```mojo
var ptr = alloc[Int](https://mojolang.org/docs/manual/pointers/10.md) # Allocate space for 10 Int values
```

The allocated space is *uninitialized*—like a variable that's been declared but
not initialized.

### Initializing the pointee

To initialize allocated memory, `UnsafePointer` provides the
[`init_pointee_copy()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#init_pointee_copy)
and
[`init_pointee_move()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#init_pointee_move)
methods. For example:

```mojo
ptr.init_pointee_copy(my_value)
```

To move a value into the pointer's memory location, use
`init_pointee_move()`:

```mojo
str_ptr.init_pointee_move(my_string^)
```

Note that to move the value, you usually need to add the transfer sigil
(`^`), unless the value is a [trivial
type](/docs/manual/traits#register-passable) (like `Int`) or a
newly-constructed, "owned" value:

```mojo
str_ptr.init_pointee_move("Owned string")
```

Alternately, you can get a pointer to an existing value by calling the
`UnsafePointer` constructor with the keyword `to` argument. This is useful for
getting a pointer to a value on the stack, for example.

```mojo
var counter: Int = 5
var ptr = UnsafePointer(to=counter)
```

Note that when calling `UnsafePointer(to=value)`, you don't need to allocate
memory, since you're pointing to an existing value.

### Dereferencing pointers

Use the `[]` dereference operator to access the value stored at a pointer (the
"pointee").

```mojo
# Read from pointee
print(ptr[])
# mutate pointee
ptr[] = 0
```

```output
5
```

If you've allocated space for multiple values, you can use subscript syntax to
access the values, as if they were an array, like `ptr[3]`. The empty subscript
`[]` has the same meaning as `[0]`.

:::caution

The dereference operator assumes that the memory being dereferenced is
initialized. Dereferencing uninitialized memory results in undefined behavior.

:::

You cannot safely use the dereference operator on uninitialized memory, even to
*initialize* a pointee. This is because assigning to a dereferenced pointer
calls lifecycle methods on the existing pointee (such as the destructor, move
constructor or copy constructor).

```mojo
var str_ptr = alloc[String](https://mojolang.org/docs/manual/pointers/1.md)
# str_ptr[] = "Testing" # Undefined behavior!
str_ptr.init_pointee_move("Testing")
str_ptr[] += " pointers" # Works now
```

### Destroying or removing values

The
[`take_pointee()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#take_pointee)
method moves a pointee from the memory location pointed to by `ptr`. This is a
consuming move. It invokes `__init__(take=)` on the destination value. It leaves
the memory location uninitialized.

The
[`destroy_pointee()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#destroy_pointee)
method calls the destructor on the pointee, and leaves the memory location
pointed to by `ptr` uninitialized.

Both `take_pointee()` and `destroy_pointee()` require that the pointer is
non-null, and the memory location contains a valid, initialized value of the
pointee's type; otherwise the function results in undefined behavior.

Calling
[`init_pointee_move_from(self, src)`](/docs/std/memory/unsafe_pointer/UnsafePointer/#init_pointee_move_from)
moves the value pointed to by `src` into the memory location pointed to by
`self`. After this operation, ownership of that value transfers from `src` to
`self` and the memory at `src` is uninitialized: do not read from it, and do not
invoke destructors on it. To make the memory valid again, initialize it with a
new value using one of the `init_pointee_*()` operations.

:::note
Mojo assumes the destination memory is uninitialized.
It does not destroy existing contents before writing the value from `src`.
:::

### Freeing memory

Calling [`free()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#free) on a
pointer frees the memory allocated by the pointer. It doesn't call the
destructors on any values stored in the memory—you need to do that explicitly
(for example, using
[`destroy_pointee()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#destroy_pointee)
or one of the other functions described in
[Destroying or removing values](#destroying-or-removing-values)).

Disposing of a pointer without freeing the associated memory can result in a
memory leak—where your program keeps taking more and more memory, because not
all allocated memory is being freed.

On the other hand, if you have multiple copies of a pointer accessing the same
memory, you need to make sure you only call `free()` on one of them. Freeing the
same memory twice is also an error.

After freeing a pointer's memory, you're left with a dangling pointer—its
address still points to the freed memory. Any attempt to access the memory,
like dereferencing the pointer results in undefined behavior.

## Storing multiple values

As mentioned in [Allocating memory](#allocating-memory), you can use an
`UnsafePointer` to allocate memory for multiple values. The memory is allocated
as a single, contiguous block. Pointers support arithmetic: adding an integer
to a pointer returns a new pointer offset by the specified number of values from
the original pointer:

```mojo
var third_ptr = first_ptr + 2
```

Pointers also support subtraction, as well as in-place addition and subtraction:

```mojo
# Advance the pointer one element:
ptr += 1
```

<!-- markdownlint-disable MD033 MD045 -->
<figure>

![](../images/pointer-offset.png#light)
![](../images/pointer-offset-dark.png#dark)

<figcaption>**Figure 3.** Pointer arithmetic</figcaption>
</figure>
<!-- markdownlint-enable MD033 MD045 -->

For example, the following example allocates memory to store 6 `Float64`
values, and initializes them all to zero.

```mojo
var float_ptr = alloc[Float64](https://mojolang.org/docs/manual/pointers/6.md)
for offset in range(6):
    (float_ptr+offset).init_pointee_copy(0.0)
```

Once the values are initialized, you can access them using subscript syntax:

```mojo
float_ptr[2] = 3.0
for offset in range(6):
    print(float_ptr[offset], end=", ")
```

```output
0.0, 0.0, 3.0, 0.0, 0.0, 0.0,
```

## `UnsafePointer` and origins

The `UnsafePointer` struct has an `origin` parameter to track the
origin of the memory it points to.

For pointers initialized with the `to` keyword argument, the origin is set to
the origin of the pointee. For example, in the following code, `s_ptr.origin` is
the same as the origin of `s`:

```mojo
s = "Testing"
s_ptr = UnsafePointer(to=s)
```

When allocating memory with the `alloc()` function, the returned pointer has an
`origin` value of `MutExternalOrigin`. This value represents an origin that is
mutable and doesn't *alias* existing values. For example, it doesn't point to
the memory allocated for any other variable. That means the compiler won't
unnecessarily extend the lifetimes of unrelated values. This memory isn't
tracked by Mojo's lifetime checker and you're responsible for freeing it.

If you're using a pointer in the implementation of a struct, you usually don't
have to worry about the origin, as long as the pointer isn't exposed outside of
of the struct. For example, if you implement a static array type that allocates
memory in its constructor, deallocates it in its destructor, and doesn't expose
the pointer outside of the struct, the default origin is fine.

But if the struct exposes a pointer to that memory, you need to set the origin
appropriately. For example, the `List` type has an `unsafe_ptr()` method that
returns an `UnsafePointer` to the underlying storage. In this case, the returned
pointer should share the origin of the list, since the list is the logical owner
of the storage.

That method looks something like this:

```mojo
def unsafe_ptr(
    ref self,
) -> UnsafePointer[T, origin_of(self)]:

    return self.data.unsafe_origin_cast[origin_of(self)]()
```

This returns a copy of the original pointer, with the origin set to match the
origin and mutability of the `self` value.

A method like this is unsafe, but setting the correct origin makes it safer,
since the compiler knows that the pointer is referring to data owned by the
list.

## Working with nullability

`UnsafePointer` is a non-nullable type. To model a null pointer, wrap it
in `Optional`:

```mojo
  var ptr = Optional[UnsafePointer[Int, MutExternalOrigin]]()
```

This creates an `Optional` with a value of `None`, which is equivalent
to a null pointer. `Optional[UnsafePointer]` has the same memory layout
as a raw pointer, so you can pass it across FFI boundaries as `NULL`.

To check whether an optional pointer is null, use `Optional` methods:

```mojo
if ptr:
    # ptr is not None — safe to unwrap
    var p = ptr.value()
```

When you need a non-null sentinel for deferred initialization, use
`unsafe_dangling()` instead:

```mojo
  var ptr = UnsafePointer[Int, MutExternalOrigin].unsafe_dangling()
```

For a practical example of optional pointers in a data structure, see
[Self-referential structs](/docs/manual/structs/reference/).

## Working with foreign pointers

When exchanging data with other programming languages, you may need to construct
an `UnsafePointer` from a foreign pointer. Mojo restricts creating
`UnsafePointer` instances from arbitrary addresses, to avoid users accidentally
creating pointers that *alias* each other (that is, two pointers that refer to
the same location). However, there are specific methods you can use to get an
`UnsafePointer` from a Python or C/C++ pointer.

When dealing with memory allocated elsewhere, you need to be aware of who's
responsible for freeing the memory. Freeing memory allocated elsewhere
can result in undefined behavior.

When working with some foreign functions, you may need to supply a pointer with
no specific type (a type-erased pointer, or "void pointer" in C/C++). This is
equivalent to a Mojo `OpaquePointer`.

You also need to be aware of the format of the data stored in memory, including
data types and byte order. For more information, see
[Converting data: bitcasting and byte order](#converting-data-bitcasting-and-byte-order).

### Creating a Mojo pointer from a raw memory address

You can create a `UnsafePointer` from a raw memory address using the
`unsafe_from_address` initializer.

```mojo
def write_to_address(mmio_address: Int, value: Int32):
    var ptr = UnsafePointer[Int32, MutExternalOrigin](https://mojolang.org/docs/manual/pointers/unsafe_from_address=mmio_address.md)

     # Writing to a raw memory address may require a volatile load/store as the
     # operation may have side effects not visible to the compiler.
     # You can specify this using the `volatile` parameter.
    ptr.store[volatile = True](https://mojolang.org/docs/manual/pointers/value.md)
```

This is unsafe, as the caller must ensure the address is valid before writing to
it, and that the memory is initialized before reading from it. The caller must
also ensure the pointer's origin and mutability is valid for the address,
failure to do so may result in undefined behavior.

### Creating a Mojo pointer from a Python pointer

The `PythonObject` type defines an
[`unsafe_get_as_pointer()`](/docs/std/python/python_object/PythonObject/#unsafe_get_as_pointer)
method to construct an `UnsafePointer` from a Python address.

For example, the following code creates a NumPy array and then accesses the
data using a Mojo pointer:

```mojo
from std.python import Python

def share_array() raises:
    np = Python.import_module("numpy")
    arr = np.array(Python.list(1, 2, 3, 4, 5, 6, 7, 8, 9))
    ptr = arr.ctypes.data.unsafe_get_as_pointer[DType.int64]()
    for i in range(9):
        print(ptr[i], end=", ")
    print()

def main() raises:
    share_array()
```

```output
1, 2, 3, 4, 5, 6, 7, 8, 9,
```

This example uses the NumPy
[`ndarray.ctype`](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.ctypes.html#numpy.ndarray.ctypes)
attribute to access the raw pointer to the underlying storage
(`ndarray.ctype.data`). The `unsafe_get_as_pointer()` method constructs an
`UnsafePointer` to this address.

### Working with C/C++ pointers

If you call a C/C++ function that returns a pointer using the
[`external_call`](/docs/std/ffi/external_call/) function, you can specify
the return type as an `UnsafePointer`, and Mojo will handle the type conversion
for you.

Notably, the `origin` parameter when working across FFI boundaries should often
be set to `(Mut/Immut)ExternalOrigin`, since the pointer points to memory
external to the mojo program.

```mojo
from std.ffi import external_call

def get_foreign_pointer() -> UnsafePointer[Int, MutExternalOrigin]:
    var ptr = external_call[
        "my_c_function", # external function name
        UnsafePointer[Int, MutExternalOrigin] # return type
    ]()
    return ptr
```

### Opaque pointers

The `OpaquePointer` type is a pointer that does not have a specific type. In
other languages, this is usually called a type-erased pointer or a void pointer.
Opaque pointers are usually used when interfacing with non-Mojo code, such as a
C library function that takes a void pointer.

`OpaquePointer` is actually a type alias for `UnsafePointer[NoneType]`, so it
has the same API as any other `UnsafePointer`.

You can't dereference an opaque pointer, but you can cast it to a specific type
using the `bitcast()` method. Similarly, you can create an opaque pointer from
an existing pointer by bitcasting to `NoneType`. For example:

```mojo
var str = "Hello, world!"
var str_ptr = UnsafePointer(to=str)
var opaque_ptr = str_ptr.bitcast[NoneType]()
# ... call some foreign function that takes a void pointer
```

## Converting data: bitcasting and byte order

Bitcasting a pointer returns a new pointer that has the same memory location,
but a new data type. This can be useful if you need to access different types of
data from a single area of memory. This can happen when you're reading binary
files, like image files, or receiving data over the network.

The following sample processes a format that consists of chunks of data,
where each chunk contains a variable number of 32-bit integers.
Each chunk begins with an 8-bit integer that identifies the number of values
in the chunk.

```mojo
def read_chunks(
  var ptr: UnsafePointer[mut=False, UInt8],
) -> List[List[UInt32]]:
    chunks = List[List[UInt32]]()
    # A chunk size of 0 indicates the end of the data
    chunk_size = Int(ptr[])
    while (chunk_size > 0):
        # Skip the 1 byte chunk_size and get a pointer to the first
        # UInt32 in the chunk
        ui32_ptr = (ptr + 1).bitcast[UInt32]()
        chunk = List[UInt32](https://mojolang.org/docs/manual/pointers/capacity=chunk_size.md)
        for i in range(chunk_size):
            chunk.append(ui32_ptr[i])
        chunks.append(chunk)
        # Move our pointer to the next byte after the current chunk
        ptr += (1 + 4 * chunk_size)
        # Read the size of the next chunk
        chunk_size = Int(ptr[])
    return chunks
```

When dealing with data read in from a file or from the network, you may also
need to deal with byte order. Most systems use little-endian byte order (also
called least-significant byte, or LSB) where the least-significant byte in a
multibyte value comes first. For example, the number 1001 can be represented in
hexadecimal as 0x03E9, where E9 is the least-significant byte. Represented as a
16-bit little-endian integer, the two bytes are ordered E9 03. As a 32-bit
integer, it would be represented as E9 03 00 00.

Big-endian or most-significant byte (MSB) ordering is the opposite: in the
32-bit case, 00 00 03 E9. MSB ordering is frequently used in file formats and
when transmitting data over the network. You can use the
[`byte_swap()`](/docs/std/bit/bit/byte_swap/) function to swap the byte
order of a SIMD value from big-endian to little-endian or the reverse. For
example, if the method above was reading big-endian data, you'd just need to
change a single line:

```mojo
chunk.append(byte_swap(ui32_ptr[i]))
```

## Working with SIMD vectors

The `UnsafePointer` type includes
[`load()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#load) and
[`store()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#store) methods for
performing aligned loads and stores of scalar values. It also has methods
supporting strided load/store and gather/scatter.

Strided load loads values from memory into a SIMD vector using an offset (the
"stride") between successive memory addresses. This can be useful for
extracting rows or columns from tabular data, or for extracting individual
values from structured data. For example, consider the data for an RGB image,
where each pixel is made up of three 8-bit values, for red, green, and blue. If
you want to access just the red values, you can use a strided load or store.

<!-- markdownlint-disable MD033 MD045 -->
<figure>

![](../images/strided-load-storage.png#light)
![](../images/strided-load-storage-dark.png#dark)

<figcaption>**Figure 4.** Strided load</figcaption>
</figure>
<!-- markdownlint-enable MD033 MD045 -->

The following function uses the
[`strided_load()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#strided_load)
and
[`strided_store()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#strided_store)
methods to invert the red pixel values in an image, 8 values at a time. (Note
that this function only handles images where the number of pixels is evenly
divisible by eight.)

```mojo
def invert_red_channel(ptr: UnsafePointer[mut=True, UInt8], pixel_count: Int):
    # number of values loaded or stored at a time
    comptime simd_width = 8
    # bytes per pixel, which is also the stride size
    bpp = 3
    for i in range(0, pixel_count * bpp, simd_width * bpp):
        red_values = (ptr + i).strided_load[width=simd_width](https://mojolang.org/docs/manual/pointers/bpp.md)
        # Invert values and store them in their original locations
        (ptr + i).strided_store[width=simd_width](https://mojolang.org/docs/manual/pointers/~red_values, bpp.md)
```

The [`gather()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#gather) and
[`scatter()`](/docs/std/memory/unsafe_pointer/UnsafePointer/#scatter) methods
let you load or store a set of values that are stored in arbitrary locations.
You do this by passing in a SIMD vector of *offsets* to the current pointer. For
<!-- markdownlint-disable MD033 -->
example, when using `gather()`, the <var>n</var>th value in the vector is loaded
from (pointer address) + <var>offset[n]</var>.
<!-- markdownlint-enable MD033 -->

## Safety

Unsafe pointers are unsafe for several reasons:

- Memory management is up to the user. You need to manually allocate
  and free memory, and/or be aware of when other APIs are allocating or freeing
  memory for you.

- `UnsafePointer` values are non-nullable, but they're not guaranteed to
  point to *initialized* memory. You're responsible for ensuring memory is
  initialized before you dereference it.

- `UnsafePointer` does have an `origin` parameter so Mojo can track the origin
  of the data it points to, but it also provides unsafe APIs. For example, when
  you do pointer arithmetic, the compiler doesn't do any bounds checking.
