Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 85898 invoked from network); 1 Dec 2006 12:28:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Dec 2006 12:28:24 -0000 Received: (qmail 16196 invoked by uid 500); 1 Dec 2006 12:28:30 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 16173 invoked by uid 500); 1 Dec 2006 12:28:30 -0000 Mailing-List: contact dev-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list dev@harmony.apache.org Received: (qmail 16164 invoked by uid 99); 1 Dec 2006 12:28:30 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Dec 2006 04:28:30 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of eugene.s.ostrovsky@gmail.com designates 64.233.182.184 as permitted sender) Received: from [64.233.182.184] (HELO nf-out-0910.google.com) (64.233.182.184) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Dec 2006 04:28:18 -0800 Received: by nf-out-0910.google.com with SMTP id a4so3640190nfc for ; Fri, 01 Dec 2006 04:27:57 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=h8AechEWU8EYQOLEM4z6dwvuYajRUTI46Q4wgO3dJz8WCVKmi9cbEX6Eh9NX6zKIb7NbqBimBuo6nPoqy/1uxHXVutVhfyUjryeXQpJeSQHSSxKK+dJAvxmqYV8SYSBNIJ/Y5kSx4QPo/IGAhsS8rHSmKY9JlREL6Jt9KALR69I= Received: by 10.49.29.12 with SMTP id g12mr9155910nfj.1164976076865; Fri, 01 Dec 2006 04:27:56 -0800 (PST) Received: by 10.49.59.14 with HTTP; Fri, 1 Dec 2006 04:27:56 -0800 (PST) Message-ID: <1e3228450612010427h446d8723wdb6f8915cac7bf41@mail.gmail.com> Date: Fri, 1 Dec 2006 15:27:56 +0300 From: "Eugene Ostrovsky" To: dev@harmony.apache.org Subject: Re: [drlvm][jvmti] Profiling support - Compiled Method Load event In-Reply-To: <1e3228450611290749y4583024ev8cd9a0d9f3104f4a@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_4666_1276796.1164976076799" References: <1e3228450611100406n1d0ea58fp2c778fb9a3c49458@mail.gmail.com> <1e3228450611210458l11898665w13a09a9573841515@mail.gmail.com> <469bff730611212121u5e68af46j8c4a85a7b44d6aba@mail.gmail.com> <456411D7.7040703@gmail.com> <1e3228450611230601g683392edh892346d0f1fdce8@mail.gmail.com> <1e3228450611240302n23720609m80e3fe70e5448640@mail.gmail.com> <1e3228450611290749y4583024ev8cd9a0d9f3104f4a@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_4666_1276796.1164976076799 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I've added instructions to reproduce to *HARMONY-2145 * . On 11/29/06, Eugene Ostrovsky wrote: > > Guys, > > Could you please explain if it is ok that JIT reports inlined methods in > intersecting regions? > Executing VM with -Xem:opt option I've got the following log: > > --------------- BEGIN ----------------- > .......... > Compiling > java/lang/Thread.(Ljava/lang/ThreadGroup;Ljava/lang/String;JJIZ)V > .......... > Adding Inlined method: java/lang/StringBuilder.append > (J)Ljava/lang/StringBuilder; > address: 01356D14 [69] mapLength: 1 > Adding Inlined method: java/lang/Long.toString (J)Ljava/lang/String; > address: 01356D30 [63] mapLength: 1 > .......... > --------------- END ----------------- > > I.e. while compiling j.l.Thread constructor JIT inlined > StringBuilder.append() & Long.toString() methods to the following regions: > [ 0x01356D14 , 0x01356D14 + 69 ) > [ 0x01356D30 , 0x01356D30 + 63 ) > > These regions overlap. Is it ok? > > Thanks, > Eugene. > > ------=_Part_4666_1276796.1164976076799--