X86下vxworks的romStart分析:

本文分析了VxWorks在X86架构下压缩型BOOT的romStart过程。内容包括binArrayStart和binArrayEnd的定义,解释了压缩二进制image中缺少romInit.o和bootInit.o的情况。romStart执行时,将从ROM_OFFSET(binArrayStart)解压到RAM_DST_ADRS(RAM_HIGH_ADRS),并跳转到usrInit()。此外,还详述了为避免缓存问题而进行的text段复制操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

vxworks 压缩型BOOT的romStart分析:
binArrayStart:压缩的二进制image的起始地址
binArrayEnd:压缩的二进制image的结束地址
压缩的二进制image中没有romInit.o和bootInit.o
将ROM_OFFSET(binArrayStart)开始解压RAM_DST_ADRS地址,即RAM_HIGH_ADRS地址,

然后直接跳转到usrInit().

下面这段拷贝,具体含义是:

/*
     * copy text to uncached locations to avoid problems with
     * copy back caches
     * copy the entire data segment because there is no way to ensure that
     * binArray is the last thing in the data segment because of GP relative
     * addressing
     */

知道可以说一下!呵呵

 

((FUNCPTR)ROM_OFFSET(copyLongs)) (ROM_TEXT_ADRS, (UINT)romInit,
        ((UINT)binArrayStart - (UINT)romInit)/ sizeof (long));

    ((FUNCPTR)ROM_OFFSET(copyLongs))
           ((UINT *)((UINT)ROM_TEXT_ADRS + ((UINT)BINARRAYEND_ROUNDOFF -
           (UINT)romInit)), (UINT *)BINARRAYEND_ROUNDOFF,
           ((UINT)wrs_kernel_data_end - (UINT)binArrayEnd) / sizeof (long));

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值