Searched refs:set (Results 1 - 25 of 322) sorted by relevance

1234567891011>>

/gem5/util/cpt_upgraders/
H A Dmultiple-event-queues.py3 cpt.set('Globals', 'numMainEventQueues', '1')
H A Dx86-add-tlb.py8 cpt.set(sec, '_size', '0')
9 cpt.set(sec, 'lruSeq', '0')
12 cpt.set(sec, '_size', '0')
13 cpt.set(sec, 'lruSeq', '0')
H A Druby-block-size-bytes.py7 cpt.set(sec, 'block_size_bytes', '64')
H A Darm-hdlcd-upgrade.py85 cpt.set(sec, key, value)
92 cpt.set(sec_dma, "nextLineAddr", "0")
93 cpt.set(sec_dma, "frameEnd", "0")
94 cpt.set(sec_dma, "startAddr", "0")
95 cpt.set(sec_dma, "endAddr", "0")
96 cpt.set(sec_dma, "nextAddr", "0")
97 cpt.set(sec_dma, "buffer", "")
108 cpt.set(sec_osc, "type", "RealViewOsc")
109 cpt.set(sec_osc, "_clockPeriod", "%i" % pxl_ticks)
H A Dide-dma-abort.py6 cpt.set(sec, "dmaAborted", "false")
H A Dmemory-per-range.py10 cpt.set(sec, 'nbr_of_stores', '1')
23 cpt.set(section_name, 'store_id', '0')
24 cpt.set(section_name, 'range_size', mem_size)
25 cpt.set(section_name, 'filename', mem_filename)
H A Darm-gicv2-banked-regs.py62 cpt.set(sec, 'intEnabled', ' '.join(intEnabled))
63 cpt.set(sec, 'pendingInt', ' '.join(pendingInt))
64 cpt.set(sec, 'activeInt', ' '.join(activeInt))
65 cpt.set(sec, 'intPriority',' '.join(intPriority))
66 cpt.set(sec, 'cpuTarget', ' '.join(cpuTarget))
76 cpt.set(new_sec, 'intEnabled', b_intEnabled)
77 cpt.set(new_sec, 'pendingInt', b_pendingInt)
78 cpt.set(new_sec, 'activeInt', b_activeInt)
79 cpt.set(new_sec, 'intPriority',' '.join(intPriority))
H A Ddvfs-perflevel.py8 cpt.set(sec, '_perfLevel', ' '.join('0'))
11 cpt.set(sec, '_perfLevel', ' '.join('0'))
H A Darmv8.py26 cpt.set(sec, 'floatRegs.i', ' '.join(str(x) for x in fpr))
34 cpt.set(sec, 'intRegs', ' '.join(str(x) for x in ir))
45 cpt.set(sec, "interrupts", ' '.join(str(x) for x in irqs))
56 cpt.set(sec, "interrupts", ' '.join(str(x) for x in irqs))
64 cpt.set(sec, 'haveSecurity', 'false')
65 cpt.set(sec, 'haveLPAE', 'false')
66 cpt.set(sec, 'haveVirtualization', 'false')
67 cpt.set(sec, 'haveLargeAsid64', 'false')
68 cpt.set(sec, 'physAddrRange64', '40')
249 cpt.set(se
[all...]
H A Detherswitch.py17 cpt.set(new_sec_name, "_size", it[1])
19 cpt.set(new_sec_name, "fifosize", it[1])
21 cpt.set(new_sec_name, old_opt_name, it[1])
H A Darm-sve.py17 cpt.set(sec, 'haveSVE', 'false')
20 # (This is a dummy value since haveSVE is set to false)
21 cpt.set(sec, 'sveVL', '1')
35 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in mr))
H A Dcpu-pid.py8 cpt.set(sec, '_pid', '0')
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dkeywords.py31 if not hasattr(builtins, 'set'):
33 from sets import Set as set
36 TYPES = set('bool char int long short double float void wchar_t unsigned signed'.split())
37 TYPE_MODIFIERS = set('auto register const inline extern static virtual volatile mutable'.split())
38 ACCESS = set('public protected private friend'.split())
40 CASTS = set('static_cast const_cast dynamic_cast reinterpret_cast'.split())
42 OTHERS = set('true false asm class namespace using explicit this operator sizeof'.split())
43 OTHER_TYPES = set('new delete typedef struct union enum typeid typename template'.split())
45 CONTROL = set('case switch default if else return goto'.split())
46 EXCEPTION = set('tr
[all...]
/gem5/src/mem/ruby/system/
H A DWeightedLRUPolicy.cc69 WeightedLRUPolicy::touch(int64_t set, int64_t index, Tick time) argument
72 assert(set >= 0 && set < m_num_sets);
74 m_last_ref_ptr[set][index] = time;
78 WeightedLRUPolicy::touch(int64_t set, int64_t index, Tick time, int occupancy) argument
81 assert(set >= 0 && set < m_num_sets);
83 m_last_ref_ptr[set][index] = time;
84 m_last_occ_ptr[set][index] = occupancy;
88 WeightedLRUPolicy::getVictim(int64_t set) cons
[all...]
H A DWeightedLRUPolicy.hh52 void touch(int64_t set, int64_t way, Tick time) override;
53 void touch(int64_t set, int64_t way, Tick time, int occupancy);
54 int64_t getVictim(int64_t set) const override;
/gem5/src/mem/ruby/structures/
H A DLRUPolicy.cc51 LRUPolicy::touch(int64_t set, int64_t index, Tick time) argument
54 assert(set >= 0 && set < m_num_sets);
56 m_last_ref_ptr[set][index] = time;
60 LRUPolicy::getVictim(int64_t set) const
64 smallest_time = m_last_ref_ptr[set][0];
67 time = m_last_ref_ptr[set][i];
H A DAbstractReplacementPolicy.hh47 virtual void touch(int64_t set, int64_t way, Tick time) = 0;
50 virtual int64_t getVictim(int64_t set) const = 0;
53 Tick getLastAccess(int64_t set, int64_t way);
62 unsigned m_assoc; /** set associativity */
H A DPseudoLRUPolicy.hh45 * the associative set. This is most unfair when the nearest power of
56 void touch(int64_t set, int64_t way, Tick time);
57 int64_t getVictim(int64_t set) const;
63 * trees, one for each set */
H A DLRUPolicy.hh44 void touch(int64_t set, int64_t way, Tick time);
45 int64_t getVictim(int64_t set) const;
H A DPseudoLRUPolicy.cc76 PseudoLRUPolicy::touch(int64_t set, int64_t index, Tick time)
79 assert(set >= 0 && set < m_num_sets);
86 m_trees[set] |= node_val << tree_index;
88 m_trees[set] &= ~(1 << tree_index);
91 m_last_ref_ptr[set][index] = time;
95 PseudoLRUPolicy::getVictim(int64_t set) const
102 node_val = (m_trees[set] >> tree_index) & 1;
/gem5/ext/systemc/src/sysc/qt/md/
H A Dpowerpc_mach.s117 cout << ".set LR_SAVE, " << PPC_LR_SAVE << endl;
118 cout << ".set CR_SAVE, " << PPC_CR_SAVE << endl;
119 cout << ".set BLOCKI_FSIZE, " << QUICKTHREADS_BLOCKI_FRAME_SIZE << endl;
120 cout << ".set BLOCK_FSIZE, " << QUICKTHREADS_BLOCK_FRAME_SIZE << endl;
124 cout << ".set PAR_" << i << ", " << PPC_PAR(i) << endl;
128 cout << ".set GPR_SAVE_" << i << ", " << QUICKTHREADS_BLOCKI_GPR_SAVE(i) << endl;
132 cout << ".set FPR_SAVE_" << i << ", " << QUICKTHREADS_BLOCK_FPR_SAVE(i) << endl;
135 cout << ".set VARGS_BKOFF, " << QUICKTHREADS_VARGS_BKOFF << endl;
177 .set LR_SAVE, 8
178 .set CR_SAV
[all...]
H A Dpowerpc_sys5.s110 cout << ".set LR_SAVE, " << PPC_LR_SAVE << endl;
111 cout << ".set BLOCKI_FSIZE, " << QUICKTHREADS_BLOCKI_FRAME_SIZE << endl;
112 cout << ".set BLOCKI_CR_SAVE, " << QUICKTHREADS_BLOCKI_CR_SAVE << endl;
113 cout << ".set BLOCK_FSIZE, " << QUICKTHREADS_BLOCK_FRAME_SIZE << endl;
117 cout << ".set PAR_" << i << ", " << PPC_PAR(i) << endl;
121 cout << ".set GPR_SAVE_" << i << ", " << QUICKTHREADS_BLOCKI_GPR_SAVE(i) << endl;
125 cout << ".set FPR_SAVE_" << i << ", " << QUICKTHREADS_BLOCK_FPR_SAVE(i) << endl;
128 cout << ".set VARGS_BKOFF, " << QUICKTHREADS_VARGS_BKOFF << endl;
171 .set LR_SAVE, 4
172 .set BLOCKI_FSIZ
[all...]
/gem5/src/systemc/core/
H A Dchannel.hh33 #include <set>
58 extern std::set<Channel *> allChannels;
/gem5/src/mem/cache/replacement_policies/
H A Dreplaceable_entry.hh46 * and column of the table (set and way in cache nomenclature), which are
62 * Way (relative position within the set) to which this entry belongs.
77 * Set both the set and way. Should be called only once.
79 * @param set The set of this entry.
83 setPosition(const uint32_t set, const uint32_t way) argument
85 _set = set;
90 * Get set number.
92 * @return The set to which this entry belongs.
/gem5/src/dev/arm/
H A Dsmmu_v3_caches.cc174 Set set(associativity, e);
175 sets.resize(num_sets, set);
184 Set &set = sets[pickSetIdx(va)]; local
186 for (size_t i = 0; i < set.size(); i++) {
187 const Entry &e = set[i];
218 Set &set = sets[s]; local
220 for (size_t i = 0; i < set.size(); i++) {
221 const Entry &e = set[i];
253 Set &set = sets[pickSetIdx(incoming.va)]; local
254 set[pickEntryIdxToReplac
263 Set &set = sets[pickSetIdx(sid, ssid)]; local
277 Set &set = sets[s]; local
291 Set &set = sets[pickSetIdx(va)]; local
307 Set &set = sets[pickSetIdx(va)]; local
321 Set &set = sets[s]; local
336 Set &set = sets[s]; local
351 Set &set = sets[s]; local
371 pickEntryIdxToReplace(const Set &set, AllocPolicy alloc) argument
463 Set &set = sets[pickSetIdx(va, asid, vmid)]; local
505 Set &set = sets[pickSetIdx(incoming.va, incoming.asid, incoming.vmid)]; local
515 Set &set = sets[pickSetIdx(va, asid, vmid)]; local
532 Set &set = sets[s]; local
547 Set &set = sets[s]; local
562 Set &set = sets[s]; local
577 Set &set = sets[s]; local
591 pickEntryIdxToReplace(const Set &set) argument
662 Set &set = sets[pickSetIdx(ipa, vmid)]; local
703 Set &set = sets[pickSetIdx(incoming.ipa, incoming.vmid)]; local
713 Set &set = sets[pickSetIdx(ipa, vmid)]; local
727 Set &set = sets[s]; local
742 Set &set = sets[s]; local
757 Set &set = sets[s]; local
771 pickEntryIdxToReplace(const Set &set) argument
842 Set &set = sets[pickSetIdx(sid, ssid)]; local
882 Set &set = sets[pickSetIdx(incoming.sid, incoming.ssid)]; local
892 Set &set = sets[pickSetIdx(sid, ssid)]; local
906 Set &set = sets[s]; local
921 Set &set = sets[s]; local
935 pickEntryIdxToReplace(const Set &set) argument
1021 Set &set = sets[pickSetIdx(va, vaMask, stage, level)]; local
1074 Set &set = sets[pickSetIdx(incoming.va, incoming.vaMask, local
1090 Set &set = sets[s]; local
1108 Set &set = sets[s]; local
1126 Set &set = sets[s]; local
1141 Set &set = sets[s]; local
1156 Set &set = sets[s]; local
1192 pickEntryIdxToReplace(const Set &set, unsigned stage, unsigned level) argument
[all...]

Completed in 23 milliseconds

1234567891011>>