static_inst.cc (5232:d3801ea2792e) static_inst.cc (5294:7222bdaed33b)
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 *

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

89 ccprintf(os, "DS");
90 break;
91 case SEGMENT_REG_FS:
92 ccprintf(os, "FS");
93 break;
94 case SEGMENT_REG_GS:
95 ccprintf(os, "GS");
96 break;
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 *

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

89 ccprintf(os, "DS");
90 break;
91 case SEGMENT_REG_FS:
92 ccprintf(os, "FS");
93 break;
94 case SEGMENT_REG_GS:
95 ccprintf(os, "GS");
96 break;
97 case SEGMENT_REG_INT:
98 ccprintf(os, "INT");
97 case SEGMENT_REG_HS:
98 ccprintf(os, "HS");
99 break;
99 break;
100 case SEGMENT_REG_TSL:
101 ccprintf(os, "TSL");
102 break;
103 case SEGMENT_REG_TSG:
104 ccprintf(os, "TSG");
105 break;
106 case SEGMENT_REG_LS:
107 ccprintf(os, "LS");
108 break;
109 case SEGMENT_REG_MS:
110 ccprintf(os, "MS");
111 break;
112 case SYS_SEGMENT_REG_TR:
113 ccprintf(os, "TR");
114 break;
115 case SYS_SEGMENT_REG_IDTR:
116 ccprintf(os, "IDTR");
117 break;
100 default:
101 panic("Unrecognized segment %d\n", segment);
102 }
103 }
104
105 void
106 X86StaticInst::printSrcReg(std::ostream &os, int reg, int size) const
107 {

--- 127 unchanged lines hidden ---
118 default:
119 panic("Unrecognized segment %d\n", segment);
120 }
121 }
122
123 void
124 X86StaticInst::printSrcReg(std::ostream &os, int reg, int size) const
125 {

--- 127 unchanged lines hidden ---