From owner-svn-src-all@FreeBSD.ORG Wed Aug 14 13:59:18 2013 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3E5DC164; Wed, 14 Aug 2013 13:59:18 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from theravensnest.org (theraven.freebsd.your.org [216.14.102.27]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 09AD12CB9; Wed, 14 Aug 2013 13:59:17 +0000 (UTC) Received: from dhcp-172-17-154-34.eduroam.lapwing.private.cam.ac.uk (global-1-26.nat.csx.cam.ac.uk [131.111.184.26]) (authenticated bits=0) by theravensnest.org (8.14.5/8.14.5) with ESMTP id r7EDxEZe021168 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Wed, 14 Aug 2013 13:59:15 GMT (envelope-from theraven@FreeBSD.org) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) Subject: Re: svn commit: r253802 - head/contrib/llvm/tools/clang/lib/Headers From: David Chisnall In-Reply-To: <201308140821.50565.jhb@freebsd.org> Date: Wed, 14 Aug 2013 14:59:09 +0100 Content-Transfer-Encoding: 7bit Message-Id: <32EA01FA-4E66-4764-9928-E1435ADEAE1C@FreeBSD.org> References: <201307301233.r6UCXLT8012177@svn.freebsd.org> <20130813205736.GA68244@stack.nl> <2A4F32C7-939D-4C4D-A136-D99FC06C486E@FreeBSD.org> <201308140821.50565.jhb@freebsd.org> To: John Baldwin X-Mailer: Apple Mail (2.1508) Cc: Matthew Fleming , "src-committers@FreeBSD.org" , Jilles Tjoelker , "svn-src-all@FreeBSD.org" , Dimitry Andric , "svn-src-head@FreeBSD.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Aug 2013 13:59:18 -0000 On 14 Aug 2013, at 13:21, John Baldwin wrote: > On Wednesday, August 14, 2013 4:23:11 am David Chisnall wrote: >> On 13 Aug 2013, at 21:57, Jilles Tjoelker wrote: >> >>> Given that JIT is for performance and larger addresses increase code >>> size and register pressure, the mmap() flag is probably useful. >>> Alternatively, all the JITted code could be placed in one block and use >>> relative addressing. >> >> This would be a good thing to have in for 10.0, as the LLVM 3.4 JIT will >> require it unless someone wants to contribute support for the large code >> model... > > So you just need a flag to cap the virtual address at 2GB? Do you think we > need an arbitrary address flag for this, or is a hardcoded 2GB flag ok? > > Linux has a MAP_32BIT that does what you want I think. Yes, MAP_32BIT is used on Linux to solve this. David