tlb_coalescer.cc (11308:7d8836fd043d) tlb_coalescer.cc (11523:81332eb10367)
1/*
2 * Copyright (c) 2011-2015 Advanced Micro Devices, Inc.
3 * All rights reserved.
4 *
5 * For use for simulation and test purposes only
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:

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

541 DPRINTF(GPUTLB, "Cleanup - Delete coalescer entry with key %#x\n",
542 cleanup_addr);
543 }
544}
545
546void
547TLBCoalescer::regStats()
548{
1/*
2 * Copyright (c) 2011-2015 Advanced Micro Devices, Inc.
3 * All rights reserved.
4 *
5 * For use for simulation and test purposes only
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:

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

541 DPRINTF(GPUTLB, "Cleanup - Delete coalescer entry with key %#x\n",
542 cleanup_addr);
543 }
544}
545
546void
547TLBCoalescer::regStats()
548{
549 MemObject::regStats();
550
549 uncoalescedAccesses
550 .name(name() + ".uncoalesced_accesses")
551 .desc("Number of uncoalesced TLB accesses")
552 ;
553
554 coalescedAccesses
555 .name(name() + ".coalesced_accesses")
556 .desc("Number of coalesced TLB accesses")

--- 27 unchanged lines hidden ---
551 uncoalescedAccesses
552 .name(name() + ".uncoalesced_accesses")
553 .desc("Number of uncoalesced TLB accesses")
554 ;
555
556 coalescedAccesses
557 .name(name() + ".coalesced_accesses")
558 .desc("Number of coalesced TLB accesses")

--- 27 unchanged lines hidden ---