isa.hh (6331:d947798df4a1) isa.hh (6678:34191eea18c1)
1/*
2 * Copyright (c) 2009 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;

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

78 {
79 fpcr = 0;
80 uniq = 0;
81 lock_flag = 0;
82 lock_addr = 0;
83 intr_flag = 0;
84 }
85
1/*
2 * Copyright (c) 2009 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;

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

78 {
79 fpcr = 0;
80 uniq = 0;
81 lock_flag = 0;
82 lock_addr = 0;
83 intr_flag = 0;
84 }
85
86 void serialize(std::ostream &os);
87 void unserialize(Checkpoint *cp, const std::string &section);
86 void serialize(EventManager *em, std::ostream &os);
87 void unserialize(EventManager *em, Checkpoint *cp,
88 const std::string &section);
88
89 void reset(std::string core_name, ThreadID num_threads,
90 unsigned num_vpes, BaseCPU *_cpu)
91 { }
92
93
94 void expandForMultithreading(ThreadID num_threads, unsigned num_vpes)
95 { }

--- 22 unchanged lines hidden ---
89
90 void reset(std::string core_name, ThreadID num_threads,
91 unsigned num_vpes, BaseCPU *_cpu)
92 { }
93
94
95 void expandForMultithreading(ThreadID num_threads, unsigned num_vpes)
96 { }

--- 22 unchanged lines hidden ---