tlb.cc (5004:7d94cedab264) tlb.cc (5038:c996bb7f1a6d)
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 *

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

74 {
75 UNSERIALIZE_SCALAR(pageStart);
76 }
77};
78
79X86ISA::ITB *
80X86ITBParams::create()
81{
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 *

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

74 {
75 UNSERIALIZE_SCALAR(pageStart);
76 }
77};
78
79X86ISA::ITB *
80X86ITBParams::create()
81{
82 return new X86ISA::ITB(name);
82 return new X86ISA::ITB(this);
83}
84
85X86ISA::DTB *
86X86DTBParams::create()
87{
83}
84
85X86ISA::DTB *
86X86DTBParams::create()
87{
88 return new X86ISA::DTB(name);
88 return new X86ISA::DTB(this);
89}
89}