Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(891)

Side by Side Diff: gcc/gcc/config/i386/i386.md

Issue 6271009: [gcc] Replace rsp/rbp lea base with esp/ebp (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git@master
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « gcc/gcc/config/i386/i386.c ('k') | gcc/gcc/config/i386/i386-protos.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
None
OLDNEW
1 ;; GCC machine description for IA-32 and x86-64. 1 ;; GCC machine description for IA-32 and x86-64.
2 ;; Copyright (C) 1988, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2 ;; Copyright (C) 1988, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 3 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 ;; Free Software Foundation, Inc. 4 ;; Free Software Foundation, Inc.
5 ;; Mostly by William Schelter. 5 ;; Mostly by William Schelter.
6 ;; x86_64 support added by Jan Hubicka 6 ;; x86_64 support added by Jan Hubicka
7 ;; 7 ;;
8 ;; This file is part of GCC. 8 ;; This file is part of GCC.
9 ;; 9 ;;
10 ;; GCC is free software; you can redistribute it and/or modify 10 ;; GCC is free software; you can redistribute it and/or modify
(...skipping 2414 matching lines...) Expand 10 before | Expand all | Expand 10 after
2425 default: 2425 default:
2426 gcc_assert (!flag_pic || LEGITIMATE_PIC_OPERAND_P (operands[1])); 2426 gcc_assert (!flag_pic || LEGITIMATE_PIC_OPERAND_P (operands[1]));
2427 if (get_attr_mode (insn) == MODE_SI) 2427 if (get_attr_mode (insn) == MODE_SI)
2428 return "mov{l}\t{%k1, %k0|%k0, %k1}"; 2428 return "mov{l}\t{%k1, %k0|%k0, %k1}";
2429 else if (which_alternative == 2) 2429 else if (which_alternative == 2)
2430 return "movabs{q}\t{%1, %0|%0, %1}"; 2430 return "movabs{q}\t{%1, %0|%0, %1}";
2431 if (TARGET_NACL) 2431 if (TARGET_NACL)
2432 { 2432 {
2433 /* Set RSP. */ 2433 /* Set RSP. */
2434 if (REG_P (operands[0]) && REGNO (operands[0]) == SP_REG) 2434 if (REG_P (operands[0]) && REGNO (operands[0]) == SP_REG)

error: old chunk mismatch

OLDNEW
« no previous file with comments | « gcc/gcc/config/i386/i386.c ('k') | gcc/gcc/config/i386/i386-protos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698