Searched refs:xn (Results 1 - 6 of 6) sorted by relevance

/gem5/src/arch/arm/
H A Dpagetable.hh146 bool xn; // Execute Never member in struct:ArmISA::TlbEntry
158 shareable(false), outerShareable(false), xn(0), pxn(0)
173 shareable(false), outerShareable(false), xn(0), pxn(0)
317 SERIALIZE_SCALAR(xn); variable
347 UNSERIALIZE_SCALAR(xn); variable
H A Dstage2_lookup.cc92 stage1Te.xn |= stage2Te->xn;
H A Dtable_walker.hh78 virtual bool xn() const = 0;
175 bool xn() const function in class:ArmISA::TableWalker::L1Descriptor
306 bool xn() const function in class:ArmISA::TableWalker::L2Descriptor
530 bool xn() const function
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,
754 bool xn = te->xn || (isWritable && sctlr.wxn) || local
756 if (is_fetch && (abt || xn ||
852 uint8_t xn = te->xn; local
863 DPRINTF(TLBVerbose, "Checking permissions: ap:%d, xn:%d, pxn:%d, r:%d, "
864 "w:%d, x:%d\n", ap, xn, pxn, r, w, x);
874 // sctlr.wxn overrides the xn bi
[all...]
H A Dtable_walker.cc1593 "xn: %d, ap: %d, af: %d, type: %d\n",
1597 currState->longDesc.xn(),
2067 te.xn = descriptor.xn();
2083 te.xn |= currState->xnTable;
2107 DPRINTF(TLB, " - vpn:%#x xn:%d pxn:%d ap:%d domain:%d asid:%d "
2108 "vmid:%d hyp:%d nc:%d ns:%d\n", te.vpn, te.xn, te.pxn,
/gem5/ext/mcpat/
H A DxmlParser.cc2778 XMLNode xn, xbase = *this;
2785 xn = xbase.getChildNode(path);
2786 if (xn.isEmpty()) {
2787 if (createIfMissing) xn = xbase.addChild(path);
2794 xbase = xn;
2798 xn = xbase.getChildNode(path);
2799 if (xn.isEmpty() && createIfMissing) xn = xbase.addChild(path);
2800 return xn;

Completed in 34 milliseconds