fs_translating_port_proxy.cc (8722:78b08f92c290) fs_translating_port_proxy.cc (8850:ed91b534ed04)
1/*
2 * Copyright (c) 2011 ARM Limited
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

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

49#include "base/chunk_generator.hh"
50#include "cpu/base.hh"
51#include "cpu/thread_context.hh"
52#include "mem/fs_translating_port_proxy.hh"
53
54using namespace TheISA;
55
56FSTranslatingPortProxy::FSTranslatingPortProxy(ThreadContext *tc)
1/*
2 * Copyright (c) 2011 ARM Limited
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

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

49#include "base/chunk_generator.hh"
50#include "cpu/base.hh"
51#include "cpu/thread_context.hh"
52#include "mem/fs_translating_port_proxy.hh"
53
54using namespace TheISA;
55
56FSTranslatingPortProxy::FSTranslatingPortProxy(ThreadContext *tc)
57 : PortProxy(*(tc->getCpuPtr()->getPort("dcache_port"))), _tc(tc)
57 : PortProxy(tc->getCpuPtr()->getDataPort()), _tc(tc)
58{
59}
60
61FSTranslatingPortProxy::FSTranslatingPortProxy(Port &port)
62 : PortProxy(port), _tc(NULL)
63{
64}
65

--- 101 unchanged lines hidden ---
58{
59}
60
61FSTranslatingPortProxy::FSTranslatingPortProxy(Port &port)
62 : PortProxy(port), _tc(NULL)
63{
64}
65

--- 101 unchanged lines hidden ---