Deleted Added
sdiff udiff text old ( 9235:5aa4896ed55a ) new ( 9279:8b16c3804bda )
full compact
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

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

64 {}
65
66 AddrRange(const std::pair<Addr, Addr> &r)
67 : start(r.first), end(r.second)
68 {}
69
70 Addr size() const { return end - start + 1; }
71 bool valid() const { return start < end; }
72};
73
74/**
75 * Keep the operators away from SWIG.
76 */
77#ifndef SWIG
78
79/**

--- 47 unchanged lines hidden ---