Searched refs:Exception (Results 1 - 25 of 49) sorted by relevance

12

/gem5/ext/dsent/libutil/
H A DException.cc22 #include "Exception.h"
26 Exception::Exception(const String& exception_msg_) throw() function in class:LibUtil::Exception
30 Exception::~Exception() throw()
33 const char* Exception::what() const throw()
H A DException.h33 // Exception class handles the all exception messages in the program
34 class Exception : public exception class in namespace:LibUtil
38 Exception(const String& exception_msg_) throw();
39 ~Exception() throw();
H A DAssert.h26 #include "Exception.h"
37 throw LibUtil::Exception(exception_msg); \
/gem5/ext/dsent/util/
H A DCommonType.h45 using LibUtil::Exception;
H A DResult.cc96 throw LibUtil::Exception("[Error] " + getName() + " -> Cannot set the value of a non-atomic result!");
102 throw LibUtil::Exception("[Error] " + getName() +
109 throw LibUtil::Exception("[Error] " + getName() + " -> Cannot get the value of a non-atomic result!");
/gem5/src/sim/
H A Dcxx_manager.cc62 throw Exception(object_name, "Can't find sim object");
65 throw Exception(object_name, "Sim object has no 'type' field");
70 throw Exception(object_name, csprintf(
144 throw Exception(instance_name, "Cycle in configuration");
176 throw Exception(object_name, csprintf(
195 throw Exception(object_name, csprintf(
209 throw Exception(object_name, csprintf(
220 throw Exception(object_name, csprintf(
237 throw Exception(object_name, csprintf("Couldn't create object of"
252 } catch (Exception
[all...]
H A Dcxx_manager.hh78 /** Exception for instantiate/post-instantiate errors */
79 class Exception : public std::exception class in class:CxxConfigManager
86 Exception(const std::string &name_, const std::string &message_) : function in class:CxxConfigManager::Exception
92 ~Exception() throw() { }
242 throw Exception("", csprintf("No sim object named: %s",
250 throw Exception("", csprintf("Sim object: %s has the wrong"
305 * CxxConfigParams for an object. These functions throw Exception
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py56 raise Exception("Invalid name '%s'" % self.name)
103 raise Exception("Invalid object type")
172 raise Exception("Invalid strings")
175 raise Exception("Invalid strings")
179 raise Exception("Invalid chars in strings")
255 raise Exception(("Invalid word value %d, requires " +
258 raise Exception("Invalid Words")
269 raise Exception("Invalid raw Words")
333 raise Exception(("Invalid value for byte %d, " +
336 raise Exception("Invali
[all...]
/gem5/ext/dsent/model/
H A DModelGen.cc217 throw Exception(error_msg);
274 throw Exception(error_msg);
291 throw Exception(error_msg);
308 throw Exception(error_msg);
H A DModel.cc286 throw Exception(error_msg);
300 // Throw an Exception if the instance already exists
305 throw Exception(error_msg);
313 // Throw an Exception if the instance does not exist
318 throw Exception(error_msg);
333 // Throw an Exception if the area already exists
338 throw Exception(error_msg);
365 // Throw an Exception if the ndd_power already exists
370 throw Exception(error_msg);
397 // Throw an Exception i
[all...]
/gem5/util/tlm/examples/common/
H A Dcli_parser.cc110 } catch (CxxConfigManager::Exception &e) {
/gem5/ext/testlib/
H A Dtest.py34 class TestingException(Exception):
H A Dloader.py81 class DuplicateTestItemException(Exception):
83 Exception indicates multiple test items with the same UID
205 raise Exception('Attempted to load a file which already'
240 except Exception as e:
243 'Exception thrown while loading "%s"\n'
272 except Exception as e:
274 'Exception thrown while loading "%s"\n'
H A Dfixture.py35 class SkipException(Exception):
H A Drunner.py171 class BrokenFixtureException(Exception):
178 'Exception raised building "%s" raised SkipException'
198 except Exception as e:
200 msg = 'Exception raised while setting up fixture for %s' %\
211 except Exception:
214 msg = 'Exception raised while tearing down fixture for %s' %\
/gem5/src/python/
H A Dimporter.py84 except Exception:
/gem5/src/mem/slicc/
H A Dutil.py71 #raise Exception, "%s: Warning: %s" % (self, message)
77 raise Exception, "%s: Error: %s" % (self, message)
/gem5/src/systemc/tests/tlm/endian_conv/
H A Dtestall.py141 raise Exception
300 raise Exception
345 class TesterFailure(Exception): pass
346 class SystemCFailure(Exception): pass
347 class ConverterDifference(Exception): pass
348 class FragmenterDifference(Exception): pass
/gem5/util/tlm/src/
H A Dsim_control.cc133 } catch (CxxConfigManager::Exception &e) {
146 } catch (CxxConfigManager::Exception &e) {
/gem5/util/systemc/gem5_within_systemc/
H A Dsc_gem5_control.cc147 } catch (CxxConfigManager::Exception &e) {
267 } catch (CxxConfigManager::Exception &e) {
H A Dmain.cc268 } catch (CxxConfigManager::Exception &e) {
282 } catch (CxxConfigManager::Exception &e) {
329 } catch (CxxConfigManager::Exception &e) {
/gem5/src/python/m5/util/
H A Dgrammar.py33 class ParseError(Exception):
35 Exception.__init__(self, message)
/gem5/site_scons/site_tools/
H A Dgit.py57 except Exception, e:
/gem5/src/arch/
H A Dmicro_asm.py129 raise Exception, "Unrecognized mnemonic: %s" % statement.mnemonic
150 raise Exception, "Unrecognized directive: %s" % statement.name
161 raise Exception, "Didn't recognize the type of statement", statement
/gem5/tests/testing/
H A Dhelpers.py47 class CallTimeoutException(Exception):
48 """Exception that indicates that a process call timed out"""

Completed in 24 milliseconds

12