CodeGeneration.CGenState.FLDL C# (CSharp) Method

FLDL() public method

public FLDL ( Int32 imm, System.Reg from ) : void
imm System.Int32
from System.Reg
return void
        public void FLDL(Int32 imm, Reg from) => FLDL($"{imm}({RegToString(from)})");

Same methods

CGenState::FLDL ( String addr ) : void

Usage Example

示例#1
0
 /// <summary>
 /// fldl addr
 /// </summary>
 public override Reg CGenValue(CGenState state) {
     byte[] bytes = BitConverter.GetBytes(this.Value);
     Int32 firstInt = BitConverter.ToInt32(bytes, 0);
     Int32 secondInt = BitConverter.ToInt32(bytes, 4);
     String name = state.CGenLongLongConst(firstInt, secondInt);
     state.FLDL(name);
     return Reg.ST0;
 }
All Usage Examples Of CodeGeneration.CGenState::FLDL