Allows embedding of assembly instructions within C code.
asm volatile ("mov %0, rsp")Macro Example
#define GET_BP(bp) asm volatile ("mov %0, rbp" : "=r"(bp) : : );
// stores the rbp value into the variable given bpAllows embedding of assembly instructions within C code.
asm volatile ("mov %0, rsp")#define GET_BP(bp) asm volatile ("mov %0, rbp" : "=r"(bp) : : );
// stores the rbp value into the variable given bp