Deleted Added
sdiff udiff text old ( 11704:c38fcdaa5fe5 ) new ( 11713:499071baed7b )
full compact
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:

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

63namespace X86ISA
64{
65 class GpuTlbEntry : public TlbEntry
66 {
67 public:
68 GpuTlbEntry(Addr asn, Addr _vaddr, Addr _paddr, bool _valid)
69 : TlbEntry(asn, _vaddr, _paddr, false, false), valid(_valid) { }
70
71 GpuTlbEntry() : TlbEntry() { }
72
73 bool valid;
74 };
75
76 class GpuTLB : public MemObject
77 {
78 protected:
79 friend class Walker;

--- 386 unchanged lines hidden ---