Deleted Added
sdiff udiff text old ( 8286:abc8ab4ddd93 ) new ( 8527:6bac5b04d588 )
full compact
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

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

73 return dynamic_cast<const Params *>(_params);
74 }
75
76 ArmSystem(Params *p);
77 ~ArmSystem();
78
79 void initState();
80
81 virtual Addr fixFuncEventAddr(Addr addr)
82 {
83 // Remove the low bit that thumb symbols have set
84 // but that aren't actually odd aligned
85 if (addr & 0x1)
86 return addr & ~1;
87 return addr;
88 }
89};
90
91#endif
92