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

Static Public Member Functions

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

Detailed Description

Definition at line 647 of file SettingCommand.cc.

Member Function Documentation

◆ defaultValue()

static const DataObject& SetCallHistoryLength::defaultValue ( )
inlinestatic

Definition at line 657 of file SettingCommand.cc.

657  {
658  static const DataObject defaultValue_("0");
659  return defaultValue_;
660  }

◆ execute()

static bool SetCallHistoryLength::execute ( SimulatorInterpreter ,
SimulatorFrontend simFront,
unsigned int  newValue 
)
inlinestatic

Definition at line 649 of file SettingCommand.cc.

652  {
653  simFront.setCallHistoryLength(newValue);
654  return true;
655  }

References SimulatorFrontend::setCallHistoryLength().

Here is the call graph for this function:

◆ warnOnExistingProgramAndMachine()

static bool SetCallHistoryLength::warnOnExistingProgramAndMachine ( )
inlinestatic

Definition at line 662 of file SettingCommand.cc.

662  {
663  return false;
664  }

The documentation for this class was generated from the following file:
DataObject
Definition: DataObject.hh:50
SimulatorFrontend::setCallHistoryLength
void setCallHistoryLength(std::size_t length)
Definition: SimulatorFrontend.cc:2372