Searched refs:entries (Results 26 - 38 of 38) sorted by relevance

12

/gem5/src/mem/cache/tags/
H A Dsector_tags.cc203 // due to sectors being composed of contiguous-address entries
206 // Find all possible sector entries that may contain the given address
207 const std::vector<ReplaceableEntry*> entries =
211 for (const auto& sector : entries) {
227 // Get possible entries to be victimized
/gem5/src/cpu/kvm/
H A Dx86_cpu.cc164 static STRUCT *newVarStruct(size_t entries) argument
166 return (STRUCT *)operator new(sizeof(STRUCT) + entries * sizeof(ENTRY));
329 const struct kvm_msr_entry &e(msrs.entries[i]);
664 struct kvm_msr_entry &e(msrs->entries[i]);
1111 entry = &kvm_msrs->entries[0];
1121 entry = &kvm_msrs->entries[0];
1472 std::copy(cpuid.begin(), cpuid.end(), kvm_cpuid->entries);
1492 std::copy(msrs.begin(), msrs.end(), kvm_msrs->entries);
1511 struct kvm_msr_entry &entry(kvm_msrs->entries[0]);
1526 struct kvm_msr_entry &entry(kvm_msrs->entries[
[all...]
H A Dvm.cc223 supportedCPUIDCache.assign(cpuid->entries,
224 cpuid->entries + cpuid->nent);
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64si/
H A Ddirty.S63 # Make sure that superpage entries trap when PPN LSBs are set.
/gem5/src/systemc/tests/
H A Dverify.py306 self.entries = {}
316 self.entries[entry] = Entry(entry)
321 matches = { n: e for n, e in self.entries.items() if match(n) }
335 items = self.entries.items()
/gem5/util/
H A Dcompile53 entries = os.listdir(dir)
54 for entry in entries:
/gem5/configs/common/
H A DFSConfig.py622 entries = \
637 entries.append(X86E820Entry(addr = self.mem_ranges[0].size(),
642 entries.append(X86E820Entry(addr=0xFFFF0000, size='64kB', range_type=2))
649 entries.append(X86E820Entry(addr = 0x100000000,
652 self.e820_table.entries = entries
/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h1407 dict entries = type.attr("__entries");
1408 for (const auto &kv : entries) {
1419 dict entries = arg.get_type().attr("__entries");
1420 for (const auto &kv : entries) {
1431 dict entries = arg.attr("__entries");
1435 for (const auto &kv : entries) {
1448 dict entries = arg.attr("__entries"), m;
1449 for (const auto &kv : entries)
1524 dict entries = m_base.attr("__entries"); local
1526 if (entries
1536 dict entries = m_base.attr("__entries"); local
[all...]
H A Dcast.h1407 std::array<object, size> entries{{
1410 for (const auto &entry: entries)
1415 for (auto & entry: entries)
/gem5/src/cpu/o3/
H A Dlsq.hh106 * LSQ entries can be squashed before the response comes back. in that
838 /** Number of entries needed for the given amount of threads.*/
934 /** Returns the number of free load entries. */
937 /** Returns the number of free store entries. */
940 /** Returns the number of free entries for a specific thread. */
943 /** Returns the number of free entries in the LQ for a specific thread. */
946 /** Returns the number of free entries in the SQ for a specific thread. */
1073 * Depending on a policy, number of entries and possibly number of threads
1078 maxLSQAllocation(SMTQueuePolicy pol, uint32_t entries, argument
1082 return entries;
[all...]
/gem5/src/mem/cache/prefetch/
H A DPrefetcher.py155 start_conf = Param.Int(4, "Starting confidence for new entries")
179 "Number of entries of the Prefetch Table")
191 "Number of entries of the Indirect Pattern Detector")
219 "Number of entries of the signature table")
232 "Number of entries of the pattern table")
247 "Minimum confidence to continue exploring lookahead entries")
263 "Number of entries of global history register")
286 "Number of entries in the access map table")
328 "Number of entries in the table")
359 "Number of entries o
[all...]
/gem5/src/mem/cache/compressors/
H A Dcpack.hh35 * The dictionary is composed of 32-bit entries.
90 // entries yet
135 * Number of valid entries in the dictionary.
145 * Number of data entries that were compressed to each pattern.
170 * Clear all dictionary entries.
214 * The compressed data is composed of multiple pattern entries. To add a new
536 std::vector<std::unique_ptr<Pattern>> entries; member in class:CPack::CompData
541 * @param dictionary_size Number of entries in the dictionary.
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py703 """Add reserved entries as list of dict with
936 """Extract reserved memory entries"""
938 entries = []
945 return entries
946 entries.append(result)

Completed in 50 milliseconds

12