Searched refs:secure_lookup (Results 1 - 4 of 4) sorted by relevance

/gem5/src/arch/arm/
H A Dtlb.hh252 * @param secure_lookup if the operation affects the secure world
254 void flushAllSecurity(bool secure_lookup, ExceptionLevel target_el,
275 * @param secure_lookup if the operation affects the secure world
277 void flushMvaAsid(Addr mva, uint64_t asn, bool secure_lookup,
282 * @param secure_lookup if the operation affects the secure world
284 void flushAsid(uint64_t asn, bool secure_lookup,
289 * @param secure_lookup if the operation affects the secure world
291 void flushMva(Addr mva, bool secure_lookup, ExceptionLevel target_el);
297 * @param secure_lookup if the operation affects the secure world
299 void flushIpaVmid(Addr ipa, bool secure_lookup, ExceptionLeve
[all...]
H A Dpagetable.hh193 match(Addr va, uint8_t _vmid, bool hypLookUp, bool secure_lookup, argument
196 return match(va, 0, _vmid, hypLookUp, secure_lookup, true, target_el);
201 bool secure_lookup, bool ignore_asn, ExceptionLevel target_el) const
206 if (valid && va >= v && va <= v + size && (secure_lookup == !nstid) &&
200 match(Addr va, uint16_t asn, uint8_t _vmid, bool hypLookUp, bool secure_lookup, bool ignore_asn, ExceptionLevel target_el) const argument
H A Dtlb.cc239 TLB::flushAllSecurity(bool secure_lookup, ExceptionLevel target_el, argument
243 (secure_lookup ? "secure" : "non-secure"));
251 if (te->valid && secure_lookup == !te->nstid &&
252 (te->vmid == vmid || secure_lookup) && el_match) {
266 stage2Tlb->flushAllSecurity(secure_lookup, EL1, true);
302 TLB::flushMvaAsid(Addr mva, uint64_t asn, bool secure_lookup, argument
306 "(%s lookup)\n", mva, asn, (secure_lookup ?
308 _flushMva(mva, asn, secure_lookup, false, target_el);
313 TLB::flushAsid(uint64_t asn, bool secure_lookup, ExceptionLevel target_el) argument
316 (secure_lookup
337 flushMva(Addr mva, bool secure_lookup, ExceptionLevel target_el) argument
346 _flushMva(Addr mva, uint64_t asn, bool secure_lookup, bool ignore_asn, ExceptionLevel target_el) argument
369 flushIpaVmid(Addr ipa, bool secure_lookup, ExceptionLevel target_el) argument
[all...]
H A Disa.cc693 bool secure_lookup = haveSecurity && variable
696 if (!secure_lookup) {
779 bool secure_lookup;
1634 secure_lookup = haveSecurity &&
1637 if (!secure_lookup) {

Completed in 15 milliseconds