Deleted Added
sdiff udiff text old ( 4276:f0030662ee2a ) new ( 4334:15815fd6b30c )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

156 (uint8_t)emi.modRM, (uint8_t)emi.sib,
157 emi.immediate, emi.displacement);
158 return os;
159 }
160
161 inline static bool
162 operator == (const ExtMachInst &emi1, const ExtMachInst &emi2)
163 {
164 //Since this is empty, it's always equal
165 return true;
166 }
167
168 typedef uint64_t IntReg;
169 //XXX Should this be a 128 bit structure for XMM memory ops?
170 typedef uint64_t LargestRead;
171 typedef uint64_t MiscReg;
172

--- 26 unchanged lines hidden ---