zoukankan      html  css  js  c++  java
  • MSIL指令参考

    MSIL指令参考

    来源 https://www.cnblogs.com/lbq1221119/archive/2007/10/17/926919.html

    ILOPC指令参考 https://docs.microsoft.com/zh-cn/dotnet/api/system.reflection.metadata.ilopcodeextensions?view=net-5.0

    首先来看一下一个有代表性的: ldc.i4 num 这个指令.在这个指令中,num被放到了堆栈上面:

    Note that there are special short (and hence more efficient) encodings for the integers -128 through 127, and especially short encodings for -1 through 8. All short encodings push 4 byte integers on the stack. Longer encodings are used for 8 byte integers and 4 and 8 byte floating-point numbers, as well as 4-byte values that do not fit in the short forms. There are three ways to push an 8 byte integer constant onto the stack.

    参见:
    http://msdn2.microsoft.com/en-us/library/system.reflection.emit.opcodes.ldc_i4(vs.71).aspx

    ldc指令的语法如下:
    ldc.type value
    ldc.i4.number
    ldc.i4.s number

    在第一条语法中,ldc指令加载一个指定类型的常量到stack.
    在第二条语法的指令当中,ldc指令更加有效.它传输一个整型值-1以及0到8之间的整数给计算堆栈.当我们传输-1到计算堆栈的时候,这条ldc的语法指令又进一步演变成为ldc.i4.ml.

    这里,截取ECMA的C#标准里面关于这个指令的完整参考:

    Ref:
    引用部分来自ECMA关于CLI部分的说明.如果安装了.Net Framework SDK1.1的话,可以在这里找到:
    C:Program FilesMicrosoft Visual Studio .NET 2003SDKv1.1Tool Developers GuidedocsPartition III CIL.doc 
     

    Format

    Assembly Format

    Description

    20 <int32>

    ldc.i4 num

    Push num of type int32 onto the stack as int32.

    21 <int64>

    ldc.i8 num

    Push num of type int64 onto the stack as int64.

    22 <float32>

    ldc.r4 num

    Push num of type float32 onto the stack as F.

    23 <float64>

    ldc.r8 num

    Push num of type float64 onto the stack as F.

    16

    ldc.i4.0

    Push 0 onto the stack as int32.

    17

    ldc.i4.1

    Push 1 onto the stack as int32.

    1E

    ldc.i4.8

    Push 8 onto the stack as int32.

    15

    ldc.i4.m1

    Push -1 onto the stack as int32.

    15

    ldc.i4.M1

    Push -1 of type int32 onto the stack as int32 (alias).

    1F <int8>

    ldc.i4.s num

    Push num onto the stack as int32, short form.


    Stack里面的传输方向:
    … --> …, num 

    Description:
    The ldc num instruction pushes number num or some constant onto the stack. There are special short encodings for the integers –128 through 127 (with especially short encodings for –1 through 8). All short encodings push 4-byte integers on the stack. Longer encodings are used for 8-byte integers and 4- and 8-byte floating-point numbers, as well as 4-byte values that do not fit in the short forms.

    There are three ways to push an 8-byte integer constant onto the stack
    1. For constants that shall be expressed in more than 32 bits, use the ldc.i8 instruction.
    2. For constants that require 9–32 bits, use the ldc.i4 instruction followed by a conv.i8.
    3. For constants that can be expressed in 8 or fewer bits, use a short form instruction followed by a conv.i8.

    There is no way to express a floating-point constant that has a larger range or greater precision than a 64-bit IEC 60559:1989 number, since these representations are not portable across architectures.

    Ref:引用结束

    从这里,我们可以看到ldc指令极其参数的完整使用说明.

    ============= End

  • 相关阅读:
    尖峰冲击测试(spike Testing)
    mysql返回记录的ROWNUM(转)
    SQL2005四个排名函数(row_number、rank、dense_rank和ntile)的比较
    JUnit编写单元测试代码注意点小结
    Linux下Tomcat的启动、关闭、杀死进程
    linux下oracle11g R2的启动与关闭监听、数据库
    linux下使用yum安装mysql详解
    VC++ 实现文件与应用程序关联
    C++ 去掉字符串首尾的 x20 字符
    VC++ 线程同步 总结
  • 原文地址:https://www.cnblogs.com/lsgxeva/p/13997524.html
Copyright © 2011-2022 走看看