From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10947 invoked by alias); 31 Jul 2003 22:33:29 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 10940 invoked from network); 31 Jul 2003 22:33:28 -0000 Received: from unknown (HELO dberlin.org) (69.3.5.6) by sources.redhat.com with SMTP; 31 Jul 2003 22:33:28 -0000 Received: from [192.168.1.7] (account dberlin HELO dberlin.org) by dberlin.org (CommuniGate Pro SMTP 4.1) with ESMTP-TLS id 4680565; Thu, 31 Jul 2003 18:33:28 -0400 In-Reply-To: <20030731182857.GB14520@lucon.org> References: <20030730214252.GA26082@lucon.org> <20030730214503.GA15350@nevyn.them.org> <20030730215227.GA26318@lucon.org> <20030730215509.GA15640@nevyn.them.org> <20030731051653.GB1170@lucon.org> <20030731161619.GA12251@lucon.org> <20030731182219.GA9271@nevyn.them.org> <20030731182857.GB14520@lucon.org> Mime-Version: 1.0 (Apple Message framework v581) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit Cc: GDB From: Daniel Berlin Subject: Re: A hack for DW_FORM_ref_addr Date: Thu, 31 Jul 2003 22:33:00 -0000 To: "H. J. Lu" X-SW-Source: 2003-07/txt/msg00389.txt.bz2 > > Since DW_FORM_ref_addr requires it, I don't see there is an easy way > out. I guess I could only save those used by DW_FORM_ref_addr. > Back when this support was implemented the first (or was it the second) time, I just had it keep around the last 5 or 10 referenced compilation units full of dies in an LRU cache, and just reread non-cached CU's as necessary. I think Daniel planned on doing something similar for the third rewrite. > > H.J.