utility.hh (9759:8f1f1bdedf8c) utility.hh (9764:7e744dcb1904)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

129 * MISCREG_M5_REG with side-effects.
130 *
131 * @see X86ISA::getRFlags()
132 *
133 * @param tc Thread context to update
134 * @param val New rflags value to store in TC
135 */
136 void setRFlags(ThreadContext *tc, uint64_t val);
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

129 * MISCREG_M5_REG with side-effects.
130 *
131 * @see X86ISA::getRFlags()
132 *
133 * @param tc Thread context to update
134 * @param val New rflags value to store in TC
135 */
136 void setRFlags(ThreadContext *tc, uint64_t val);
137
138 /**
139 * Extract the bit string representing a double value.
140 */
141 inline uint64_t getDoubleBits(double val) {
142 return *(uint64_t *)(&val);
143 }
137}
138
139#endif // __ARCH_X86_UTILITY_HH__
144}
145
146#endif // __ARCH_X86_UTILITY_HH__