base.cc (12085:de78ea63e0ca) base.cc (12122:20512f6810d7)
1/*
2 * Copyright (c) 2011-2012,2016 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

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

778 currentFunctionEnd = pc + 1;
779 }
780
781 ccprintf(*functionTraceStream, " (%d)\n%d: %s",
782 curTick() - functionEntryTick, curTick(), sym_str);
783 functionEntryTick = curTick();
784 }
785}
1/*
2 * Copyright (c) 2011-2012,2016 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

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

778 currentFunctionEnd = pc + 1;
779 }
780
781 ccprintf(*functionTraceStream, " (%d)\n%d: %s",
782 curTick() - functionEntryTick, curTick(), sym_str);
783 functionEntryTick = curTick();
784 }
785}
786
787bool
788BaseCPU::waitForRemoteGDB() const
789{
790 return params()->wait_for_remote_gdb;
791}