gcc优化内存之 __attribute__((packed))

#include <stdio.h>
#include <linux/types.h>
#include <asm/types.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
typedef __u32 u32;
typedef __s32 s32;
typedef __u16 u16;
typedef __s16 s16;
typedef __u8  u8;
typedef __s8  s8;
struct tlv_header{
        u8 type;
        u16 length;
}__attribute__((packed));

struct eph_device_info
{
    struct tlv_header device_header;
    u8 product_id;
    u8 variant_id;
    u8 application_version_major;
    u16 application_version_minor;
    u16 bootloader_version;
    u8 protocol_version;
    u8 crc;
};

void main()
{
        printf("%d \n",sizeof(struct eph_device_info));
}

打印结果:

12
#include <stdio.h>
#include <linux/types.h>
#include <asm/types.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
typedef __u32 u32;
typedef __s32 s32;
typedef __u16 u16;
typedef __s16 s16;
typedef __u8  u8;
typedef __s8  s8;
struct tlv_header{
        u8 type;
        u16 length;
};
//__attribute__((packed));
struct eph_device_info
{
    struct tlv_header device_header;
    u8 product_id;
    u8 variant_id;
    u8 application_version_major;
    u16 application_version_minor;
    u16 bootloader_version;
    u8 protocol_version;
    u8 crc;
};

void main()
{
        printf("%d \n",sizeof(struct eph_device_info));
}

打印结果:

14

原因:
attribute((packed)) 是gcc的优化选项,选择紧凑内存模式,结构体会不采用对齐的方式来使用内存,所以tlv_header加此编译选项时会只使用3字节内存,而不加此编译选项的话,会使用4字节内存(linux默认对齐系数为4,所有结构体需要是对齐系数的整数倍)。

修改对齐系数:
#pragma pack(8)貌似在gcc下不能生效,一些人的解释是,如果linux默认是4那么,如果设置大于4的对齐方式都是不能生效的。

目前我的平台默认应该是2,修改为#pragma pack(1)则可实现1字节对齐。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值