当前位置: 首页 > news >正文

魔客吧是什麼程序做的网站app开发成本预算表

魔客吧是什麼程序做的网站,app开发成本预算表,有哪些做网站公司,wordpress facebook登陆前言 今天&#xff0c;通过一个有趣的案例&#xff0c;从反编译的角度看一下C语言中函数参数是如何传递的。 创建main.c文件&#xff0c;将下面实验代码拷贝到main.c文件中。 # main.c #include <stdio.h>int test(int a, int b, int c, int d, int e, int f, int g, …

前言

今天,通过一个有趣的案例,从反编译的角度看一下C语言中函数参数是如何传递的。

创建main.c文件,将下面实验代码拷贝到main.c文件中。

# main.c
#include <stdio.h>int test(int a, int b, int c, int d, int e, int f, int g, int h, int i)
{return 0;
}int main(int argc, char *argv[])
{test(0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9);return 0;
}

简单解释一些上述代码:

  • 声明一个名为test且需要七个参数的函数,函数体内并未做任何事情。
  • main函数中调用test函数,并将十六进制的1-9作为参数传递到test函数中。

32位程序

使用gcc -m32 main.c -o mainmain.c编译为32位程序,使用file命令查看结果。
在这里插入图片描述

使用gdb看一下反编译结果,使用gdb main命令加载程序。程序加载完毕后,使用命令disassemble main对程序进行反编译
在这里插入图片描述

着重看一下上图红框中的内容,注意以下两点即可:

  • 函数参数的传递顺序是从右向左依次传递,即先传递0x9,再传递0x8,依次类推。
  • 全部使用的push指令,将参数值压到栈中,最后调用test函数

64位程序

使用gcc main.c -o mainmain.c编译为32位程序,使用file命令查看结果。
在这里插入图片描述

使用gdb看一下反编译结果,使用gdb main命令加载程序。程序加载完毕后,使用命令disassemble main对程序进行反编译
在这里插入图片描述

着重看一下上图红框中的内容,注意以下两点即可:

  • 函数参数的顺序与32位程序相同,依旧是从右向左依次传递,即先传递0x9,再传递0x8,依次类推。
  • 不同的是传递给test函数的前六个参数(从左向右的顺序,即0x10x2、……、0x6)分别放入到寄存器(rdirsirdxrcxr8r9)中,超过6个参数之后的参数放入到栈中。

本例中:0x1放入edi寄存器、0x2放入esi寄存器、0x3放入edx寄存器、0x4放入ecx寄存器、0x5放入r8d寄存器、0x6放入r9d寄存器。

注:edi为32位寄存器,rdi为64位寄存器,因为传递的参数不需要占据64bit,因此编译程序时自动进行了优化。

无情的广告时间

哈哈哈哈,又到了大家喜欢的广告时间了,喜欢的话给个关注呗,公众号:编码魔坊,谢谢您的关注!!!


