OpenASIP  2.0
Static Public Member Functions | List of all members
SetProcedureTransferTracing Class Reference
Collaboration diagram for SetProcedureTransferTracing:
Collaboration graph

Static Public Member Functions

static bool execute (SimulatorInterpreter &, SimulatorFrontend &simFront, bool newValue)
 
static const DataObjectdefaultValue ()
 
static bool warnOnExistingProgramAndMachine ()
 

Detailed Description

Setting action that sets the procedure execution transfer tracing.

Definition at line 572 of file SettingCommand.cc.

Member Function Documentation

◆ defaultValue()

static const DataObject& SetProcedureTransferTracing::defaultValue ( )
inlinestatic

Returns the default value of this setting.

Returns
The default value.

Definition at line 593 of file SettingCommand.cc.

593  {
594  static DataObject defaultValue_("0");
595  return defaultValue_;
596  }

◆ execute()

static bool SetProcedureTransferTracing::execute ( SimulatorInterpreter ,
SimulatorFrontend simFront,
bool  newValue 
)
inlinestatic

Sets the procedure execution transfer tracing.

Parameters
interpreterTo use to set the setting.
newValueValue to set.
Returns
True if setting was successful.

Definition at line 582 of file SettingCommand.cc.

583  {
584  simFront.setProcedureTransferTracing(newValue);
585  return true;
586  }

References SimulatorFrontend::setProcedureTransferTracing().

Here is the call graph for this function:

◆ warnOnExistingProgramAndMachine()

static bool SetProcedureTransferTracing::warnOnExistingProgramAndMachine ( )
inlinestatic

Should the action warn if program & machine exist and value was changed

Returns
boolean value on whether or not to warn

Definition at line 603 of file SettingCommand.cc.

603  {
604  return true;
605  }

The documentation for this class was generated from the following file:
SimulatorFrontend::setProcedureTransferTracing
void setProcedureTransferTracing(bool value)
Definition: SimulatorFrontend.cc:1930
DataObject
Definition: DataObject.hh:50