deriv.cc (9341:a0eff1e9c773) deriv.cc (9480:d059f8a95a42)
1/*
2 * Copyright (c) 2004-2006 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;

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

60 std::string round_robin_policy = "RoundRobin";
61 std::string single_thread = "SingleThread";
62
63 if (actual_num_threads > 1 && single_thread.compare(smtFetchPolicy) == 0)
64 smtFetchPolicy = round_robin_policy;
65 else
66 smtFetchPolicy = smtFetchPolicy;
67
1/*
2 * Copyright (c) 2004-2006 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;

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

60 std::string round_robin_policy = "RoundRobin";
61 std::string single_thread = "SingleThread";
62
63 if (actual_num_threads > 1 && single_thread.compare(smtFetchPolicy) == 0)
64 smtFetchPolicy = round_robin_policy;
65 else
66 smtFetchPolicy = smtFetchPolicy;
67
68 instShiftAmt = 2;
69
70 return new DerivO3CPU(this);
71}
68 return new DerivO3CPU(this);
69}