inorder: use setupSquash for misspeculation
[gem5.git] / src / cpu / inorder / inorder_dyn_inst.cc
1 /*
2 * Copyright (c) 2007 MIPS Technologies, Inc.
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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 *
30 */
31
32 #include <iostream>
33 #include <set>
34 #include <sstream>
35 #include <string>
36
37 #include "arch/faults.hh"
38 #include "base/bigint.hh"
39 #include "base/cprintf.hh"
40 #include "base/trace.hh"
41 #include "config/the_isa.hh"
42 #include "cpu/inorder/cpu.hh"
43 #include "cpu/inorder/inorder_dyn_inst.hh"
44 #include "cpu/exetrace.hh"
45 #include "debug/InOrderDynInst.hh"
46 #include "mem/request.hh"
47
48 using namespace std;
49 using namespace TheISA;
50 using namespace ThePipeline;
51
52 InOrderDynInst::InOrderDynInst(InOrderCPU *cpu,
53 InOrderThreadState *state,
54 InstSeqNum seq_num,
55 ThreadID tid,
56 unsigned _asid)
57 : seqNum(seq_num), bdelaySeqNum(0), threadNumber(tid), asid(_asid),
58 virtProcNumber(0), staticInst(NULL), traceData(NULL), cpu(cpu),
59 thread(state), fault(NoFault), memData(NULL), loadData(0),
60 storeData(0), effAddr(0), physEffAddr(0), memReqFlags(0),
61 readyRegs(0), pc(0), predPC(0), memAddr(0), nextStage(0),
62 memTime(0), splitMemData(NULL), splitMemReq(NULL), totalSize(0),
63 split2ndSize(0), split2ndAddr(0), split2ndAccess(false),
64 split2ndDataPtr(NULL), split2ndFlags(0), splitInst(false),
65 splitFinishCnt(0), split2ndStoreDataPtr(NULL), splitInstSked(false),
66 inFrontEnd(true), frontSked(NULL), backSked(NULL),
67 squashingStage(0), predictTaken(false), procDelaySlotOnMispred(false),
68 fetchMemReq(NULL), dataMemReq(NULL), instEffAddr(0), eaCalcDone(false),
69 lqIdx(0), sqIdx(0), instListIt(NULL), onInstList(false)
70 {
71 for(int i = 0; i < MaxInstSrcRegs; i++) {
72 instSrc[i].integer = 0;
73 instSrc[i].dbl = 0;
74 _readySrcRegIdx[i] = false;
75 _srcRegIdx[i] = 0;
76 }
77
78 for(int j = 0; j < MaxInstDestRegs; j++) {
79 _destRegIdx[j] = 0;
80 _prevDestRegIdx[j] = 0;
81 }
82
83 ++instcount;
84 DPRINTF(InOrderDynInst, "DynInst: [tid:%i] [sn:%lli] Instruction created."
85 " (active insts: %i)\n", threadNumber, seqNum, instcount);
86
87 }
88
89 int InOrderDynInst::instcount = 0;
90
91 void
92 InOrderDynInst::setMachInst(ExtMachInst machInst)
93 {
94 staticInst = StaticInst::decode(machInst, pc.instAddr());
95
96 for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
97 _destRegIdx[i] = this->staticInst->destRegIdx(i);
98 }
99
100 for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
101 _srcRegIdx[i] = this->staticInst->srcRegIdx(i);
102 this->_readySrcRegIdx[i] = 0;
103 }
104 }
105
106 void
107 InOrderDynInst::initVars()
108 {
109 inFrontEnd = true;
110
111 fetchMemReq = NULL;
112 dataMemReq = NULL;
113 splitMemData = NULL;
114 split2ndAddr = 0;
115 split2ndAccess = false;
116 splitInst = false;
117 splitInstSked = false;
118 splitFinishCnt = 0;
119
120 effAddr = 0;
121 physEffAddr = 0;
122
123 readyRegs = 0;
124
125 nextStage = 0;
126
127 for(int i = 0; i < MaxInstDestRegs; i++)
128 instResult[i].val.integer = 0;
129
130 status.reset();
131
132 memAddrReady = false;
133 eaCalcDone = false;
134
135 predictTaken = false;
136 procDelaySlotOnMispred = false;
137
138 lqIdx = -1;
139 sqIdx = -1;
140
141 // Also make this a parameter, or perhaps get it from xc or cpu.
142 asid = 0;
143
144 virtProcNumber = 0;
145
146 // Initialize the fault to be NoFault.
147 fault = NoFault;
148
149 // Make sure to have the renamed register entries set to the same
150 // as the normal register entries. It will allow the IQ to work
151 // without any modifications.
152 if (this->staticInst) {
153 for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
154 _destRegIdx[i] = this->staticInst->destRegIdx(i);
155 }
156
157 for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
158 _srcRegIdx[i] = this->staticInst->srcRegIdx(i);
159 this->_readySrcRegIdx[i] = 0;
160 }
161 }
162
163 // Update Instruction Count for this instruction
164 if (instcount > 100) {
165 fatal("Number of Active Instructions in CPU is too high. "
166 "(Not Dereferencing Ptrs. Correctly?)\n");
167 }
168 }
169
170 void
171 InOrderDynInst::resetInstCount()
172 {
173 instcount = 0;
174 }
175
176
177 InOrderDynInst::~InOrderDynInst()
178 {
179 if (fetchMemReq != 0x0) {
180 delete fetchMemReq;
181 fetchMemReq = NULL;
182 }
183
184 if (dataMemReq != 0x0) {
185 delete dataMemReq;
186 dataMemReq = NULL;
187 }
188
189 if (splitMemReq != 0x0) {
190 delete dataMemReq;
191 dataMemReq = NULL;
192 }
193
194 if (traceData)
195 delete traceData;
196
197 if (splitMemData)
198 delete [] splitMemData;
199
200 fault = NoFault;
201
202 --instcount;
203
204 DPRINTF(InOrderDynInst, "DynInst: [tid:%i] [sn:%lli] Instruction destroyed"
205 " (active insts: %i)\n", threadNumber, seqNum, instcount);
206 }
207
208 void
209 InOrderDynInst::setStaticInst(StaticInstPtr &static_inst)
210 {
211 this->staticInst = static_inst;
212
213 // Make sure to have the renamed register entries set to the same
214 // as the normal register entries. It will allow the IQ to work
215 // without any modifications.
216 if (this->staticInst) {
217 for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
218 _destRegIdx[i] = this->staticInst->destRegIdx(i);
219 }
220
221 for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
222 _srcRegIdx[i] = this->staticInst->srcRegIdx(i);
223 this->_readySrcRegIdx[i] = 0;
224 }
225 }
226 }
227
228 Fault
229 InOrderDynInst::execute()
230 {
231 // @todo: Pretty convoluted way to avoid squashing from happening
232 // when using the TC during an instruction's execution
233 // (specifically for instructions that have side-effects that use
234 // the TC). Fix this.
235 bool in_syscall = this->thread->inSyscall;
236 this->thread->inSyscall = true;
237
238 this->fault = this->staticInst->execute(this, this->traceData);
239
240 this->thread->inSyscall = in_syscall;
241
242 return this->fault;
243 }
244
245 Fault
246 InOrderDynInst::calcEA()
247 {
248 this->fault = this->staticInst->eaComp(this, this->traceData);
249 return this->fault;
250 }
251
252 Fault
253 InOrderDynInst::initiateAcc()
254 {
255 // @todo: Pretty convoluted way to avoid squashing from happening
256 // when using the TC during an instruction's execution
257 // (specifically for instructions that have side-effects that use
258 // the TC). Fix this.
259 bool in_syscall = this->thread->inSyscall;
260 this->thread->inSyscall = true;
261
262 this->fault = this->staticInst->initiateAcc(this, this->traceData);
263
264 this->thread->inSyscall = in_syscall;
265
266 return this->fault;
267 }
268
269
270 Fault
271 InOrderDynInst::completeAcc(Packet *pkt)
272 {
273 this->fault = this->staticInst->completeAcc(pkt, this, this->traceData);
274
275 return this->fault;
276 }
277
278 Fault
279 InOrderDynInst::memAccess()
280 {
281 return initiateAcc();
282 }
283
284
285 #if FULL_SYSTEM
286
287 Fault
288 InOrderDynInst::hwrei()
289 {
290 panic("InOrderDynInst: hwrei: unimplemented\n");
291 return NoFault;
292 }
293
294
295 void
296 InOrderDynInst::trap(Fault fault)
297 {
298 this->cpu->trap(fault, this->threadNumber, this);
299 }
300
301
302 bool
303 InOrderDynInst::simPalCheck(int palFunc)
304 {
305 #if THE_ISA != ALPHA_ISA
306 panic("simPalCheck called, but PAL only exists in Alpha!\n");
307 #endif
308 return this->cpu->simPalCheck(palFunc, this->threadNumber);
309 }
310 #else
311 void
312 InOrderDynInst::syscall(int64_t callnum)
313 {
314 cpu->syscall(callnum, this->threadNumber);
315 }
316 #endif
317
318 void
319 InOrderDynInst::setSquashInfo(unsigned stage_num)
320 {
321 squashingStage = stage_num;
322 bdelaySeqNum = seqNum;
323
324 #if ISA_HAS_DELAY_SLOT
325 if (isControl()) {
326 TheISA::PCState nextPC = pc;
327 TheISA::advancePC(nextPC, staticInst);
328
329 // Check to see if we should squash after the
330 // branch or after a branch delay slot.
331 if (pc.nextInstAddr() == pc.instAddr() + sizeof(MachInst))
332 bdelaySeqNum = seqNum + 1;
333 else
334 bdelaySeqNum = seqNum;
335
336 }
337 #endif
338 }
339
340 void
341 InOrderDynInst::releaseReq(ResourceRequest* req)
342 {
343 std::list<ResourceRequest*>::iterator list_it = reqList.begin();
344 std::list<ResourceRequest*>::iterator list_end = reqList.end();
345
346 while(list_it != list_end) {
347 if((*list_it)->getResIdx() == req->getResIdx() &&
348 (*list_it)->getSlot() == req->getSlot()) {
349 DPRINTF(InOrderDynInst, "[tid:%u]: [sn:%i] Done with request "
350 "to %s.\n", threadNumber, seqNum, req->res->name());
351 reqList.erase(list_it);
352 return;
353 }
354 list_it++;
355 }
356
357 panic("Releasing Res. Request That Isnt There!\n");
358 }
359
360 /** Records an integer source register being set to a value. */
361 void
362 InOrderDynInst::setIntSrc(int idx, uint64_t val)
363 {
364 DPRINTF(InOrderDynInst, "[tid:%i]: [sn:%i] Source Value %i being set "
365 "to %#x.\n", threadNumber, seqNum, idx, val);
366 instSrc[idx].integer = val;
367 }
368
369 /** Records an fp register being set to a value. */
370 void
371 InOrderDynInst::setFloatSrc(int idx, FloatReg val)
372 {
373 instSrc[idx].dbl = val;
374 }
375
376 /** Records an fp register being set to an integer value. */
377 void
378 InOrderDynInst::setFloatRegBitsSrc(int idx, uint64_t val)
379 {
380 instSrc[idx].integer = val;
381 }
382
383 /** Reads a integer register. */
384 IntReg
385 InOrderDynInst::readIntRegOperand(const StaticInst *si, int idx, ThreadID tid)
386 {
387 DPRINTF(InOrderDynInst, "[tid:%i]: [sn:%i] Source Value %i read as %#x.\n",
388 threadNumber, seqNum, idx, instSrc[idx].integer);
389 return instSrc[idx].integer;
390 }
391
392 /** Reads a FP register. */
393 FloatReg
394 InOrderDynInst::readFloatRegOperand(const StaticInst *si, int idx)
395 {
396 return instSrc[idx].dbl;
397 }
398
399
400 /** Reads a FP register as a integer. */
401 FloatRegBits
402 InOrderDynInst::readFloatRegOperandBits(const StaticInst *si, int idx)
403 {
404 return instSrc[idx].integer;
405 }
406
407 /** Reads a miscellaneous register. */
408 MiscReg
409 InOrderDynInst::readMiscReg(int misc_reg)
410 {
411 return this->cpu->readMiscReg(misc_reg, threadNumber);
412 }
413
414
415 /** Reads a misc. register, including any side-effects the read
416 * might have as defined by the architecture.
417 */
418 MiscReg
419 InOrderDynInst::readMiscRegOperand(const StaticInst *si, int idx)
420 {
421 DPRINTF(InOrderDynInst, "[tid:%i]: [sn:%i] Misc. Reg Source Value %i"
422 " read as %#x.\n", threadNumber, seqNum, idx,
423 instSrc[idx].integer);
424 return instSrc[idx].integer;
425 }
426
427
428 /** Sets a misc. register, including any side-effects the write
429 * might have as defined by the architecture.
430 */
431 void
432 InOrderDynInst::setMiscRegOperand(const StaticInst *si, int idx,
433 const MiscReg &val)
434 {
435 instResult[idx].type = Integer;
436 instResult[idx].val.integer = val;
437 instResult[idx].tick = curTick();
438
439 DPRINTF(InOrderDynInst, "[tid:%i]: [sn:%i] Setting Misc Reg. Operand %i "
440 "being set to %#x.\n", threadNumber, seqNum, idx, val);
441 }
442
443 MiscReg
444 InOrderDynInst::readRegOtherThread(unsigned reg_idx, ThreadID tid)
445 {
446 if (tid == -1) {
447 tid = TheISA::getTargetThread(this->cpu->tcBase(threadNumber));
448 }
449
450 if (reg_idx < FP_Base_DepTag) { // Integer Register File
451 return this->cpu->readIntReg(reg_idx, tid);
452 } else if (reg_idx < Ctrl_Base_DepTag) { // Float Register File
453 reg_idx -= FP_Base_DepTag;
454 return this->cpu->readFloatRegBits(reg_idx, tid);
455 } else {
456 reg_idx -= Ctrl_Base_DepTag;
457 return this->cpu->readMiscReg(reg_idx, tid); // Misc. Register File
458 }
459 }
460
461 /** Sets a Integer register. */
462 void
463 InOrderDynInst::setIntRegOperand(const StaticInst *si, int idx, IntReg val)
464 {
465 instResult[idx].type = Integer;
466 instResult[idx].val.integer = val;
467 instResult[idx].tick = curTick();
468
469 DPRINTF(InOrderDynInst, "[tid:%i]: [sn:%i] Setting Result Int Reg. %i "
470 "being set to %#x (result-tick:%i).\n",
471 threadNumber, seqNum, idx, val, instResult[idx].tick);
472 }
473
474 /** Sets a FP register. */
475 void
476 InOrderDynInst::setFloatRegOperand(const StaticInst *si, int idx, FloatReg val)
477 {
478 instResult[idx].val.dbl = val;
479 instResult[idx].type = Float;
480 instResult[idx].tick = curTick();
481
482 DPRINTF(InOrderDynInst, "[tid:%i]: [sn:%i] Setting Result Float Reg. %i "
483 "being set to %#x (result-tick:%i).\n",
484 threadNumber, seqNum, idx, val, instResult[idx].tick);
485 }
486
487 /** Sets a FP register as a integer. */
488 void
489 InOrderDynInst::setFloatRegOperandBits(const StaticInst *si, int idx,
490 FloatRegBits val)
491 {
492 instResult[idx].type = Integer;
493 instResult[idx].val.integer = val;
494 instResult[idx].tick = curTick();
495
496 DPRINTF(InOrderDynInst, "[tid:%i]: [sn:%i] Setting Result Float Reg. %i "
497 "being set to %#x (result-tick:%i).\n",
498 threadNumber, seqNum, idx, val, instResult[idx].tick);
499 }
500
501 /** Sets a misc. register, including any side-effects the write
502 * might have as defined by the architecture.
503 */
504 /* Alter this if/when wanting to *speculate* on Miscellaneous registers */
505 void
506 InOrderDynInst::setMiscReg(int misc_reg, const MiscReg &val)
507 {
508 this->cpu->setMiscReg(misc_reg, val, threadNumber);
509 }
510
511 void
512 InOrderDynInst::setRegOtherThread(unsigned reg_idx, const MiscReg &val,
513 ThreadID tid)
514 {
515 if (tid == InvalidThreadID) {
516 tid = TheISA::getTargetThread(this->cpu->tcBase(threadNumber));
517 }
518
519 if (reg_idx < FP_Base_DepTag) { // Integer Register File
520 this->cpu->setIntReg(reg_idx, val, tid);
521 } else if (reg_idx < Ctrl_Base_DepTag) { // Float Register File
522 reg_idx -= FP_Base_DepTag;
523 this->cpu->setFloatRegBits(reg_idx, val, tid);
524 } else {
525 reg_idx -= Ctrl_Base_DepTag;
526 this->cpu->setMiscReg(reg_idx, val, tid); // Misc. Register File
527 }
528 }
529
530 void
531 InOrderDynInst::deallocateContext(int thread_num)
532 {
533 this->cpu->deallocateContext(thread_num);
534 }
535
536 Fault
537 InOrderDynInst::readBytes(Addr addr, uint8_t *data,
538 unsigned size, unsigned flags)
539 {
540 return cpu->read(this, addr, data, size, flags);
541 }
542
543 template<class T>
544 inline Fault
545 InOrderDynInst::read(Addr addr, T &data, unsigned flags)
546 {
547 if (traceData) {
548 traceData->setAddr(addr);
549 traceData->setData(data);
550 }
551 Fault fault = readBytes(addr, (uint8_t *)&data, sizeof(T), flags);
552 DPRINTF(InOrderDynInst, "[sn:%i] (1) Received Bytes %x\n", seqNum, data);
553 data = TheISA::gtoh(data);
554 DPRINTF(InOrderDynInst, "[sn%:i] (2) Received Bytes %x\n", seqNum, data);
555
556 if (traceData)
557 traceData->setData(data);
558 return fault;
559 }
560
561 #ifndef DOXYGEN_SHOULD_SKIP_THIS
562
563 template
564 Fault
565 InOrderDynInst::read(Addr addr, Twin32_t &data, unsigned flags);
566
567 template
568 Fault
569 InOrderDynInst::read(Addr addr, Twin64_t &data, unsigned flags);
570
571 template
572 Fault
573 InOrderDynInst::read(Addr addr, uint64_t &data, unsigned flags);
574
575 template
576 Fault
577 InOrderDynInst::read(Addr addr, uint32_t &data, unsigned flags);
578
579 template
580 Fault
581 InOrderDynInst::read(Addr addr, uint16_t &data, unsigned flags);
582
583 template
584 Fault
585 InOrderDynInst::read(Addr addr, uint8_t &data, unsigned flags);
586
587 #endif //DOXYGEN_SHOULD_SKIP_THIS
588
589 template<>
590 Fault
591 InOrderDynInst::read(Addr addr, double &data, unsigned flags)
592 {
593 return read(addr, *(uint64_t*)&data, flags);
594 }
595
596 template<>
597 Fault
598 InOrderDynInst::read(Addr addr, float &data, unsigned flags)
599 {
600 return read(addr, *(uint32_t*)&data, flags);
601 }
602
603 template<>
604 Fault
605 InOrderDynInst::read(Addr addr, int32_t &data, unsigned flags)
606 {
607 return read(addr, (uint32_t&)data, flags);
608 }
609
610 Fault
611 InOrderDynInst::writeBytes(uint8_t *data, unsigned size,
612 Addr addr, unsigned flags, uint64_t *res)
613 {
614 assert(sizeof(storeData) >= size);
615 memcpy(&storeData, data, size);
616 DPRINTF(InOrderDynInst, "(2) [tid:%i]: [sn:%i] Setting store data to %#x.\n",
617 threadNumber, seqNum, storeData);
618 return cpu->write(this, (uint8_t *)&storeData, size, addr, flags, res);
619 }
620
621 template<class T>
622 inline Fault
623 InOrderDynInst::write(T data, Addr addr, unsigned flags, uint64_t *res)
624 {
625 if (traceData) {
626 traceData->setAddr(addr);
627 traceData->setData(data);
628 }
629 data = TheISA::htog(data);
630 DPRINTF(InOrderDynInst, "(1) [tid:%i]: [sn:%i] Setting store data to %#x.\n",
631 threadNumber, seqNum, data);
632 return writeBytes((uint8_t*)&data, sizeof(T), addr, flags, res);
633 }
634
635 #ifndef DOXYGEN_SHOULD_SKIP_THIS
636
637 template
638 Fault
639 InOrderDynInst::write(Twin32_t data, Addr addr,
640 unsigned flags, uint64_t *res);
641
642 template
643 Fault
644 InOrderDynInst::write(Twin64_t data, Addr addr,
645 unsigned flags, uint64_t *res);
646 template
647 Fault
648 InOrderDynInst::write(uint64_t data, Addr addr,
649 unsigned flags, uint64_t *res);
650
651 template
652 Fault
653 InOrderDynInst::write(uint32_t data, Addr addr,
654 unsigned flags, uint64_t *res);
655
656 template
657 Fault
658 InOrderDynInst::write(uint16_t data, Addr addr,
659 unsigned flags, uint64_t *res);
660
661 template
662 Fault
663 InOrderDynInst::write(uint8_t data, Addr addr,
664 unsigned flags, uint64_t *res);
665
666 #endif //DOXYGEN_SHOULD_SKIP_THIS
667
668 template<>
669 Fault
670 InOrderDynInst::write(double data, Addr addr, unsigned flags, uint64_t *res)
671 {
672 return write(*(uint64_t*)&data, addr, flags, res);
673 }
674
675 template<>
676 Fault
677 InOrderDynInst::write(float data, Addr addr, unsigned flags, uint64_t *res)
678 {
679 return write(*(uint32_t*)&data, addr, flags, res);
680 }
681
682
683 template<>
684 Fault
685 InOrderDynInst::write(int32_t data, Addr addr, unsigned flags, uint64_t *res)
686 {
687 return write((uint32_t)data, addr, flags, res);
688 }
689
690
691 void
692 InOrderDynInst::dump()
693 {
694 cprintf("T%d : %#08d `", threadNumber, pc.instAddr());
695 cout << staticInst->disassemble(pc.instAddr());
696 cprintf("'\n");
697 }
698
699 void
700 InOrderDynInst::dump(std::string &outstring)
701 {
702 std::ostringstream s;
703 s << "T" << threadNumber << " : " << pc << " "
704 << staticInst->disassemble(pc.instAddr());
705
706 outstring = s.str();
707 }
708
709
710 #define NOHASH
711 #ifndef NOHASH
712
713 #include "base/hashmap.hh"
714
715 unsigned int MyHashFunc(const InOrderDynInst *addr)
716 {
717 unsigned a = (unsigned)addr;
718 unsigned hash = (((a >> 14) ^ ((a >> 2) & 0xffff))) & 0x7FFFFFFF;
719
720 return hash;
721 }
722
723 typedef m5::hash_map<const InOrderDynInst *, const InOrderDynInst *,
724 MyHashFunc>
725 my_hash_t;
726
727 my_hash_t thishash;
728 #endif