top | up | prev | next

FloatToIntInstruction Class

Definition at line 204 of Instruction.hpp

Constructors

FloatToIntInstruction(Value* arg_, Type* destType_)

Member Functions

void Write(CodeFormatter& formatter, Function& function, Context& context)

Constructor Details

FloatToIntInstruction Constructor

cmsxi::FloatToIntInstruction::FloatToIntInstruction(Value * arg_, Type * destType_)

Definition at line 319 of Instruction.cpp :
319 : UnaryTypeInstruction(arg_destType_)
320 {
321 }


Declaration at line 207 of Instruction.hpp


Member Function Details

Write Member Function

void cmsxi::FloatToIntInstruction::Write(CodeFormatter& formatter, Function & function, Context & context)

Definition at line 323 of Instruction.cpp :
324 {
325     WriteResult(formatterfunctioncontext);
326     formatter.Write(" = floattoint ");
327     WriteArg(formattercontext);
328     WriteMetadataRef(formatter);
329 }


Calls: cmsxi::Instruction::WriteMetadataRef , cmsxi::Instruction::WriteResult , cmsxi::UnaryInstruction::WriteArg


top | up | prev | next