[問題] big endian中bit field 的問題

作者: ca5270 (蘭陵哭哭生)   2022-12-28 00:50:43
各位大神好,小弟在最近的面試中碰到了這類的考題
Q:在big endian中B1.A1的值會是多少
小弟的想法是因為在little endian中會取REG_SET.B3[0]這個記憶體中的低7位,值為0x12,
所以在big endian中會取記憶體中的高7位,所以值為0x9,請問這樣的想法正確嗎
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef union{
struct{
u8 A1 :7;
u8 :1;
u8 A2 :2;
u8 A3 :1;
u8 A4 :1;
u8 A5 :4;
u16 A6;
} B1;
u32 B2;
u8 B3[4];
} REG_SET
REG_SET.B3[0] = 0x12;
REG_SET.B3[1] = 0x34;
REG_SET.B3[2] = 0x56;
REG_SET.B3[3] = 0x78;
作者: chuegou (chuegou)   2022-12-28 01:46:00
同一個byte裡面不需要考慮大小頭欸 不對 我沒考慮到bitfield....
作者: breeze08 (linuxer)   2022-12-28 01:51:00
差點被騙+1
作者: lin130917 (阿哲)   2022-12-28 03:33:00
0x21 吧我算錯了 0x9 沒錯
作者: lc85301 (pomelocandy)   2022-12-28 13:34:00
用 qemu power pc 測是 0x9
作者: SocketAM2 (AM2)   2021-01-01 08:52:00
bitfield 是compiler impl defined吧,只給endian就考出題真的沒問題嗎?
作者: RadiationXen (Xen)   2021-01-01 11:36:00
bitfield的memory layout是implementation-defined
作者: james80351   2021-01-03 00:21:00
是群聯考的嗎?XD

Links booklink

Contact Us: admin [ a t ] ucptt.com