#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 1044 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::FPMul< Type, TSrc1, TSrc2, RoundMode >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 1046 行で定義されています。
参照先 Type.
01047 { 01048 Type lhs = TSrc1()(opState); 01049 Type rhs = TSrc2()(opState); 01050 01051 Onikiri::ScopedFESetRound sr( RoundMode()(opState) ); 01052 volatile Type rvalue = lhs * rhs; 01053 return rvalue; 01054 }