From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27095 invoked by alias); 15 Feb 2011 19:42:11 -0000 Received: (qmail 27087 invoked by uid 22791); 15 Feb 2011 19:42:10 -0000 X-SWARE-Spam-Status: No, hits=-0.9 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-iy0-f175.google.com (HELO mail-iy0-f175.google.com) (209.85.210.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 15 Feb 2011 19:42:06 +0000 Received: by iyj8 with SMTP id 8so422410iyj.20 for ; Tue, 15 Feb 2011 11:42:04 -0800 (PST) MIME-Version: 1.0 Received: by 10.42.217.73 with SMTP id hl9mr7280191icb.45.1297798924760; Tue, 15 Feb 2011 11:42:04 -0800 (PST) Received: by 10.231.19.130 with HTTP; Tue, 15 Feb 2011 11:42:04 -0800 (PST) In-Reply-To: References: Date: Tue, 15 Feb 2011 20:03:00 -0000 Message-ID: Subject: Re: code gen for C string literals From: kevin diggs To: Ian Lance Taylor Cc: gcc-help@gcc.gnu.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2011-02/txt/msg00220.txt.bz2 Hi, As always, thanks for the replies. On Tue, Feb 15, 2011 at 11:25 AM, Ian Lance Taylor wrote: > kevin diggs writes: > > > GIMPLE is the representation used by the middle-end. ??? what is the relationship between GIMPLE and RTL, which at my VERY EARLY understanding of what goes on under the hood I would have thought was the middle-end representation? Is RTL "the back-end representation" (my guess would have been asm though maybe that is the output)? > > SSA is a compiler optimization technique which heavily influences the > design of the intermediate representation. =A0See > http://en.wikipedia.org/wiki/Static_single_assignment_form . > Is SSA new? i.e. in what gcc version did it start getting used? Thanks! kevin > Ian >