Searched refs:valid (Results 51 - 75 of 85) sorted by relevance

1234

/gem5/util/
H A Dcompile231 # valid combinations of ISA and emulation mode
232 valid = { ('alpha', 'syscall') : 'ALPHA_SE',
242 valid.update(experiment)
248 build = valid[(isa, mode)]
254 sys.exit("must specify at least one valid combination of ISA and mode")
/gem5/src/cpu/o3/
H A Dlsq_unit.hh147 bool valid() const { return _valid; } function in class:LSQUnit::LSQEntry
222 * a valid copy constructor for the base type at compile time.
344 storeWBIt->valid() &&
586 return loadQueue.front().valid()
597 return storeQueue.front().valid()
686 assert(store_it->valid());
710 // If the store entry is not atomic (atomic does not have valid
857 assert(storeQueue[store_idx].valid());
872 // copy data into the storeQueue only if the store request has valid data
H A Dlsq_unit_impl.hh261 assert(!loadQueue[i].valid());
306 assert(!loadQueue.back().valid());
655 assert(loadQueue.front().valid());
670 assert(loads == 0 || loadQueue.front().valid());
682 assert(stores == 0 || storeQueue.front().valid());
686 assert(x.valid());
727 storeWBIt->valid() &&
994 assert(store_idx->valid());
/gem5/src/systemc/ext/core/
H A Dsc_process_handle.hh173 bool valid() const;
/gem5/src/systemc/tests/systemc/kernel/process_control/test07/
H A Dtest07.cpp60 std::cout << ( h.valid() // is it a process? -> print state
/gem5/src/arch/alpha/
H A Dremote_gdb.cc155 * Determine if the mapping at va..(va+len) is valid.
171 DPRINTF(GDBAcc, "acc: Mapping is valid K0SEG <= "
183 * and data) are valid since there isn't a va->pa mapping
195 if (!pte.valid()) {
202 DPRINTF(GDBAcc, "acc: %#x mapping is valid\n", va);
/gem5/src/python/pybind11/
H A Dstats.cc104 .def("valid", &Stats::Output::valid)
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_process_handle.h121 inline bool valid() const;
472 inline bool sc_process_handle::valid() const function in class:sc_core::sc_process_handle
/gem5/src/mem/cache/prefetch/
H A Dspatio_temporal_memory_streaming.cc114 rmob_entry.valid = true;
174 idx != rmobHead && rmob[idx].valid;
/gem5/src/base/stats/
H A Dhdf5.cc90 assert(valid());
96 Hdf5::valid() const function in class:Stats::Hdf5
/gem5/src/dev/arm/
H A Dsmmu_v3_transl.cc416 e.valid = true;
448 e.valid = true;
485 e.valid = true;
552 e.valid = true;
698 e.valid = true;
754 bool valid = pt_ops->isValid(pte, level); local
757 if (!valid) {
758 DPRINTF(SMMUv3, "S1 PTE not valid - fault\n");
765 if (valid && leaf && request.isWrite &&
838 bool valid local
[all...]
H A Dsmmu_v3_defs.hh190 Bitfield<0> valid; member in struct:StreamTableEntry
269 Bitfield<31> valid; member in struct:ContextDescriptor
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_report.h140 bool valid () const function in class:sc_core::sc_report
/gem5/src/systemc/core/
H A Dsc_process_handle.cc101 sc_process_handle::valid() const function in class:sc_core::sc_process_handle
/gem5/src/systemc/tests/systemc/misc/unit/control/wait/
H A Dwait.cpp105 sc_assert(hnd.valid() && thread);
/gem5/src/cpu/pred/
H A Dbpred_unit.hh160 { return BTB.valid(instPC, 0); }
233 /** The RAS target (only valid if a return). */
236 /** The RAS index of the instruction (only valid if a call). */
/gem5/ext/mcpat/
H A Darray.cc101 local_result.valid = false;
197 local_result.valid = true;
H A Dcachearray.cc87 local_result.valid = false;
187 local_result.valid = true;
/gem5/util/cpt_upgraders/
H A Darmv8.py278 valid = cpt.get(sec, 'valid')
279 if valid == 'true':
/gem5/src/systemc/tests/systemc/1666-2011-compliance/method_suspends_itself/
H A Dmethod_suspends_itself.cpp296 sc_assert( t.valid() );
330 if (t.valid())
/gem5/src/arch/arm/
H A Dtlb.cc198 " asid:%d vmid:%d N:%d global:%d valid:%d nc:%d xn:%d"
201 entry.global, entry.valid, entry.nonCacheable, entry.xn,
205 if (table[size - 1].valid)
232 if (te->valid)
251 if (te->valid && secure_lookup == !te->nstid &&
255 te->valid = false;
284 if (te->valid && te->nstid && te->isHyp == hyp && el_match) {
288 te->valid = false;
323 if (te->valid && te->asid == asn && secure_lookup == !te->nstid &&
327 te->valid
[all...]
/gem5/util/style/
H A Dverifiers.py434 valid = ('\n', '\t') variable in class:ControlCharacters
435 invalid = "".join([chr(i) for i in range(0, 0x20) if chr(i) not in valid])
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl/
H A Dproc_ctrl.cpp188 if (t1.valid())
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_pause/
H A Dsc_pause.cpp338 sc_assert( h.valid() );
/gem5/src/base/
H A Daddr_range.hh288 * Determine if the range is valid.
290 bool valid() const { return _start <= _end; } function in class:AddrRange
344 * range. No check is made to ensure either range is valid.
376 * check is made to ensure either range is valid.

Completed in 28 milliseconds

1234