utility.cc (11793:ef606668d247) utility.cc (11800:54436a1784dc)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * Copyright (c) 2011 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

37 *
38 * Authors: Gabe Black
39 */
40
41#include "arch/x86/utility.hh"
42
43#include "arch/x86/interrupts.hh"
44#include "arch/x86/registers.hh"
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * Copyright (c) 2011 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

37 *
38 * Authors: Gabe Black
39 */
40
41#include "arch/x86/utility.hh"
42
43#include "arch/x86/interrupts.hh"
44#include "arch/x86/registers.hh"
45#include "arch/x86/tlb.hh"
46#include "arch/x86/x86_traits.hh"
47#include "cpu/base.hh"
48#include "fputils/fp80.h"
45#include "arch/x86/x86_traits.hh"
46#include "cpu/base.hh"
47#include "fputils/fp80.h"
49#include "sim/system.hh"
48#include "sim/full_system.hh"
50
51namespace X86ISA {
52
53uint64_t
54getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
55{
56 if (fp) {
57 panic("getArgument(): Floating point arguments not implemented\n");

--- 314 unchanged lines hidden ---
49
50namespace X86ISA {
51
52uint64_t
53getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
54{
55 if (fp) {
56 panic("getArgument(): Floating point arguments not implemented\n");

--- 314 unchanged lines hidden ---