top | up | prev | next

ShlInstruction Class

Definition at line 139 of Instruction.hpp

Constructors

ShlInstruction(Value* left_, Value* right_)

Member Functions

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

Constructor Details

ShlInstruction Constructor

cmsxi::ShlInstruction::ShlInstruction(Value * left_, Value * right_)

Definition at line 201 of Instruction.cpp :
201 : BinaryInstruction(left_right_)
202 {
203 }


Declaration at line 142 of Instruction.hpp


Member Function Details

Write Member Function

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

Definition at line 205 of Instruction.cpp :
206 {
207     WriteResult(formatterfunctioncontext);
208     formatter.Write(" = shl ");
209     WriteArgs(formattercontext);
210     WriteMetadataRef(formatter);
211 }


Calls: cmsxi::BinaryInstruction::WriteArgs , cmsxi::Instruction::WriteMetadataRef , cmsxi::Instruction::WriteResult


top | up | prev | next