码迷,mamicode.com
首页 >  
搜索关键字:instruction    ( 320个结果
MSP430之instruction之CMP
CMP[.W] Compare source and destinationCMP.B Compare source and destinationSyntax CMP src,dst or CMP.W src,dst CMP.B src,dstOperatio...
分类:其他好文   时间:2015-05-18 18:05:46    阅读次数:125
C++ classics
common Business-Oriented LanguageBASIC(Beginner's All-purpose Symbolic Instruction Code)1972 C1983 C++1995 Javaportability performanceObject-Oriented ...
分类:编程语言   时间:2015-05-10 23:38:26    阅读次数:202
openMSP430之instruction
Byte and word issues1 Appending “.b” to an instruction makes it abyte operation. A byte instruction with a registerdestination clears the high 8 bi...
分类:其他好文   时间:2015-05-07 23:48:20    阅读次数:127
Dalvik opcodes
Dalvik opcodesAuthor:Gabor PallerVx values in the table denote a Dalvik register. Depending on the instruction, 16, 256 or 64k registers can be access...
分类:其他好文   时间:2015-04-29 00:37:21    阅读次数:249
AT&T学习笔记汇编之高级特性
高级特性: SIMD    single instruction multiple  data 单指令多数据 SIMD扩展  Streaming SIMD Extension    (SSE) 流化扩展第二实现  SSE2 第三    SSE3 MMX   对整数执行SIMD操作 64位打包字节,字,双字整数, MMx  0-7    映射到FPU寄存器R0-7 使用...
分类:其他好文   时间:2015-04-04 09:21:12    阅读次数:243
关于u-boot中的.balignl 16,0xdeadbeef的理解
.globl _start //不占内存_start:b start_code //占4字节内存ldrpc, _undefined_instruction //占4字节内存ldrpc, _software_interrupt //占4字节内存ldrpc, _prefetch_abort //占4字节...
分类:数据库   时间:2015-04-02 20:40:32    阅读次数:133
测试程序运行时间
精确到秒:time_t t1,t2;time(&t1);some instruction.....time(&t2);printf("%d\n",t2-t1);精确到毫秒:clock_t c1,c2;c1=clock();some instruction....c2=clock();printf("...
分类:其他好文   时间:2015-03-29 17:46:45    阅读次数:117
gem5 设置checkpiont以及从checkpoint处开始执行
以spec2006中的bzip2为例说明,如何设置checkpoint ,以及从checkpoint处开始继续执行。这样做的目的是,可以采用automic的方式执行N条指令,然后以detailed的方式执行M条指令。 1.设置checkpoint:在第5000000条instruction处设置checkpoint ./build/ALPHA_SE/gem5.opt -d ./...
分类:其他好文   时间:2015-03-17 14:20:14    阅读次数:163
Java WEB —— XML
XML语言(可扩展标记语言W3C):描述一系列有关系的数据,允许自定义标签,它常用作软件配置文件,以描述程序模块之间的关系。XML语法:文档声明,元素,注释(DATA区,特殊字符,处理指令(processing instruction))文档声明:声明文档的类型例如: 乱码问题:浏览器默认为GB23...
分类:编程语言   时间:2015-03-11 12:51:05    阅读次数:136
Linux开机流程
在开机时,由于80x86的特性CS(Code Segment)这个寄存器中放的都是1,而IP(Instruction Pointer)这个寄存器中全部放着0,换句话说,CS=FFFF而IP=0000。此时,CPU就依据CS和IP的值,到FFFF0H去执行那个地方所放的指令。这时候,由于FFFF0H已...
分类:系统相关   时间:2015-03-10 23:03:10    阅读次数:219
320条   上一页 1 ... 22 23 24 25 26 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!