Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. instruct andnI_rReg_rReg_mem(rRegI dst, rRegI src1, memory src2, immI_M1 minus_1, rFlagsReg cr) %{
  2. match(Set dst (AndI (XorI src1 minus_1) (LoadI src2)));
  3. predicate(UseBMI1Instructions);
  4. effect(KILL cr);
  5.  
  6. ins_cost(125);
  7. format %{ "andnl $dst, $src1, $src2" %}
  8.  
  9. ins_encode %{
  10. __ andnl($dst$$Register, $src1$$Register, $src2$$Address);
  11. %}
  12. ins_pipe(ialu_reg_mem);
  13. %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement