Deleted Added
sdiff udiff text old ( 5237:6c819dbe8045 ) new ( 5242:280a99136427 )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

--- 366 unchanged lines hidden (view full) ---

375 // Do legacy PSE.
376 state = PSEPD;
377 } else {
378 // Do legacy non PSE.
379 state = PD;
380 }
381 }
382 }
383 nextState = Ready;
384 entry.vaddr = vaddr;
385
386 enableNX = efer.nxe;
387
388 RequestPtr request =
389 new Request(top, size, PHYSICAL | cr3.pcd ? UNCACHEABLE : 0);
390 read = new Packet(request, MemCmd::ReadExReq, Packet::Broadcast);

--- 199 unchanged lines hidden (view full) ---

590 }
591 }
592 return NULL;
593}
594
595void
596TLB::invalidateAll()
597{
598}
599
600void
601TLB::invalidateNonGlobal()
602{
603}
604
605void
606TLB::demapPage(Addr va)
607{
608}
609
610template<class TlbFault>

--- 442 unchanged lines hidden ---