split_x86_64.sh 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #!/bin/sh
  2. # split_x86_64.sh -- test -fstack-split for x86_64
  3. # Copyright (C) 2009-2022 Free Software Foundation, Inc.
  4. # Written by Ian Lance Taylor <iant@google.com>.
  5. # This file is part of gold.
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 3 of the License, or
  9. # (at your option) any later version.
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. match()
  19. {
  20. if ! egrep "$1" "$2" >/dev/null 2>&1; then
  21. echo 1>&2 "could not find '$1' in $2"
  22. exit 1
  23. fi
  24. }
  25. nomatch()
  26. {
  27. if egrep "$1" "$2" >/dev/null 2>&1; then
  28. echo 1>&2 "found unexpected '$1' in $2"
  29. exit 1
  30. fi
  31. }
  32. match 'cmp.*%fs:[^,]*,%rsp' split_x86_64_1.stdout
  33. match 'call.*__morestack>?$' split_x86_64_1.stdout
  34. match 'lea.*-0x200\(%rsp\),' split_x86_64_1.stdout
  35. match 'stc' split_x86_64_2.stdout
  36. match 'call.*__morestack_non_split>?$' split_x86_64_2.stdout
  37. nomatch 'call.*__morestack>?$' split_x86_64_2.stdout
  38. match 'lea.*-0x100200\(%rsp\),' split_x86_64_2.stdout
  39. match 'failed to match' split_x86_64_3.stdout
  40. match 'call.*__morestack>?$' split_x86_64_4.stdout
  41. match 'cannot mix' split_x86_64_r.stdout