From owner-svn-src-all@FreeBSD.ORG Wed Mar 19 20:46:03 2014 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 ESMTPS id 14C332B3; Wed, 19 Mar 2014 20:46:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA229B2D; Wed, 19 Mar 2014 20:46:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JKk2i3029170; Wed, 19 Mar 2014 20:46:02 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2JKk2lq029167; Wed, 19 Mar 2014 20:46:02 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201403192046.s2JKk2lq029167@svn.freebsd.org> From: Ed Maste Date: Wed, 19 Mar 2014 20:46:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r263378 - in stable/10/contrib/llvm: include/llvm/Support lib/Support X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 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, 19 Mar 2014 20:46:03 -0000 Author: emaste Date: Wed Mar 19 20:46:02 2014 New Revision: 263378 URL: http://svnweb.freebsd.org/changeset/base/263378 Log: MFC r258005: Merge upstream LLVM r192118: Formally added an explicit enum for DWARF TLS support. No functionality change. Sponsored by: DARPA, AFRL Modified: stable/10/contrib/llvm/include/llvm/Support/Dwarf.h stable/10/contrib/llvm/lib/Support/Dwarf.cpp Directory Properties: stable/10/ (props changed) Modified: stable/10/contrib/llvm/include/llvm/Support/Dwarf.h ============================================================================== --- stable/10/contrib/llvm/include/llvm/Support/Dwarf.h Wed Mar 19 20:40:57 2014 (r263377) +++ stable/10/contrib/llvm/include/llvm/Support/Dwarf.h Wed Mar 19 20:46:02 2014 (r263378) @@ -484,6 +484,9 @@ enum dwarf_constants { DW_OP_lo_user = 0xe0, DW_OP_hi_user = 0xff, + // Extensions for GNU-style thread-local storage. + DW_OP_GNU_push_tls_address = 0xe0, + // Extensions for Fission proposal. DW_OP_GNU_addr_index = 0xfb, DW_OP_GNU_const_index = 0xfc, Modified: stable/10/contrib/llvm/lib/Support/Dwarf.cpp ============================================================================== --- stable/10/contrib/llvm/lib/Support/Dwarf.cpp Wed Mar 19 20:40:57 2014 (r263377) +++ stable/10/contrib/llvm/lib/Support/Dwarf.cpp Wed Mar 19 20:46:02 2014 (r263378) @@ -453,10 +453,11 @@ const char *llvm::dwarf::OperationEncodi case DW_OP_bit_piece: return "DW_OP_bit_piece"; case DW_OP_implicit_value: return "DW_OP_implicit_value"; case DW_OP_stack_value: return "DW_OP_stack_value"; - case DW_OP_lo_user: return "DW_OP_lo_user"; - case DW_OP_hi_user: return "DW_OP_hi_user"; - // DWARF5 Fission Proposal Op Extensions + // GNU thread-local storage + case DW_OP_GNU_push_tls_address: return "DW_OP_GNU_push_tls_address"; + + // DWARF5 Fission Proposal Op Extensions case DW_OP_GNU_addr_index: return "DW_OP_GNU_addr_index"; case DW_OP_GNU_const_index: return "DW_OP_GNU_const_index"; }