inst_seq.hh (2665:a124942bacb8) inst_seq.hh (2670:9107b8bd08cd)
1/*
2 * Copyright (c) 2001, 2003-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;

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

27 *
28 * Authors: Steve Raasch
29 * Nathan Binkert
30 */
31
32#ifndef __STD_TYPES_HH__
33#define __STD_TYPES_HH__
34
1/*
2 * Copyright (c) 2001, 2003-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;

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

27 *
28 * Authors: Steve Raasch
29 * Nathan Binkert
30 */
31
32#ifndef __STD_TYPES_HH__
33#define __STD_TYPES_HH__
34
35#include <stdint.h>
36
35// inst sequence type, used to order instructions in the ready list,
36// if this rolls over the ready list order temporarily will get messed
37// up, but execution will continue and complete correctly
38typedef uint64_t InstSeqNum;
39
40// inst tag type, used to tag an operation instance in the IQ
41typedef unsigned int InstTag;
42
43#endif // __STD_TYPES_HH__
37// inst sequence type, used to order instructions in the ready list,
38// if this rolls over the ready list order temporarily will get messed
39// up, but execution will continue and complete correctly
40typedef uint64_t InstSeqNum;
41
42// inst tag type, used to tag an operation instance in the IQ
43typedef unsigned int InstTag;
44
45#endif // __STD_TYPES_HH__