预处理

E:\CppSpace\hello>g++ -o main.i -E main.cpp

E:\CppSpace\hello>dir /p
驱动器 E 中的卷是 固盘-项目
卷的序列号是 0000-5D89 E:\CppSpace\hello 的目录 2018/01/27/周六 09:52 <DIR> .
2018/01/27/周六 09:52 <DIR> ..
2018/01/26/周五 11:18 <DIR> bin
2018/01/26/周五 11:18 1,065 hello.cbp
2018/01/26/周五 17:42 93 hello.depend
2018/01/26/周五 17:39 358 hello.layout
2018/01/27/周六 09:35 214 main.cpp
2018/01/27/周六 09:52 447,921 main.i
# 2 "main.cpp" 2

using std::cout;
using std::cin;
using std::endl; int main()
{
int a;
cout << "xxx:" << endl;
cin >> a;
cout << "xxx:" << a << endl;
return 0;
}

将预处理文件转为汇编文件

E:\CppSpace\hello>g++ -o main.s -S main.i

E:\CppSpace\hello>dir /p
驱动器 E 中的卷是 固盘-项目
卷的序列号是 0000-5D89 E:\CppSpace\hello 的目录 2018/01/27/周六 10:11 <DIR> .
2018/01/27/周六 10:11 <DIR> ..
2018/01/26/周五 11:18 <DIR> bin
2018/01/26/周五 11:18 1,065 hello.cbp
2018/01/26/周五 17:42 93 hello.depend
2018/01/26/周五 17:39 358 hello.layout
2018/01/27/周六 09:35 214 main.cpp
2018/01/27/周六 09:52 447,921 main.i
2018/01/27/周六 10:11 2,574 main.s
2018/01/26/周五 11:18 <DIR> obj
6 个文件 452,225 字节
4 个目录 7,373,844,480 可用字节
	.file	"main.cpp"
.lcomm __ZStL8__ioinit,1,1
.def ___main; .scl 2; .type 32; .endef
.section .rdata,"dr"
LC0:
.ascii "\307\353\312\344\310\353a\265\304\326\265:\0"
LC1:
.ascii "a\265\304\326\265\316\252:\0"
.text
.globl _main
.def _main; .scl 2; .type 32; .endef
_main:
leal 4(%esp), %ecx
andl $-16, %esp
pushl -4(%ecx)
pushl %ebp
movl %esp, %ebp
pushl %ebx
pushl %ecx
subl $32, %esp
call ___main
movl $LC0, 4(%esp)
movl $__ZSt4cout, (%esp)
call __ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc
movl $__ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_, (%esp)
movl %eax, %ecx
call __ZNSolsEPFRSoS_E
subl $4, %esp
leal -12(%ebp), %eax
movl %eax, (%esp)
movl $__ZSt3cin, %ecx
call __ZNSirsERi
subl $4, %esp
movl -12(%ebp), %ebx
movl $LC1, 4(%esp)
movl $__ZSt4cout, (%esp)
call __ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc
movl %ebx, (%esp)
movl %eax, %ecx
call __ZNSolsEi
subl $4, %esp
movl $__ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_, (%esp)
movl %eax, %ecx
call __ZNSolsEPFRSoS_E
subl $4, %esp
movl $0, %eax
leal -8(%ebp), %esp
popl %ecx
popl %ebx
popl %ebp
leal -4(%ecx), %esp
ret
.def ___tcf_0; .scl 3; .type 32; .endef
___tcf_0:
pushl %ebp
movl %esp, %ebp
subl $8, %esp
movl $__ZStL8__ioinit, %ecx
call __ZNSt8ios_base4InitD1Ev
leave
ret
.def __Z41__static_initialization_and_destruction_0ii; .scl 3; .type 32; .endef
__Z41__static_initialization_and_destruction_0ii:
pushl %ebp
movl %esp, %ebp
subl $24, %esp
cmpl $1, 8(%ebp)
jne L4
cmpl $65535, 12(%ebp)
jne L4
movl $__ZStL8__ioinit, %ecx
call __ZNSt8ios_base4InitC1Ev
movl $___tcf_0, (%esp)
call _atexit
L4:
leave
ret
.def __GLOBAL__sub_I_main; .scl 3; .type 32; .endef
__GLOBAL__sub_I_main:
pushl %ebp
movl %esp, %ebp
subl $24, %esp
movl $65535, 4(%esp)
movl $1, (%esp)
call __Z41__static_initialization_and_destruction_0ii
leave
ret
.section .ctors,"w"
.align 4
.long __GLOBAL__sub_I_main
.ident "GCC: (tdm-1) 4.9.2"
.def __ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc; .scl 2; .type 32; .endef
.def __ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_; .scl 2; .type 32; .endef
.def __ZNSolsEPFRSoS_E; .scl 2; .type 32; .endef
.def __ZNSirsERi; .scl 2; .type 32; .endef
.def __ZNSolsEi; .scl 2; .type 32; .endef
.def __ZNSt8ios_base4InitD1Ev; .scl 2; .type 32; .endef
.def __ZNSt8ios_base4InitC1Ev; .scl 2; .type 32; .endef
.def _atexit; .scl 2; .type 32; .endef

