From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6938 invoked by alias); 7 Aug 2014 14:36:39 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 6926 invoked by uid 89); 7 Aug 2014 14:36:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-yk0-f180.google.com Received: from mail-yk0-f180.google.com (HELO mail-yk0-f180.google.com) (209.85.160.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 07 Aug 2014 14:36:37 +0000 Received: by mail-yk0-f180.google.com with SMTP id 200so2814079ykr.25 for ; Thu, 07 Aug 2014 07:36:35 -0700 (PDT) X-Received: by 10.236.67.9 with SMTP id i9mr5163313yhd.139.1407422195677; Thu, 07 Aug 2014 07:36:35 -0700 (PDT) Received: from msticlxl57.ims.intel.com ([192.55.54.40]) by mx.google.com with ESMTPSA id 28sm131344yhc.19.2014.08.07.07.36.32 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 07 Aug 2014 07:36:35 -0700 (PDT) Date: Thu, 07 Aug 2014 14:36:00 -0000 From: Kirill Yukhin To: GCC Patches Cc: Jakub Jelinek , bernds@codesourcery.com, thomas@codesourcery.com, Richard Biener , andrey.turetskiy@gmail.com, iverbin@gmail.com Subject: Re: [GOMP4, RFC] OpenMP4 offload support for Intel PHI targets. Message-ID: <20140807143550.GA53186@msticlxl57.ims.intel.com> References: <20140702083817.GA1311@msticlxl57.ims.intel.com> <20140708115001.GC14139@msticlxl57.ims.intel.com> <20140714060756.GA51905@msticlxl57.ims.intel.com> <20140715093208.GA49412@msticlxl57.ims.intel.com> <20140719101533.GB32733@msticlxl57.ims.intel.com> <20140725165521.GB1317@msticlxl57.ims.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140725165521.GB1317@msticlxl57.ims.intel.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2014-08/txt/msg00822.txt.bz2 Hello, On 25 Jul 20:55, Kirill Yukhin wrote: > Hello, > Branch was rebased on trunk. > > It contains fixes for several issues in the build system. > Now 'configure' can be called using relative path. > > Also some options are now unnecessary, updated manual is posted > on wiki: https://gcc.gnu.org/wiki/Offloading in "How to try offloading enabled GCC". Branch was rebased again. It contains: * A fix for omp-low.c: offload_funcs/vars are no more corrupted by garbage collector. * A fix for libgomp: gomp_init_device and splay_tree_lookup are now surrounded by gomp_mutex_lock/unlock. * Several tests in libgomp/testsuite are fixed. * Changes in liboffloadmic+emulator: 1. Fix issues noted by Joseph Myers (https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02166.html) 2. Implement one more COI interface function; 3. Fix emulator shutdown when target execution is interrupted; 4. Clean up code. Bootstrap passed. -- Thanks, K