Deleted Added
sdiff udiff text old ( 6691:cd68b6ecd68d ) new ( 7649:a6a6177a5ffa )
full compact
1/*
2 * Copyright (c) 2009 The University of Edinburgh
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;

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

77
78const int SyscallNumReg = 0;
79const int SyscallPseudoReturnReg = 3;
80const int SyscallSuccessReg = 3;
81
82// These help enumerate all the registers for dependence tracking.
83const int FP_Base_DepTag = NumIntRegs;
84const int Ctrl_Base_DepTag = FP_Base_DepTag + NumFloatRegs;
85const int Max_DepTag = Ctrl_Base_DepTag + NumMiscRegs;
86
87typedef union {
88 IntReg intreg;
89 FloatReg fpreg;
90 MiscReg ctrlreg;
91} AnyReg;
92
93enum MiscIntRegNums {

--- 13 unchanged lines hidden ---