把汇编文件转为二进制文件

E:\CppSpace\hello>g++ -o main.o -c main.s
4c01 0600 0000 0000 f602 0000 1f00 0000
0000 0401 2e74 6578 7400 0000 0000 0000
0000 0000 f000 0000 0401 0000 2402 0000
0000 0000 1400 0000 2000 3060 2e64 6174
6100 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
4000 30c0 2e62 7373 0000 0000 0000 0000
0000 0000 0400 0000 0000 0000 0000 0000
0000 0000 0000 0000 8000 30c0 2e72 6461
7461 0000 0000 0000 0000 0000 1800 0000
f401 0000 0000 0000 0000 0000 0000 0000
4000 3040 2e63 746f 7273 0000 0000 0000
0000 0000 0400 0000 0c02 0000 ec02 0000
0000 0000 0100 0000 4000 30c0 2f34 0000
0000 0000 0000 0000 0000 0000 1400 0000
1002 0000 0000 0000 0000 0000 0000 0000
4000 3040 8d4c 2404 83e4 f0ff 71fc 5589
e553 5183 ec20 e800 0000 00c7 4424 0400
0000 00c7 0424 0000 0000 e800 0000 00c7
0424 0000 0000 89c1 e800 0000 0083 ec04
8d45 f489 0424 b900 0000 00e8 0000 0000
83ec 048b 5df4 c744 2404 0d00 0000 c704
2400 0000 00e8 0000 0000 891c 2489 c1e8
0000 0000 83ec 04c7 0424 0000 0000 89c1
e800 0000 0083 ec04 b800 0000 008d 65f8
595b 5d8d 61fc c355 89e5 83ec 08b9 0000
0000 e800 0000 00c9 c355 89e5 83ec 1883
7d08 0175 1f81 7d0c ffff 0000 7516 b900
0000 00e8 0000 0000 c704 2493 0000 00e8
0000 0000 c9c3 5589 e583 ec18 c744 2404
ffff 0000 c704 2401 0000 00e8 b9ff ffff
c9c3 9090 c7eb cae4 c8eb 61b5 c4d6 b53a
0061 b5c4 d6b5 ceaa 3a00 0000 d200 0000
4743 433a 2028 7464 6d2d 3129 2034 2e39
2e32 0000 1300 0000 1400 0000 1400 1b00
0000 0e00 0000 0600 2200 0000 1500 0000
0600 2700 0000 1700 0000 1400 2e00 0000
1800 0000 0600 3500 0000 1900 0000 1400
4300 0000 1600 0000 0600 4800 0000 1a00
0000 1400 5600 0000 0e00 0000 0600 5d00
0000 1500 0000 0600 6200 0000 1700 0000
1400 6c00 0000 1b00 0000 1400 7600 0000
1800 0000 0600 7d00 0000 1900 0000 1400
9a00 0000 0c00 0000 0600 9f00 0000 1c00
0000 1400 bb00 0000 0c00 0000 0600 c000
0000 1d00 0000 1400 c700 0000 0800 0000
0600 cc00 0000 1e00 0000 1400 0000 0000
0800 0000 0600 2e66 696c 6500 0000 0000
0000 feff 0000 6701 6d61 696e 2e63 7070
0000 0000 0000 0000 0000 0000 0000 0f00
0000 0000 0000 0300 0000 0300 5f6d 6169
6e00 0000 0000 0000 0100 2000 0201 0000
0000 0000 0000 0000 0000 0000 0000 0000
5f5f 5f74 6366 5f30 9300 0000 0100 2000
0300 0000 0000 1f00 0000 a500 0000 0100
2000 0300 0000 0000 5000 0000 d200 0000
0100 2000 0300 2e74 6578 7400 0000 0000
0000 0100 0000 0301 ee00 0000 1400 0000
0000 0000 0000 0000 0000 2e64 6174 6100
0000 0000 0000 0200 0000 0301 0000 0000
0000 0000 0000 0000 0000 0000 0000 2e62
7373 0000 0000 0000 0000 0300 0000 0301
0100 0000 0000 0000 0000 0000 0000 0000
0000 2e72 6461 7461 0000 0000 0000 0400
0000 0301 1600 0000 0000 0000 0000 0000
0000 0000 0000 2e63 746f 7273 0000 0000
0000 0500 0000 0301 0400 0000 0100 0000
0000 0000 0000 0000 0000 0000 0000 6500
0000 0000 0000 0600 0000 0301 1300 0000
0000 0000 0000 0000 0000 0000 0000 5f5f
5f6d 6169 6e00 0000 0000 0000 2000 0200
0000 0000 7000 0000 0000 0000 0000 0000
0200 0000 0000 7b00 0000 0000 0000 0000
0000 0200 0000 0000 8500 0000 0000 0000
0000 2000 0200 0000 0000 be00 0000 0000
0000 0000 2000 0200 0000 0000 fa00 0000
0000 0000 0000 2000 0200 0000 0000 0c01
0000 0000 0000 0000 2000 0200 0000 0000
1801 0000 0000 0000 0000 2000 0200 0000
0000 2301 0000 0000 0000 0000 2000 0200
0000 0000 3c01 0000 0000 0000 0000 2000
0200 5f61 7465 7869 7400 0000 0000 0000
2000 0200 5501 0000 2e72 6461 7461 247a
7a7a 005f 5f5a 5374 4c38 5f5f 696f 696e
6974 005f 5f5a 3431 5f5f 7374 6174 6963
5f69 6e69 7469 616c 697a 6174 696f 6e5f
616e 645f 6465 7374 7275 6374 696f 6e5f
3069 6900 5f5f 474c 4f42 414c 5f5f 7375
625f 495f 6d61 696e 002e 7264 6174 6124
7a7a 7a00 5f5f 5a53 7434 636f 7574 005f
5f5a 5374 3363 696e 005f 5f5a 5374 6c73
4953 7431 3163 6861 725f 7472 6169 7473
4963 4545 5253 7431 3362 6173 6963 5f6f
7374 7265 616d 4963 545f 4553 355f 504b
6300 5f5f 5a53 7434 656e 646c 4963 5374
3131 6368 6172 5f74 7261 6974 7349 6345
4552 5374 3133 6261 7369 635f 6f73 7472
6561 6d49 545f 5430 5f45 5336 5f00 5f5f
5a4e 536f 6c73 4550 4652 536f 535f 4500
5f5f 5a4e 5369 7273 4552 6900 5f5f 5a4e
536f 6c73 4569 005f 5f5a 4e53 7438 696f
735f 6261 7365 3449 6e69 7444 3145 7600
5f5f 5a4e 5374 3869 6f73 5f62 6173 6534
496e 6974 4331 4576 00

