/* * $Id$ * * [ Description ] * */ #include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Load_store_unit/include/Parameters.h" #include namespace morpheo { namespace behavioural { namespace core { namespace multi_execute_loop { namespace execute_loop { namespace multi_execute_unit { namespace execute_unit { namespace load_store_unit { #undef FUNCTION #define FUNCTION "Load_store_unit::msg_error" std::string Parameters::msg_error(void) { log_printf(FUNC,Load_store_unit,FUNCTION,"Begin"); std::string msg = ""; switch (_speculative_load) { case SPECULATIVE_LOAD_COMMIT : { break; } case NO_SPECULATIVE_LOAD : case SPECULATIVE_LOAD_ACCESS : case SPECULATIVE_LOAD_BYPASS : default : { msg += " - Speculative load scheme is not supported : " +toString(_speculative_load); break; } } return msg; log_printf(FUNC,Load_store_unit,FUNCTION,"End"); }; }; // end namespace load_store_unit }; // end namespace execute_unit }; // end namespace multi_execute_unit }; // end namespace execute_loop }; // end namespace multi_execute_loop }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo