1/*
2 * Copyright (c) 2010 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

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

40 * Authors: Kevin Lim
41 * Korey Sewell
42 */
43
44#include "arch/registers.hh"
45#include "config/the_isa.hh"
46#include "cpu/o3/thread_context.hh"
47#include "cpu/quiesce_event.hh"
48#include "debug/O3CPU.hh"
49
50#if FULL_SYSTEM
51template <class Impl>
52VirtualPort *
53O3ThreadContext<Impl>::getVirtPort()
54{
55 return thread->getVirtPort();
56}

--- 308 unchanged lines hidden ---