Searched refs:error (Results 26 - 50 of 105) sorted by relevance

12345

/gem5/src/mem/slicc/symbols/
H A DSymbol.py69 def error(self, message, *args): member in class:Symbol
70 self.location.error(message, *args)
H A DSymbolTable.py63 sym.error("Symbol '%s' redeclared in same scope.", id)
68 sym.error("Conflicting declaration of Symbol '%s'", id)
83 # so rather than producing an error, keep trying
116 symbol.error("Symbol '%s' redeclared in global scope." % ident)
H A DFunc.py67 self.error("Wrong number of arguments passed to function : '%s'" +\
79 expr.error("Type mismatch: expected: %s actual: %s" % \
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_module_registry.cpp120 bool error = false; local
122 m_module_vec[i]->elaboration_done( error );
/gem5/src/systemc/ext/utils/
H A Dendian.hh43 # error Unknown machine endianness detected.
76 # error The file boost/detail/endian.hpp needs to be set up for your CPU type.
/gem5/util/
H A Ddecode_inst_trace.py57 error = call(['protoc', '--python_out=util', '--proto_path=src/proto', variable
59 if not error:
H A Dencode_packet_trace.py67 error = call(['protoc', '--python_out=util', '--proto_path=src/proto', variable
69 if not error:
H A Don-chip-network-power-area.py43 error = call(['cmake', '../../../%s' % src_dir]) variable
44 if error:
48 error = call(['make']) variable
49 if error:
H A Ddecode_inst_dep_trace.py103 error = call(['protoc', '--python_out=util', '--proto_path=src/proto', variable
105 if not error:
H A Dminorview.py81 parser.error('Can\'t read picture file: ' + args.picture)
105 parser.error('Can\'t read event file: ' + args.eventFile)
H A Dencode_inst_dep_trace.py103 error = call(['protoc', '--python_out=util', '--proto_path=src/proto', variable
105 if not error:
158 # If the type is not one of the enum values, it should be a key error
188 # long('') gives error, so check if the item is non-empty
/gem5/src/mem/slicc/ast/
H A DLiteralExprAST.py53 self.error("Internal: can't primitive type '%s'" % self.type)
H A DMemberExprAST.py65 self.error("Invalid object field: " +
H A DAssignStatementAST.py55 self.error("Assignment type mismatch '%s' and '%s'",
H A DActionDeclAST.py45 self.error("Action declaration not part of a machine.")
54 self.error("Type 'Addr' not declared.")
H A DMethodCallExprAST.py56 self.error("Invalid method call: Type '%s' does not have a method '%s'",
102 self.error("Invalid method call: " \
109 # error we must check whether any of the paramTypes implement
136 self.error("Invalid method call: Type '%s' " \
H A DFuncCallExprAST.py112 self.error("Unrecognized function name: '%s'", func_name_args)
165 elif self.proc_name == "error":
168 error = self.exprs[0].embedError('"assert failure"')
172 $error
191 self.error("Invalid function")
H A DIfStatementAST.py50 self.cond.error("Condition of if stmt must be bool, type was '%s'",
H A DMachineAST.py76 self.error("Duplicate machine name: %s:%s" % (machine_type, mtype))
/gem5/ext/nomali/tests/
H A Dnomali_test_reset.c53 nomali_error_t error; local
/gem5/ext/googletest/googlemock/include/gmock/internal/
H A Dgmock-port.h65 # error "At least Visual C++ 2003 (7.1) is required to compile Google Mock."
/gem5/ext/libelf/
H A Dlibelf_ar.c242 goto error;
245 goto error;
249 goto error;
253 goto error;
257 goto error;
262 goto error;
266 error:
/gem5/ext/ply/example/BASIC/
H A Dbasparse.py38 '''program : error'''
40 p.parser.error = 1
49 p.parser.error = 1
70 '''statement : INTEGER error NEWLINE'''
73 p.parser.error = 1
88 '''command : LET variable EQUALS error'''
98 '''command : READ error'''
108 '''command : DATA error'''
118 '''command : PRINT error'''
145 '''command : GOTO error'''
[all...]
/gem5/ext/ply/ply/
H A Dyacc.py127 def error(self,msg,*args,**kwargs): member in class:PlyLogger
229 def error(self): member in class:YaccProduction
289 errorcount = 0 # Used during error recovery
372 # Decrease error count on successful shift
429 # If an error was set. Enter error recovery state
434 sym.type = 'error'
468 # If an error was set. Enter error recovery state
473 sym.type = 'error'
[all...]
/gem5/ext/nomali/
H A DMakefile23 $(error Default GCC version is too old. Please use gcc 4.7 or newer.)

Completed in 25 milliseconds

12345