interrupts.cc (9157:e0bad9d7bbd6) interrupts.cc (9235:5aa4896ed55a)
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

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

366 return 0;
367}
368
369
370AddrRangeList
371X86ISA::Interrupts::getAddrRanges() const
372{
373 AddrRangeList ranges;
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

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

366 return 0;
367}
368
369
370AddrRangeList
371X86ISA::Interrupts::getAddrRanges() const
372{
373 AddrRangeList ranges;
374 Range<Addr> range = RangeEx(x86LocalAPICAddress(initialApicId, 0),
375 x86LocalAPICAddress(initialApicId, 0) +
376 PageBytes);
374 AddrRange range = RangeEx(x86LocalAPICAddress(initialApicId, 0),
375 x86LocalAPICAddress(initialApicId, 0) +
376 PageBytes);
377 ranges.push_back(range);
378 return ranges;
379}
380
381
382AddrRangeList
383X86ISA::Interrupts::getIntAddrRange() const
384{

--- 413 unchanged lines hidden ---
377 ranges.push_back(range);
378 return ranges;
379}
380
381
382AddrRangeList
383X86ISA::Interrupts::getIntAddrRange() const
384{

--- 413 unchanged lines hidden ---