#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 1058 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::FPDiv< Type, TSrc1, TSrc2, RoundMode >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 1060 行で定義されています。
参照先 Type.
01061 { 01062 Type lhs = TSrc1()(opState); 01063 Type rhs = TSrc2()(opState); 01064 01065 Onikiri::ScopedFESetRound sr( RoundMode()(opState) ); 01066 volatile Type rvalue = lhs / rhs; 01067 return rvalue; 01068 }