inst_seq.hh (2632:1bb2f91485ea) inst_seq.hh (2654:9559cfa91b9d)
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;

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

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
29#ifndef __STD_TYPES_HH__
30#define __STD_TYPES_HH__
31
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;

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

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
29#ifndef __STD_TYPES_HH__
30#define __STD_TYPES_HH__
31
32#include <stdint.h>
33
32// inst sequence type, used to order instructions in the ready list,
33// if this rolls over the ready list order temporarily will get messed
34// up, but execution will continue and complete correctly
35typedef uint64_t InstSeqNum;
36
37// inst tag type, used to tag an operation instance in the IQ
38typedef unsigned int InstTag;
39
40#endif // __STD_TYPES_HH__
34// inst sequence type, used to order instructions in the ready list,
35// if this rolls over the ready list order temporarily will get messed
36// up, but execution will continue and complete correctly
37typedef uint64_t InstSeqNum;
38
39// inst tag type, used to tag an operation instance in the IQ
40typedef unsigned int InstTag;
41
42#endif // __STD_TYPES_HH__