base.hh (12155:5dc92ea01323) | base.hh (14198:9c2f67392409) |
---|---|
1/* 2 * Copyright (c) 2012 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 --- 83 unchanged lines hidden (view full) --- 92 void drainResume() override; 93 void notifyFork() override; 94 95 void switchOut() override; 96 void takeOverFrom(BaseCPU *cpu) override; 97 98 void verifyMemoryMode() const override; 99 | 1/* 2 * Copyright (c) 2012 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 --- 83 unchanged lines hidden (view full) --- 92 void drainResume() override; 93 void notifyFork() override; 94 95 void switchOut() override; 96 void takeOverFrom(BaseCPU *cpu) override; 97 98 void verifyMemoryMode() const override; 99 |
100 MasterPort &getDataPort() override { return dataPort; } 101 MasterPort &getInstPort() override { return instPort; } | 100 Port &getDataPort() override { return dataPort; } 101 Port &getInstPort() override { return instPort; } |
102 103 void wakeup(ThreadID tid = 0) override; 104 void activateContext(ThreadID thread_num) override; 105 void suspendContext(ThreadID thread_num) override; 106 void deallocateContext(ThreadID thread_num); 107 void haltContext(ThreadID thread_num) override; 108 109 long getVCpuID() const { return vcpuID; } --- 693 unchanged lines hidden --- | 102 103 void wakeup(ThreadID tid = 0) override; 104 void activateContext(ThreadID thread_num) override; 105 void suspendContext(ThreadID thread_num) override; 106 void deallocateContext(ThreadID thread_num); 107 void haltContext(ThreadID thread_num) override; 108 109 long getVCpuID() const { return vcpuID; } --- 693 unchanged lines hidden --- |