stride.hh (5338:e75d02a09806) stride.hh (5543:3af77710f397)
1/*
2 * Copyright (c) 2005 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;

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

45 class strideEntry
46 {
47 public:
48 Addr IAddr;
49 Addr MAddr;
50 int stride;
51 int64_t confidence;
52
1/*
2 * Copyright (c) 2005 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;

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

45 class strideEntry
46 {
47 public:
48 Addr IAddr;
49 Addr MAddr;
50 int stride;
51 int64_t confidence;
52
53/* bool operator < (strideEntry a,strideEntry b)
53/* bool operator < (strideEntry a,strideEntry b)
54 {
55 if (a.confidence == b.confidence) {
56 return true; //??????
57 }
58 else return a.confidence < b.confidence;
59 }*/
60 };
61 Addr* lastMissAddr[64/*MAX_CPUS*/];

--- 22 unchanged lines hidden ---
54 {
55 if (a.confidence == b.confidence) {
56 return true; //??????
57 }
58 else return a.confidence < b.confidence;
59 }*/
60 };
61 Addr* lastMissAddr[64/*MAX_CPUS*/];

--- 22 unchanged lines hidden ---