PC-Relative Address

Compute an address relative to the program counter, without reading memory.

Data Movement

Semantics

rd = PC + offset. This is what makes position-independent code possible, so every architecture provides it, but only some can read the program counter directly.

Architecture Instructions Expressed as How this architecture does it
x86 one instruction LEA with RIP-relative addressing computes an address and never touches memory. Its well-known second life as a three-operand add that leaves the flags alone falls out of the same mechanism.
ARM one instruction ADR reaches about a megabyte. ADRP gives the 4 KB page address within +/-4 GB and is paired with an ADD for the low bits, which is the standard position-independent idiom in A64.
RISC-V one instruction AUIPC adds a 20-bit upper immediate to the PC. Paired with an ADDI, or folded into a load's own 12-bit offset, it reaches +/-2 GB in two instructions.
PowerISA an idiom Classic PowerISA has no instruction that reads the PC. The long-standing idiom is a BL to the very next instruction followed by MFLR, using the link register as a program-counter read, which costs a return-stack mispredict. Later revisions added ADDPCIS to do it directly.