Searched refs:domain (Results 1 - 11 of 11) sorted by relevance

/gem5/src/arch/arm/
H A Dpagetable.hh120 DomainType domain; // Access Domain member in struct:ArmISA::TlbEntry
155 domain(DomainType::Client), mtype(MemoryType::StronglyOrdered),
170 domain(DomainType::Client), mtype(MemoryType::StronglyOrdered),
321 uint8_t domain_ = static_cast<uint8_t>(domain);
322 paramOut(cp, "domain", domain_);
352 paramIn(cp, "domain", domain_);
353 domain = static_cast<DomainType>(domain_);
H A Dtlb.hh78 * @param domain Domain type
82 TlbEntry::DomainType domain) = 0;
93 * @param domain Domain type
98 TlbEntry::DomainType domain,
302 TlbEntry::DomainType domain);
306 TlbEntry::DomainType domain,
460 TlbEntry::DomainType domain);
462 TlbEntry::DomainType domain,
H A Dtable_walker.hh77 virtual TlbEntry::DomainType domain() const = 0;
187 TlbEntry::DomainType domain() const function in class:ArmISA::TableWalker::L1Descriptor
278 virtual TlbEntry::DomainType domain() const function in class:ArmISA::TableWalker::L2Descriptor
280 return l1Parent->domain();
612 TlbEntry::DomainType domain() const function
614 // Long-desc. format only supports Client domain
972 Fault testWalk(Addr pa, Addr size, TlbEntry::DomainType domain,
H A Dtlb.cc199 " ap:%#x domain:%#x ns:%d nstid:%d isHyp:%d\n", entry.pfn,
202 entry.ap, static_cast<uint8_t>(entry.domain), entry.ns, entry.nstid,
542 .desc("Number of TLB faults due to domain restrictions")
630 vaddr, te->domain, is_write,
661 switch ((dacr >> (static_cast<uint8_t>(te->domain) * 2)) & 0x3) {
664 DPRINTF(TLB, "TLB Fault: Data abort on domain. DACR: %#x"
665 " domain: %#x write:%d\n", dacr,
666 static_cast<uint8_t>(te->domain), is_write);
677 vaddr, te->domain, is_write,
684 panic("UNPRED domain\
1603 testTranslation(const RequestPtr &req, Mode mode, TlbEntry::DomainType domain) argument
1615 testWalk(Addr pa, Addr size, Addr va, bool is_secure, Mode mode, TlbEntry::DomainType domain, LookupLevel lookup_level) argument
[all...]
H A Dtable_walker.cc1504 currState->l1Desc.domain(),
1525 currState->l1Desc.domain(), L2);
1763 currState->vaddr_tainted, currState->l1Desc.domain(),
2063 te.domain = descriptor.domain();
2107 DPRINTF(TLB, " - vpn:%#x xn:%d pxn:%d ap:%d domain:%d asid:%d "
2109 te.ap, static_cast<uint8_t>(te.domain), te.asid, te.vmid, te.isHyp,
2111 DPRINTF(TLB, " - domain from L%d desc:%d data:%#x\n",
2112 descriptor.lookupLevel, static_cast<uint8_t>(descriptor.domain()),
2163 TableWalker::testWalk(Addr pa, Addr size, TlbEntry::DomainType domain, argument
[all...]
H A Dfaults.hh425 TlbEntry::DomainType domain; member in class:ArmISA::AbortFault
437 domain(_domain), source(_source), srcEncoded(0),
H A Dmiscregs_types.hh397 Bitfield<7, 4> domain; member in namespace:ArmISA
H A Dfaults.cc1166 fsr.domain = static_cast<uint8_t>(domain);
/gem5/src/sim/
H A Dfd_entry.hh227 SocketFDEntry(int sim_fd, int domain, int type, int protocol, argument
230 _domain(domain), _type(type), _protocol(protocol)
H A Dsyscall_emul.hh2377 int domain = p->getSyscallArg(tc, index); local
2381 int sim_fd = socket(domain, type, prot);
2385 auto sfdp = std::make_shared<SocketFDEntry>(sim_fd, domain, type, prot);
2397 int domain = p->getSyscallArg(tc, index); local
2403 int status = socketpair(domain, type, prot, (int *)svBuf.bufferPtr());
2409 auto sfdp1 = std::make_shared<SocketFDEntry>(fds[0], domain, type, prot);
2411 auto sfdp2 = std::make_shared<SocketFDEntry>(fds[1], domain, type, prot);
/gem5/src/python/m5/util/
H A Ddot_writer.py277 # the correct domain colouring.
294 def dot_create_dvfs_nodes(simNode, callgraph, domain=None):
323 # Just re-use the domain from above
324 c_dom = domain
328 if c_dom == domain or c_dom == None:
329 dot_create_dvfs_nodes(child, cluster, domain)

Completed in 54 milliseconds