Searched refs:group (Results 1 - 25 of 51) sorted by relevance

123

/gem5/src/cpu/kvm/
H A Ddevice.hh72 * @param group Attribute group
73 * @param attr Attribute ID within group
77 T getAttr(uint32_t group, uint64_t attr) const { argument
79 getAttrPtr(group, attr, &data);
89 * @param group Attribute group
90 * @param attr Attribute ID within group
94 void setAttr(uint32_t group, uint64_t attr, const T &data) const { argument
95 setAttrPtr(group, att
[all...]
H A Ddevice.cc62 KvmDevice::getAttrPtr(uint32_t group, uint64_t attr, void *data) const argument
67 group,
73 panic("Failed to get attribute (group: %i, attr: %i, errno: %i)",
74 group, attr, errno);
82 KvmDevice::setAttrPtr(uint32_t group, uint64_t attr, const void *data) const argument
87 group,
93 panic("Failed to set attribute (group: %i, attr: %i, errno: %i)",
94 group, attr, errno);
102 KvmDevice::hasAttr(uint32_t group, uint64_t attr) const argument
107 group,
[all...]
/gem5/ext/googletest/googletest/xcode/Scripts/
H A Dversiongenerate.py78 major_version = version_values.group(1)
79 minor_version = version_values.group(2)
80 fix_version = version_values.group(3)
/gem5/util/cpt_upgraders/
H A Disa-is-simobject.py33 if re_cpu_match.group(2) != "0":
45 name = "%s.isa" % re_cpu_match.group(1)
H A Dsmt-interrupts.py13 cpu_name = re_cpu_match.group(1)
/gem5/ext/googletest/googletest/scripts/
H A Dcommon.py61 project = m.group(1) # googletest or googlemock
62 rel_path = m.group(2)
H A Dupload.py397 group = parser.add_option_group("Logging options") variable
398 group.add_option("-q", "--quiet", action="store_const", const=0,
400 group.add_option("-v", "--verbose", action="store_const", const=2,
403 group.add_option("--noisy", action="store_const", const=3,
406 group = parser.add_option_group("Review server options") variable
407 group.add_option("-s", "--server", action="store", dest="server",
412 group.add_option("-e", "--email", action="store", dest="email",
415 group.add_option("-H", "--host", action="store", dest="host",
418 group.add_option("--no_cookies", action="store_false",
422 group variable
438 group = parser.add_option_group("Patch options") variable
[all...]
H A Dfuse_gtest_files.py169 ProcessFile('include/' + m.group(1))
196 if 'include/' + m.group(1) == GTEST_SPI_H_SEED:
214 ProcessFile(m.group(1))
/gem5/ext/ply/doc/
H A Dmakedoc.py29 if m.group(1) != None:
30 amatch = alink.match(m.group(1))
33 headingname = amatch.group(1)
99 prevheadingtext = m.group(2)
122 prevheadingtext = m.group(2)
141 prevheadingtext = m.group(2)
158 prevheadingtext = m.group(2)
/gem5/src/dev/arm/
H A Dgic_v3_cpu_interface.cc271 Gicv3::GroupId group = local
274 if (group == Gicv3::G0S) {
301 Gicv3::GroupId group = local
304 if (group == Gicv3::G1NS) {
403 activateIRQ(int_id, hppi.group);
459 activateIRQ(int_id, hppi.group);
803 Gicv3::GroupId group = Gicv3::G0S; local
805 if (highestActiveGroup() != group) {
809 dropPriority(group);
812 deactivateIRQ(int_id, group);
873 Gicv3::GroupId group = inSecureState() ? Gicv3::G1S : Gicv3::G1NS; local
959 Gicv3::GroupId group = local
1096 Gicv3::GroupId group = local
1391 Gicv3::GroupId group = inSecureState() ? Gicv3::G1S : Gicv3::G1NS; local
1400 Gicv3::GroupId group = inSecureState() ? Gicv3::G1NS : Gicv3::G1S; local
1709 dropPriority(Gicv3::GroupId group) argument
1768 generateSGI(RegVal val, Gicv3::GroupId group) argument
1812 activateIRQ(uint32_t int_id, Gicv3::GroupId group) argument
1863 Gicv3::GroupId group = ich_lr_el.Group ? Gicv3::G1NS : Gicv3::G0S; local
1879 deactivateIRQ(uint32_t int_id, Gicv3::GroupId group) argument
1901 Gicv3::GroupId group = ich_lr_el2.pINTID >= 32 ? local
1918 groupPriorityMask(Gicv3::GroupId group) argument
2176 Gicv3::GroupId group = ich_lr_el2.Group ? Gicv3::G1NS : Gicv3::G0S; local
2535 bpr1(Gicv3::GroupId group) argument
[all...]
H A Dgic_v3_cpu_interface.hh159 Gicv3::GroupId group; member in struct:Gicv3CPUInterface::__anon4
300 void activateIRQ(uint32_t intid, Gicv3::GroupId group);
301 void generateSGI(RegVal val, Gicv3::GroupId group);
303 void deactivateIRQ(uint32_t intid, Gicv3::GroupId group);
304 void dropPriority(Gicv3::GroupId group);
311 bool groupEnabled(Gicv3::GroupId group) const;
312 uint32_t groupPriorityMask(Gicv3::GroupId group);
319 ArmISA::InterruptTypes intSignalType(Gicv3::GroupId group) const;
334 uint32_t virtualGroupPriorityMask(Gicv3::GroupId group) const;
339 RegVal bpr1(Gicv3::GroupId group);
[all...]
H A Dgic_v3_redistributor.cc449 "int_id %d group %d\n", int_id, irqGroup[int_id]);
716 Gicv3Redistributor::sendSGI(uint32_t int_id, Gicv3::GroupId group, bool ns) argument
731 forward = ((group == Gicv3::G1S || group == Gicv3::G1NS ) &&
735 forward = group == Gicv3::G1NS;
739 forward = (group == int_group) ||
740 (group == Gicv3::G1S && int_group == Gicv3::G0S &&
799 cpuInterface->hppi.group = int_group;
847 cpuInterface->hppi.group = lpi_group;
998 Gicv3Redistributor::canBeSelectedFor1toNInterrupt(Gicv3::GroupId group) cons
[all...]
H A Dgic_v3_distributor.hh183 groupEnabled(Gicv3::GroupId group) const
186 switch (group) {
198 "invalid group!\n");
201 switch (group) {
211 "invalid group!\n");
/gem5/ext/googletest/googletest/test/
H A Dgtest_xml_output_unittest.py191 year=int(match.group(1)), month=int(match.group(2)),
192 day=int(match.group(3)), hour=int(match.group(4)),
193 minute=int(match.group(5)), second=int(match.group(6)))
/gem5/util/stats/
H A Doutput.py78 for i,group in enumerate(confgroups):
79 if group.flags.graph_group:
80 groupopts.append(group.subopts())
82 elif group.flags.graph_bars:
83 baropts.append(group.subopts())
86 groups.append(group)
90 groupopts = [ group for group in crossproduct(groupopts) ]
97 raise AttributeError, 'No group selected for graph bars'
/gem5/src/base/stats/
H A Dhdf5.cc107 // Try to open an existing stat group corresponding to the
109 H5::Group group; local
111 group = base.openGroup(name);
113 group = base.createGroup(name);
115 group = base.createGroup(name);
118 path.push(group);
221 H5::Group group = path.top(); local
230 data_set = group.openDataSet(info.name);
253 data_set = group.createDataSet(info.name, H5::PredType::NATIVE_DOUBLE,
/gem5/util/
H A Dcompile66 version = match.group(1), match.group(2), match.group(3)
108 # current option group
109 group = None
112 '''set the current option group'''
113 global group
115 group = None
117 group = parser.add_option_group(*args, **kwargs)
120 if group
[all...]
/gem5/src/python/m5/stats/
H A D__init__.py245 for group in root.getStatGroups().values():
246 visitor(group)
247 _visit_groups(visitor, root=group)
289 def check_stat(group, stat):
335 def dump_group(group):
336 for stat in group.getStats():
339 for n, g in group.getStatGroups().items():
/gem5/src/python/m5/util/
H A Dcode_formatter.py221 ident = match.group('lone')
224 indent = match.group('indent') # must be spaces
234 ident = match.group('ident') or match.group('b_ident')
239 pos = match.group('pos') or match.group('b_pos')
249 eval_expr = match.group('eval')
255 if match.group('escaped') is not None:
259 if match.group('invalid') is None:
261 raise ValueError('Unrecognized named group i
[all...]
/gem5/util/style/
H A Dstyle.py150 for group in m.get_grouped_opcodes(context):
151 first = group[0]
152 last = group[-1]
/gem5/util/streamline/
H A Dm5stats2streamline.py601 tick = int(match.group(1))
604 cpu_id = int(match.group(3))
605 pid = int(match.group(4))
606 tgid = int(match.group(5))
607 task_name = match.group(6)
716 def __init__(self, name, group, group_index, per_cpu, key):
721 # Streamline group name that statistic will belong to
722 self.group = group
724 # Index of statistics within group (use
[all...]
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py397 group = parser.add_option_group("Logging options") variable
398 group.add_option("-q", "--quiet", action="store_const", const=0,
400 group.add_option("-v", "--verbose", action="store_const", const=2,
403 group.add_option("--noisy", action="store_const", const=3,
406 group = parser.add_option_group("Review server options") variable
407 group.add_option("-s", "--server", action="store", dest="server",
412 group.add_option("-e", "--email", action="store", dest="email",
415 group.add_option("-H", "--host", action="store", dest="host",
418 group.add_option("--no_cookies", action="store_false",
422 group variable
438 group = parser.add_option_group("Patch options") variable
[all...]
H A Dfuse_gmock_files.py139 ProcessFile('include/' + m.group(1))
196 ProcessFile(m.group(1))
/gem5/src/arch/arm/kvm/
H A Dgic.hh144 * @param group Distributor or CPU (KVM_DEV_ARM_VGIC_GRP_{DIST,CPU}_REGS)
148 uint32_t getGicReg(unsigned group, unsigned vcpu, unsigned offset);
153 * @param group Distributor or CPU (KVM_DEV_ARM_VGIC_GRP_{DIST,CPU}_REGS)
158 void setGicReg(unsigned group, unsigned vcpu, unsigned offset,
/gem5/util/maint/
H A Dlist_changes.py80 key, value = m.group(1), m.group(2)

Completed in 37 milliseconds

123