- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在编译后优化小 Sprite 的大小。
但是在 printf 中声明的字符串被移动到 .rodata 部分并且没有被链接器优化。
#include <stdio.h>
#include <stdlib.h>
static char str1[] = "String1"; //goto .data.str1
const char str2[] = "String2"; //goto .rodata.str2
int main(){
printf("%s",str1); //"%s" in .rodata
printf("%s",str2);
printf("On-the fly string"); //goto .rodata
return 0;
}
void unused_function(){
const char str3[] = "String Not Used"; //goto .text.unused_function and is removed by the linker
printf("I would like to optimize this string"); //goto .rodata and isn't removed by the linker
printf("%s", str3); //
}
我编译并链接这些参数:
gcc -fdata-sections -ffunction-sections -Wl,--gc-sections hello.c -o hello.out
编译后的样子:
Contents of section .data.str1:
0000 53747269 6e673100 String1.
Contents of section .rodata.str2:
0000 53747269 6e673200 String2.
Contents of section .rodata:
0000 2573004f 6e2d7468 6520666c 79207374 %s.On-the fly st
0010 72696e67 00000000 4920776f 756c6420 ring....I would
0020 6c696b65 20746f20 6f707469 6d697a65 like to optimize
0030 20746869 73207374 72696e67 00 this string.
Contents of section .text.main:
0000 554889e5 be000000 00bf0000 0000b800 UH..............
0010 000000e8 00000000 be000000 00bf0000 ................
0020 0000b800 000000e8 00000000 bf000000 ................
0030 00b80000 0000e800 000000b8 00000000 ................
0040 5dc3 ].
Contents of section .text.unused_function:
0000 554889e5 4883ec20 64488b04 25280000 UH..H.. dH..%(..
0010 00488945 f831c048 b8537472 696e6720 .H.E.1.H.String
0020 4e488945 e048b86f 74205573 65640048 NH.E.H.ot Used.H
0030 8945e8bf 00000000 b8000000 00e80000 .E..............
0040 0000488d 45e04889 c6bf0000 0000b800 ..H.E.H.........
0050 000000e8 00000000 488b45f8 64483304 ........H.E.dH3.
0060 25280000 007405e8 00000000 c9c3 %(...t........
在链接之后
Contents of section .text:
400440 31ed4989 d15e4889 e24883e4 f0505449 1.I..^H..H...PTI
400450 c7c0e005 400048c7 c1700540 0048c7c7 ....@.H..p.@.H..
400460 2d054000 e8b7ffff fff4660f 1f440000 -.@.......f..D..
400470 b83f1060 0055482d 38106000 4883f80e .?.`.UH-8.`.H...
400480 4889e577 025dc3b8 00000000 4885c074 H..w.]......H..t
400490 f45dbf38 106000ff e00f1f80 00000000 .].8.`..........
4004a0 b8381060 0055482d 38106000 48c1f803 .8.`.UH-8.`.H...
4004b0 4889e548 89c248c1 ea3f4801 d048d1f8 H..H..H..?H..H..
4004c0 75025dc3 ba000000 004885d2 74f45d48 u.]......H..t.]H
4004d0 89c6bf38 106000ff e20f1f80 00000000 ...8.`..........
4004e0 803d510b 20000075 11554889 e5e87eff .=Q. ..u.UH...~.
4004f0 ffff5dc6 053e0b20 0001f3c3 0f1f4000 ..]..>. ......@.
400500 48833d18 09200000 741eb800 00000048 H.=.. ..t......H
400510 85c07414 55bf200e 60004889 e5ffd05d ..t.U. .`.H....]
400520 e97bffff ff0f1f00 e973ffff ff554889 .{.......s...UH.
400530 e5be3010 6000bff8 054000b8 00000000 ..0.`....@......
400540 e8cbfeff ffbef005 4000bff8 054000b8 ........@....@..
400550 00000000 e8b7feff ffbffb05 4000b800 ............@...
400560 000000e8 a8feffff b8000000 005dc390 .............]..
400570 41574189 ff415649 89f64155 4989d541 AWA..AVI..AUI..A
400580 544c8d25 88082000 55488d2d 88082000 TL.%.. .UH.-.. .
400590 534c29e5 31db48c1 fd034883 ec08e83d SL).1.H...H....=
4005a0 feffff48 85ed741e 0f1f8400 00000000 ...H..t.........
4005b0 4c89ea4c 89f64489 ff41ff14 dc4883c3 L..L..D..A...H..
4005c0 014839eb 75ea4883 c4085b5d 415c415d .H9.u.H...[]A\A]
4005d0 415e415f c366662e 0f1f8400 00000000 A^A_.ff.........
4005e0 f3c3 ..
Contents of section .rodata:
4005f0 53747269 6e673200 2573004f 6e2d7468 String2.%s.On-th
400600 6520666c 79207374 72696e67 00000000 e fly string....
400610 4920776f 756c6420 6c696b65 20746f20 I would like to
400620 6f707469 6d697a65 20746869 73207374 optimize this st
400630 72696e67 00 ring.
Contents of section .data:
601030 53747269 6e673100 String1.
所以你可以看到函数“unused_function()”和声明为 const 的字符串被删除了,但我想删除最后一个字符串“我想优化这个字符串”
第一个示例可以使用 -fmerge-constants 轻松删除,因为 printf 中的字符串将根据它们的长度放在一个部分中,但如果 2 个字符串具有相同的长度并且使用一个字符串,它将不起作用。
#include <stdio.h>
#include <stdlib.h>
void used_function();
static char str1[] = "String1"; //goto .data.str1 const char str2[] = "String2"; //goto .rodata.str2
int main(){
printf("%s",str1); //"%s" in .rodata printf("%s",str2); printf("On-the fly string"); //goto .rodata
used_function();
return 0;
}
void unused_function(){
const char str3[] = "String Not Used"; //goto .text.unused_function and is removed by the linker
printf("I would like to optimize this string 1"); //goto .rodata.str1.8 and isn't removed by the linker
printf("%s", str3); // }
void used_function(){
printf("A string used here with the same size 2"); //goto .rodata.str1.8 }
用-O2编译链接后
Contents of section .rodata:
400640 2573004f 6e2d7468 6520666c 79207374 %s.On-the fly st
400650 72696e67 00000000 41207374 72696e67 ring....A string
400660 20757365 64206865 72652077 69746820 used here with
400670 74686520 73616d65 2073697a 65203200 the same size 2.
400680 4920776f 756c6420 6c696b65 20746f20 I would like to
400690 6f707469 6d697a65 20746869 73207374 optimize this st
4006a0 72696e67 20310000 53747269 6e673200 ring 1..String2.
字符串还在!
最佳答案
使用编译器选项 -O2
优化您的二进制文件。这将消除仅由未调用的 unused_function
引用的字符串。
关于c - GCC 无法对 printf 中的 Var 声明进行垃圾回收,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26100976/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!