From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11527 invoked by alias); 8 Sep 2011 13:13:04 -0000 Received: (qmail 11518 invoked by uid 22791); 8 Sep 2011 13:13:03 -0000 X-SWARE-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mga14.intel.com (HELO mga14.intel.com) (143.182.124.37) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 08 Sep 2011 13:12:45 +0000 Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga102.ch.intel.com with ESMTP; 08 Sep 2011 06:12:25 -0700 X-ExtLoop1: 1 Received: from tassilo.jf.intel.com ([10.7.201.108]) by azsmga001.ch.intel.com with ESMTP; 08 Sep 2011 06:12:25 -0700 Received: by tassilo.jf.intel.com (Postfix, from userid 501) id 9D24E240377; Thu, 8 Sep 2011 06:12:25 -0700 (PDT) From: Andi Kleen To: Kevin Polulak Cc: GCC Mailing List Subject: Re: Questions Regarding DWARF References: Date: Thu, 08 Sep 2011 13:13:00 -0000 In-Reply-To: (Kevin Polulak's message of "Wed, 7 Sep 2011 21:59:07 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2011-09/txt/msg00073.txt.bz2 Kevin Polulak writes: > > I've tried to gain some knowledge by digging through the GCC source > but haven't come up with much other than the values of the DW_* > constants which isn't that important. Are there any files in > particular I should be looking at? >From the gcc internals manual: * Debugging information output This is run after final because it must output the stack slot offsets for pseudo registers that did not get hard registers. Source files are `dbxout.c' for DBX symbol table format, `sdbout.c' for SDB symbol table format, `dwarfout.c' for DWARF symbol table format, files `dwarf2out.c' and `dwarf2asm.c' for DWARF2 symbol table format, and `vmsdbgout.c' for VMS debug symbol table format. -Andi