连接执行,

E:\CppSpace\hello>g++ -o main.exe main.o

E:\CppSpace\hello>main.exe
请输入a的值:
100
a的值为:100

也可以一步执行。

E:\CppSpace\hello>g++ -o main.exe main.cpp

E:\CppSpace\hello>main
请输入a的值:
100
a的值为:100

cpp - 编译过程的更多相关文章

  1. GCC编译过程

    以下是C程序一般的编译过程: gcc的编译流程分为四个步骤,分别为:· 预处理(Pre-Processing) 对C语言进行预处理,生成*.i文件.· 编译(Compiling) 将上一步生成的*.i ...

  2. gcc编译过程简述

    在linux系统上,从源文件到目标文件的转化是由编译器完成的.以hello.c程序的编译为例,如下: dfcao@linux: gcc -o hello hello.c 在这里,gcc编译器读取源文件 ...

  3. 关于一个程序的编译过程 zkjg面试

    http://blog.csdn.net/gengyichao/article/details/6544266 一 以下是C程序一般的编译过程: 从图中看到: 将编写的一个c程序(源代码 )转换成可以 ...

  4. [译]C++, Java和C#的编译过程解析

    1.1.1 摘要 我们知道计算机不能直接理解高级语言,它只能理解机器语言,所以我们必须要把高级语言翻译成机器语言,这样计算机才能执行高级语言编写的程序,在接下来的博文中,我们将介绍非托管和托管语音的编 ...

  5. C语言编译过程

    GCC编译C源码有四个步骤: 预处理-----> 编译 ----> 汇编 ----> 链接 一. 编译和链接的流程 C语言的编译链接过程要把我们编写的一个c程序(源代码)转换成可以在 ...

  6. C程序编译过程浅析

    前几天看了<程序员的自我修养——链接.装载与库>中的第二章“编译和链接”,主要根据其中的内容简单总结一下C程序编译的过程吧. 我现在一般都是用gcc,所以自然以GCC编译hellworld ...

  7. C程序编译过程

    1.1程序被其他程序翻译成不同的格式 1.hello.c #include <stdio.h> int main() { printf("hello world\n") ...

  8. C语言编译过程详解

    前言 C语言程序从源代码到二进制行程序都经历了那些过程?本文以Linux下C语言的编译过程为例,讲解C语言程序的编译过程. 编写hello world C程序: // hello.c #include ...

  9. Ubuntu 14.04 LTS 下 android 2.3.5 源码编译过程

    Ubuntu 14.04 LTS 下 android 2.3.5 源码编译过程   在新的Ubuntu 64位系统下去编译早期的安卓源码是会出现很多问题的,因为64位系统在安装完成后,很多32位的兼容 ...

