Welcome![Sign In][Sign Up]
Location:
Search - ebp

Search list

[assembly languageasm_module

Description: 该程序模拟UNIX中save与resume函数,并介绍在VC中如何使用汇编进行机器级的操作. 主函数很简单首先引入两个外部函数,extern \"C\"表示按传统C命名习惯.函数save将程序指针保存在(*s)中并返回0,为什么有 if(save(&sp)){...} if后的语句看起来永远都不会被执行,但是运行结果表明它被执行了.这个问题同UNIX中处理机调度函数(switch)的那个if语句(第一句)一样. 程序执行完save(&sp)后得到因为条件为假而执行else语句,却在判断之前将程序指针保存在sp中了. else语句中的resume(&sp),该函数很狡猾将堆栈中的返回地址改变了,改到了sp所指出,即将程序指针改到了执行条件判断前.resume返回1,条件满足,执行if语句. save函数堆栈: eip ebp+8 s ebp+4 ebp ebp+0 resume函数堆栈与save的相同. 新建一个win32的工程,将unixc.cpp和unix.obj加入过程即可. unix.obj是用masm6.11生成的:ml /c /coff unix.asm,生成coff格式的obj而不是omf格式.-the simulation UNIX save and resume function, and the VC on how to use the compiled class machines for the operation. main function is very simple to introduce the first two external function, extern "C" said C. named by the traditional habits. function pointer procedures will save preserved in (* s) and return 0, why are there if (save (
Platform: | Size: 6261 | Author: 摩尔 | Hits:

[Other resourceHBSC

Description: 通用数据传送指令. MOV 传送字或字节. MOVSX 先符号扩展,再传送. MOVZX 先零扩展,再传送. PUSH 把字压入堆栈. POP 把字弹出堆栈. PUSHA 把AX,CX,DX,BX,SP,BP,SI,DI依次压入堆栈. POPA 把DI,SI,BP,SP,BX,DX,CX,AX依次弹出堆栈. PUSHAD 把EAX,ECX,EDX,EBX,ESP,EBP,ESI,EDI依次压入堆栈. POPAD 把EDI,ESI,EBP,ESP,EBX,EDX,ECX,EAX依次弹出堆栈. BSWAP 交换32位寄存器里字节的顺序 XCHG 交换字或字节.( 至少有一个操作数为寄存器,段寄存器不可作为操作数) CMPXCHG 比较并交换操作数.( 第二个操作数必须为累加器AL/AX/EAX ) XADD 先交换再累加.( 结果在第一个操作数里 ) XLAT 字节查表转换. ── BX 指向一张 256 字节的表的起点, AL 为表的索引值 (0-255,即 0-FFH) 返回 AL 为查表结果. ( [BX+AL]->AL )
Platform: | Size: 2829 | Author: wanjiaye | Hits:

[Other resourceEBP

Description: EBP反向传播算法对应的源程序,三层网络,分隐层神经元,输出层神经元,输入层神经元的一个基本的程序实现
Platform: | Size: 2237 | Author: 李复翔 | Hits:

[Game Hook Crackpush ebp

Description:
Platform: | Size: 6286 | Author: winforwer | Hits:

[assembly languageasm_module

Description: 该程序模拟UNIX中save与resume函数,并介绍在VC中如何使用汇编进行机器级的操作. 主函数很简单首先引入两个外部函数,extern "C"表示按传统C命名习惯.函数save将程序指针保存在(*s)中并返回0,为什么有 if(save(&sp)){...} if后的语句看起来永远都不会被执行,但是运行结果表明它被执行了.这个问题同UNIX中处理机调度函数(switch)的那个if语句(第一句)一样. 程序执行完save(&sp)后得到因为条件为假而执行else语句,却在判断之前将程序指针保存在sp中了. else语句中的resume(&sp),该函数很狡猾将堆栈中的返回地址改变了,改到了sp所指出,即将程序指针改到了执行条件判断前.resume返回1,条件满足,执行if语句. save函数堆栈: eip ebp+8 s ebp+4 ebp ebp+0 resume函数堆栈与save的相同. 新建一个win32的工程,将unixc.cpp和unix.obj加入过程即可. unix.obj是用masm6.11生成的:ml /c /coff unix.asm,生成coff格式的obj而不是omf格式.-the simulation UNIX save and resume function, and the VC on how to use the compiled class machines for the operation. main function is very simple to introduce the first two external function, extern "C" said C. named by the traditional habits. function pointer procedures will save preserved in (* s) and return 0, why are there if (save (
Platform: | Size: 6144 | Author: 摩尔 | Hits:

[OtherHBSC

Description: 通用数据传送指令. MOV 传送字或字节. MOVSX 先符号扩展,再传送. MOVZX 先零扩展,再传送. PUSH 把字压入堆栈. POP 把字弹出堆栈. PUSHA 把AX,CX,DX,BX,SP,BP,SI,DI依次压入堆栈. POPA 把DI,SI,BP,SP,BX,DX,CX,AX依次弹出堆栈. PUSHAD 把EAX,ECX,EDX,EBX,ESP,EBP,ESI,EDI依次压入堆栈. POPAD 把EDI,ESI,EBP,ESP,EBX,EDX,ECX,EAX依次弹出堆栈. BSWAP 交换32位寄存器里字节的顺序 XCHG 交换字或字节.( 至少有一个操作数为寄存器,段寄存器不可作为操作数) CMPXCHG 比较并交换操作数.( 第二个操作数必须为累加器AL/AX/EAX ) XADD 先交换再累加.( 结果在第一个操作数里 ) XLAT 字节查表转换. ── BX 指向一张 256 字节的表的起点, AL 为表的索引值 (0-255,即 0-FFH) 返回 AL 为查表结果. ( [BX+AL]->AL )
Platform: | Size: 3072 | Author: wanjiaye | Hits:

[AI-NN-PREBP

Description: EBP反向传播算法对应的源程序,三层网络,分隐层神经元,输出层神经元,输入层神经元的一个基本的程序实现-EBP back-propagation algorithm the corresponding source code, the three-tier networks, sub-hidden layer neurons, output layer neurons, input layer neurons realize a basic procedure
Platform: | Size: 2048 | Author: 李复翔 | Hits:

[OtherEBP-chaoticPrediction

Description: This program is to one-step EEG prediction. it is done by a fuzzy neural network based on a chaotic back propagation training method.
Platform: | Size: 6144 | Author: Mehran Ahmadlou | Hits:

[OtherEBP-chaoticPrediction

Description: This program is prepared as an one-step EEG predictor. this is used a fuzzy neural network which is trained by a chaotic back propagation method
Platform: | Size: 197632 | Author: Mehran Ahmadlou | Hits:

[AI-NN-PREBP

Description: 一个非常实用的BP神经网络FORTRAN软件!应用多年效果非常好,上传和大家一起分享-A very practical BP neural network FORTRAN software! Application of multi-effect was very good, upload to share with everyone! !
Platform: | Size: 1024 | Author: lcl009 | Hits:

[CSharpfabianyi

Description: 未优化模式就是原生代码,其调式期间可以和源代码一 一对应,maxspeed模式则尽可能将操作放在寄存器内完成,并且有一定的算法优化;而最小代码模式则通过合并部分代码,尽可能的通过EBP比例变址寻址,完成对二维数组的访问。 -Model is not optimized native code, and its modal period of the source code can be one correspondence, maxspeed model is designed to operate on the registers as much as possible to complete, and there is a certain algorithm optimization code model is the smallest part of the code by merging as much as possible the proportion of the adoption of EBP indexed addressing to complete the two-dimensional array access.
Platform: | Size: 3072 | Author: Tracy | Hits:

[SCMCPU_ASM

Description: CPU寄存器和汇编指令 32位CPU所含有的寄存器有:  4个数据寄存器(EAX、EBX、ECX和EDX)  2个变址和指针寄存器(ESI和EDI) 2个指针寄存器(ESP和EBP)   6个段寄存器(ES、CS、SS、DS、FS和GS)  1个指令指针寄存器(EIP) 1个标志寄存器(EFlags)   -CPU registers and assembly instructions are contained in 32-bit CPU registers are: four data registers (EAX, EBX, ECX and EDX) 2 Varieties and address and pointer registers (ESI and EDI) 2 a pointer register (ESP and EBP) 6个segment registers (ES, CS, SS, DS, FS and GS) 1 by decree pointer register (EIP) 1 a flag register (EFlags) ......
Platform: | Size: 9216 | Author: DevilHand | Hits:

[OS programMyC

Description: 理解C指针的用法例程。从上面可以看到,当读出*p以后,地址就作出了相应的修改了.[ebp-0D0h]作为一个暂存单元,用来存储一开始读出的值. 其实我们可以理解为:*p p++ -this is a c pointer programing.
Platform: | Size: 94208 | Author: Justin | Hits:

[ELanguageEBP

Description: 能进行BP神经网络的建立、训练与识别,广泛应用于模式判别-BP neural network can be set up, training and recognition
Platform: | Size: 1024 | Author: 离天堂 | Hits:

[Linux-Unixframe

Description: The annotation hides the frame the unwinder and makes it look like a ordinary ebp save restore. This avoids some special cases for frame pointer later for Linux v2.13.6. -The annotation hides the frame the unwinder and makes it look like a ordinary ebp save restore. This avoids some special cases for frame pointer later for Linux v2.13.6.
Platform: | Size: 11264 | Author: kangviuht | Hits:

[AI-NN-PREBP.tar

Description: backward propagation of errors , is a common method of training artificial neural networks used in conjunction with an optimization method such as gradient descent. The method calculates the gradient of a loss function with respects to all the weights in the network. The gradient is fed to the optimization method which in turn uses it to update the weights, in an attempt to minimize the loss function.- backward propagation of errors , is a common method of training artificial neural networks used in conjunction with an optimization method such as gradient descent. The method calculates the gradient of a loss function with respects to all the weights in the network. The gradient is fed to the optimization method which in turn uses it to update the weights, in an attempt to minimize the loss function.
Platform: | Size: 2048 | Author: gaurav | Hits:

[e-languageClass-callback

Description: .子程序 辅_生成_类回调, 整数型 .参数 函数序号, , , [EBP+8] .参数 参个数, 整数型, , [EBP+C] -_ _ class auxiliary subroutine. Generate callback, integer type Serial number of parameter function, [EBP+8] Parameter parameter number, integer type, [EBP+C]
Platform: | Size: 3072 | Author: mochi | Hits:

[assembly languageXYUYAN

Description: 顾名思义O汇编语言也是一门汇编语言,它具有传统汇编语言的基本特点,也有与它们诸多不同之处。O汇编语言一个最大显著的特点是支持语言配置,使得它可以支持所有你想支持的语言,当然,O汇编语言的初衷是为了支持中文,所以它可以非常好的支持中文汇编。如果你已经习惯了其它英文的汇编模式,比如你喜欢用EAX、EBP类似这样的方式来命名寄存器,不要紧,只需要修改一下语言配置文件,这可以轻松做到。O汇编语言另一个显著的特点是指令使用非常直观和人性化,在不缺失汇编语言灵活性的情况下,使汇编语句的语意可以很直观地表现出来,这主要得益于用了一些象征性的符号,使得汇编语句不再是千篇一律的 (指令 寄存器,内存操作数) 这样的格式,而是更像 (寄存器 = 内存操作数)这样的格式,不但容易理解,而且便于记忆,使汇编语言不再那么枯燥,使人一团雾水。 -As the name implies O assembly language is a compiled language, it has the basic characteristics of the traditional assembly language, and they also have many differences. O assembly language a maximum notable feature is support for language configuration, such that it can support all the languages ​ ​ you want to support, of course, O assembly language originally to support Chinese, so it can be very good support Chinese assembler. If you' re used to other English compilation mode, for example, you like to use EAX, EBP similar way to name this register, it does not matter, only need to change the language configuration file, which can be easily done. O assembly language Another notable feature is the instruction to use very intuitive and user-friendly, without missing the flexibility of assembly language, so that the assembly statements can be very intuitive semantic demonstrated, mainly due to use some symbolic symbol, allows the assembler statement no longer be stereoty
Platform: | Size: 10844160 | Author: 232323 | Hits:

[2D GraphicGeometry

Description: Delphi Graph Source code Graphics Library Geometry.pas was assembled different sources (like GraphicGems) and relevant books or based on self written code, respectivly. Note: Some aspects need to be considered when using Delphi and pure assembler code. Delphi ensures that the direction flag is always cleared while entering a function and expects it cleared on return. This is in particular important in routines with (CPU) string commands (MOVSD etc.) The registers EDI, ESI and EBX (as well as the stack management registers EBP and ESP) must not be changed! EAX, ECX and EDX are freely available and mostly used for parameter.-Delphi Graph Source code Graphics Library Geometry.pas was assembled different sources (like GraphicGems) and relevant books or based on self written code, respectivly. Note: Some aspects need to be considered when using Delphi and pure assembler code. Delphi ensures that the direction flag is always cleared while entering a function and expects it cleared on return. This is in particular important in routines with (CPU) string commands (MOVSD etc.) The registers EDI, ESI and EBX (as well as the stack management registers EBP and ESP) must not be changed! EAX, ECX and EDX are freely available and mostly used for parameter.
Platform: | Size: 13312 | Author: gulmath | Hits:

CodeBus www.codebus.net