utility.cc (8794:e2ac2b7164dd) utility.cc (8799:dac1e33e07b0)
1/*
2 * Copyright (c) 2007 MIPS Technologies, Inc.
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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 */
30
31#include <cmath>
32
33#include "arch/mips/isa_traits.hh"
1/*
2 * Copyright (c) 2007 MIPS Technologies, Inc.
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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 */
30
31#include <cmath>
32
33#include "arch/mips/isa_traits.hh"
34#include "arch/mips/registers.hh"
34#include "arch/mips/utility.hh"
35#include "arch/mips/utility.hh"
36#include "arch/mips/vtophys.hh"
35#include "base/bitfield.hh"
36#include "base/misc.hh"
37#include "cpu/static_inst.hh"
38#include "cpu/thread_context.hh"
37#include "base/bitfield.hh"
38#include "base/misc.hh"
39#include "cpu/static_inst.hh"
40#include "cpu/thread_context.hh"
41#include "mem/fs_translating_port_proxy.hh"
39#include "sim/serialize.hh"
40
42#include "sim/serialize.hh"
43
41#include "arch/mips/registers.hh"
42#include "arch/mips/vtophys.hh"
43#include "mem/vport.hh"
44
44
45
46using namespace MipsISA;
47using namespace std;
48
49namespace MipsISA {
50
51uint64_t
52getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
53{

--- 209 unchanged lines hidden ---
45using namespace MipsISA;
46using namespace std;
47
48namespace MipsISA {
49
50uint64_t
51getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
52{

--- 209 unchanged lines hidden ---