微软MSDN上关于ARM芯片浮点运算的资料
勿使用浮点运算
ARM 处理器并不支持浮点运算 (Floating Point Math)。所有的浮点运算都是在浮点运算模拟器上进行,因此特别缓慢。需要浮点运算的函式,常要耗费数千个循环才能执行完毕。这就是为何游戏开发时,通常都使用定点 (Fixed Point) 格式的运算。定点运算实际上是使用整数,但指定固定数目的位元做為数值的分数部份。就好像是指定某一数字,其千位数以下為分数。若要表示 0.500,只要乘以 1000,便得到 500 这个数值。
比较困难的部份,是开发人员必须随时想像这个隐形的小数点。加法与减法比较没有问题:
500 + 500 = 1000 (可视為:0.500 + 0.500 = 1.000)。
乘法与除法则较為困难:
500 * 500 = 250000 (但若视為:0.500 * 0.500 = 250.000) 结果会不正确。
两个定点数值相乘后,必须以除法调整有效位数。若将结果除以 1000,则得到正确值 (250.000 / 1000 = 0.250 為正确的结果)。因此,进行乘法运算时,先做一般的乘法运算,再以除法调整结果的有效位数。
上述方法会引出一项有趣的问题。相乘后但尚未调整位数前,此居中数值的范围為何?
在上例中,执行乘法后,数值可能会超过允许的位元数。亦即可能会造成溢位,而得不到您想要的结果。解决方法是為居中数值指定合适的资料格式,确保能储存可能的最大值。当您将两个 32 位元数值相乘时,居中数值必须是 64 位元。调整位数后 (以及截断数值),结果会恢復為 32 位元。
int Multiply16_16_by_16_16( int a16_16, int b16_16 )
{
__int64 tmp32_32;
int result16_16;
tmp32_32 = a16_16;
tmp32_32 *= b16_16; // 目前结果為 32:32
tmp32_32 >>= 16; // 截断 16 个低位元
result16_16 = ( int ) tmp32_32; // 截断 16 个高位元
// 目前结果回到 16:16
return result16_16;
}
若要除法运算,则执行相反的程序:先以乘法调整,再进行相除。
常用的定点格式為 16:16,亦即前 16 位元代表整数部份,后 16 位元代表分数部份。 以此游戏专案而言,使用了各种不同的格式,以便应用在游戏引擎中各种范围的数值。简而言之,共使用了 2:30、8:24、16:16、24:8、28:4、2:14、8:8、11:5、2:8 以及4:4。其中大多数是 32 位元数值,但有些是 16 位元、10 位元或 8 位元。
Reference address:Floating point operation of arm chip
勿使用浮点运算
ARM 处理器并不支持浮点运算 (Floating Point Math)。所有的浮点运算都是在浮点运算模拟器上进行,因此特别缓慢。需要浮点运算的函式,常要耗费数千个循环才能执行完毕。这就是为何游戏开发时,通常都使用定点 (Fixed Point) 格式的运算。定点运算实际上是使用整数,但指定固定数目的位元做為数值的分数部份。就好像是指定某一数字,其千位数以下為分数。若要表示 0.500,只要乘以 1000,便得到 500 这个数值。
比较困难的部份,是开发人员必须随时想像这个隐形的小数点。加法与减法比较没有问题:
500 + 500 = 1000 (可视為:0.500 + 0.500 = 1.000)。
乘法与除法则较為困难:
500 * 500 = 250000 (但若视為:0.500 * 0.500 = 250.000) 结果会不正确。
两个定点数值相乘后,必须以除法调整有效位数。若将结果除以 1000,则得到正确值 (250.000 / 1000 = 0.250 為正确的结果)。因此,进行乘法运算时,先做一般的乘法运算,再以除法调整结果的有效位数。
上述方法会引出一项有趣的问题。相乘后但尚未调整位数前,此居中数值的范围為何?
在上例中,执行乘法后,数值可能会超过允许的位元数。亦即可能会造成溢位,而得不到您想要的结果。解决方法是為居中数值指定合适的资料格式,确保能储存可能的最大值。当您将两个 32 位元数值相乘时,居中数值必须是 64 位元。调整位数后 (以及截断数值),结果会恢復為 32 位元。
int Multiply16_16_by_16_16( int a16_16, int b16_16 )
{
__int64 tmp32_32;
int result16_16;
tmp32_32 = a16_16;
tmp32_32 *= b16_16; // 目前结果為 32:32
tmp32_32 >>= 16; // 截断 16 个低位元
result16_16 = ( int ) tmp32_32; // 截断 16 个高位元
// 目前结果回到 16:16
return result16_16;
}
若要除法运算,则执行相反的程序:先以乘法调整,再进行相除。
常用的定点格式為 16:16,亦即前 16 位元代表整数部份,后 16 位元代表分数部份。 以此游戏专案而言,使用了各种不同的格式,以便应用在游戏引擎中各种范围的数值。简而言之,共使用了 2:30、8:24、16:16、24:8、28:4、2:14、8:8、11:5、2:8 以及4:4。其中大多数是 32 位元数值,但有些是 16 位元、10 位元或 8 位元。
Previous article:atmega fuse configuration details
Next article:Connection between ARM and SDRAM chip
- Popular Resources
- Popular amplifiers
Recommended Content
Latest Microcontroller Articles
He Limin Column
Microcontroller and Embedded Systems Bible
Professor at Beihang University, dedicated to promoting microcontrollers and embedded systems for over 20 years.
MoreSelected Circuit Diagrams
MorePopular Articles
- Innolux's intelligent steer-by-wire solution makes cars smarter and safer
- 8051 MCU - Parity Check
- How to efficiently balance the sensitivity of tactile sensing interfaces
- What should I do if the servo motor shakes? What causes the servo motor to shake quickly?
- 【Brushless Motor】Analysis of three-phase BLDC motor and sharing of two popular development boards
- Midea Industrial Technology's subsidiaries Clou Electronics and Hekang New Energy jointly appeared at the Munich Battery Energy Storage Exhibition and Solar Energy Exhibition
- Guoxin Sichen | Application of ferroelectric memory PB85RS2MC in power battery management, with a capacity of 2M
- Analysis of common faults of frequency converter
- In a head-on competition with Qualcomm, what kind of cockpit products has Intel come up with?
- Dalian Rongke's all-vanadium liquid flow battery energy storage equipment industrialization project has entered the sprint stage before production
MoreDaily News
- Allegro MicroSystems Introduces Advanced Magnetic and Inductive Position Sensing Solutions at Electronica 2024
- Car key in the left hand, liveness detection radar in the right hand, UWB is imperative for cars!
- After a decade of rapid development, domestic CIS has entered the market
- Aegis Dagger Battery + Thor EM-i Super Hybrid, Geely New Energy has thrown out two "king bombs"
- A brief discussion on functional safety - fault, error, and failure
- In the smart car 2.0 cycle, these core industry chains are facing major opportunities!
- The United States and Japan are developing new batteries. CATL faces challenges? How should China's new energy battery industry respond?
- Murata launches high-precision 6-axis inertial sensor for automobiles
- Ford patents pre-charge alarm to help save costs and respond to emergencies
- New real-time microcontroller system from Texas Instruments enables smarter processing in automotive and industrial applications
Guess you like
- LCD Operation (S3C2440)
- The operational amplifier forms a three-point capacitor oscillation
- [NXP Rapid IoT Review] First give SLN-RPK-NODE an emulator
- Guangdong companies are looking for electronic engineers/structural engineers/acoustic engineers
- Can the output voltage of an LDO be equal to the input voltage?
- After importing the 2812 project example, it prompts that it does not match and cannot be run
- EFT 2B, but all others passed.
- STM32 freezes and needs power-on reset
- Schematic diagram and PCB of EBAZ4205 mining board based on Z7010
- 【Repost】Analysis of the process and principle of lithium battery core slurry