Deleted Added
sdiff udiff text old ( 7087:fb8d5786ff30 ) new ( 7901:f9b675da608a )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Gabe Black
38 */
39
40#include <string>
41
42#include "arch/x86/vtophys.hh"
43
44using namespace std;
45
46namespace X86ISA
47{
48 Addr vtophys(Addr vaddr)
49 {
50 return vaddr;
51 }
52
53 Addr vtophys(ThreadContext *tc, Addr addr)
54 {
55 return addr;
56 }
57}