Deleted Added
sdiff udiff text old ( 10031:79d034cd6ba3 ) new ( 10052:5bb8e054456b )
full compact
1/*
2 * Copyright (c) 2012-2013 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

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

571 /** Accessor function for thread ID. */
572 int
573 threadId() const
574 {
575 assert(privateFlags.isSet(VALID_THREAD_ID));
576 return _threadId;
577 }
578
579 bool
580 hasPC() const
581 {
582 return privateFlags.isSet(VALID_PC);
583 }
584
585 /** Accessor function for pc.*/
586 Addr

--- 43 unchanged lines hidden ---