随机推荐

  1. Sql 关于 查俩个表 第二个表用到第一个表的某一个数据

    今天在写程序的时候遇到一个问题  有一个这个需求 select top 1 Name,[Address] from UserInfo;select * from shoppingAddress whe ...

  2. jBPM学习之利用API完成流程实例

    流程引擎对象ProcessEngine是jBPM4所有的Service API之源.在jBPM4中各种服务相互依存,但所有的Service API都从ProcessEngine中获得,由此可见Proc ...

  3. Wing IDE设置(自动补全&注释快捷键)

    自动补全(默认使用Tab键自动补全) 修改方法:edit  -> preferences -> Editor -> Auto-completion 把右边keys的地方,从tab改成 ...

  4. mysql之其他

    一 IDE工具介绍 下载链接:https://pan.baidu.com/s/1bpo5mqj 掌握: 1. 测试+链接数据库 2. 新建库 3. 新建表,新增字段+类型+约束 4. 设计表:外键 5 ...

  5. selenium之 驱动环境配置chrome、firefox、IE

    讲起动态网页获取我们一定会用到selenium,至于selenium在各种语言的开发代码很多,但是在我们兴致勃勃找了很多代码,要运行的时候,编译器只会给我们抛出异常,因为我们没有配置好环境.下面我将为 ...

  6. Memcache缓存

    memcache 是服务器缓存系统,以键值对方式保存数据到内存中,把对象序列化后,理论上可支持所有的数据类型.使用情景:怎么用都可以,注意的是它只把数据保存到内存中,重启memcache 服务后丢失, ...

  7. Messagepack原理

    什么是Messagepack? 用官方的话说:MessagePack是一种高效的二进制序列化格式.它允许您像JSON一样在多个语言之间交换数据.但是,它更快并且更小.小整数被编码为一个字节,和典型的短 ...

  8. 1c19b35b005744d55261682b361804fa 如何破解经过 MD5 算法处理的信息?

    Md5密文破解(解密)可以说是网络攻击中的一个必不可少的环节,是工具中的一个重要"辅助工具".md5解密主要用于网络攻击,在对网站等进行入侵过程,有可能获得管理员或者其他用户的账号 ...

  9. CCNA笔记(3)

    网络类型 1,局域网 在一定范围的网络连接,只允许内部人员使用 2城域网 一个城市的网络连接在一起 3.广域网 一个省或者一个市的网络 所有的局域网加上广域网就是互联网

  10. TCP/IP(六)应用层(DNS和HTTP协议)

    前言 到这一篇我已经把TCP/IP五层模型详细的说明了一遍,大体的从物理层到最上层的应用层做了一个大概的了解,其实总体学下来东西非常的多,我们需要经常的去系统性的去学习它.不然过一段时间就忘记了! 回 ...