6 Accessing and Managing Symbols with armlink
6.4 Image$$ execution region symbols
The linker generates Image$$
symbols for every execution region present in the image.
Table 6-1 Image$$ execution region symbols
Symbol | Description |
---|---|
Image$$ |
Execution address of the region. |
Image$$ |
Execution region length in bytes excluding ZI length. |
Image$$ |
Address of the byte beyond the end of the non-ZI part of the execution region. |
Image$$ |
Execution address of the RO output section in this region. |
Image$$ |
Length of the RO output section in bytes. |
Image$$ |
Address of the byte beyond the end of the RO output section in the execution region. |
Image$$ |
Execution address of the RW output section in this region. |
Image$$ |
Length of the RW output section in bytes. |
Image$$ |
Address of the byte beyond the end of the RW output section in the execution region. |
Image$$ |
Execution address of the XO output section in this region. |
Image$$ |
Length of the XO output section in bytes. |
Image$$ |
Address of the byte beyond the end of the XO output section in the execution region. |
Image$$ |
Execution address of the ZI output section in this region. |
Image$$ |
Length of the ZI output section in bytes. |
Image$$ |
Address of the byte beyond the end of the ZI output section in the execution region. |
6.5 Load$$ execution region symbols
The linker generates Load$$
symbols for every execution region present in the image.
Note
Load$$region_name
symbols apply only to execution regions. Load$$LR$$load_region_name
symbols apply only to load regions.Load$$
execution region present in the image. All the symbols refer to load addresses after the C library is initialized.Table 6-2 Load$$ execution region symbols
Symbol | Description |
---|---|
Load$$ |
Load address of the region. |
Load$$ |
Region length in bytes. |
Load$$ |
Address of the byte beyond the end of the execution region. |
Load$$ |
Address of the RO output section in this execution region. |
Load$$ |
Length of the RO output section in bytes. |
Load$$ |
Address of the byte beyond the end of the RO output section in the execution region. |
Load$$ |
Address of the RW output section in this execution region. |
Load$$ |
Length of the RW output section in bytes. |
Load$$ |
Address of the byte beyond the end of the RW output section in the execution region. |
Load$$ |
Address of the XO output section in this execution region. |
Load$$ |
Length of the XO output section in bytes. |
Load$$ |
Address of the byte beyond the end of the XO output section in the execution region. |
Load$$ |
Load address of the ZI output section in this execution region. |
Load$$ |
Load length of the ZI output section in bytes.
The Load Length of ZI is zero unless
region_name has the ZEROPAD scatter-loading keyword set. If ZEROPAD is set then:Load Length =
Image$$ |
Load$$ |
Load address of the byte beyond the end of the ZI output section in the execution region. |
- The symbols are absolute because section-relative symbols can only have execution addresses.
- The symbols take into account RW compression.
- References to linker-defined symbols from RW compressed execution regions must be to symbols that are resolvable before RW compression is applied.
- If the linker detects a relocation from an RW-compressed region to a linker-defined symbol that depends on RW compression, then the linker disables compression for that region.
- Any Zero Initialized data that is written to the file is taken into account by the Limit and Length values. Zero Initialized data is written into the file when the
ZEROPAD
scatter-loading keyword is used.
6.6 Load$$LR$$ load region symbols
The linker generates Load$$LR$$
symbols for every load region present in the image.
Load$$LR$$
load region can contain many execution regions, so there are no separate $$RO
and $$RW
components.Note
Load$$LR$$load_region_name
symbols apply only to load regions. Load$$region_name
symbols apply only to execution regions.Load$$LR$$
load region present in the image.Table 6-3 Load$$LR$$ load region symbols
Symbol | Description |
---|---|
Load$$LR$$ |
Address of the load region. |
Load$$LR$$ |
Length of the load region. |
Load$$LR$$ |
Address of the byte beyond the end of the load region. |
6.7 Region name values when not scatter-loading
When scatter-loading is not used when linking, the linker uses default region name values.
ER_XO
, for an execute-only execution region, if present.ER_RO
, for the read-only execution region.ER_RW
, for the read-write execution region.ER_ZI
, for the zero-initialized execution region.
Image$$
execution region symbols.Load$$
execution region symbols.
Load$$ER_RO$$Base
.Note
- The ZI output sections of an image are not created statically, but are automatically created dynamically at runtime. Therefore, there is no load address symbol for ZI output sections.
- It is recommended that you use region-related symbols in preference to section-related symbols.
6.9 Methods of importing linker-defined symbols in C and C++
You can import linker-defined symbols into your C or C++ source code either by value or by reference.
- Import by value
-
extern unsigned int symbol_name;
- Import by reference
-
extern void *symbol_name;
int
, then you must use the address-of operator (&
) to obtain the correct value as shown in these examples:- Importing a linker-defined symbol
-
extern unsigned int Image$$ZI$$Limit;
config.heap_base = (unsigned int) &Image$$ZI$$Limit;
- Importing symbols that define a ZI output section
-
extern unsigned int Image$$ZI$$Length;
extern char Image$$ZI$$Base[];
memset(Image$$ZI$$Base,,(unsigned int)&Image$$Length);
6.11 Section-related symbols
Section-related symbols are symbols generated by the linker when it creates an image without scatter-loading.
- Image symbols, if you do not use scatter-loading to create a simple image. A simple image has up to four output sections (XO, RO, RW, and ZI) that produce the corresponding execution regions.
- Input section symbols, for every input section present in the image.
.text
sections are placed in one contiguous block. A contiguous block of sections with the same attribute and name is known as a consolidated section.6.21 Steering file command summary
A summary of the commands you can use in a streering file.
Table 6-6 Steering file command summary
Command | Description |
---|---|
EXPORT |
Specifies that a symbol can be accessed by other shared objects or executables. |
HIDE |
Makes defined global symbols in the symbol table anonymous. |
IMPORT |
Specifies that a symbol is defined in a shared object at runtime. |
RENAME |
Renames defined and undefined global symbol names. |
REQUIRE |
Creates a DT_NEEDED tag in the dynamic array. DT_NEEDED tags specify dependencies to other shared objects used by the application, for example, a shared library. |
RESOLVE |
Matches specific undefined references to a defined global symbol. |
SHOW |
Makes global symbols visible. This command is useful if you want to make a specific symbol visible that is hidden using a HIDE command with a wildcard. |
Note
6 Accessing and Managing Symbols with armlink的更多相关文章
- Unity3D & C# 设计模式--23
Unity3D & C#Design Patterns 23 design patterns. Creational Patterns 1. Abstract Factory抽象工厂 创 ...
- 【ASP.NET Identity系列教程(二)】运用ASP.NET Identity
注:本文是[ASP.NET Identity系列教程]的第二篇.本系列教程详细.完整.深入地介绍了微软的ASP.NET Identity技术,描述了如何运用ASP.NET Identity实现应用程序 ...
- TN035: Using Multiple Resource Files and Header Files with Visual C++
TN035: Using Multiple Resource Files and Header Files with Visual C++ This note describes how the Vi ...
- ASP.NET Identity 二 (转载)
来源:http://www.cnblogs.com/r01cn/p/5180892.html#undefined 推荐看原文,这里转载是怕好文章消失了. 注:本文是[ASP.NET Identity系 ...
- PASCAL VOC数据集The PASCAL Object Recognition Database Collection
The PASCAL Object Recognition Database Collection News 04-Apr-07: The VOC2007 challenge development ...
- SQLServer学习-- Microsoft SQL Server 2008 Management Studio Express
Microsoft SQL Server 2008 Management Studio Express is a free, integrated environment for accessing, ...
- Design Pattern ->Composite
Layering & Contract Philosophy With additional indirection class CComponent { ; ; ; public: virt ...
- ASP.NET Identity系列教程-3【运用ASP.NET Identity】
https://www.cnblogs.com/r01cn/p/5180892.html 14 运用ASP.NET Identity In this chapter, I show you how t ...
- Managing a node remotely by using the netapp SP
Managing a node remotely by using the Service Processor The Service Processor (SP) is a remote manag ...
随机推荐
- 创建一个apk:按钮-click-文字display,测试apk;安装在真机进行调试的方法
问题引入: 怎么样在一个app做event事件?例如touch操作,滑动操作,和按键事件(back,home等) 回答1:device.touch(x,y) ---获取device对象,然后touch ...
- STM32嵌入式开发学习笔记(三):使用按键控制小灯
按键和小灯一样,也是通过GPIO外设与主板连接,也是通过GPIO_InitStruct类型结构体控制其工作. 查阅技术手册,按钮连接GPIOA控制下的管脚0. 但与之不同的是,按键是一种输入设备,输入 ...
- java发带图片正文和附件的邮件mail
package com.mail; import java.io.UnsupportedEncodingException; import java.util.Date; import java.ut ...
- 编码(RZ NRZ NRZI)
Frm: https://jingyan.baidu.com/album/39810a23addccbb637fda66a.html?picindex=1 RZ 编码(Return-to-zero C ...
- css3继承
不可继承的:display.margin.border.padding.background.height.min-height.max- height.width.min-width.max-wid ...
- Delphi(ObjectPascal)基础语法
一个程序分为两个部分:1.程序首部:program 来标识这是一个pascal程序 后面的是可执行文件的名称程序名称2.程序体:说明部分:数据先定义后使用执行部分:以begin开始,以end结束 ...
- Python的一些列表方法
1.append:方法append用于将一个对象附加到列表末尾,直接修改列表 lst=[1,2,3,4] lst.append(5) print(lst) 1,2,3,4,5 2.clear:方法cl ...
- Match & Catch CodeForces - 427D 后缀自动机水题
题意: 给出两个字符串a,b,求一个字符串,这个字符串是a和b的子串, 且只在a,b中出现一次,要求输出这个字符串的最小长度. 题解: 将a串放入后缀自动机中,然后记录一下每个节点对应的子串出现的次数 ...
- php的生命周期的概述
1. PHP是随着WEB服务器(apache)的启动而运行的: 2. PHP通过mod_php5.so()模块和服务器(apache)相连 3. PHP总共有三个模块:内核.Zend引擎.以及扩展层: ...
- 第一个gulp 项目
1. 全局安装 npm install --global gulp 2.新建一个project文件夹,并在该目录下执行 npm init 命令: 3.把项目的基本文件夹搭好 4.在项目中局部安装 n ...