Searched refs:name (Results 226 - 250 of 1016) sorted by relevance

1234567891011>>

/gem5/ext/systemc/src/sysc/communication/
H A Dsc_export.h71 sc_export_base(const char* name);
151 SC_REPORT_ERROR(SC_ID_SC_EXPORT_HAS_NO_INTERFACE_,name());
159 SC_REPORT_ERROR(SC_ID_SC_EXPORT_HAS_NO_INTERFACE_,name());
168 SC_REPORT_ERROR(SC_ID_SC_EXPORT_HAS_NO_INTERFACE_,name());
181 SC_REPORT_ERROR(SC_ID_SC_EXPORT_ALREADY_BOUND_,name());
199 return typeid( IF ).name();
H A Dsc_semaphore.cpp49 std::sprintf( msg, "%s: semaphore '%s'", add_msg, name() );
51 std::sprintf( msg, "semaphore '%s'", name() );
141 // the sc_module_name stack done correctly. Class name prefixing added
/gem5/ext/systemc/src/sysc/tracing/
H A Dsc_trace_file_base.cpp55 sc_trace_file_base::sc_trace_file_base( const char* name, const char* extension ) argument
67 if( !name || !*name ) {
68 SC_REPORT_ERROR( SC_ID_TRACING_FOPEN_FAILED_, "no name given" );
72 ss << name << "." << extension;
234 sc_trace_file_base::add_trace_check( const std::string & name ) const
243 "\tTo add tracing of '" << name << "', create a new trace file."; local
266 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
H A Dsc_trace_file_base.h79 sc_trace_file_base( const char* name, const char* extension );
90 bool add_trace_check( const std::string& name ) const;
106 std::string filename_; // name of the file (for reporting)
131 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
/gem5/src/systemc/tests/include/
H A DCoreDecouplingLTInitiator.h53 CoreDecouplingLTInitiator(sc_core::sc_module_name name, argument
56 sc_core::sc_module(name),
97 std::cout << name() << ": Send write request: A = 0x"
106 std::cout << name() << ": Send read request: A = 0x"
118 std::cout << name() << ": Received error response @ "
125 std::cout << name() << ": Received ok response";
H A DSimpleLTInitiator1.h55 SimpleLTInitiator1(sc_core::sc_module_name name, argument
58 sc_core::sc_module(name),
100 std::cout << name() << ": Send write request: A = 0x"
106 std::cout << name() << ": Send read request: A = 0x"
115 std::cout << name() << ": Received error response @ "
119 std::cout << name() << ": Received ok response";
H A DSimpleLTInitiator2.h54 SimpleLTInitiator2(sc_core::sc_module_name name, argument
57 sc_core::sc_module(name),
96 std::cout << name() << ": Send write request: A = 0x"
102 std::cout << name() << ": Send read request: A = 0x"
111 std::cout << name() << ": Received error response @ "
115 std::cout << name() << ": Received ok response";
H A DSimpleLTInitiator3.h54 SimpleLTInitiator3(sc_core::sc_module_name name, argument
57 sc_core::sc_module(name),
96 std::cout << name() << ": Send write request: A = 0x"
102 std::cout << name() << ": Send read request: A = 0x"
111 std::cout << name() << ": Received error response @ "
115 std::cout << name() << ": Received ok response";
/gem5/src/systemc/tests/systemc/kernel/process_control/test07/
H A Dtest07.cpp27 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
56 << (*it)->name() << " (" << (*it)->kind() << ")";
73 my_object( const char* name ) : sc_object( name ) {}
76 std::cout << "+++ " << this->name() << " deleted" << std::endl;
177 << sc_get_current_process_handle().name()
186 << sc_get_current_process_handle().name()
/gem5/util/stats/
H A Dinfo.py11 # neither the name of the copyright holders nor the names of its
196 return self.name
311 def __init__(self, name, dict):
312 self.name = name
316 return unproxy(self.dict[self.name])
325 return str(self.dict[self.name])
364 def __getattr__(self, name):
365 return Proxy(name, self.dict)
379 p.name
[all...]
/gem5/src/gpu-compute/
H A Dcompute_unit.cc17 * 3. Neither the name of the copyright holder nor the names of its
1403 .name(name() + ".valu_insts")
1407 .name(name() + ".valu_insts_per_wf")
1411 .name(name() + ".salu_insts")
1415 .name(name() + ".salu_insts_per_wf")
1419 .name(nam
[all...]
/gem5/src/arch/
H A Dmicro_asm.py11 # neither the name of the copyright holders nor the names of its
49 def __init__(self, name):
51 self.name = name
60 string = "%s:\n" % self.name
69 def __init__(self, name, target):
70 self.name = name
74 return "%s: %s\n" % (self.name, self.target)
77 def __init__(self, name)
[all...]
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_object_manager.cpp88 // | This method creates a hierarchical name based on the name of the active
89 // | object and the supplied leaf name. If the resultant name is not unique it
93 // | leaf_name = name to use for the leaf of the hierarchy.
94 // | Result is an std::string containing the name.
98 bool clash; // true if path name exists in obj table
99 std::string leafname_string; // string containing the leaf name.
100 std::string parentname_string; // parent path name
103 std::string result_string; // name t
168 find_event(const char* name) argument
186 find_object(const char* name) argument
291 insert_event(const std::string& name, sc_event* event_p) argument
307 insert_object(const std::string& name, sc_object* object_p) argument
391 remove_event(const std::string& name) argument
409 remove_object(const std::string& name) argument
[all...]
/gem5/src/systemc/core/
H A Dobject.cc11 * neither the name of the copyright holders nor the names of its
49 findObjectIn(Objects &objects, const std::string &name) argument
53 if (!strcmp((*it)->name(), name.c_str()))
66 popObject(Objects *objects, const std::string &name) argument
68 ObjectsIt it = findObjectIn(*objects, name);
75 nameIsUnique(Objects *objects, Events *events, const std::string &name) argument
78 if (!strcmp(obj->basename(), name.c_str()))
81 if (!strcmp(event->basename(), name.c_str()))
160 Object::name() cons function in class:sc_gem5::Object
298 findObject(const char *name, const Objects &objects) argument
[all...]
H A Dsc_spawn.cc11 * neither the name of the copyright holders nor the names of its
47 spawnWork(ProcessFuncWrapper *func, const char *name, argument
61 if (!name || name[0] == '\0') {
63 name = ::sc_core::sc_gen_unique_name("method_p");
65 name = ::sc_core::sc_gen_unique_name("thread_p");
70 proc = new Method(name, func);
72 proc = new Thread(name, func);
110 proc->name());
/gem5/tests/testing/
H A Dresults.py22 # neither the name of the copyright holders nor the names of its
78 def __init__(self, name, state, message="", stderr="", stdout="",
80 self.name = name
105 return "%s: %s" % (self.name, status)
110 def __init__(self, name, run_results=[], verify_results=[]):
111 self.name = name
178 print("--- %s ---" % suite.name, file=fout)
214 print("%s: %s" % (suite.name, statu
[all...]
/gem5/ext/libfdt/
H A Dfdt_rw.c184 static int _fdt_resize_property(void *fdt, int nodeoffset, const char *name, argument
190 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
202 static int _fdt_add_property(void *fdt, int nodeoffset, const char *name, argument
213 namestroff = _fdt_find_add_string(fdt, name);
230 int fdt_set_name(void *fdt, int nodeoffset, const char *name) argument
242 newlen = strlen(name);
249 memcpy(namep, name, newlen+1);
253 int fdt_setprop(void *fdt, int nodeoffset, const char *name, argument
261 err = _fdt_resize_property(fdt, nodeoffset, name, len, &prop);
263 err = _fdt_add_property(fdt, nodeoffset, name, le
271 fdt_appendprop(void *fdt, int nodeoffset, const char *name, const void *val, int len) argument
298 fdt_delprop(void *fdt, int nodeoffset, const char *name) argument
313 fdt_add_subnode_namelen(void *fdt, int parentoffset, const char *name, int namelen) argument
354 fdt_add_subnode(void *fdt, int parentoffset, const char *name) argument
[all...]
/gem5/util/minorview/
H A Dcolours.py20 # neither the name of the copyright holders nor the names of its
54 def name_to_colour(name):
55 """Convert a colour name to a GdkColor"""
57 ret = gtk.gdk.color_parse(name)
/gem5/util/cpt_upgraders/
H A Disa-is-simobject.py45 name = "%s.isa" % re_cpu_match.group(1)
46 isa_sections.append((name, isa_section))
/gem5/ext/sst/
H A Dgem5.hh20 // neither the name of the copyright holders nor the names of its
87 const std::string &name, ExternalMaster &owner,
91 const std::string &name, ExternalSlave &owner,
/gem5/src/sim/
H A Dfaults.cc12 * neither the name of the copyright holders nor the names of its
46 DPRINTF(Fault, "Fault %s at PC: %s\n", name(), tc->pcState());
48 panic("fault (%s) detected @ PC %s", name(), tc->pcState());
/gem5/src/arch/mips/
H A Dremote_gdb.hh14 * neither the name of the copyright holders nor the names of its
74 name() const function in class:MipsISA::RemoteGDB::MipsGdbRegCache
76 return gdb->name() + ".MipsGdbRegCache";
/gem5/src/arch/power/
H A Dremote_gdb.hh15 * neither the name of the copyright holders nor the names of its
73 name() const function in class:PowerISA::RemoteGDB::PowerGdbRegCache
75 return gdb->name() + ".PowerGdbRegCache";
/gem5/src/systemc/channel/
H A Dsc_event_queue.cc11 * neither the name of the copyright holders nor the names of its
37 sc_event_queue::sc_event_queue(sc_module_name name) : argument
38 sc_interface(), sc_event_queue_if(), sc_module(name)
/gem5/src/systemc/ext/channel/
H A Dsc_buffer.hh11 * neither the name of the copyright holders nor the names of its
46 explicit sc_buffer(const char *name) : argument
47 sc_signal<T, WRITER_POLICY>(sc_gen_unique_name(name))

Completed in 32 milliseconds

1234567891011>>