Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does this macro define?

Tags:

c

macros

I read this piece of macro(C code) and was confused in decoding it to know what it defines. What does it define?

#define sram (*((unsigned char (*)[1]) 0))

-AD

like image 701
goldenmean Avatar asked Feb 23 '10 18:02

goldenmean


3 Answers

I think sram means "start of RAM".


unsigned char[1]

An array of size 1 of unsigned chars.

unsigned char(*)[1]

A pointer to an array of size 1 of unsigned chars.

(unsigned char (*)[1]) 0

Cast 0 to a pointer to an array of size 1 of unsigned chars.

*((unsigned char (*)[1]) 0)

Read some memory at location 0, and interpret the result as an array of size 1 of unsigned chars.

(*((unsigned char (*)[1]) 0))

Just to avoid 1+5*8+1==42.

#define sram (*((unsigned char (*)[1]) 0))

Define the variable sram to the memory starting at location 0, and interpret the result as an array of size 1 of unsigned chars.

like image 184
kennytm Avatar answered Nov 07 '22 10:11

kennytm


I think it's returning the base address (0) of memory (RAM) :)

like image 39
John Weldon Avatar answered Nov 07 '22 10:11

John Weldon


It defines "sram" as a pointer to memory starting at zero. You can access memory via the pointer, e.g. sram[0] is address zero, sram[1] is the stuff at address one, etc.

Specifically it is casting 0 to be a pointer to an array of unsigned char and going indirect through that (leaving an array of unsigned char).

A similar result can be obtained by

#define sram ((unsigned char*)0)

It is also completely undefined in standard C, but that doesn't stop people from using it and having angels fly out of their navels.

like image 1
Richard Pennington Avatar answered Nov 07 '22 10:11

Richard Pennington