Deleted Added
sdiff udiff text old ( 6242:1cee707c1228 ) new ( 6246:5744fafb5072 )
full compact
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

30 * Stephen Hines
31 */
32
33#ifndef __ARCH_ARM_UTILITY_HH__
34#define __ARCH_ARM_UTILITY_HH__
35
36#include "arch/arm/miscregs.hh"
37#include "arch/arm/types.hh"
38#include "base/misc.hh"
39#include "base/types.hh"
40#include "config/full_system.hh"
41#include "cpu/thread_context.hh"
42
43class ThreadContext;
44
45namespace ArmISA {
46
47 inline bool
48 testPredicate(CPSR cpsr, ConditionCode code)
49 {
50 switch (code)
51 {
52 case COND_EQ: return cpsr.z;

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

65 case COND_LE: return (cpsr.n ^ cpsr.v || cpsr.z);
66 case COND_AL: return true;
67 case COND_NV: return false;
68 default:
69 panic("Unhandled predicate condition: %d\n", code);
70 }
71 }
72
73 //Floating Point Utility Functions
74 uint64_t fpConvert(ConvertType cvt_type, double fp_val);
75 double roundFP(double val, int digits);
76 double truncFP(double val);
77
78 bool getCondCode(uint32_t fcsr, int cc);
79 uint32_t genCCVector(uint32_t fcsr, int num, uint32_t cc_val);
80 uint32_t genInvalidVector(uint32_t fcsr);
81
82 bool isNan(void *val_ptr, int size);
83 bool isQnan(void *val_ptr, int size);
84 bool isSnan(void *val_ptr, int size);
85
86 /**
87 * Function to insure ISA semantics about 0 registers.
88 * @param tc The thread context.
89 */
90 template <class TC>
91 void zeroRegisters(TC *tc);
92
93 // Instruction address compression hooks

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

108 panic("makeRegisterCopy not implemented");
109 return 0;
110 }
111
112 inline void startupCPU(ThreadContext *tc, int cpuId)
113 {
114 tc->activate(0);
115 }
116};
117
118
119#endif