#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 1016 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::FPAdd< Type, TSrc1, TSrc2, RoundMode >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 1018 行で定義されています。
参照先 Type.
01019 { 01020 Type lhs = TSrc1()(opState); 01021 Type rhs = TSrc2()(opState); 01022 01023 Onikiri::ScopedFESetRound sr( RoundMode()(opState) ); 01024 volatile Type rvalue = lhs + rhs; 01025 return rvalue; 01026 }