Commit 79c6bb5f by Ganesh Gopalasubramanian Committed by Ganesh Gopalasubramanian

Add prefetch support for aarch64

From-SVN: r218349
parent 8495b8f6
2014-12-04 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
* config/aarch64/aarch64.md (define_insn "prefetch"): New.
2014-12-04 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* doc/install.texi: Remove mentions of cloog and ppl.
......@@ -375,6 +375,33 @@
[(set_attr "type" "no_insn")]
)
(define_insn "prefetch"
[(prefetch (match_operand:DI 0 "address_operand" "r")
(match_operand:QI 1 "const_int_operand" "")
(match_operand:QI 2 "const_int_operand" ""))]
""
{
const char * pftype[2][4] =
{
{"prfm\\tPLDL1STRM, %a0",
"prfm\\tPLDL3KEEP, %a0",
"prfm\\tPLDL2KEEP, %a0",
"prfm\\tPLDL1KEEP, %a0"},
{"prfm\\tPSTL1STRM, %a0",
"prfm\\tPSTL3KEEP, %a0",
"prfm\\tPSTL2KEEP, %a0",
"prfm\\tPSTL1KEEP, %a0"},
};
int locality = INTVAL (operands[2]);
gcc_assert (IN_RANGE (locality, 0, 3));
return pftype[INTVAL(operands[1])][locality];
}
[(set_attr "type" "load1")]
)
(define_insn "trap"
[(trap_if (const_int 1) (const_int 8))]
""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment