From owner-svn-src-head@freebsd.org Sat Apr 14 14:44:45 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FF97FA5150; Sat, 14 Apr 2018 14:44:45 +0000 (UTC) (envelope-from jonlooney@gmail.com) Received: from mail-wr0-f177.google.com (mail-wr0-f177.google.com [209.85.128.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1EDEB6D8AD; Sat, 14 Apr 2018 14:44:44 +0000 (UTC) (envelope-from jonlooney@gmail.com) Received: by mail-wr0-f177.google.com with SMTP id s18so14848823wrg.9; Sat, 14 Apr 2018 07:44:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=6wB24ARf9KZSam9zpqNrWQr7lf9/vKxb0vxdY+uAa2U=; b=ndDJI0iNqttOwuPPBltXeNgprCBLXDdmzW+GxVfVajxCt6eZJiIAq5QXHoJS0IUQnc 8eZPbpCnwqmYDCWA1iclI7XF0iFtBV51tMjv0StfL1n5JVBUKnjeP+kzJtVFitaqg1En a7O9jnBN3RC0KJ6UbQfpmoa8o1+dKmFbWiM2v0CREsdnRRwaJwqqvnzJ15PR3i77AaY/ lqeXJR2YAdvOpWdayZH37JxfpTN/dN/HzGF+Ba9D+00B9YnvBHzRRNo8ikrQuT237FJ/ fsq43RxXze88XqlARY7onNSjvpCSrkrxAdUC6qaC3QaaXO2Sln17if0AFnC91ZGQ0Ngz H37A== X-Gm-Message-State: ALQs6tAX2mrsyOxRq2YBZVkTbZNz9rzlxzBq1yL+cyG/9TMuRq42/pc0 vX2azCjZ2yY9KrAu6Ky0/w6prWSO X-Google-Smtp-Source: AIpwx4/47aeOXYpZR56yv8XZRZFDP/myKl3vCBLKYIdYr4pacEBZZ8sNZ0LaC54OEYG9uEG4GJ/Dsg== X-Received: by 10.80.143.164 with SMTP id y33mr4991594edy.135.1523717078323; Sat, 14 Apr 2018 07:44:38 -0700 (PDT) Received: from mail-wr0-f180.google.com (mail-wr0-f180.google.com. [209.85.128.180]) by smtp.gmail.com with ESMTPSA id h33sm4781576edh.1.2018.04.14.07.44.37 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 14 Apr 2018 07:44:37 -0700 (PDT) Received: by mail-wr0-f180.google.com with SMTP id q6so2774884wrd.6; Sat, 14 Apr 2018 07:44:37 -0700 (PDT) X-Received: by 10.28.85.137 with SMTP id j131mr6602154wmb.94.1523717077204; Sat, 14 Apr 2018 07:44:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.199.203 with HTTP; Sat, 14 Apr 2018 07:44:36 -0700 (PDT) In-Reply-To: <201804141207.w3EC75cj023620@repo.freebsd.org> References: <201804141207.w3EC75cj023620@repo.freebsd.org> From: "Jonathan T. Looney" Date: Sat, 14 Apr 2018 10:44:36 -0400 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r332501 - in head: contrib/llvm/include/llvm/CodeGen contrib/llvm/lib/CodeGen contrib/llvm/lib/Target/X86 contrib/llvm/lib/Target/X86/Disassembler contrib/llvm/tools/clang/include/clang... To: Dimitry Andric Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Apr 2018 14:44:45 -0000 On Sat, Apr 14, 2018 at 8:07 AM, Dimitry Andric wrote: > Author: dim > Date: Sat Apr 14 12:07:05 2018 > New Revision: 332501 > URL: https://svnweb.freebsd.org/changeset/base/332501 > > Log: > Pull in r325446 from upstream clang trunk (by me): > > [X86] Add 'sahf' CPU feature to frontend > > Pull in r328944 from upstream llvm trunk (by Chandler Carruth): > > [x86] Expose more of the condition conversion routines in the public > API for X86's instruction information. I've now got a second patch > under review that needs these same APIs. This bit is nicely > orthogonal and obvious, so landing it. NFC. > > Pull in r329414 from upstream llvm trunk (by Craig Topper): > > [X86] Merge itineraries for CLC, CMC, and STC. > > Pull in r329673 from upstream llvm trunk (by Chandler Carruth): > > [x86] Model the direction flag (DF) separately from the rest of > EFLAGS. > > Thanks so much for doing this! Jonathan