top | up | prev | next

XorInstruction Class

Definition at line 132 of Instruction.hpp

Constructors

XorInstruction(Value* left_, Value* right_)

Member Functions

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

Constructor Details

XorInstruction Constructor

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

Definition at line 189 of Instruction.cpp :
189 : BinaryInstruction(left_right_)
190 {
191 }


Declaration at line 135 of Instruction.hpp


Member Function Details

Write Member Function

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

Definition at line 193 of Instruction.cpp :
194 {
195     WriteResult(formatterfunctioncontext);
196     formatter.Write(" = xor ");
197     WriteArgs(formattercontext);
198     WriteMetadataRef(formatter);
199 }


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


top | up | prev | next