i82094aa.cc (6139:2bfd792b1cc0) i82094aa.cc (6712:b95abe00dd9d)
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

146{
147 DPRINTF(I82094AA, "Received interrupt %d.\n", line);
148 assert(line < TableSize);
149 RedirTableEntry entry = redirTable[line];
150 if (entry.mask) {
151 DPRINTF(I82094AA, "Entry was masked.\n");
152 return;
153 } else {
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

146{
147 DPRINTF(I82094AA, "Received interrupt %d.\n", line);
148 assert(line < TableSize);
149 RedirTableEntry entry = redirTable[line];
150 if (entry.mask) {
151 DPRINTF(I82094AA, "Entry was masked.\n");
152 return;
153 } else {
154 TriggerIntMessage message;
154 TriggerIntMessage message = 0;
155 message.destination = entry.dest;
156 if (entry.deliveryMode == DeliveryMode::ExtInt) {
157 assert(extIntPic);
158 message.vector = extIntPic->getVector();
159 } else {
160 message.vector = entry.vector;
161 }
162 message.deliveryMode = entry.deliveryMode;

--- 80 unchanged lines hidden ---
155 message.destination = entry.dest;
156 if (entry.deliveryMode == DeliveryMode::ExtInt) {
157 assert(extIntPic);
158 message.vector = extIntPic->getVector();
159 } else {
160 message.vector = entry.vector;
161 }
162 message.deliveryMode = entry.deliveryMode;

--- 80 unchanged lines hidden ---