tlb.hh (10687:276da6265ab8) tlb.hh (10905:a6ca6831e775)
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

102 }
103
104 // static helper functions... really
105 static bool validVirtualAddress(Addr vaddr);
106
107 static Fault checkCacheability(RequestPtr &req);
108
109 // Checkpointing
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

102 }
103
104 // static helper functions... really
105 static bool validVirtualAddress(Addr vaddr);
106
107 static Fault checkCacheability(RequestPtr &req);
108
109 // Checkpointing
110 void serialize(std::ostream &os);
111 void unserialize(Checkpoint *cp, const std::string &section);
110 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
111 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
112
113 void regStats();
114
115 Fault translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode);
116 void translateTiming(RequestPtr req, ThreadContext *tc,
117 Translation *translation, Mode mode);
118
119 /** Function stub for CheckerCPU compilation issues. MIPS does not

--- 15 unchanged lines hidden ---
112
113 void regStats();
114
115 Fault translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode);
116 void translateTiming(RequestPtr req, ThreadContext *tc,
117 Translation *translation, Mode mode);
118
119 /** Function stub for CheckerCPU compilation issues. MIPS does not

--- 15 unchanged lines hidden ---