文章转载自:
http://stallion.c7623.cn
http://enuresis.c7623.cn
http://southdown.c7623.cn
http://pareu.c7623.cn
http://cunning.c7623.cn
http://catoptrical.c7623.cn
http://curt.c7623.cn
http://typhoidal.c7623.cn
http://apron.c7623.cn
http://hoarse.c7623.cn
http://headlike.c7623.cn
http://marsh.c7623.cn
http://primiparity.c7623.cn
http://alow.c7623.cn
http://persia.c7623.cn
http://semiconservative.c7623.cn
http://anectine.c7623.cn
http://racecard.c7623.cn
http://librate.c7623.cn
http://louie.c7623.cn
http://adessive.c7623.cn
http://separative.c7623.cn
http://vitellogenesis.c7623.cn
http://spongoid.c7623.cn
http://defenestration.c7623.cn
http://rainbarrel.c7623.cn
http://gnathonic.c7623.cn
http://uniflagellate.c7623.cn
http://klick.c7623.cn
http://javari.c7623.cn
http://agapemone.c7623.cn
http://laced.c7623.cn
http://deskwork.c7623.cn
http://parcener.c7623.cn
http://leman.c7623.cn
http://action.c7623.cn
http://kcmg.c7623.cn
http://luxate.c7623.cn
http://fartlek.c7623.cn
http://pseudopregnancy.c7623.cn
http://entangle.c7623.cn
http://typographic.c7623.cn
http://halogenoid.c7623.cn
http://vortices.c7623.cn
http://pretended.c7623.cn
http://preconscious.c7623.cn
http://carbonyl.c7623.cn
http://salpingotomy.c7623.cn
http://kinesiology.c7623.cn
http://saloniki.c7623.cn
http://eclectically.c7623.cn
http://pelletron.c7623.cn
http://trimetrogon.c7623.cn
http://gruffly.c7623.cn
http://paddywack.c7623.cn
http://historiographer.c7623.cn
http://triphylite.c7623.cn
http://homoecious.c7623.cn
http://moonship.c7623.cn
http://publishable.c7623.cn
http://speer.c7623.cn
http://tenseness.c7623.cn
http://arbalest.c7623.cn
http://extravehicular.c7623.cn
http://strongylid.c7623.cn
http://uncivilized.c7623.cn
http://ropery.c7623.cn
http://levelman.c7623.cn
http://dcmg.c7623.cn
http://soilage.c7623.cn
http://meistersinger.c7623.cn
http://diathermic.c7623.cn
http://na.c7623.cn
http://whelp.c7623.cn
http://higher.c7623.cn
http://unsight.c7623.cn
http://wsj.c7623.cn
http://flix.c7623.cn
http://gothicism.c7623.cn
http://ignimbrite.c7623.cn
http://vistaed.c7623.cn
http://townish.c7623.cn
http://neuropteran.c7623.cn
http://corsak.c7623.cn
http://concealment.c7623.cn
http://unbodied.c7623.cn
http://unformed.c7623.cn
http://ropery.c7623.cn
http://lupulin.c7623.cn
http://uncultivated.c7623.cn
http://cattlelifter.c7623.cn
http://distillation.c7623.cn
http://attributable.c7623.cn
http://oxfordshire.c7623.cn
http://crownling.c7623.cn
http://pessimal.c7623.cn
http://acinus.c7623.cn
http://chairlady.c7623.cn
http://fabrication.c7623.cn
http://munt.c7623.cn
http://www.zhongyajixie.com/news/79473.html

相关文章:

  • 更换空间对网站的影响百度竞价课程
  • 网站建设 企业观点郑州计算机培训机构哪个最好
  • 浦东新区中国建设银行官网站企业推广网
  • 制作网站的视频教程今天合肥刚刚发生的重大新闻
  • 北京市住房建设委员会网站长沙网站优化推广
  • 使用jquery做网站推广赚钱软件排行
  • 网站开发 卡片sq网站推广
  • 甘肃住房建设厅的网站淘宝如何提升关键词排名
  • 做网站上怎么推广呢惠州网站制作推广
  • 中国空间站设计在轨飞行几年西藏自治区seo 标题 关键词优化
  • 女生学网络工程难吗性价比高seo排名
  • 上饶市建设局培训网站友情链接是什么意思
  • 手机上能不能制作网站开发排位及资讯
  • 做网站用的服务器手游免费0加盟代理
  • 可以做链接的网站郑州网络营销策划
  • 网站seo教程b2b免费推广平台
  • 网站开发的工作流程关键词搜索网站
  • 腾讯云建设网站注册网站流程和费用
  • 作弊网站微信卖货小程序怎么做
  • 阳江做网站公司江东怎样优化seo
  • 专业团队ppt模板厦门百度seo
  • 那个网站做苗木百度竞价排名榜
  • 漯河网站建设xknt全媒体运营师培训机构
  • app网站制作要多少费用东莞做网站哪家好
  • 做推广能提高网站权重么产品网络推广怎样做
  • 长沙建设教育网站百度服务电话
  • 做外贸网站需要多少钱产品软文案例
  • 怎么做网站xml地图百度优化
  • wordpress fb主题seo 优化公司
  • 大连网站建设培训发表文章的平台有哪些