mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
gas/
2008-08-28 H.J. Lu <hongjiu.lu@intel.com> * config/tc-ia64.c (CR_IIB0): New. (CR_IIB1): Likewise. (cr): Add cr.iib0 and cr.iib1. (specify_resource): Handle IA64_RS_CR_IIB and CR_IIB0/CR_IIB1. gas/testsuite/ 2008-08-28 H.J. Lu <hongjiu.lu@intel.com> * gas/ia64/dv-raw-err.s: Add tests for cr.iib0 and cr.iib1. * gas/ia64/dv-waw-err.s: Likewise. * gas/ia64/regs.s: Likewise. * gas/ia64/dv-raw-err.l: Updated. * gas/ia64/dv-waw-err.l: Likewise. * gas/ia64/regs.d: Likewise. include/opcode/ 2008-08-28 H.J. Lu <hongjiu.lu@intel.com> * ia64.h (ia64_resource_specifier): Add IA64_RS_CR_IIB. Update IA64_RS_CR. opcodes/ 2008-08-28 H.J. Lu <hongjiu.lu@intel.com> * ia64-dis.c (print_insn_ia64): Handle cr.iib0 and cr.iib1. * ia64-gen.c (lookup_specifier): Likewise. * ia64-ic.tbl: Add support for cr.iib0 and cr.iib1. * ia64-raw.tbl: Likewise. * ia64-waw.tbl: Likewise. * ia64-asmtab.c: Regenerated.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2008-08-28 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* config/tc-ia64.c (CR_IIB0): New.
|
||||||
|
(CR_IIB1): Likewise.
|
||||||
|
(cr): Add cr.iib0 and cr.iib1.
|
||||||
|
(specify_resource): Handle IA64_RS_CR_IIB and CR_IIB0/CR_IIB1.
|
||||||
|
|
||||||
2008-08-28 Jan Beulich <jbeulich@novell.com>
|
2008-08-28 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
* config/tc-i386.c (md_assemble): Force number of displacement
|
* config/tc-i386.c (md_assemble): Force number of displacement
|
||||||
|
@ -408,6 +408,8 @@ ar[] =
|
|||||||
#define CR_IFS 23
|
#define CR_IFS 23
|
||||||
#define CR_IIM 24
|
#define CR_IIM 24
|
||||||
#define CR_IHA 25
|
#define CR_IHA 25
|
||||||
|
#define CR_IIB0 26
|
||||||
|
#define CR_IIB1 27
|
||||||
#define CR_LID 64
|
#define CR_LID 64
|
||||||
#define CR_IVR 65
|
#define CR_IVR 65
|
||||||
#define CR_TPR 66
|
#define CR_TPR 66
|
||||||
@ -441,6 +443,8 @@ cr[] =
|
|||||||
{"cr.ifs", CR_IFS},
|
{"cr.ifs", CR_IFS},
|
||||||
{"cr.iim", CR_IIM},
|
{"cr.iim", CR_IIM},
|
||||||
{"cr.iha", CR_IHA},
|
{"cr.iha", CR_IHA},
|
||||||
|
{"cr.iib0", CR_IIB0},
|
||||||
|
{"cr.iib1", CR_IIB1},
|
||||||
{"cr.lid", CR_LID},
|
{"cr.lid", CR_LID},
|
||||||
{"cr.ivr", CR_IVR},
|
{"cr.ivr", CR_IVR},
|
||||||
{"cr.tpr", CR_TPR},
|
{"cr.tpr", CR_TPR},
|
||||||
@ -8417,6 +8421,23 @@ dep->name, idesc->name, (rsrc_write?"write":"read"), note)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case IA64_RS_CR_IIB:
|
||||||
|
if (note != 0)
|
||||||
|
{
|
||||||
|
UNHANDLED;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
|
||||||
|
if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
|
||||||
|
&& (regno == CR_IIB0 || regno == CR_IIB1))
|
||||||
|
{
|
||||||
|
specs[count] = tmpl;
|
||||||
|
specs[count++].index = regno;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
case IA64_RS_CR_LRR:
|
case IA64_RS_CR_LRR:
|
||||||
if (note != 1)
|
if (note != 1)
|
||||||
{
|
{
|
||||||
@ -8848,6 +8869,8 @@ dep->name, idesc->name, (rsrc_write?"write":"read"), note)
|
|||||||
case CR_ISR:
|
case CR_ISR:
|
||||||
case CR_IFA:
|
case CR_IFA:
|
||||||
case CR_IHA:
|
case CR_IHA:
|
||||||
|
case CR_IIB0:
|
||||||
|
case CR_IIB1:
|
||||||
case CR_IIPA:
|
case CR_IIPA:
|
||||||
specs[count++] = tmpl;
|
specs[count++] = tmpl;
|
||||||
break;
|
break;
|
||||||
|
@ -1,3 +1,13 @@
|
|||||||
|
2008-08-28 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* gas/ia64/dv-raw-err.s: Add tests for cr.iib0 and cr.iib1.
|
||||||
|
* gas/ia64/dv-waw-err.s: Likewise.
|
||||||
|
* gas/ia64/regs.s: Likewise.
|
||||||
|
|
||||||
|
* gas/ia64/dv-raw-err.l: Updated.
|
||||||
|
* gas/ia64/dv-waw-err.l: Likewise.
|
||||||
|
* gas/ia64/regs.d: Likewise.
|
||||||
|
|
||||||
2008-08-28 Jan Beulich <jbeulich@novell.com>
|
2008-08-28 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
* gas/i386/string-bad.{l,s}, gas/i386/string-ok.{d,e,s}: New.
|
* gas/i386/string-bad.{l,s}, gas/i386/string-ok.{d,e,s}: New.
|
||||||
|
@ -69,135 +69,133 @@
|
|||||||
.*:148: Warning: This is the location of the conflicting usage
|
.*:148: Warning: This is the location of the conflicting usage
|
||||||
.*:154: Warning: Use of 'mov' violates RAW dependency 'CR\[IHA\]' \(data\)
|
.*:154: Warning: Use of 'mov' violates RAW dependency 'CR\[IHA\]' \(data\)
|
||||||
.*:153: Warning: This is the location of the conflicting usage
|
.*:153: Warning: This is the location of the conflicting usage
|
||||||
.*:159: Warning: Use of 'mov' violates RAW dependency 'CR\[IIM\]' \(data\)
|
.*:159: Warning: Use of 'mov' violates RAW dependency 'CR\[IIB%\], % in[ ]*0[ ]+- 1' \(data\), specific resource number is 26
|
||||||
.*:158: Warning: This is the location of the conflicting usage
|
.*:158: Warning: This is the location of the conflicting usage
|
||||||
.*:164: Warning: Use of 'rfi' violates RAW dependency 'CR\[IIP\]' \(implied\)
|
.*:163: Warning: Use of 'mov' violates RAW dependency 'CR\[IIB%\], % in[ ]*0[ ]+- 1' \(data\), specific resource number is 27
|
||||||
.*:163: Warning: This is the location of the conflicting usage
|
.*:162: Warning: This is the location of the conflicting usage
|
||||||
.*:169: Warning: Use of 'mov' violates RAW dependency 'CR\[IIPA\]' \(data\)
|
.*:168: Warning: Use of 'mov' violates RAW dependency 'CR\[IIM\]' \(data\)
|
||||||
.*:168: Warning: This is the location of the conflicting usage
|
.*:167: Warning: This is the location of the conflicting usage
|
||||||
.*:174: Warning: Use of 'rfi' violates RAW dependency 'CR\[IPSR\]' \(implied\)
|
.*:173: Warning: Use of 'rfi' violates RAW dependency 'CR\[IIP\]' \(implied\)
|
||||||
.*:173: Warning: This is the location of the conflicting usage
|
.*:172: Warning: This is the location of the conflicting usage
|
||||||
.*:179: Warning: Use of 'mov' violates RAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(data\), specific resource number is 68
|
.*:178: Warning: Use of 'mov' violates RAW dependency 'CR\[IIPA\]' \(data\)
|
||||||
.*:178: Warning: This is the location of the conflicting usage
|
.*:177: Warning: This is the location of the conflicting usage
|
||||||
.*:184: Warning: Use of 'mov' violates RAW dependency 'CR\[ISR\]' \(data\)
|
.*:183: Warning: Use of 'rfi' violates RAW dependency 'CR\[IPSR\]' \(implied\)
|
||||||
.*:183: Warning: This is the location of the conflicting usage
|
.*:182: Warning: This is the location of the conflicting usage
|
||||||
.*:189: Warning: Use of 'itc\.d' violates RAW dependency 'CR\[ITIR\]' \(implied\)
|
.*:188: Warning: Use of 'mov' violates RAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(data\), specific resource number is 68
|
||||||
.*:188: Warning: This is the location of the conflicting usage
|
.*:187: Warning: This is the location of the conflicting usage
|
||||||
.*:194: Warning: Use of 'mov' violates RAW dependency 'CR\[ITM\]' \(data\)
|
.*:193: Warning: Use of 'mov' violates RAW dependency 'CR\[ISR\]' \(data\)
|
||||||
.*:193: Warning: This is the location of the conflicting usage
|
.*:192: Warning: This is the location of the conflicting usage
|
||||||
.*:199: Warning: Use of 'mov' violates RAW dependency 'CR\[ITV\]' \(data\)
|
.*:198: Warning: Use of 'itc\.d' violates RAW dependency 'CR\[ITIR\]' \(implied\)
|
||||||
.*:198: Warning: This is the location of the conflicting usage
|
.*:197: Warning: This is the location of the conflicting usage
|
||||||
.*:206: Warning: Use of 'mov' violates RAW dependency 'CR\[IVA\]' \(instr\)
|
.*:203: Warning: Use of 'mov' violates RAW dependency 'CR\[ITM\]' \(data\)
|
||||||
.*:205: Warning: This is the location of the conflicting usage
|
.*:202: Warning: This is the location of the conflicting usage
|
||||||
.*:211: Warning: Use of 'mov' violates RAW dependency 'CR\[LID\]' \(other\)
|
.*:208: Warning: Use of 'mov' violates RAW dependency 'CR\[ITV\]' \(data\)
|
||||||
.*:210: Warning: This is the location of the conflicting usage
|
.*:207: Warning: This is the location of the conflicting usage
|
||||||
.*:217: Warning: Use of 'mov' violates RAW dependency 'CR\[LRR%\], % in[ ]*0[ ]+- 1' \(data\), specific resource number is 80
|
.*:215: Warning: Use of 'mov' violates RAW dependency 'CR\[IVA\]' \(instr\)
|
||||||
.*:216: Warning: This is the location of the conflicting usage
|
.*:214: Warning: This is the location of the conflicting usage
|
||||||
.*:222: Warning: Use of 'mov' violates RAW dependency 'CR\[PMV\]' \(data\)
|
.*:220: Warning: Use of 'mov' violates RAW dependency 'CR\[LID\]' \(other\)
|
||||||
.*:221: Warning: This is the location of the conflicting usage
|
.*:219: Warning: This is the location of the conflicting usage
|
||||||
.*:227: Warning: Use of 'thash' violates RAW dependency 'CR\[PTA\]' \(data\)
|
.*:226: Warning: Use of 'mov' violates RAW dependency 'CR\[LRR%\], % in[ ]*0[ ]+- 1' \(data\), specific resource number is 80
|
||||||
.*:226: Warning: This is the location of the conflicting usage
|
.*:225: Warning: This is the location of the conflicting usage
|
||||||
.*:232: Warning: Use of 'mov' violates RAW dependency 'CR\[TPR\]' \(data\)
|
.*:231: Warning: Use of 'mov' violates RAW dependency 'CR\[PMV\]' \(data\)
|
||||||
.*:231: Warning: This is the location of the conflicting usage
|
.*:230: Warning: This is the location of the conflicting usage
|
||||||
.*:236: Warning: Use of 'mov' violates RAW dependency 'CR\[TPR\]' \(other\)
|
.*:236: Warning: Use of 'thash' violates RAW dependency 'CR\[PTA\]' \(data\)
|
||||||
.*:235: Warning: This is the location of the conflicting usage
|
.*:235: Warning: This is the location of the conflicting usage
|
||||||
.*:242: Warning: Use of 'mov' may violate RAW dependency 'DBR\#' \(impliedf\)
|
.*:241: Warning: Use of 'mov' violates RAW dependency 'CR\[TPR\]' \(data\)
|
||||||
.*:241: Warning: This is the location of the conflicting usage
|
.*:240: Warning: This is the location of the conflicting usage
|
||||||
.*:246: Warning: Use of 'probe\.r' may violate RAW dependency 'DBR\#' \(data\)
|
.*:245: Warning: Use of 'mov' violates RAW dependency 'CR\[TPR\]' \(other\)
|
||||||
.*:245: Warning: This is the location of the conflicting usage
|
.*:244: Warning: This is the location of the conflicting usage
|
||||||
.*:252: Warning: Use of 'fc' violates RAW dependency 'DTC' \(data\)
|
.*:251: Warning: Use of 'mov' may violate RAW dependency 'DBR\#' \(impliedf\)
|
||||||
.*:251: Warning: This is the location of the conflicting usage
|
.*:250: Warning: This is the location of the conflicting usage
|
||||||
.*:256: Warning: Use of 'ptc\.e' violates RAW dependency 'DTC' \(impliedf\)
|
.*:255: Warning: Use of 'probe\.r' may violate RAW dependency 'DBR\#' \(data\)
|
||||||
.*:255: Warning: This is the location of the conflicting usage
|
.*:254: Warning: This is the location of the conflicting usage
|
||||||
.*:256: Warning: Use of 'ptc\.e' violates WAW dependency 'DTC' \(impliedf\)
|
.*:261: Warning: Use of 'fc' violates RAW dependency 'DTC' \(data\)
|
||||||
.*:255: Warning: This is the location of the conflicting usage
|
.*:260: Warning: This is the location of the conflicting usage
|
||||||
.*:256: Warning: Use of 'ptc\.e' violates WAW dependency 'ITC' \(impliedf\)
|
.*:265: Warning: Use of 'ptc\.e' violates RAW dependency 'DTC' \(impliedf\)
|
||||||
.*:255: Warning: This is the location of the conflicting usage
|
.*:264: Warning: This is the location of the conflicting usage
|
||||||
.*:267: Warning: Use of 'tak' violates RAW dependency 'DTC' \(data\)
|
.*:265: Warning: Use of 'ptc\.e' violates WAW dependency 'DTC' \(impliedf\)
|
||||||
.*:266: Warning: This is the location of the conflicting usage
|
.*:264: Warning: This is the location of the conflicting usage
|
||||||
.*:267: Warning: Use of 'tak' violates RAW dependency 'DTR' \(data\)
|
.*:265: Warning: Use of 'ptc\.e' violates WAW dependency 'ITC' \(impliedf\)
|
||||||
.*:266: Warning: This is the location of the conflicting usage
|
.*:264: Warning: This is the location of the conflicting usage
|
||||||
.*:271: Warning: Use of 'tpa' violates RAW dependency 'DTC' \(data\)
|
.*:276: Warning: Use of 'tak' violates RAW dependency 'DTC' \(data\)
|
||||||
.*:270: Warning: This is the location of the conflicting usage
|
.*:275: Warning: This is the location of the conflicting usage
|
||||||
.*:271: Warning: Use of 'tpa' violates RAW dependency 'DTR' \(data\)
|
.*:276: Warning: Use of 'tak' violates RAW dependency 'DTR' \(data\)
|
||||||
.*:270: Warning: This is the location of the conflicting usage
|
.*:275: Warning: This is the location of the conflicting usage
|
||||||
.*:280: Warning: Use of 'mov' violates RAW dependency 'FR%, % in[ ]*2[ ]+- 127' \(impliedf\), specific resource number is 4
|
.*:280: Warning: Use of 'tpa' violates RAW dependency 'DTC' \(data\)
|
||||||
.*:279: Warning: This is the location of the conflicting usage
|
.*:279: Warning: This is the location of the conflicting usage
|
||||||
.*:288: Warning: Use of 'mov' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 3
|
.*:280: Warning: Use of 'tpa' violates RAW dependency 'DTR' \(data\)
|
||||||
.*:287: Warning: This is the location of the conflicting usage
|
.*:279: Warning: This is the location of the conflicting usage
|
||||||
.*:293: Warning: Use of 'mov' may violate RAW dependency 'IBR\#' \(impliedf\)
|
.*:289: Warning: Use of 'mov' violates RAW dependency 'FR%, % in[ ]*2[ ]+- 127' \(impliedf\), specific resource number is 4
|
||||||
.*:292: Warning: This is the location of the conflicting usage
|
.*:288: Warning: This is the location of the conflicting usage
|
||||||
.*:298: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(data\)
|
.*:297: Warning: Use of 'mov' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 3
|
||||||
.*:297: Warning: This is the location of the conflicting usage
|
.*:296: Warning: This is the location of the conflicting usage
|
||||||
.*:298: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:302: Warning: Use of 'mov' may violate RAW dependency 'IBR\#' \(impliedf\)
|
||||||
.*:297: Warning: This is the location of the conflicting usage
|
|
||||||
.*:302: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(impliedf\)
|
|
||||||
.*:301: Warning: This is the location of the conflicting usage
|
.*:301: Warning: This is the location of the conflicting usage
|
||||||
.*:302: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 71
|
.*:307: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(data\)
|
||||||
.*:301: Warning: This is the location of the conflicting usage
|
.*:306: Warning: This is the location of the conflicting usage
|
||||||
.*:302: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 70
|
.*:307: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
.*:301: Warning: This is the location of the conflicting usage
|
.*:306: Warning: This is the location of the conflicting usage
|
||||||
.*:302: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 69
|
.*:311: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(impliedf\)
|
||||||
.*:301: Warning: This is the location of the conflicting usage
|
.*:310: Warning: This is the location of the conflicting usage
|
||||||
.*:302: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 68
|
.*:311: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 71
|
||||||
.*:301: Warning: This is the location of the conflicting usage
|
.*:310: Warning: This is the location of the conflicting usage
|
||||||
.*:302: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:311: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 70
|
||||||
.*:301: Warning: This is the location of the conflicting usage
|
.*:310: Warning: This is the location of the conflicting usage
|
||||||
.*:304: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:311: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 69
|
||||||
.*:302: Warning: This is the location of the conflicting usage
|
.*:310: Warning: This is the location of the conflicting usage
|
||||||
.*:304: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:311: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 68
|
||||||
.*:301: Warning: This is the location of the conflicting usage
|
.*:310: Warning: This is the location of the conflicting usage
|
||||||
.*:305: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:311: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
.*:302: Warning: This is the location of the conflicting usage
|
.*:310: Warning: This is the location of the conflicting usage
|
||||||
.*:305: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:313: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
.*:301: Warning: This is the location of the conflicting usage
|
.*:311: Warning: This is the location of the conflicting usage
|
||||||
.*:305: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(impliedf\)
|
.*:313: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
.*:304: Warning: This is the location of the conflicting usage
|
.*:310: Warning: This is the location of the conflicting usage
|
||||||
.*:305: Warning: Use of 'mov' violates WAW dependency 'CR\[EOI\]' \(other\)
|
.*:314: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
.*:304: Warning: This is the location of the conflicting usage
|
.*:311: Warning: This is the location of the conflicting usage
|
||||||
.*:305: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:314: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
.*:304: Warning: This is the location of the conflicting usage
|
.*:310: Warning: This is the location of the conflicting usage
|
||||||
.*:310: Warning: Use of 'epc' violates RAW dependency 'ITC' \(instr\)
|
.*:314: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(impliedf\)
|
||||||
.*:309: Warning: This is the location of the conflicting usage
|
.*:313: Warning: This is the location of the conflicting usage
|
||||||
|
.*:314: Warning: Use of 'mov' violates WAW dependency 'CR\[EOI\]' \(other\)
|
||||||
|
.*:313: Warning: This is the location of the conflicting usage
|
||||||
|
.*:314: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
|
.*:313: Warning: This is the location of the conflicting usage
|
||||||
.*:319: Warning: Use of 'epc' violates RAW dependency 'ITC' \(instr\)
|
.*:319: Warning: Use of 'epc' violates RAW dependency 'ITC' \(instr\)
|
||||||
.*:318: Warning: This is the location of the conflicting usage
|
.*:318: Warning: This is the location of the conflicting usage
|
||||||
.*:319: Warning: Use of 'epc' violates RAW dependency 'ITR' \(instr\)
|
.*:328: Warning: Use of 'epc' violates RAW dependency 'ITC' \(instr\)
|
||||||
.*:318: Warning: This is the location of the conflicting usage
|
.*:327: Warning: This is the location of the conflicting usage
|
||||||
.*:326: Warning: Use of 'probe\.r' may violate RAW dependency 'PKR\#' \(data\)
|
.*:328: Warning: Use of 'epc' violates RAW dependency 'ITR' \(instr\)
|
||||||
.*:325: Warning: This is the location of the conflicting usage
|
.*:327: Warning: This is the location of the conflicting usage
|
||||||
.*:330: Warning: Use of 'mov' may violate RAW dependency 'PKR\#' \(data\)
|
.*:335: Warning: Use of 'probe\.r' may violate RAW dependency 'PKR\#' \(data\)
|
||||||
.*:329: Warning: This is the location of the conflicting usage
|
.*:334: Warning: This is the location of the conflicting usage
|
||||||
.*:330: Warning: Use of 'mov' may violate RAW dependency 'PKR\#' \(impliedf\)
|
.*:339: Warning: Use of 'mov' may violate RAW dependency 'PKR\#' \(data\)
|
||||||
.*:329: Warning: This is the location of the conflicting usage
|
.*:338: Warning: This is the location of the conflicting usage
|
||||||
.*:336: Warning: Use of 'mov' may violate RAW dependency 'PMC\#' \(impliedf\)
|
.*:339: Warning: Use of 'mov' may violate RAW dependency 'PKR\#' \(impliedf\)
|
||||||
.*:335: Warning: This is the location of the conflicting usage
|
.*:338: Warning: This is the location of the conflicting usage
|
||||||
.*:340: Warning: Use of 'mov' may violate RAW dependency 'PMC\#' \(other\)
|
.*:345: Warning: Use of 'mov' may violate RAW dependency 'PMC\#' \(impliedf\)
|
||||||
.*:339: Warning: This is the location of the conflicting usage
|
.*:344: Warning: This is the location of the conflicting usage
|
||||||
.*:346: Warning: Use of 'mov' may violate RAW dependency 'PMD\#' \(impliedf\)
|
.*:349: Warning: Use of 'mov' may violate RAW dependency 'PMC\#' \(other\)
|
||||||
.*:345: Warning: This is the location of the conflicting usage
|
.*:348: Warning: This is the location of the conflicting usage
|
||||||
.*:351: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
.*:355: Warning: Use of 'mov' may violate RAW dependency 'PMD\#' \(impliedf\)
|
||||||
.*:350: Warning: This is the location of the conflicting usage
|
.*:354: Warning: This is the location of the conflicting usage
|
||||||
.*:354: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 2
|
.*:360: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
||||||
.*:353: Warning: This is the location of the conflicting usage
|
.*:359: Warning: This is the location of the conflicting usage
|
||||||
.*:357: Warning: Use of 'br\.cond\.sptk' may violate RAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 5
|
.*:363: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 2
|
||||||
.*:356: Warning: This is the location of the conflicting usage
|
.*:362: Warning: This is the location of the conflicting usage
|
||||||
.*:365: Warning: Use of 'add' may violate RAW dependency 'CFM' \(impliedf\)
|
.*:366: Warning: Use of 'br\.cond\.sptk' may violate RAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 5
|
||||||
.*:364: Warning: This is the location of the conflicting usage
|
.*:365: Warning: This is the location of the conflicting usage
|
||||||
.*:365: Warning: Use of 'add' may violate RAW dependency 'PR63' \(impliedf\)
|
.*:374: Warning: Use of 'add' may violate RAW dependency 'CFM' \(impliedf\)
|
||||||
.*:364: Warning: This is the location of the conflicting usage
|
.*:373: Warning: This is the location of the conflicting usage
|
||||||
.*:368: Warning: Use of 'add' may violate RAW dependency 'PR63' \(impliedf\)
|
.*:374: Warning: Use of 'add' may violate RAW dependency 'PR63' \(impliedf\)
|
||||||
.*:367: Warning: This is the location of the conflicting usage
|
.*:373: Warning: This is the location of the conflicting usage
|
||||||
.*:376: Warning: Use of 'ld8' violates RAW dependency 'PSR\.ac' \(implied\)
|
.*:377: Warning: Use of 'add' may violate RAW dependency 'PR63' \(impliedf\)
|
||||||
.*:375: Warning: This is the location of the conflicting usage
|
.*:376: Warning: This is the location of the conflicting usage
|
||||||
.*:381: Warning: Use of 'ld8' violates RAW dependency 'PSR\.be' \(implied\)
|
.*:385: Warning: Use of 'ld8' violates RAW dependency 'PSR\.ac' \(implied\)
|
||||||
.*:380: Warning: This is the location of the conflicting usage
|
.*:384: Warning: This is the location of the conflicting usage
|
||||||
.*:394: Warning: Use of 'st8' violates RAW dependency 'PSR\.cpl' \(implied\)
|
.*:390: Warning: Use of 'ld8' violates RAW dependency 'PSR\.be' \(implied\)
|
||||||
.*:393: Warning: This is the location of the conflicting usage
|
.*:389: Warning: This is the location of the conflicting usage
|
||||||
.*:397: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
.*:403: Warning: Use of 'st8' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
.*:396: Warning: This is the location of the conflicting usage
|
|
||||||
.*:400: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
|
||||||
.*:399: Warning: This is the location of the conflicting usage
|
|
||||||
.*:403: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
|
||||||
.*:402: Warning: This is the location of the conflicting usage
|
.*:402: Warning: This is the location of the conflicting usage
|
||||||
.*:406: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
.*:406: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
.*:405: Warning: This is the location of the conflicting usage
|
.*:405: Warning: This is the location of the conflicting usage
|
||||||
@ -205,101 +203,107 @@
|
|||||||
.*:408: Warning: This is the location of the conflicting usage
|
.*:408: Warning: This is the location of the conflicting usage
|
||||||
.*:412: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
.*:412: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
.*:411: Warning: This is the location of the conflicting usage
|
.*:411: Warning: This is the location of the conflicting usage
|
||||||
.*:415: Warning: Use of 'mov' violates RAW dependency 'PSR\.cpl' \(implied\)
|
.*:415: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
.*:414: Warning: This is the location of the conflicting usage
|
.*:414: Warning: This is the location of the conflicting usage
|
||||||
|
.*:418: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
|
.*:417: Warning: This is the location of the conflicting usage
|
||||||
|
.*:421: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
|
.*:420: Warning: This is the location of the conflicting usage
|
||||||
.*:424: Warning: Use of 'mov' violates RAW dependency 'PSR\.cpl' \(implied\)
|
.*:424: Warning: Use of 'mov' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
.*:423: Warning: This is the location of the conflicting usage
|
.*:423: Warning: This is the location of the conflicting usage
|
||||||
.*:427: Warning: Use of 'mov' violates RAW dependency 'PSR\.cpl' \(implied\)
|
.*:433: Warning: Use of 'mov' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
.*:426: Warning: This is the location of the conflicting usage
|
|
||||||
.*:433: Warning: Use of 'ld8' violates RAW dependency 'PSR\.ac' \(data\)
|
|
||||||
.*:432: Warning: This is the location of the conflicting usage
|
.*:432: Warning: This is the location of the conflicting usage
|
||||||
.*:433: Warning: Use of 'ld8' violates RAW dependency 'PSR\.be' \(data\)
|
.*:436: Warning: Use of 'mov' violates RAW dependency 'PSR\.cpl' \(implied\)
|
||||||
.*:432: Warning: This is the location of the conflicting usage
|
.*:435: Warning: This is the location of the conflicting usage
|
||||||
.*:433: Warning: Use of 'ld8' violates RAW dependency 'PSR\.db' \(data\)
|
.*:442: Warning: Use of 'ld8' violates RAW dependency 'PSR\.ac' \(data\)
|
||||||
.*:432: Warning: This is the location of the conflicting usage
|
.*:441: Warning: This is the location of the conflicting usage
|
||||||
.*:433: Warning: Use of 'ld8' violates RAW dependency 'PSR\.dt' \(data\)
|
.*:442: Warning: Use of 'ld8' violates RAW dependency 'PSR\.be' \(data\)
|
||||||
.*:432: Warning: This is the location of the conflicting usage
|
.*:441: Warning: This is the location of the conflicting usage
|
||||||
.*:433: Warning: Use of 'ld8' violates RAW dependency 'PSR\.pk' \(data\)
|
.*:442: Warning: Use of 'ld8' violates RAW dependency 'PSR\.db' \(data\)
|
||||||
.*:432: Warning: This is the location of the conflicting usage
|
.*:441: Warning: This is the location of the conflicting usage
|
||||||
.*:441: Warning: Use of 'mov' violates RAW dependency 'PSR\.dfh' \(data\)
|
.*:442: Warning: Use of 'ld8' violates RAW dependency 'PSR\.dt' \(data\)
|
||||||
.*:440: Warning: This is the location of the conflicting usage
|
.*:441: Warning: This is the location of the conflicting usage
|
||||||
.*:441: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:442: Warning: Use of 'ld8' violates RAW dependency 'PSR\.pk' \(data\)
|
||||||
.*:440: Warning: This is the location of the conflicting usage
|
.*:441: Warning: This is the location of the conflicting usage
|
||||||
.*:447: Warning: Use of 'mov' violates RAW dependency 'PSR\.dfl' \(data\)
|
.*:450: Warning: Use of 'mov' violates RAW dependency 'PSR\.dfh' \(data\)
|
||||||
.*:446: Warning: This is the location of the conflicting usage
|
.*:449: Warning: This is the location of the conflicting usage
|
||||||
.*:447: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:450: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:446: Warning: This is the location of the conflicting usage
|
.*:449: Warning: This is the location of the conflicting usage
|
||||||
.*:453: Warning: Use of 'mov' violates RAW dependency 'PSR\.di' \(impliedf\)
|
.*:456: Warning: Use of 'mov' violates RAW dependency 'PSR\.dfl' \(data\)
|
||||||
.*:452: Warning: This is the location of the conflicting usage
|
.*:455: Warning: This is the location of the conflicting usage
|
||||||
.*:458: Warning: Use of 'ld8' violates RAW dependency 'PSR\.dt' \(data\)
|
.*:456: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:457: Warning: This is the location of the conflicting usage
|
.*:455: Warning: This is the location of the conflicting usage
|
||||||
.*:464: Warning: Use of 'mov' violates RAW dependency 'PSR\.i' \(impliedf\)
|
.*:462: Warning: Use of 'mov' violates RAW dependency 'PSR\.di' \(impliedf\)
|
||||||
.*:463: Warning: This is the location of the conflicting usage
|
.*:461: Warning: This is the location of the conflicting usage
|
||||||
.*:470: Warning: Use of 'mov' violates RAW dependency 'PSR\.ic' \(impliedf\)
|
.*:467: Warning: Use of 'ld8' violates RAW dependency 'PSR\.dt' \(data\)
|
||||||
.*:469: Warning: This is the location of the conflicting usage
|
.*:466: Warning: This is the location of the conflicting usage
|
||||||
.*:474: Warning: Use of 'mov' violates RAW dependency 'PSR\.ic' \(data\)
|
.*:473: Warning: Use of 'mov' violates RAW dependency 'PSR\.i' \(impliedf\)
|
||||||
.*:473: Warning: This is the location of the conflicting usage
|
.*:472: Warning: This is the location of the conflicting usage
|
||||||
.*:487: Warning: Use of 'br\.ret\.sptk' violates RAW dependency 'PSR\.lp' \(data\)
|
.*:479: Warning: Use of 'mov' violates RAW dependency 'PSR\.ic' \(impliedf\)
|
||||||
.*:486: Warning: This is the location of the conflicting usage
|
.*:478: Warning: This is the location of the conflicting usage
|
||||||
.*:487: Warning: Use of 'br\.ret\.sptk' violates RAW dependency 'PSR\.tb' \(data\)
|
.*:483: Warning: Use of 'mov' violates RAW dependency 'PSR\.ic' \(data\)
|
||||||
.*:486: Warning: This is the location of the conflicting usage
|
.*:482: Warning: This is the location of the conflicting usage
|
||||||
.*:493: Warning: Use of 'mov' violates RAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:496: Warning: Use of 'br\.ret\.sptk' violates RAW dependency 'PSR\.lp' \(data\)
|
||||||
.*:492: Warning: This is the location of the conflicting usage
|
.*:495: Warning: This is the location of the conflicting usage
|
||||||
.*:498: Warning: Use of 'mov' violates RAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:496: Warning: Use of 'br\.ret\.sptk' violates RAW dependency 'PSR\.tb' \(data\)
|
||||||
.*:497: Warning: This is the location of the conflicting usage
|
.*:495: Warning: This is the location of the conflicting usage
|
||||||
.*:503: Warning: Use of 'ld8' violates RAW dependency 'PSR\.pk' \(data\)
|
.*:502: Warning: Use of 'mov' violates RAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:502: Warning: This is the location of the conflicting usage
|
.*:501: Warning: This is the location of the conflicting usage
|
||||||
.*:506: Warning: Use of 'mov' violates RAW dependency 'PSR\.pk' \(impliedf\)
|
.*:507: Warning: Use of 'mov' violates RAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:505: Warning: This is the location of the conflicting usage
|
.*:506: Warning: This is the location of the conflicting usage
|
||||||
.*:511: Warning: Use of 'mov' violates RAW dependency 'PSR\.pp' \(impliedf\)
|
.*:512: Warning: Use of 'ld8' violates RAW dependency 'PSR\.pk' \(data\)
|
||||||
.*:510: Warning: This is the location of the conflicting usage
|
.*:511: Warning: This is the location of the conflicting usage
|
||||||
.*:517: Warning: Use of 'flushrs' violates RAW dependency 'PSR\.rt' \(data\)
|
.*:515: Warning: Use of 'mov' violates RAW dependency 'PSR\.pk' \(impliedf\)
|
||||||
.*:516: Warning: This is the location of the conflicting usage
|
.*:514: Warning: This is the location of the conflicting usage
|
||||||
.*:523: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.si' \(data\)
|
.*:520: Warning: Use of 'mov' violates RAW dependency 'PSR\.pp' \(impliedf\)
|
||||||
.*:522: Warning: This is the location of the conflicting usage
|
.*:519: Warning: This is the location of the conflicting usage
|
||||||
.*:526: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.si' \(data\)
|
.*:526: Warning: Use of 'flushrs' violates RAW dependency 'PSR\.rt' \(data\)
|
||||||
.*:522: Warning: This is the location of the conflicting usage
|
|
||||||
.*:526: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.si' \(data\)
|
|
||||||
.*:525: Warning: This is the location of the conflicting usage
|
.*:525: Warning: This is the location of the conflicting usage
|
||||||
.*:534: Warning: Use of 'mov' violates RAW dependency 'PSR\.sp' \(data\)
|
.*:532: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.si' \(data\)
|
||||||
.*:533: Warning: This is the location of the conflicting usage
|
.*:531: Warning: This is the location of the conflicting usage
|
||||||
.*:537: Warning: Use of 'rum' violates RAW dependency 'PSR\.sp' \(data\)
|
.*:535: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.si' \(data\)
|
||||||
.*:533: Warning: This is the location of the conflicting usage
|
.*:531: Warning: This is the location of the conflicting usage
|
||||||
.*:537: Warning: Use of 'rum' violates RAW dependency 'PSR\.sp' \(data\)
|
.*:535: Warning: Use of 'mov\.m' violates RAW dependency 'PSR\.si' \(data\)
|
||||||
.*:536: Warning: This is the location of the conflicting usage
|
.*:534: Warning: This is the location of the conflicting usage
|
||||||
.*:546: Warning: Use of 'chk\.s' violates RAW dependency 'PSR\.tb' \(data\)
|
.*:543: Warning: Use of 'mov' violates RAW dependency 'PSR\.sp' \(data\)
|
||||||
|
.*:542: Warning: This is the location of the conflicting usage
|
||||||
|
.*:546: Warning: Use of 'rum' violates RAW dependency 'PSR\.sp' \(data\)
|
||||||
|
.*:542: Warning: This is the location of the conflicting usage
|
||||||
|
.*:546: Warning: Use of 'rum' violates RAW dependency 'PSR\.sp' \(data\)
|
||||||
.*:545: Warning: This is the location of the conflicting usage
|
.*:545: Warning: This is the location of the conflicting usage
|
||||||
.*:551: Warning: Use of 'mov' violates RAW dependency 'PSR\.up' \(impliedf\)
|
.*:555: Warning: Use of 'chk\.s' violates RAW dependency 'PSR\.tb' \(data\)
|
||||||
.*:550: Warning: This is the location of the conflicting usage
|
.*:554: Warning: This is the location of the conflicting usage
|
||||||
.*:557: Warning: Use of 'ld8' may violate RAW dependency 'RR\#' \(data\)
|
.*:560: Warning: Use of 'mov' violates RAW dependency 'PSR\.up' \(impliedf\)
|
||||||
.*:556: Warning: This is the location of the conflicting usage
|
|
||||||
.*:560: Warning: Use of 'mov' may violate RAW dependency 'RR\#' \(impliedf\)
|
|
||||||
.*:559: Warning: This is the location of the conflicting usage
|
.*:559: Warning: This is the location of the conflicting usage
|
||||||
.*:569: Warning: Use of 'addl' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 2
|
.*:566: Warning: Use of 'ld8' may violate RAW dependency 'RR\#' \(data\)
|
||||||
|
.*:565: Warning: This is the location of the conflicting usage
|
||||||
|
.*:569: Warning: Use of 'mov' may violate RAW dependency 'RR\#' \(impliedf\)
|
||||||
.*:568: Warning: This is the location of the conflicting usage
|
.*:568: Warning: This is the location of the conflicting usage
|
||||||
.*:573: Warning: Use of 'mov' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 32
|
.*:578: Warning: Use of 'addl' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 2
|
||||||
.*:572: Warning: This is the location of the conflicting usage
|
|
||||||
.*:578: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
|
||||||
.*:577: Warning: This is the location of the conflicting usage
|
.*:577: Warning: This is the location of the conflicting usage
|
||||||
.*:581: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 22
|
.*:582: Warning: Use of 'mov' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 32
|
||||||
.*:580: Warning: This is the location of the conflicting usage
|
.*:581: Warning: This is the location of the conflicting usage
|
||||||
.*:584: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 23
|
.*:587: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
||||||
.*:583: Warning: This is the location of the conflicting usage
|
|
||||||
.*:587: Warning: Use of 'br\.cond\.sptk' may violate RAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 25
|
|
||||||
.*:586: Warning: This is the location of the conflicting usage
|
.*:586: Warning: This is the location of the conflicting usage
|
||||||
.*:595: Warning: Use of 'adds' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
.*:590: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 22
|
||||||
.*:594: Warning: This is the location of the conflicting usage
|
.*:589: Warning: This is the location of the conflicting usage
|
||||||
.*:598: Warning: Use of 'adds' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
.*:593: Warning: Use of 'add' may violate RAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 23
|
||||||
.*:597: Warning: This is the location of the conflicting usage
|
.*:592: Warning: This is the location of the conflicting usage
|
||||||
.*:601: Warning: Use of 'add' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
.*:596: Warning: Use of 'br\.cond\.sptk' may violate RAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 25
|
||||||
.*:600: Warning: This is the location of the conflicting usage
|
.*:595: Warning: This is the location of the conflicting usage
|
||||||
.*:604: Warning: Use of 'ld8' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
.*:604: Warning: Use of 'adds' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
||||||
.*:603: Warning: This is the location of the conflicting usage
|
.*:603: Warning: This is the location of the conflicting usage
|
||||||
.*:604: Warning: Use of 'ld8' violates WAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
.*:607: Warning: Use of 'adds' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
||||||
.*:603: Warning: This is the location of the conflicting usage
|
|
||||||
.*:607: Warning: Use of 'ldfd' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
|
||||||
.*:606: Warning: This is the location of the conflicting usage
|
.*:606: Warning: This is the location of the conflicting usage
|
||||||
.*:607: Warning: Use of 'ldfd' violates WAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
.*:610: Warning: Use of 'add' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
||||||
.*:606: Warning: This is the location of the conflicting usage
|
.*:609: Warning: This is the location of the conflicting usage
|
||||||
.*:615: Warning: Use of 'ld8' violates RAW dependency 'PSR\.vm' \(implied\)
|
.*:613: Warning: Use of 'ld8' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
||||||
.*:614: Warning: This is the location of the conflicting usage
|
.*:612: Warning: This is the location of the conflicting usage
|
||||||
|
.*:613: Warning: Use of 'ld8' violates WAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
||||||
|
.*:612: Warning: This is the location of the conflicting usage
|
||||||
|
.*:616: Warning: Use of 'ldfd' violates RAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
||||||
|
.*:615: Warning: This is the location of the conflicting usage
|
||||||
|
.*:616: Warning: Use of 'ldfd' violates WAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 6
|
||||||
|
.*:615: Warning: This is the location of the conflicting usage
|
||||||
|
.*:624: Warning: Use of 'ld8' violates RAW dependency 'PSR\.vm' \(implied\)
|
||||||
|
.*:623: Warning: This is the location of the conflicting usage
|
||||||
|
@ -154,6 +154,15 @@
|
|||||||
mov r14 = cr.iha
|
mov r14 = cr.iha
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
// CR[IIB%]
|
||||||
|
mov cr.iib0 = r15
|
||||||
|
mov r16 = cr.iib0
|
||||||
|
;;
|
||||||
|
|
||||||
|
mov cr.iib1 = r15
|
||||||
|
mov r16 = cr.iib1
|
||||||
|
;;
|
||||||
|
|
||||||
// CR[IIM]
|
// CR[IIM]
|
||||||
mov cr.iim = r15
|
mov cr.iim = r15
|
||||||
mov r16 = cr.iim
|
mov r16 = cr.iim
|
||||||
|
@ -117,275 +117,279 @@
|
|||||||
.*:164: Warning: This is the location of the conflicting usage
|
.*:164: Warning: This is the location of the conflicting usage
|
||||||
.*:170: Warning: Use of 'mov' violates WAW dependency 'CR\[IHA\]' \(impliedf\)
|
.*:170: Warning: Use of 'mov' violates WAW dependency 'CR\[IHA\]' \(impliedf\)
|
||||||
.*:169: Warning: This is the location of the conflicting usage
|
.*:169: Warning: This is the location of the conflicting usage
|
||||||
.*:175: Warning: Use of 'mov' violates WAW dependency 'CR\[IIM\]' \(impliedf\)
|
.*:175: Warning: Use of 'mov' violates WAW dependency 'CR\[IIB%\], % in[ ]*0[ ]+- 1' \(impliedf\), specific resource number is 26
|
||||||
.*:174: Warning: This is the location of the conflicting usage
|
.*:174: Warning: This is the location of the conflicting usage
|
||||||
.*:180: Warning: Use of 'mov' violates WAW dependency 'CR\[IIP\]' \(impliedf\)
|
.*:179: Warning: Use of 'mov' violates WAW dependency 'CR\[IIB%\], % in[ ]*0[ ]+- 1' \(impliedf\), specific resource number is 27
|
||||||
.*:179: Warning: This is the location of the conflicting usage
|
.*:178: Warning: This is the location of the conflicting usage
|
||||||
.*:185: Warning: Use of 'mov' violates WAW dependency 'CR\[IIPA\]' \(impliedf\)
|
.*:184: Warning: Use of 'mov' violates WAW dependency 'CR\[IIM\]' \(impliedf\)
|
||||||
.*:184: Warning: This is the location of the conflicting usage
|
.*:183: Warning: This is the location of the conflicting usage
|
||||||
.*:190: Warning: Use of 'mov' violates WAW dependency 'CR\[IPSR\]' \(impliedf\)
|
.*:189: Warning: Use of 'mov' violates WAW dependency 'CR\[IIP\]' \(impliedf\)
|
||||||
.*:189: Warning: This is the location of the conflicting usage
|
.*:188: Warning: This is the location of the conflicting usage
|
||||||
.*:195: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(impliedf\)
|
.*:194: Warning: Use of 'mov' violates WAW dependency 'CR\[IIPA\]' \(impliedf\)
|
||||||
.*:194: Warning: This is the location of the conflicting usage
|
.*:193: Warning: This is the location of the conflicting usage
|
||||||
.*:195: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 71
|
.*:199: Warning: Use of 'mov' violates WAW dependency 'CR\[IPSR\]' \(impliedf\)
|
||||||
.*:194: Warning: This is the location of the conflicting usage
|
.*:198: Warning: This is the location of the conflicting usage
|
||||||
.*:195: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 70
|
.*:204: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(impliedf\)
|
||||||
.*:194: Warning: This is the location of the conflicting usage
|
.*:203: Warning: This is the location of the conflicting usage
|
||||||
.*:195: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 69
|
.*:204: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 71
|
||||||
.*:194: Warning: This is the location of the conflicting usage
|
.*:203: Warning: This is the location of the conflicting usage
|
||||||
.*:195: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 68
|
.*:204: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 70
|
||||||
.*:194: Warning: This is the location of the conflicting usage
|
.*:203: Warning: This is the location of the conflicting usage
|
||||||
.*:195: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:204: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 69
|
||||||
.*:194: Warning: This is the location of the conflicting usage
|
.*:203: Warning: This is the location of the conflicting usage
|
||||||
.*:200: Warning: Use of 'mov' violates WAW dependency 'CR\[ISR\]' \(impliedf\)
|
.*:204: Warning: Use of 'mov' violates WAW dependency 'CR\[IRR%\], % in[ ]*0[ ]+- 3' \(impliedf\), specific resource number is 68
|
||||||
.*:199: Warning: This is the location of the conflicting usage
|
.*:203: Warning: This is the location of the conflicting usage
|
||||||
.*:205: Warning: Use of 'mov' violates WAW dependency 'CR\[ITIR\]' \(impliedf\)
|
.*:204: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
.*:204: Warning: This is the location of the conflicting usage
|
.*:203: Warning: This is the location of the conflicting usage
|
||||||
.*:210: Warning: Use of 'mov' violates WAW dependency 'CR\[ITM\]' \(impliedf\)
|
.*:209: Warning: Use of 'mov' violates WAW dependency 'CR\[ISR\]' \(impliedf\)
|
||||||
.*:209: Warning: This is the location of the conflicting usage
|
.*:208: Warning: This is the location of the conflicting usage
|
||||||
.*:215: Warning: Use of 'mov' violates WAW dependency 'CR\[ITV\]' \(impliedf\)
|
.*:214: Warning: Use of 'mov' violates WAW dependency 'CR\[ITIR\]' \(impliedf\)
|
||||||
.*:214: Warning: This is the location of the conflicting usage
|
.*:213: Warning: This is the location of the conflicting usage
|
||||||
.*:220: Warning: Use of 'mov' violates WAW dependency 'CR\[IVA\]' \(impliedf\)
|
.*:219: Warning: Use of 'mov' violates WAW dependency 'CR\[ITM\]' \(impliedf\)
|
||||||
.*:219: Warning: This is the location of the conflicting usage
|
.*:218: Warning: This is the location of the conflicting usage
|
||||||
.*:227: Warning: Use of 'mov' violates WAW dependency 'CR\[LID\]' \(other\)
|
.*:224: Warning: Use of 'mov' violates WAW dependency 'CR\[ITV\]' \(impliedf\)
|
||||||
.*:226: Warning: This is the location of the conflicting usage
|
.*:223: Warning: This is the location of the conflicting usage
|
||||||
.*:235: Warning: Use of 'mov' violates WAW dependency 'CR\[LRR%\], % in[ ]*0[ ]+- 1' \(impliedf\), specific resource number is 80
|
.*:229: Warning: Use of 'mov' violates WAW dependency 'CR\[IVA\]' \(impliedf\)
|
||||||
.*:234: Warning: This is the location of the conflicting usage
|
.*:228: Warning: This is the location of the conflicting usage
|
||||||
.*:240: Warning: Use of 'mov' violates WAW dependency 'CR\[PMV\]' \(impliedf\)
|
.*:236: Warning: Use of 'mov' violates WAW dependency 'CR\[LID\]' \(other\)
|
||||||
.*:239: Warning: This is the location of the conflicting usage
|
.*:235: Warning: This is the location of the conflicting usage
|
||||||
.*:245: Warning: Use of 'mov' violates WAW dependency 'CR\[PTA\]' \(impliedf\)
|
.*:244: Warning: Use of 'mov' violates WAW dependency 'CR\[LRR%\], % in[ ]*0[ ]+- 1' \(impliedf\), specific resource number is 80
|
||||||
.*:244: Warning: This is the location of the conflicting usage
|
.*:243: Warning: This is the location of the conflicting usage
|
||||||
.*:250: Warning: Use of 'mov' violates WAW dependency 'CR\[TPR\]' \(impliedf\)
|
.*:249: Warning: Use of 'mov' violates WAW dependency 'CR\[PMV\]' \(impliedf\)
|
||||||
.*:249: Warning: This is the location of the conflicting usage
|
.*:248: Warning: This is the location of the conflicting usage
|
||||||
.*:255: Warning: Use of 'mov' may violate WAW dependency 'DBR\#' \(impliedf\)
|
.*:254: Warning: Use of 'mov' violates WAW dependency 'CR\[PTA\]' \(impliedf\)
|
||||||
.*:254: Warning: This is the location of the conflicting usage
|
.*:253: Warning: This is the location of the conflicting usage
|
||||||
.*:264: Warning: Use of 'itc\.i' violates RAW dependency 'DTC' \(impliedf\)
|
.*:259: Warning: Use of 'mov' violates WAW dependency 'CR\[TPR\]' \(impliedf\)
|
||||||
|
.*:258: Warning: This is the location of the conflicting usage
|
||||||
|
.*:264: Warning: Use of 'mov' may violate WAW dependency 'DBR\#' \(impliedf\)
|
||||||
.*:263: Warning: This is the location of the conflicting usage
|
.*:263: Warning: This is the location of the conflicting usage
|
||||||
.*:264: Warning: Use of 'itc\.i' violates RAW dependency 'ITC' \(impliedf\)
|
.*:273: Warning: Use of 'itc\.i' violates RAW dependency 'DTC' \(impliedf\)
|
||||||
.*:263: Warning: This is the location of the conflicting usage
|
.*:272: Warning: This is the location of the conflicting usage
|
||||||
.*:264: Warning: Use of 'itc\.i' violates WAW dependency 'DTC' \(impliedf\)
|
.*:273: Warning: Use of 'itc\.i' violates RAW dependency 'ITC' \(impliedf\)
|
||||||
.*:263: Warning: This is the location of the conflicting usage
|
.*:272: Warning: This is the location of the conflicting usage
|
||||||
.*:264: Warning: Use of 'itc\.i' violates WAW dependency 'ITC' \(impliedf\)
|
.*:273: Warning: Use of 'itc\.i' violates WAW dependency 'DTC' \(impliedf\)
|
||||||
.*:263: Warning: This is the location of the conflicting usage
|
.*:272: Warning: This is the location of the conflicting usage
|
||||||
.*:276: Warning: Use of 'ptr\.d' violates RAW dependency 'DTC' \(impliedf\)
|
.*:273: Warning: Use of 'itc\.i' violates WAW dependency 'ITC' \(impliedf\)
|
||||||
.*:275: Warning: This is the location of the conflicting usage
|
.*:272: Warning: This is the location of the conflicting usage
|
||||||
.*:276: Warning: Use of 'ptr\.d' violates RAW dependency 'DTR' \(impliedf\)
|
.*:285: Warning: Use of 'ptr\.d' violates RAW dependency 'DTC' \(impliedf\)
|
||||||
.*:275: Warning: This is the location of the conflicting usage
|
.*:284: Warning: This is the location of the conflicting usage
|
||||||
.*:276: Warning: Use of 'ptr\.d' violates RAW dependency 'ITC' \(impliedf\)
|
.*:285: Warning: Use of 'ptr\.d' violates RAW dependency 'DTR' \(impliedf\)
|
||||||
.*:275: Warning: This is the location of the conflicting usage
|
.*:284: Warning: This is the location of the conflicting usage
|
||||||
.*:276: Warning: Use of 'ptr\.d' violates WAW dependency 'DTC' \(impliedf\)
|
.*:285: Warning: Use of 'ptr\.d' violates RAW dependency 'ITC' \(impliedf\)
|
||||||
.*:275: Warning: This is the location of the conflicting usage
|
.*:284: Warning: This is the location of the conflicting usage
|
||||||
.*:276: Warning: Use of 'ptr\.d' violates WAW dependency 'DTR' \(impliedf\)
|
.*:285: Warning: Use of 'ptr\.d' violates WAW dependency 'DTC' \(impliedf\)
|
||||||
.*:275: Warning: This is the location of the conflicting usage
|
.*:284: Warning: This is the location of the conflicting usage
|
||||||
.*:276: Warning: Use of 'ptr\.d' violates WAW dependency 'ITC' \(impliedf\)
|
.*:285: Warning: Use of 'ptr\.d' violates WAW dependency 'DTR' \(impliedf\)
|
||||||
.*:275: Warning: This is the location of the conflicting usage
|
.*:284: Warning: This is the location of the conflicting usage
|
||||||
.*:282: Warning: Use of 'ldfs\.c\.clr' violates WAW dependency 'FR%, % in[ ]*2[ ]+- 127' \(impliedf\), specific resource number is 3
|
.*:285: Warning: Use of 'ptr\.d' violates WAW dependency 'ITC' \(impliedf\)
|
||||||
.*:281: Warning: This is the location of the conflicting usage
|
.*:284: Warning: This is the location of the conflicting usage
|
||||||
.*:287: Warning: Use of 'ld8\.c\.clr' violates WAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 2
|
.*:291: Warning: Use of 'ldfs\.c\.clr' violates WAW dependency 'FR%, % in[ ]*2[ ]+- 127' \(impliedf\), specific resource number is 3
|
||||||
.*:286: Warning: This is the location of the conflicting usage
|
.*:290: Warning: This is the location of the conflicting usage
|
||||||
.*:292: Warning: Use of 'mov' may violate WAW dependency 'IBR\#' \(impliedf\)
|
.*:296: Warning: Use of 'ld8\.c\.clr' violates WAW dependency 'GR%, % in[ ]*1[ ]+- 127' \(impliedf\), specific resource number is 2
|
||||||
.*:291: Warning: This is the location of the conflicting usage
|
.*:295: Warning: This is the location of the conflicting usage
|
||||||
.*:297: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(data\)
|
.*:301: Warning: Use of 'mov' may violate WAW dependency 'IBR\#' \(impliedf\)
|
||||||
.*:296: Warning: This is the location of the conflicting usage
|
.*:300: Warning: This is the location of the conflicting usage
|
||||||
.*:297: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
.*:306: Warning: Use of 'mov' violates RAW dependency 'InService\*' \(data\)
|
||||||
.*:296: Warning: This is the location of the conflicting usage
|
.*:305: Warning: This is the location of the conflicting usage
|
||||||
.*:303: Warning: Use of 'itc\.i' violates RAW dependency 'DTC' \(impliedf\)
|
.*:306: Warning: Use of 'mov' violates WAW dependency 'InService\*' \(other\)
|
||||||
.*:302: Warning: This is the location of the conflicting usage
|
.*:305: Warning: This is the location of the conflicting usage
|
||||||
.*:303: Warning: Use of 'itc\.i' violates RAW dependency 'ITC' \(impliedf\)
|
.*:312: Warning: Use of 'itc\.i' violates RAW dependency 'DTC' \(impliedf\)
|
||||||
.*:302: Warning: This is the location of the conflicting usage
|
.*:311: Warning: This is the location of the conflicting usage
|
||||||
.*:303: Warning: Use of 'itc\.i' violates WAW dependency 'DTC' \(impliedf\)
|
.*:312: Warning: Use of 'itc\.i' violates RAW dependency 'ITC' \(impliedf\)
|
||||||
.*:302: Warning: This is the location of the conflicting usage
|
.*:311: Warning: This is the location of the conflicting usage
|
||||||
.*:303: Warning: Use of 'itc\.i' violates WAW dependency 'ITC' \(impliedf\)
|
.*:312: Warning: Use of 'itc\.i' violates WAW dependency 'DTC' \(impliedf\)
|
||||||
.*:302: Warning: This is the location of the conflicting usage
|
.*:311: Warning: This is the location of the conflicting usage
|
||||||
.*:310: Warning: Use of 'ptr\.i' violates RAW dependency 'DTC' \(impliedf\)
|
.*:312: Warning: Use of 'itc\.i' violates WAW dependency 'ITC' \(impliedf\)
|
||||||
.*:309: Warning: This is the location of the conflicting usage
|
.*:311: Warning: This is the location of the conflicting usage
|
||||||
.*:310: Warning: Use of 'ptr\.i' violates RAW dependency 'ITC' \(impliedf\)
|
.*:319: Warning: Use of 'ptr\.i' violates RAW dependency 'DTC' \(impliedf\)
|
||||||
.*:309: Warning: This is the location of the conflicting usage
|
.*:318: Warning: This is the location of the conflicting usage
|
||||||
.*:310: Warning: Use of 'ptr\.i' violates RAW dependency 'ITR' \(impliedf\)
|
.*:319: Warning: Use of 'ptr\.i' violates RAW dependency 'ITC' \(impliedf\)
|
||||||
.*:309: Warning: This is the location of the conflicting usage
|
.*:318: Warning: This is the location of the conflicting usage
|
||||||
.*:310: Warning: Use of 'ptr\.i' violates WAW dependency 'DTC' \(impliedf\)
|
.*:319: Warning: Use of 'ptr\.i' violates RAW dependency 'ITR' \(impliedf\)
|
||||||
.*:309: Warning: This is the location of the conflicting usage
|
.*:318: Warning: This is the location of the conflicting usage
|
||||||
.*:310: Warning: Use of 'ptr\.i' violates WAW dependency 'ITC' \(impliedf\)
|
.*:319: Warning: Use of 'ptr\.i' violates WAW dependency 'DTC' \(impliedf\)
|
||||||
.*:309: Warning: This is the location of the conflicting usage
|
.*:318: Warning: This is the location of the conflicting usage
|
||||||
.*:310: Warning: Use of 'ptr\.i' violates WAW dependency 'ITR' \(impliedf\)
|
.*:319: Warning: Use of 'ptr\.i' violates WAW dependency 'ITC' \(impliedf\)
|
||||||
.*:309: Warning: This is the location of the conflicting usage
|
.*:318: Warning: This is the location of the conflicting usage
|
||||||
.*:322: Warning: Use of 'mov' violates WAW dependency 'PKR\#' \(impliedf\), specific resource number is 1
|
.*:319: Warning: Use of 'ptr\.i' violates WAW dependency 'ITR' \(impliedf\)
|
||||||
.*:321: Warning: This is the location of the conflicting usage
|
.*:318: Warning: This is the location of the conflicting usage
|
||||||
.*:327: Warning: Use of 'mov' may violate WAW dependency 'PMC\#' \(impliedf\)
|
.*:331: Warning: Use of 'mov' violates WAW dependency 'PKR\#' \(impliedf\), specific resource number is 1
|
||||||
.*:326: Warning: This is the location of the conflicting usage
|
.*:330: Warning: This is the location of the conflicting usage
|
||||||
.*:332: Warning: Use of 'mov' may violate WAW dependency 'PMD\#' \(impliedf\)
|
.*:336: Warning: Use of 'mov' may violate WAW dependency 'PMC\#' \(impliedf\)
|
||||||
.*:331: Warning: This is the location of the conflicting usage
|
.*:335: Warning: This is the location of the conflicting usage
|
||||||
.*:337: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
.*:341: Warning: Use of 'mov' may violate WAW dependency 'PMD\#' \(impliedf\)
|
||||||
.*:336: Warning: This is the location of the conflicting usage
|
.*:340: Warning: This is the location of the conflicting usage
|
||||||
.*:337: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
.*:346: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
||||||
.*:336: Warning: This is the location of the conflicting usage
|
|
||||||
.*:340: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
|
||||||
.*:339: Warning: This is the location of the conflicting usage
|
|
||||||
.*:340: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
|
||||||
.*:339: Warning: This is the location of the conflicting usage
|
|
||||||
.*:343: Warning: Use of 'cmp\.eq\.or' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
|
||||||
.*:342: Warning: This is the location of the conflicting usage
|
|
||||||
.*:346: Warning: Use of 'cmp\.eq\.and' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
|
||||||
.*:345: Warning: This is the location of the conflicting usage
|
.*:345: Warning: This is the location of the conflicting usage
|
||||||
.*:357: Warning: Use of 'br\.wtop\.sptk' violates RAW dependency 'AR\[EC\]' \(impliedf\)
|
.*:346: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
||||||
.*:356: Warning: This is the location of the conflicting usage
|
.*:345: Warning: This is the location of the conflicting usage
|
||||||
.*:357: Warning: Use of 'br\.wtop\.sptk' violates RAW dependency 'CFM' \(impliedf\)
|
.*:349: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
||||||
.*:356: Warning: This is the location of the conflicting usage
|
.*:348: Warning: This is the location of the conflicting usage
|
||||||
.*:357: Warning: Use of 'br\.wtop\.sptk' violates WAW dependency 'AR\[EC\]' \(impliedf\)
|
.*:349: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
||||||
.*:356: Warning: This is the location of the conflicting usage
|
.*:348: Warning: This is the location of the conflicting usage
|
||||||
.*:357: Warning: Use of 'br\.wtop\.sptk' violates WAW dependency 'CFM' \(impliedf\)
|
.*:352: Warning: Use of 'cmp\.eq\.or' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
||||||
.*:356: Warning: This is the location of the conflicting usage
|
.*:351: Warning: This is the location of the conflicting usage
|
||||||
.*:357: Warning: Use of 'br\.wtop\.sptk' violates WAW dependency 'PR63' \(impliedf\)
|
.*:355: Warning: Use of 'cmp\.eq\.and' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 1
|
||||||
.*:356: Warning: This is the location of the conflicting usage
|
.*:354: Warning: This is the location of the conflicting usage
|
||||||
.*:357: Warning: Use of 'br\.wtop\.sptk' violates WAW dependency 'PR63' \(impliedf\)
|
.*:366: Warning: Use of 'br\.wtop\.sptk' violates RAW dependency 'AR\[EC\]' \(impliedf\)
|
||||||
.*:356: Warning: This is the location of the conflicting usage
|
|
||||||
.*:360: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR63' \(impliedf\)
|
|
||||||
.*:359: Warning: This is the location of the conflicting usage
|
|
||||||
.*:360: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR63' \(impliedf\)
|
|
||||||
.*:359: Warning: This is the location of the conflicting usage
|
|
||||||
.*:363: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR63' \(impliedf\)
|
|
||||||
.*:362: Warning: This is the location of the conflicting usage
|
|
||||||
.*:363: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR63' \(impliedf\)
|
|
||||||
.*:362: Warning: This is the location of the conflicting usage
|
|
||||||
.*:366: Warning: Use of 'cmp\.eq\.or' violates WAW dependency 'PR63' \(impliedf\)
|
|
||||||
.*:365: Warning: This is the location of the conflicting usage
|
.*:365: Warning: This is the location of the conflicting usage
|
||||||
.*:369: Warning: Use of 'cmp\.eq\.and' violates WAW dependency 'PR63' \(impliedf\)
|
.*:366: Warning: Use of 'br\.wtop\.sptk' violates RAW dependency 'CFM' \(impliedf\)
|
||||||
|
.*:365: Warning: This is the location of the conflicting usage
|
||||||
|
.*:366: Warning: Use of 'br\.wtop\.sptk' violates WAW dependency 'AR\[EC\]' \(impliedf\)
|
||||||
|
.*:365: Warning: This is the location of the conflicting usage
|
||||||
|
.*:366: Warning: Use of 'br\.wtop\.sptk' violates WAW dependency 'CFM' \(impliedf\)
|
||||||
|
.*:365: Warning: This is the location of the conflicting usage
|
||||||
|
.*:366: Warning: Use of 'br\.wtop\.sptk' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
|
.*:365: Warning: This is the location of the conflicting usage
|
||||||
|
.*:366: Warning: Use of 'br\.wtop\.sptk' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
|
.*:365: Warning: This is the location of the conflicting usage
|
||||||
|
.*:369: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:368: Warning: This is the location of the conflicting usage
|
.*:368: Warning: This is the location of the conflicting usage
|
||||||
.*:380: Warning: Use of 'rum' violates WAW dependency 'PSR\.ac' \(impliedf\)
|
.*:369: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:379: Warning: This is the location of the conflicting usage
|
.*:368: Warning: This is the location of the conflicting usage
|
||||||
.*:385: Warning: Use of 'rum' violates WAW dependency 'PSR\.be' \(impliedf\)
|
.*:372: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:384: Warning: This is the location of the conflicting usage
|
.*:371: Warning: This is the location of the conflicting usage
|
||||||
.*:395: Warning: Use of 'br\.ret\.sptk' violates WAW dependency 'PSR\.cpl' \(impliedf\)
|
.*:372: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:394: Warning: This is the location of the conflicting usage
|
.*:371: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.ac' \(impliedf\)
|
.*:375: Warning: Use of 'cmp\.eq\.or' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:374: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.be' \(impliedf\)
|
.*:378: Warning: Use of 'cmp\.eq\.and' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:377: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.db' \(impliedf\)
|
.*:389: Warning: Use of 'rum' violates WAW dependency 'PSR\.ac' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:388: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.dfh' \(impliedf\)
|
.*:394: Warning: Use of 'rum' violates WAW dependency 'PSR\.be' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:393: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.dfl' \(impliedf\)
|
.*:404: Warning: Use of 'br\.ret\.sptk' violates WAW dependency 'PSR\.cpl' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:403: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.di' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.ac' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.dt' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.be' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.i' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.db' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.ic' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.dfh' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.lp' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.dfl' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.di' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.dt' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.i' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.ic' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.pk' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.lp' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.pp' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.rt' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.si' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.sp' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.tb' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.pk' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:401: Warning: Use of 'mov' violates WAW dependency 'PSR\.up' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.pp' \(impliedf\)
|
||||||
.*:400: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:409: Warning: Use of 'ssm' violates WAW dependency 'PSR\.dfh' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.rt' \(impliedf\)
|
||||||
.*:408: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:415: Warning: Use of 'ssm' violates WAW dependency 'PSR\.dfl' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.si' \(impliedf\)
|
||||||
.*:414: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:421: Warning: Use of 'rsm' violates WAW dependency 'PSR\.di' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.sp' \(impliedf\)
|
||||||
.*:420: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:426: Warning: Use of 'rsm' violates WAW dependency 'PSR\.dt' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.tb' \(impliedf\)
|
||||||
.*:425: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:432: Warning: Use of 'ssm' violates WAW dependency 'PSR\.i' \(impliedf\)
|
.*:410: Warning: Use of 'mov' violates WAW dependency 'PSR\.up' \(impliedf\)
|
||||||
.*:431: Warning: This is the location of the conflicting usage
|
.*:409: Warning: This is the location of the conflicting usage
|
||||||
.*:438: Warning: Use of 'ssm' violates WAW dependency 'PSR\.ic' \(impliedf\)
|
.*:418: Warning: Use of 'ssm' violates WAW dependency 'PSR\.dfh' \(impliedf\)
|
||||||
.*:437: Warning: This is the location of the conflicting usage
|
.*:417: Warning: This is the location of the conflicting usage
|
||||||
.*:449: Warning: Use of 'mov' violates RAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:424: Warning: Use of 'ssm' violates WAW dependency 'PSR\.dfl' \(impliedf\)
|
||||||
.*:448: Warning: This is the location of the conflicting usage
|
.*:423: Warning: This is the location of the conflicting usage
|
||||||
.*:452: Warning: Use of 'ssm' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:430: Warning: Use of 'rsm' violates WAW dependency 'PSR\.di' \(impliedf\)
|
||||||
.*:451: Warning: This is the location of the conflicting usage
|
.*:429: Warning: This is the location of the conflicting usage
|
||||||
.*:452: Warning: Use of 'ssm' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:435: Warning: Use of 'rsm' violates WAW dependency 'PSR\.dt' \(impliedf\)
|
||||||
.*:451: Warning: This is the location of the conflicting usage
|
.*:434: Warning: This is the location of the conflicting usage
|
||||||
.*:455: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:441: Warning: Use of 'ssm' violates WAW dependency 'PSR\.i' \(impliedf\)
|
||||||
.*:454: Warning: This is the location of the conflicting usage
|
.*:440: Warning: This is the location of the conflicting usage
|
||||||
.*:455: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:447: Warning: Use of 'ssm' violates WAW dependency 'PSR\.ic' \(impliedf\)
|
||||||
.*:454: Warning: This is the location of the conflicting usage
|
.*:446: Warning: This is the location of the conflicting usage
|
||||||
.*:458: Warning: Use of 'rum' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:458: Warning: Use of 'mov' violates RAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:457: Warning: This is the location of the conflicting usage
|
.*:457: Warning: This is the location of the conflicting usage
|
||||||
.*:458: Warning: Use of 'rum' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
.*:461: Warning: Use of 'ssm' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:457: Warning: This is the location of the conflicting usage
|
.*:460: Warning: This is the location of the conflicting usage
|
||||||
.*:466: Warning: Use of 'mov' violates RAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:461: Warning: Use of 'ssm' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:465: Warning: This is the location of the conflicting usage
|
.*:460: Warning: This is the location of the conflicting usage
|
||||||
.*:469: Warning: Use of 'ssm' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:464: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:468: Warning: This is the location of the conflicting usage
|
.*:463: Warning: This is the location of the conflicting usage
|
||||||
.*:469: Warning: Use of 'ssm' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:464: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:468: Warning: This is the location of the conflicting usage
|
.*:463: Warning: This is the location of the conflicting usage
|
||||||
.*:472: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:467: Warning: Use of 'rum' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:471: Warning: This is the location of the conflicting usage
|
.*:466: Warning: This is the location of the conflicting usage
|
||||||
.*:472: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:467: Warning: Use of 'rum' violates WAW dependency 'PSR\.mfh' \(impliedf\)
|
||||||
.*:471: Warning: This is the location of the conflicting usage
|
.*:466: Warning: This is the location of the conflicting usage
|
||||||
.*:475: Warning: Use of 'rum' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:475: Warning: Use of 'mov' violates RAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:474: Warning: This is the location of the conflicting usage
|
.*:474: Warning: This is the location of the conflicting usage
|
||||||
.*:475: Warning: Use of 'rum' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
.*:478: Warning: Use of 'ssm' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:474: Warning: This is the location of the conflicting usage
|
.*:477: Warning: This is the location of the conflicting usage
|
||||||
.*:483: Warning: Use of 'rsm' violates WAW dependency 'PSR\.pk' \(impliedf\)
|
.*:478: Warning: Use of 'ssm' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:482: Warning: This is the location of the conflicting usage
|
.*:477: Warning: This is the location of the conflicting usage
|
||||||
.*:488: Warning: Use of 'rsm' violates WAW dependency 'PSR\.pp' \(impliedf\)
|
.*:481: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:487: Warning: This is the location of the conflicting usage
|
.*:480: Warning: This is the location of the conflicting usage
|
||||||
.*:496: Warning: Use of 'ssm' violates WAW dependency 'PSR\.si' \(impliedf\)
|
.*:481: Warning: Use of 'mov' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:495: Warning: This is the location of the conflicting usage
|
.*:480: Warning: This is the location of the conflicting usage
|
||||||
.*:501: Warning: Use of 'rsm' violates WAW dependency 'PSR\.sp' \(impliedf\)
|
.*:484: Warning: Use of 'rum' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
.*:500: Warning: This is the location of the conflicting usage
|
.*:483: Warning: This is the location of the conflicting usage
|
||||||
.*:510: Warning: Use of 'rsm' violates WAW dependency 'PSR\.up' \(impliedf\)
|
.*:484: Warning: Use of 'rum' violates WAW dependency 'PSR\.mfl' \(impliedf\)
|
||||||
|
.*:483: Warning: This is the location of the conflicting usage
|
||||||
|
.*:492: Warning: Use of 'rsm' violates WAW dependency 'PSR\.pk' \(impliedf\)
|
||||||
|
.*:491: Warning: This is the location of the conflicting usage
|
||||||
|
.*:497: Warning: Use of 'rsm' violates WAW dependency 'PSR\.pp' \(impliedf\)
|
||||||
|
.*:496: Warning: This is the location of the conflicting usage
|
||||||
|
.*:505: Warning: Use of 'ssm' violates WAW dependency 'PSR\.si' \(impliedf\)
|
||||||
|
.*:504: Warning: This is the location of the conflicting usage
|
||||||
|
.*:510: Warning: Use of 'rsm' violates WAW dependency 'PSR\.sp' \(impliedf\)
|
||||||
.*:509: Warning: This is the location of the conflicting usage
|
.*:509: Warning: This is the location of the conflicting usage
|
||||||
.*:513: Warning: Use of 'mov' violates WAW dependency 'PSR\.up' \(impliedf\)
|
.*:519: Warning: Use of 'rsm' violates WAW dependency 'PSR\.up' \(impliedf\)
|
||||||
.*:512: Warning: This is the location of the conflicting usage
|
.*:518: Warning: This is the location of the conflicting usage
|
||||||
.*:518: Warning: Use of 'mov' violates WAW dependency 'RR\#' \(impliedf\), specific resource number is 7
|
.*:522: Warning: Use of 'mov' violates WAW dependency 'PSR\.up' \(impliedf\)
|
||||||
.*:517: Warning: This is the location of the conflicting usage
|
.*:521: Warning: This is the location of the conflicting usage
|
||||||
.*:541: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 7
|
.*:527: Warning: Use of 'mov' violates WAW dependency 'RR\#' \(impliedf\), specific resource number is 7
|
||||||
.*:540: Warning: This is the location of the conflicting usage
|
.*:526: Warning: This is the location of the conflicting usage
|
||||||
.*:541: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 6
|
.*:550: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 7
|
||||||
.*:540: Warning: This is the location of the conflicting usage
|
.*:549: Warning: This is the location of the conflicting usage
|
||||||
.*:541: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 7
|
.*:550: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 6
|
||||||
.*:540: Warning: This is the location of the conflicting usage
|
.*:549: Warning: This is the location of the conflicting usage
|
||||||
.*:541: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 6
|
.*:550: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 7
|
||||||
.*:540: Warning: This is the location of the conflicting usage
|
.*:549: Warning: This is the location of the conflicting usage
|
||||||
.*:544: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 7
|
.*:550: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 6
|
||||||
.*:543: Warning: This is the location of the conflicting usage
|
.*:549: Warning: This is the location of the conflicting usage
|
||||||
.*:544: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 7
|
.*:553: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 7
|
||||||
.*:543: Warning: This is the location of the conflicting usage
|
.*:552: Warning: This is the location of the conflicting usage
|
||||||
.*:544: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR63' \(impliedf\)
|
.*:553: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 7
|
||||||
.*:543: Warning: This is the location of the conflicting usage
|
.*:552: Warning: This is the location of the conflicting usage
|
||||||
.*:544: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR63' \(impliedf\)
|
.*:553: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:543: Warning: This is the location of the conflicting usage
|
.*:552: Warning: This is the location of the conflicting usage
|
||||||
.*:547: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 6
|
.*:553: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:546: Warning: This is the location of the conflicting usage
|
.*:552: Warning: This is the location of the conflicting usage
|
||||||
.*:547: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 6
|
.*:556: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 6
|
||||||
.*:546: Warning: This is the location of the conflicting usage
|
.*:555: Warning: This is the location of the conflicting usage
|
||||||
.*:547: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR63' \(impliedf\)
|
.*:556: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR%, % in[ ]*1[ ]+- 15' \(impliedf\), specific resource number is 6
|
||||||
.*:546: Warning: This is the location of the conflicting usage
|
.*:555: Warning: This is the location of the conflicting usage
|
||||||
.*:547: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR63' \(impliedf\)
|
.*:556: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:546: Warning: This is the location of the conflicting usage
|
.*:555: Warning: This is the location of the conflicting usage
|
||||||
.*:552: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
.*:556: Warning: Use of 'cmp\.eq\.and\.orcm' violates WAW dependency 'PR63' \(impliedf\)
|
||||||
.*:551: Warning: This is the location of the conflicting usage
|
.*:555: Warning: This is the location of the conflicting usage
|
||||||
.*:552: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
.*:561: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
||||||
.*:551: Warning: This is the location of the conflicting usage
|
|
||||||
.*:555: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
|
||||||
.*:554: Warning: This is the location of the conflicting usage
|
|
||||||
.*:555: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
|
||||||
.*:554: Warning: This is the location of the conflicting usage
|
|
||||||
.*:558: Warning: Use of 'cmp\.eq\.or' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
|
||||||
.*:557: Warning: This is the location of the conflicting usage
|
|
||||||
.*:561: Warning: Use of 'cmp\.eq\.and' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
|
||||||
.*:560: Warning: This is the location of the conflicting usage
|
.*:560: Warning: This is the location of the conflicting usage
|
||||||
|
.*:561: Warning: Use of 'cmp\.eq' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
||||||
|
.*:560: Warning: This is the location of the conflicting usage
|
||||||
|
.*:564: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
||||||
|
.*:563: Warning: This is the location of the conflicting usage
|
||||||
|
.*:564: Warning: Use of 'fcmp\.eq' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
||||||
|
.*:563: Warning: This is the location of the conflicting usage
|
||||||
|
.*:567: Warning: Use of 'cmp\.eq\.or' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
||||||
|
.*:566: Warning: This is the location of the conflicting usage
|
||||||
|
.*:570: Warning: Use of 'cmp\.eq\.and' violates WAW dependency 'PR%, % in[ ]*16[ ]+- 62' \(impliedf\), specific resource number is 21
|
||||||
|
.*:569: Warning: This is the location of the conflicting usage
|
||||||
|
@ -170,6 +170,15 @@
|
|||||||
mov cr.iha = r14
|
mov cr.iha = r14
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
// CR[IIB%]
|
||||||
|
mov cr.iib0 = r15
|
||||||
|
mov cr.iib0 = r16
|
||||||
|
;;
|
||||||
|
|
||||||
|
mov cr.iib1 = r15
|
||||||
|
mov cr.iib1 = r16
|
||||||
|
;;
|
||||||
|
|
||||||
// CR[IIM]
|
// CR[IIM]
|
||||||
mov cr.iim = r15
|
mov cr.iim = r15
|
||||||
mov cr.iim = r16
|
mov cr.iim = r16
|
||||||
|
@ -2269,6 +2269,12 @@ Disassembly of section \.text:
|
|||||||
[ ]*[a-f0-9]+: 1d 08 00 32 24 04 \[MFB\] mov r1=cr.iha
|
[ ]*[a-f0-9]+: 1d 08 00 32 24 04 \[MFB\] mov r1=cr.iha
|
||||||
[ ]*[a-f0-9]+: 00 00 00 02 00 00 nop.f 0x0
|
[ ]*[a-f0-9]+: 00 00 00 02 00 00 nop.f 0x0
|
||||||
[ ]*[a-f0-9]+: 00 00 00 20 nop.b 0x0;;
|
[ ]*[a-f0-9]+: 00 00 00 20 nop.b 0x0;;
|
||||||
|
[ ]*[a-f0-9]+: 1d 08 00 34 24 04 \[MFB\] mov r1=cr.iib0
|
||||||
|
[ ]*[a-f0-9]+: 00 00 00 02 00 00 nop.f 0x0
|
||||||
|
[ ]*[a-f0-9]+: 00 00 00 20 nop.b 0x0;;
|
||||||
|
[ ]*[a-f0-9]+: 1d 08 00 36 24 04 \[MFB\] mov r1=cr.iib1
|
||||||
|
[ ]*[a-f0-9]+: 00 00 00 02 00 00 nop.f 0x0
|
||||||
|
[ ]*[a-f0-9]+: 00 00 00 20 nop.b 0x0;;
|
||||||
[ ]*[a-f0-9]+: 1d 08 00 80 24 04 \[MFB\] mov r1=cr.lid
|
[ ]*[a-f0-9]+: 1d 08 00 80 24 04 \[MFB\] mov r1=cr.lid
|
||||||
[ ]*[a-f0-9]+: 00 00 00 02 00 00 nop.f 0x0
|
[ ]*[a-f0-9]+: 00 00 00 02 00 00 nop.f 0x0
|
||||||
[ ]*[a-f0-9]+: 00 00 00 20 nop.b 0x0;;
|
[ ]*[a-f0-9]+: 00 00 00 20 nop.b 0x0;;
|
||||||
|
@ -963,6 +963,8 @@ _start:
|
|||||||
{ .mfb; mov r1 = cr.ifs ;; }
|
{ .mfb; mov r1 = cr.ifs ;; }
|
||||||
{ .mfb; mov r1 = cr.iim ;; }
|
{ .mfb; mov r1 = cr.iim ;; }
|
||||||
{ .mfb; mov r1 = cr.iha ;; }
|
{ .mfb; mov r1 = cr.iha ;; }
|
||||||
|
{ .mfb; mov r1 = cr.iib0 ;; }
|
||||||
|
{ .mfb; mov r1 = cr.iib1 ;; }
|
||||||
{ .mfb; mov r1 = cr.lid ;; }
|
{ .mfb; mov r1 = cr.lid ;; }
|
||||||
{ .mfb; mov r1 = cr.ivr ;; }
|
{ .mfb; mov r1 = cr.ivr ;; }
|
||||||
{ .mfb; mov r1 = cr.tpr ;; }
|
{ .mfb; mov r1 = cr.tpr ;; }
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2008-08-28 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* ia64.h (ia64_resource_specifier): Add IA64_RS_CR_IIB. Update
|
||||||
|
IA64_RS_CR.
|
||||||
|
|
||||||
2008-08-01 Peter Bergner <bergner@vnet.ibm.com>
|
2008-08-01 Peter Bergner <bergner@vnet.ibm.com>
|
||||||
|
|
||||||
* ppc.h (PPC_OPCODE_VSX, PPC_OPERAND_VSR): New.
|
* ppc.h (PPC_OPCODE_VSX, PPC_OPERAND_VSR): New.
|
||||||
|
@ -171,9 +171,10 @@ enum ia64_resource_specifier
|
|||||||
IA64_RS_BR,
|
IA64_RS_BR,
|
||||||
IA64_RS_CFM,
|
IA64_RS_CFM,
|
||||||
IA64_RS_CPUID,
|
IA64_RS_CPUID,
|
||||||
|
IA64_RS_CR_IIB,
|
||||||
IA64_RS_CR_IRR,
|
IA64_RS_CR_IRR,
|
||||||
IA64_RS_CR_LRR,
|
IA64_RS_CR_LRR,
|
||||||
IA64_RS_CR, /* 3-7,10-15,18,26-63,75-79,82-127 */
|
IA64_RS_CR, /* 3-7,10-15,18,28-63,75-79,82-127 */
|
||||||
IA64_RS_DBR,
|
IA64_RS_DBR,
|
||||||
IA64_RS_FR,
|
IA64_RS_FR,
|
||||||
IA64_RS_FRb,
|
IA64_RS_FRb,
|
||||||
|
@ -1,3 +1,13 @@
|
|||||||
|
2008-08-28 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* ia64-dis.c (print_insn_ia64): Handle cr.iib0 and cr.iib1.
|
||||||
|
* ia64-gen.c (lookup_specifier): Likewise.
|
||||||
|
|
||||||
|
* ia64-ic.tbl: Add support for cr.iib0 and cr.iib1.
|
||||||
|
* ia64-raw.tbl: Likewise.
|
||||||
|
* ia64-waw.tbl: Likewise.
|
||||||
|
* ia64-asmtab.c: Regenerated.
|
||||||
|
|
||||||
2008-08-27 H.J. Lu <hongjiu.lu@intel.com>
|
2008-08-27 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* i386-opc.tbl: Correct fidivr operand size.
|
* i386-opc.tbl: Correct fidivr operand size.
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -240,6 +240,8 @@ print_insn_ia64 (bfd_vma memaddr, struct disassemble_info *info)
|
|||||||
case 23: strcpy (regname, "cr.ifs"); break;
|
case 23: strcpy (regname, "cr.ifs"); break;
|
||||||
case 24: strcpy (regname, "cr.iim"); break;
|
case 24: strcpy (regname, "cr.iim"); break;
|
||||||
case 25: strcpy (regname, "cr.iha"); break;
|
case 25: strcpy (regname, "cr.iha"); break;
|
||||||
|
case 26: strcpy (regname, "cr.iib0"); break;
|
||||||
|
case 27: strcpy (regname, "cr.iib1"); break;
|
||||||
case 64: strcpy (regname, "cr.lid"); break;
|
case 64: strcpy (regname, "cr.lid"); break;
|
||||||
case 65: strcpy (regname, "cr.ivr"); break;
|
case 65: strcpy (regname, "cr.ivr"); break;
|
||||||
case 66: strcpy (regname, "cr.tpr"); break;
|
case 66: strcpy (regname, "cr.tpr"); break;
|
||||||
|
@ -1437,6 +1437,8 @@ lookup_specifier (const char *name)
|
|||||||
return IA64_RS_ARb;
|
return IA64_RS_ARb;
|
||||||
if (strstr (name, "BR%") != NULL)
|
if (strstr (name, "BR%") != NULL)
|
||||||
return IA64_RS_BR;
|
return IA64_RS_BR;
|
||||||
|
if (strstr (name, "CR[IIB%]") != NULL)
|
||||||
|
return IA64_RS_CR_IIB;
|
||||||
if (strstr (name, "CR[IRR%]") != NULL)
|
if (strstr (name, "CR[IRR%]") != NULL)
|
||||||
return IA64_RS_CR_IRR;
|
return IA64_RS_CR_IRR;
|
||||||
if (strstr (name, "CR[LRR%]") != NULL)
|
if (strstr (name, "CR[LRR%]") != NULL)
|
||||||
|
@ -103,6 +103,7 @@ mov-from-CR-GPTA; IC:mov-from-CR[Field(cr3) == GPTA]
|
|||||||
mov-from-CR-IFA; IC:mov-from-CR[Field(cr3) == IFA]
|
mov-from-CR-IFA; IC:mov-from-CR[Field(cr3) == IFA]
|
||||||
mov-from-CR-IFS; IC:mov-from-CR[Field(cr3) == IFS]
|
mov-from-CR-IFS; IC:mov-from-CR[Field(cr3) == IFS]
|
||||||
mov-from-CR-IHA; IC:mov-from-CR[Field(cr3) == IHA]
|
mov-from-CR-IHA; IC:mov-from-CR[Field(cr3) == IHA]
|
||||||
|
mov-from-CR-IIB; IC:mov-from-CR[Field(cr3) in {IIB0 IIB1}]
|
||||||
mov-from-CR-IIM; IC:mov-from-CR[Field(cr3) == IIM]
|
mov-from-CR-IIM; IC:mov-from-CR[Field(cr3) == IIM]
|
||||||
mov-from-CR-IIP; IC:mov-from-CR[Field(cr3) == IIP]
|
mov-from-CR-IIP; IC:mov-from-CR[Field(cr3) == IIP]
|
||||||
mov-from-CR-IIPA; IC:mov-from-CR[Field(cr3) == IIPA]
|
mov-from-CR-IIPA; IC:mov-from-CR[Field(cr3) == IIPA]
|
||||||
@ -130,7 +131,7 @@ mov-from-IND-PMC; IC:mov-from-IND[Field(ireg) == pmc]
|
|||||||
mov-from-IND-PMD; IC:mov-from-IND[Field(ireg) == pmd]
|
mov-from-IND-PMD; IC:mov-from-IND[Field(ireg) == pmd]
|
||||||
mov-from-IND-priv; IC:mov-from-IND[Field(ireg) in {dbr ibr pkr pmc rr}]
|
mov-from-IND-priv; IC:mov-from-IND[Field(ireg) in {dbr ibr pkr pmc rr}]
|
||||||
mov-from-IND-RR; IC:mov-from-IND[Field(ireg) == rr]
|
mov-from-IND-RR; IC:mov-from-IND[Field(ireg) == rr]
|
||||||
mov-from-interruption-CR; IC:mov-from-CR-ITIR, IC:mov-from-CR-IFS, IC:mov-from-CR-IIM, IC:mov-from-CR-IIP, IC:mov-from-CR-IPSR, IC:mov-from-CR-ISR, IC:mov-from-CR-IFA, IC:mov-from-CR-IHA, IC:mov-from-CR-IIPA
|
mov-from-interruption-CR; IC:mov-from-CR-ITIR, IC:mov-from-CR-IFS, IC:mov-from-CR-IIB, IC:mov-from-CR-IIM, IC:mov-from-CR-IIP, IC:mov-from-CR-IPSR, IC:mov-from-CR-ISR, IC:mov-from-CR-IFA, IC:mov-from-CR-IHA, IC:mov-from-CR-IIPA
|
||||||
mov-from-PR; mov_pr[Format in {I25}]
|
mov-from-PR; mov_pr[Format in {I25}]
|
||||||
mov-from-PSR; mov_psr[Format in {M36}]
|
mov-from-PSR; mov_psr[Format in {M36}]
|
||||||
mov-from-PSR-um; mov_um[Format in {M36}]
|
mov-from-PSR-um; mov_um[Format in {M36}]
|
||||||
@ -171,6 +172,7 @@ mov-to-CR-GPTA; IC:mov-to-CR[Field(cr3) == GPTA]
|
|||||||
mov-to-CR-IFA; IC:mov-to-CR[Field(cr3) == IFA]
|
mov-to-CR-IFA; IC:mov-to-CR[Field(cr3) == IFA]
|
||||||
mov-to-CR-IFS; IC:mov-to-CR[Field(cr3) == IFS]
|
mov-to-CR-IFS; IC:mov-to-CR[Field(cr3) == IFS]
|
||||||
mov-to-CR-IHA; IC:mov-to-CR[Field(cr3) == IHA]
|
mov-to-CR-IHA; IC:mov-to-CR[Field(cr3) == IHA]
|
||||||
|
mov-to-CR-IIB; IC:mov-to-CR[Field(cr3) in {IIB0 IIB1}]
|
||||||
mov-to-CR-IIM; IC:mov-to-CR[Field(cr3) == IIM]
|
mov-to-CR-IIM; IC:mov-to-CR[Field(cr3) == IIM]
|
||||||
mov-to-CR-IIP; IC:mov-to-CR[Field(cr3) == IIP]
|
mov-to-CR-IIP; IC:mov-to-CR[Field(cr3) == IIP]
|
||||||
mov-to-CR-IIPA; IC:mov-to-CR[Field(cr3) == IIPA]
|
mov-to-CR-IIPA; IC:mov-to-CR[Field(cr3) == IIPA]
|
||||||
@ -197,7 +199,7 @@ mov-to-IND-PMC; IC:mov-to-IND[Field(ireg) == pmc]
|
|||||||
mov-to-IND-PMD; IC:mov-to-IND[Field(ireg) == pmd]
|
mov-to-IND-PMD; IC:mov-to-IND[Field(ireg) == pmd]
|
||||||
mov-to-IND-priv; IC:mov-to-IND
|
mov-to-IND-priv; IC:mov-to-IND
|
||||||
mov-to-IND-RR; IC:mov-to-IND[Field(ireg) == rr]
|
mov-to-IND-RR; IC:mov-to-IND[Field(ireg) == rr]
|
||||||
mov-to-interruption-CR; IC:mov-to-CR-ITIR, IC:mov-to-CR-IFS, IC:mov-to-CR-IIM, IC:mov-to-CR-IIP, IC:mov-to-CR-IPSR, IC:mov-to-CR-ISR, IC:mov-to-CR-IFA, IC:mov-to-CR-IHA, IC:mov-to-CR-IIPA
|
mov-to-interruption-CR; IC:mov-to-CR-ITIR, IC:mov-to-CR-IFS, IC:mov-to-CR-IIB, IC:mov-to-CR-IIM, IC:mov-to-CR-IIP, IC:mov-to-CR-IPSR, IC:mov-to-CR-ISR, IC:mov-to-CR-IFA, IC:mov-to-CR-IHA, IC:mov-to-CR-IIPA
|
||||||
mov-to-PR; IC:mov-to-PR-allreg, IC:mov-to-PR-rotreg
|
mov-to-PR; IC:mov-to-PR-allreg, IC:mov-to-PR-rotreg
|
||||||
mov-to-PR-allreg; mov_pr[Format in {I23}]
|
mov-to-PR-allreg; mov_pr[Format in {I23}]
|
||||||
mov-to-PR-rotreg; mov_pr[Format in {I24}]
|
mov-to-PR-rotreg; mov_pr[Format in {I24}]
|
||||||
|
@ -53,6 +53,7 @@ CR[IFS]; IC:mov-to-CR-IFS; IC:mov-from-CR-IFS; data
|
|||||||
CR[IFS]; IC:mov-to-CR-IFS; rfi; implied
|
CR[IFS]; IC:mov-to-CR-IFS; rfi; implied
|
||||||
CR[IFS]; cover; rfi, IC:mov-from-CR-IFS; implied
|
CR[IFS]; cover; rfi, IC:mov-from-CR-IFS; implied
|
||||||
CR[IHA]; IC:mov-to-CR-IHA; IC:mov-from-CR-IHA; data
|
CR[IHA]; IC:mov-to-CR-IHA; IC:mov-from-CR-IHA; data
|
||||||
|
CR[IIB%], % in 0 - 1; IC:mov-to-CR-IIB; IC:mov-from-CR-IIB; data
|
||||||
CR[IIM]; IC:mov-to-CR-IIM; IC:mov-from-CR-IIM; data
|
CR[IIM]; IC:mov-to-CR-IIM; IC:mov-from-CR-IIM; data
|
||||||
CR[IIP]; IC:mov-to-CR-IIP; IC:mov-from-CR-IIP; data
|
CR[IIP]; IC:mov-to-CR-IIP; IC:mov-from-CR-IIP; data
|
||||||
CR[IIP]; IC:mov-to-CR-IIP; rfi; implied
|
CR[IIP]; IC:mov-to-CR-IIP; rfi; implied
|
||||||
@ -74,7 +75,7 @@ CR[PTA]; IC:mov-to-CR-PTA; IC:mov-from-CR-PTA, IC:mem-readers, IC:mem-writers, I
|
|||||||
CR[TPR]; IC:mov-to-CR-TPR; IC:mov-from-CR-TPR, IC:mov-from-CR-IVR; data
|
CR[TPR]; IC:mov-to-CR-TPR; IC:mov-from-CR-TPR, IC:mov-from-CR-IVR; data
|
||||||
CR[TPR]; IC:mov-to-CR-TPR; IC:mov-to-PSR-l+17, ssm+17; SC Section 5.8.3.3, "Task Priority Register (TPR <20> CR66)" on page 2:119
|
CR[TPR]; IC:mov-to-CR-TPR; IC:mov-to-PSR-l+17, ssm+17; SC Section 5.8.3.3, "Task Priority Register (TPR <20> CR66)" on page 2:119
|
||||||
CR[TPR]; IC:mov-to-CR-TPR; rfi; implied
|
CR[TPR]; IC:mov-to-CR-TPR; rfi; implied
|
||||||
CR%, % in 3-7, 10-15, 18, 26-63, 75-79, 82-127; IC:none; IC:mov-from-CR-rv+1; none
|
CR%, % in 3-7, 10-15, 18, 28-63, 75-79, 82-127; IC:none; IC:mov-from-CR-rv+1; none
|
||||||
DBR#; IC:mov-to-IND-DBR+3; IC:mov-from-IND-DBR+3; impliedF
|
DBR#; IC:mov-to-IND-DBR+3; IC:mov-from-IND-DBR+3; impliedF
|
||||||
DBR#; IC:mov-to-IND-DBR+3; IC:probe-all, IC:lfetch-all, IC:mem-readers, IC:mem-writers; data
|
DBR#; IC:mov-to-IND-DBR+3; IC:probe-all, IC:lfetch-all, IC:mem-readers, IC:mem-writers; data
|
||||||
DTC; ptc.e, ptc.g, ptc.ga, ptc.l, ptr.i, ptr.d, itc.i, itc.d, itr.i, itr.d; IC:mem-readers, IC:mem-writers, IC:non-access; data
|
DTC; ptc.e, ptc.g, ptc.ga, ptc.l, ptr.i, ptr.d, itc.i, itc.d, itr.i, itr.d; IC:mem-readers, IC:mem-writers, IC:non-access; data
|
||||||
|
@ -49,6 +49,7 @@ CR[GPTA]; IC:mov-to-CR-GPTA; IC:mov-to-CR-GPTA; impliedF
|
|||||||
CR[IFA]; IC:mov-to-CR-IFA; IC:mov-to-CR-IFA; impliedF
|
CR[IFA]; IC:mov-to-CR-IFA; IC:mov-to-CR-IFA; impliedF
|
||||||
CR[IFS]; IC:mov-to-CR-IFS, cover; IC:mov-to-CR-IFS, cover; impliedF
|
CR[IFS]; IC:mov-to-CR-IFS, cover; IC:mov-to-CR-IFS, cover; impliedF
|
||||||
CR[IHA]; IC:mov-to-CR-IHA; IC:mov-to-CR-IHA; impliedF
|
CR[IHA]; IC:mov-to-CR-IHA; IC:mov-to-CR-IHA; impliedF
|
||||||
|
CR[IIB%], % in 0 - 1; IC:mov-to-CR-IIB; IC:mov-to-CR-IIB; impliedF
|
||||||
CR[IIM]; IC:mov-to-CR-IIM; IC:mov-to-CR-IIM; impliedF
|
CR[IIM]; IC:mov-to-CR-IIM; IC:mov-to-CR-IIM; impliedF
|
||||||
CR[IIP]; IC:mov-to-CR-IIP; IC:mov-to-CR-IIP; impliedF
|
CR[IIP]; IC:mov-to-CR-IIP; IC:mov-to-CR-IIP; impliedF
|
||||||
CR[IIPA]; IC:mov-to-CR-IIPA; IC:mov-to-CR-IIPA; impliedF
|
CR[IIPA]; IC:mov-to-CR-IIPA; IC:mov-to-CR-IIPA; impliedF
|
||||||
@ -65,7 +66,7 @@ CR[LRR%], % in 0 - 1; IC:mov-to-CR-LRR+1; IC:mov-to-CR-LRR+1; impliedF
|
|||||||
CR[PMV]; IC:mov-to-CR-PMV; IC:mov-to-CR-PMV; impliedF
|
CR[PMV]; IC:mov-to-CR-PMV; IC:mov-to-CR-PMV; impliedF
|
||||||
CR[PTA]; IC:mov-to-CR-PTA; IC:mov-to-CR-PTA; impliedF
|
CR[PTA]; IC:mov-to-CR-PTA; IC:mov-to-CR-PTA; impliedF
|
||||||
CR[TPR]; IC:mov-to-CR-TPR; IC:mov-to-CR-TPR; impliedF
|
CR[TPR]; IC:mov-to-CR-TPR; IC:mov-to-CR-TPR; impliedF
|
||||||
CR%, % in 3-7, 10-15, 18, 26-63, 75-79, 82-127; IC:none; IC:none; none
|
CR%, % in 3-7, 10-15, 18, 28-63, 75-79, 82-127; IC:none; IC:none; none
|
||||||
DBR#; IC:mov-to-IND-DBR+3; IC:mov-to-IND-DBR+3; impliedF
|
DBR#; IC:mov-to-IND-DBR+3; IC:mov-to-IND-DBR+3; impliedF
|
||||||
DTC; ptc.e, ptc.g, ptc.ga, ptc.l, ptr.i, ptr.d; ptc.e, ptc.g, ptc.ga, ptc.l, ptr.i, ptr.d; none
|
DTC; ptc.e, ptc.g, ptc.ga, ptc.l, ptr.i, ptr.d; ptc.e, ptc.g, ptc.ga, ptc.l, ptr.i, ptr.d; none
|
||||||
DTC; ptc.e, ptc.g, ptc.ga, ptc.l, ptr.i, ptr.d, itc.i, itc.d, itr.i, itr.d; itc.i, itc.d, itr.i, itr.d; impliedF
|
DTC; ptc.e, ptc.g, ptc.ga, ptc.l, ptr.i, ptr.d, itc.i, itc.d, itr.i, itr.d; itc.i, itc.d, itr.i, itr.d; impliedF
|
||||||
|
Reference in New Issue
Block a user