static_inst.cc (9913:7f43babfde6a) static_inst.cc (9920:028e4da64b42)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * Copyright (c) 2013 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

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

216 ccprintf(os, "%%ufp%d", rel_reg);
217 return;
218 }
219 rel_reg -= NumMicroFpRegs;
220 ccprintf(os, "%%st(%d)", rel_reg);
221 break;
222 }
223
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * Copyright (c) 2013 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

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

216 ccprintf(os, "%%ufp%d", rel_reg);
217 return;
218 }
219 rel_reg -= NumMicroFpRegs;
220 ccprintf(os, "%%st(%d)", rel_reg);
221 break;
222 }
223
224 case CCRegClass:
225 ccprintf(os, "%%cc%d", rel_reg);
226 break;
227
224 case MiscRegClass:
225 switch (rel_reg) {
226 default:
227 ccprintf(os, "%%ctrl%d", rel_reg);
228 }
229 break;
230 }
231 }

--- 49 unchanged lines hidden ---
228 case MiscRegClass:
229 switch (rel_reg) {
230 default:
231 ccprintf(os, "%%ctrl%d", rel_reg);
232 }
233 break;
234 }
235 }

--- 49 unchanged lines hidden ---