From owner-svn-src-vendor@freebsd.org Mon Mar 6 19:54:58 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01F46CFC0F0; Mon, 6 Mar 2017 19:54:58 +0000 (UTC) (envelope-from sjg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BE8861014; Mon, 6 Mar 2017 19:54:57 +0000 (UTC) (envelope-from sjg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v26Jsugr031393; Mon, 6 Mar 2017 19:54:56 GMT (envelope-from sjg@FreeBSD.org) Received: (from sjg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v26Jss9i031368; Mon, 6 Mar 2017 19:54:54 GMT (envelope-from sjg@FreeBSD.org) Message-Id: <201703061954.v26Jss9i031368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sjg set sender to sjg@FreeBSD.org using -f From: "Simon J. Gerraty" Date: Mon, 6 Mar 2017 19:54:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314787 - in vendor/NetBSD/bmake/dist: . PSD.doc mk unit-tests X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Mar 2017 19:54:58 -0000 Author: sjg Date: Mon Mar 6 19:54:54 2017 New Revision: 314787 URL: https://svnweb.freebsd.org/changeset/base/314787 Log: Import bmake-20170301 Modified: vendor/NetBSD/bmake/dist/ChangeLog vendor/NetBSD/bmake/dist/Makefile vendor/NetBSD/bmake/dist/PSD.doc/tutorial.ms vendor/NetBSD/bmake/dist/bmake.1 vendor/NetBSD/bmake/dist/bmake.cat1 vendor/NetBSD/bmake/dist/dir.c vendor/NetBSD/bmake/dist/main.c vendor/NetBSD/bmake/dist/make.1 vendor/NetBSD/bmake/dist/meta.c vendor/NetBSD/bmake/dist/mk/ChangeLog vendor/NetBSD/bmake/dist/mk/dirdeps.mk vendor/NetBSD/bmake/dist/mk/dpadd.mk vendor/NetBSD/bmake/dist/mk/install-mk vendor/NetBSD/bmake/dist/mk/meta.stage.mk vendor/NetBSD/bmake/dist/mk/meta2deps.py vendor/NetBSD/bmake/dist/mk/prog.mk vendor/NetBSD/bmake/dist/mk/subdir.mk vendor/NetBSD/bmake/dist/mk/sys.mk vendor/NetBSD/bmake/dist/mk/sys.vars.mk vendor/NetBSD/bmake/dist/os.sh vendor/NetBSD/bmake/dist/parse.c vendor/NetBSD/bmake/dist/unit-tests/varmisc.exp vendor/NetBSD/bmake/dist/unit-tests/varmisc.mk vendor/NetBSD/bmake/dist/var.c Modified: vendor/NetBSD/bmake/dist/ChangeLog ============================================================================== --- vendor/NetBSD/bmake/dist/ChangeLog Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/ChangeLog Mon Mar 6 19:54:54 2017 (r314787) @@ -1,3 +1,32 @@ +2017-03-01 Simon J. Gerraty + + * Makefile (_MAKE_VERSION): 20170301 + Merge with NetBSD make, pick up + o main.c: use -C arg as is rather than getcwd() + if they identify the same directory. + o parse.c: ensure loadfile buffer is \n terminated in non-mmap case + +2017-02-01 Simon J. Gerraty + + * Makefile (_MAKE_VERSION): 20170201 + Merge with NetBSD make, pick up + o var.c: allow :_=var and avoid use of special context. + +2017-01-30 Simon J. Gerraty + + * Makefile (_MAKE_VERSION): 20170130 + Merge with NetBSD make, pick up + o var.c: add :range and :_ + o main.c: partially initialize Dir_* before MainParseArgs() + can be called. + If -V, skip Main_ExportMAKEFLAGS() + +2017-01-14 Simon J. Gerraty + + * Makefile (_MAKE_VERSION): 20170114 + Merge with NetBSD make, pick up + o var.c: allow specifying the utc value used by :{gm,local}time + 2016-12-12 Simon J. Gerraty * Makefile (_MAKE_VERSION): 20161212 Modified: vendor/NetBSD/bmake/dist/Makefile ============================================================================== --- vendor/NetBSD/bmake/dist/Makefile Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/Makefile Mon Mar 6 19:54:54 2017 (r314787) @@ -1,7 +1,7 @@ -# $Id: Makefile,v 1.77 2016/12/12 07:34:19 sjg Exp $ +# $Id: Makefile,v 1.81 2017/03/01 17:01:23 sjg Exp $ # Base version on src date -_MAKE_VERSION= 20161212 +_MAKE_VERSION= 20170301 PROG= bmake Modified: vendor/NetBSD/bmake/dist/PSD.doc/tutorial.ms ============================================================================== --- vendor/NetBSD/bmake/dist/PSD.doc/tutorial.ms Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/PSD.doc/tutorial.ms Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -.\" $NetBSD: tutorial.ms,v 1.12 2014/09/30 21:33:14 christos Exp $ +.\" $NetBSD: tutorial.ms,v 1.13 2017/03/01 13:05:11 kre Exp $ .\" Copyright (c) 1988, 1989, 1993 .\" The Regents of the University of California. All rights reserved. .\" @@ -117,6 +117,15 @@ .de No .br .ne 0.5i +.ie n \{\ +.nr g3 \w'NOTE ' +.po -\\n(g3u +.br +NOTE +.br +.po +\\n(g3u +.\} +.el \{\ .po -0.5i .br .mk @@ -148,12 +157,14 @@ .rt .ft \\n(g3 .ps \\n(g4 +.\} .. .de Bp .ie !\\n(.$ .IP \(bu 2 .el .IP "\&" 2 .. -.po +.3i +.ie n .po +\w'NOTE 'u +.el .po +.3i .TL PMake \*- A Tutorial .AU Modified: vendor/NetBSD/bmake/dist/bmake.1 ============================================================================== --- vendor/NetBSD/bmake/dist/bmake.1 Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/bmake.1 Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -.\" $NetBSD: make.1,v 1.263 2016/08/26 23:37:54 dholland Exp $ +.\" $NetBSD: make.1,v 1.266 2017/02/01 18:39:27 sjg Exp $ .\" .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 .\" -.Dd August 26, 2016 +.Dd February 1, 2017 .Dt BMAKE 1 .Os .Sh NAME @@ -1205,18 +1205,28 @@ safely through recursive invocations of .Nm . .It Cm \&:R Replaces each word in the variable with everything but its suffix. -.It Cm \&:gmtime +.It Cm \&:range[=count] +The value is an integer sequence representing the words of the original +value, or the supplied +.Va count . +.It Cm \&:gmtime[=utc] The value is a format string for .Xr strftime 3 , -using the current +using .Xr gmtime 3 . +If a +.Va utc +value is not provided or is 0, the current time is used. .It Cm \&:hash Compute a 32-bit hash of the value and encode it as hex digits. -.It Cm \&:localtime +.It Cm \&:localtime[=utc] The value is a format string for .Xr strftime 3 , -using the current +using .Xr localtime 3 . +If a +.Va utc +value is not provided or is 0, the current time is used. .It Cm \&:tA Attempt to convert variable to an absolute path using .Xr realpath 3 , @@ -1416,6 +1426,27 @@ For example. .Pp However a single character variable is often more readable: .Dl ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@} +.It Cm \&:_[=var] +Save the current variable value in +.Ql $_ +or the named +.Va var +for later reference. +Example usage: +.Bd -literal -offset indent +M_cmpv.units = 1 1000 1000000 +M_cmpv = S,., ,g:_:range:@i@+ $${_:[-$$i]} \&\\ +\\* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,1:sh + +.Dv .if ${VERSION:${M_cmpv}} < ${3.1.12:L:${M_cmpv}} + +.Ed +Here +.Ql $_ +is used to save the result of the +.Ql :S +modifier which is later referenced using the index values from +.Ql :range . .It Cm \&:U Ns Ar newval If the variable is undefined .Ar newval Modified: vendor/NetBSD/bmake/dist/bmake.cat1 ============================================================================== --- vendor/NetBSD/bmake/dist/bmake.cat1 Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/bmake.cat1 Mon Mar 6 19:54:54 2017 (r314787) @@ -789,16 +789,20 @@ VVAARRIIAABBLLEE AASSSSIIGG ::RR Replaces each word in the variable with everything but its suffix. - ::ggmmttiimmee - The value is a format string for strftime(3), using the current - gmtime(3). + ::rraannggee[[==ccoouunntt]] + The value is an integer sequence representing the words of the orig- + inal value, or the supplied _c_o_u_n_t. + + ::ggmmttiimmee[[==uuttcc]] + The value is a format string for strftime(3), using gmtime(3). If a + _u_t_c value is not provided or is 0, the current time is used. ::hhaasshh Compute a 32-bit hash of the value and encode it as hex digits. - ::llooccaallttiimmee - The value is a format string for strftime(3), using the current - localtime(3). + ::llooccaallttiimmee[[==uuttcc]] + The value is a format string for strftime(3), using localtime(3). + If a _u_t_c value is not provided or is 0, the current time is used. ::ttAA Attempt to convert variable to an absolute path using realpath(3), if that fails, the value is unchanged. @@ -899,6 +903,19 @@ VVAARRIIAABBLLEE AASSSSIIGG However a single character variable is often more readable: ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@} + ::__[[==vvaarr]] + Save the current variable value in `$_' or the named _v_a_r for later + reference. Example usage: + + M_cmpv.units = 1 1000 1000000 + M_cmpv = S,., ,g:_:range:@i@+ $${_:[-$$i]} \ + \* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,1:sh + + .if ${VERSION:${M_cmpv}} < ${3.1.12:L:${M_cmpv}} + + Here `$_' is used to save the result of the `:S' modifier which is + later referenced using the index values from `:range'. + ::UU_n_e_w_v_a_l If the variable is undefined _n_e_w_v_a_l is the value. If the variable is defined, the existing value is returned. This is another ODE @@ -1506,4 +1523,4 @@ BBUUGGSS There is no way of escaping a space character in a filename. -NetBSD 5.1 August 26, 2016 NetBSD 5.1 +NetBSD 7.1_RC1 February 1, 2017 NetBSD 7.1_RC1 Modified: vendor/NetBSD/bmake/dist/dir.c ============================================================================== --- vendor/NetBSD/bmake/dist/dir.c Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/dir.c Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -/* $NetBSD: dir.c,v 1.68 2016/06/07 00:40:00 sjg Exp $ */ +/* $NetBSD: dir.c,v 1.69 2017/01/31 06:54:23 sjg Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -70,14 +70,14 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: dir.c,v 1.68 2016/06/07 00:40:00 sjg Exp $"; +static char rcsid[] = "$NetBSD: dir.c,v 1.69 2017/01/31 06:54:23 sjg Exp $"; #else #include #ifndef lint #if 0 static char sccsid[] = "@(#)dir.c 8.2 (Berkeley) 1/2/94"; #else -__RCSID("$NetBSD: dir.c,v 1.68 2016/06/07 00:40:00 sjg Exp $"); +__RCSID("$NetBSD: dir.c,v 1.69 2017/01/31 06:54:23 sjg Exp $"); #endif #endif /* not lint */ #endif @@ -346,11 +346,13 @@ cached_lstat(const char *pathname, void void Dir_Init(const char *cdname) { - dirSearchPath = Lst_Init(FALSE); - openDirectories = Lst_Init(FALSE); - Hash_InitTable(&mtimes, 0); - Hash_InitTable(&lmtimes, 0); - + if (!cdname) { + dirSearchPath = Lst_Init(FALSE); + openDirectories = Lst_Init(FALSE); + Hash_InitTable(&mtimes, 0); + Hash_InitTable(&lmtimes, 0); + return; + } Dir_InitCur(cdname); dotLast = bmake_malloc(sizeof(Path)); Modified: vendor/NetBSD/bmake/dist/main.c ============================================================================== --- vendor/NetBSD/bmake/dist/main.c Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/main.c Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.254 2016/12/10 23:12:39 christos Exp $ */ +/* $NetBSD: main.c,v 1.257 2017/02/08 17:47:36 christos Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -69,7 +69,7 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: main.c,v 1.254 2016/12/10 23:12:39 christos Exp $"; +static char rcsid[] = "$NetBSD: main.c,v 1.257 2017/02/08 17:47:36 christos Exp $"; #else #include #ifndef lint @@ -81,7 +81,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 19 #if 0 static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94"; #else -__RCSID("$NetBSD: main.c,v 1.254 2016/12/10 23:12:39 christos Exp $"); +__RCSID("$NetBSD: main.c,v 1.257 2017/02/08 17:47:36 christos Exp $"); #endif #endif /* not lint */ #endif @@ -389,6 +389,7 @@ MainParseArgs(int argc, char **argv) int arginc; char *argvalue; const char *getopt_def; + struct stat sa, sb; char *optscan; Boolean inOption, dashDash = FALSE; char found_path[MAXPATHLEN + 1]; /* for searching for sys.mk */ @@ -457,6 +458,11 @@ rearg: (void)fprintf(stderr, "%s: %s.\n", progname, strerror(errno)); exit(2); } + if (stat(argvalue, &sa) != -1 && + stat(curdir, &sb) != -1 && + sa.st_ino == sb.st_ino && + sa.st_dev == sb.st_dev) + strncpy(curdir, argvalue, MAXPATHLEN); ignorePWD = TRUE; break; case 'D': @@ -1073,6 +1079,8 @@ main(int argc, char **argv) #ifdef USE_META meta_init(); #endif + Dir_Init(NULL); /* Dir_* safe to call from MainParseArgs */ + /* * First snag any flags out of the MAKE environment variable. * (Note this is *not* MAKEFLAGS since /bin/make uses that and it's @@ -1314,8 +1322,9 @@ main(int argc, char **argv) fprintf(debug_file, "job_pipe %d %d, maxjobs %d, tokens %d, compat %d\n", jp_0, jp_1, maxJobs, maxJobTokens, compatMake); - Main_ExportMAKEFLAGS(TRUE); /* initial export */ - + if (!printVars) + Main_ExportMAKEFLAGS(TRUE); /* initial export */ + /* * For compatibility, look at the directories in the VPATH variable * and add them to the search path, if the variable is defined. The @@ -1933,7 +1942,7 @@ PrintAddr(void *a, void *b) static int -addErrorCMD(void *cmdp, void *gnp) +addErrorCMD(void *cmdp, void *gnp MAKE_ATTR_UNUSED) { if (cmdp == NULL) return 1; /* stop */ Modified: vendor/NetBSD/bmake/dist/make.1 ============================================================================== --- vendor/NetBSD/bmake/dist/make.1 Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/make.1 Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -.\" $NetBSD: make.1,v 1.263 2016/08/26 23:37:54 dholland Exp $ +.\" $NetBSD: make.1,v 1.266 2017/02/01 18:39:27 sjg Exp $ .\" .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 .\" -.Dd August 26, 2016 +.Dd February 1, 2017 .Dt MAKE 1 .Os .Sh NAME @@ -1205,18 +1205,28 @@ safely through recursive invocations of .Nm . .It Cm \&:R Replaces each word in the variable with everything but its suffix. -.It Cm \&:gmtime +.It Cm \&:range[=count] +The value is an integer sequence representing the words of the original +value, or the supplied +.Va count . +.It Cm \&:gmtime[=utc] The value is a format string for .Xr strftime 3 , -using the current +using .Xr gmtime 3 . +If a +.Va utc +value is not provided or is 0, the current time is used. .It Cm \&:hash Compute a 32-bit hash of the value and encode it as hex digits. -.It Cm \&:localtime +.It Cm \&:localtime[=utc] The value is a format string for .Xr strftime 3 , -using the current +using .Xr localtime 3 . +If a +.Va utc +value is not provided or is 0, the current time is used. .It Cm \&:tA Attempt to convert variable to an absolute path using .Xr realpath 3 , @@ -1416,6 +1426,27 @@ For example. .Pp However a single character variable is often more readable: .Dl ${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'${.newline}@} +.It Cm \&:_[=var] +Save the current variable value in +.Ql $_ +or the named +.Va var +for later reference. +Example usage: +.Bd -literal -offset indent +M_cmpv.units = 1 1000 1000000 +M_cmpv = S,., ,g:_:range:@i@+ $${_:[-$$i]} \&\\ +\\* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,1:sh + +.Dv .if ${VERSION:${M_cmpv}} < ${3.1.12:L:${M_cmpv}} + +.Ed +Here +.Ql $_ +is used to save the result of the +.Ql :S +modifier which is later referenced using the index values from +.Ql :range . .It Cm \&:U Ns Ar newval If the variable is undefined .Ar newval Modified: vendor/NetBSD/bmake/dist/meta.c ============================================================================== --- vendor/NetBSD/bmake/dist/meta.c Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/meta.c Mon Mar 6 19:54:54 2017 (r314787) @@ -241,7 +241,7 @@ eat_dots(char *buf, size_t bufsz, int do } static char * -meta_name(struct GNode *gn, char *mname, size_t mnamelen, +meta_name(char *mname, size_t mnamelen, const char *dname, const char *tname, const char *cwd) @@ -396,7 +396,7 @@ printCMD(void *cmdp, void *mfpp) * Do we need/want a .meta file ? */ static Boolean -meta_needed(GNode *gn, const char *dname, const char *tname, +meta_needed(GNode *gn, const char *dname, char *objdir, int verbose) { struct stat fs; @@ -476,7 +476,7 @@ meta_create(BuildMon *pbm, GNode *gn) tname = Var_Value(TARGET, gn, &p[i++]); /* if this succeeds objdir is realpath of dname */ - if (!meta_needed(gn, dname, tname, objdir, TRUE)) + if (!meta_needed(gn, dname, objdir, TRUE)) goto out; dname = objdir; @@ -502,7 +502,7 @@ meta_create(BuildMon *pbm, GNode *gn) /* Don't create meta data. */ goto out; - fname = meta_name(gn, pbm->meta_fname, sizeof(pbm->meta_fname), + fname = meta_name(pbm->meta_fname, sizeof(pbm->meta_fname), dname, tname, objdir); #ifdef DEBUG_META_MODE @@ -1049,7 +1049,7 @@ meta_oodate(GNode *gn, Boolean oodate) tname = Var_Value(TARGET, gn, &pa[i++]); /* if this succeeds fname3 is realpath of dname */ - if (!meta_needed(gn, dname, tname, fname3, FALSE)) + if (!meta_needed(gn, dname, fname3, FALSE)) goto oodate_out; dname = fname3; @@ -1063,7 +1063,7 @@ meta_oodate(GNode *gn, Boolean oodate) */ Make_DoAllVar(gn); - meta_name(gn, fname, sizeof(fname), dname, tname, dname); + meta_name(fname, sizeof(fname), dname, tname, dname); #ifdef DEBUG_META_MODE if (DEBUG(META)) Modified: vendor/NetBSD/bmake/dist/mk/ChangeLog ============================================================================== --- vendor/NetBSD/bmake/dist/mk/ChangeLog Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/ChangeLog Mon Mar 6 19:54:54 2017 (r314787) @@ -1,3 +1,34 @@ +2017-03-01 Simon J. Gerraty + + * install-mk (MK_VERSION): 20170301 + + * dirdeps.mk (_build_all_dirs): update this outside test for empty + DIRDEPS. + + * meta.stage.mk: allow multiple inclusion to the extent it makes + sense. + +2017-02-14 Simon J. Gerraty + + * prog.mk (install_links): depends on realinstall + +2017-02-12 Simon J. Gerraty + + * install-mk (MK_VERSION): 20170212 + + * dpadd.mk: avoid applying :T:R twice to DPLIBS entries + +2017-01-30 Simon J. Gerraty + + * install-mk (MK_VERSION): 20170130 + + * dirdeps.mk: use :range if we can. + + * sys.vars.mk: provide M_cmpv if MAKE_VERSION >= 20170130 + + * meta2deps.py: clean paths without using realpath() where possible. + fix sort_unique. + 2016-12-12 Simon J. Gerraty * install-mk (MK_VERSION): 20161212 Modified: vendor/NetBSD/bmake/dist/mk/dirdeps.mk ============================================================================== --- vendor/NetBSD/bmake/dist/mk/dirdeps.mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/dirdeps.mk Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -# $Id: dirdeps.mk,v 1.84 2016/11/27 02:44:34 sjg Exp $ +# $Id: dirdeps.mk,v 1.86 2017/03/01 20:26:51 sjg Exp $ # Copyright (c) 2010-2013, Juniper Networks, Inc. # All rights reserved. @@ -197,7 +197,9 @@ DEP_$v ?= ${$v} # we compute below are fully qualified wrt DEP_TARGET_SPEC. # The makefiles may only partially specify (eg. MACHINE only), # so we need to construct a set of modifiers to fill in the gaps. -.if ${TARGET_SPEC_VARS:[#]} > 10 +.if ${MAKE_VERSION} >= 20170130 +_tspec_x := ${TARGET_SPEC_VARS:range} +.elif ${TARGET_SPEC_VARS:[#]} > 10 # seriously? better have jot(1) or equivalent to produce suitable sequence _tspec_x := ${${JOT:Ujot} ${TARGET_SPEC_VARS:[#]}:L:sh} .else @@ -612,11 +614,11 @@ _build_dirs += \ # qualify everything now _build_dirs := ${_build_dirs:${M_dep_qual_fixes:ts:}:O:u} +.endif # empty DIRDEPS + _build_all_dirs += ${_build_dirs} _build_all_dirs := ${_build_all_dirs:O:u} -.endif # empty DIRDEPS - # Normally if doing make -V something, # we do not want to waste time chasing DIRDEPS # but if we want to count the number of Makefile.depend* read, we do. Modified: vendor/NetBSD/bmake/dist/mk/dpadd.mk ============================================================================== --- vendor/NetBSD/bmake/dist/mk/dpadd.mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/dpadd.mk Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -# $Id: dpadd.mk,v 1.22 2016/05/31 23:30:59 sjg Exp $ +# $Id: dpadd.mk,v 1.23 2017/02/13 16:46:01 sjg Exp $ # # @(#) Copyright (c) 2004, Simon J. Gerraty # @@ -49,11 +49,11 @@ CXXFLAGS_LAST += ${CXXFLAGS_DEBUG_XTRA} # DPLIBS helps us ensure we keep DPADD and LDADD in sync DPLIBS+= ${DPLIBS_LAST} DPADD+= ${DPLIBS:N-*} -.for __lib in ${DPLIBS:T:R} +.for __lib in ${DPLIBS} .if "${_lib:M-*}" != "" LDADD += ${__lib} .else -LDADD += ${LDADD_${__lib}:U${__lib:T:R:S/lib/-l/:C/\.so.*//}} +LDADD += ${LDADD_${__lib:T:R}:U${__lib:T:R:S/lib/-l/:C/\.so.*//}} .endif .endfor Modified: vendor/NetBSD/bmake/dist/mk/install-mk ============================================================================== --- vendor/NetBSD/bmake/dist/mk/install-mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/install-mk Mon Mar 6 19:54:54 2017 (r314787) @@ -55,7 +55,7 @@ # Simon J. Gerraty # RCSid: -# $Id: install-mk,v 1.135 2016/12/12 19:07:42 sjg Exp $ +# $Id: install-mk,v 1.138 2017/03/01 20:26:51 sjg Exp $ # # @(#) Copyright (c) 1994 Simon J. Gerraty # @@ -70,7 +70,7 @@ # sjg@crufty.net # -MK_VERSION=20161212 +MK_VERSION=20170301 OWNER= GROUP= MODE=444 Modified: vendor/NetBSD/bmake/dist/mk/meta.stage.mk ============================================================================== --- vendor/NetBSD/bmake/dist/mk/meta.stage.mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/meta.stage.mk Mon Mar 6 19:54:54 2017 (r314787) @@ -1,6 +1,6 @@ -# $Id: meta.stage.mk,v 1.47 2016/12/07 23:07:49 sjg Exp $ +# $Id: meta.stage.mk,v 1.48 2017/03/01 22:48:07 sjg Exp $ # -# @(#) Copyright (c) 2011, Simon J. Gerraty +# @(#) Copyright (c) 2011-2017, Simon J. Gerraty # # This file is provided in the hope that it will # be of use. There is absolutely NO WARRANTY. @@ -14,7 +14,7 @@ # .if !target(__${.PARSEFILE}__) -__${.PARSEFILE}__: +# the guard target is defined later .if ${.MAKE.DEPENDFILE_PREFERENCE:U${.MAKE.DEPENDFILE}:M*.${MACHINE}} != "" # this is generally safer anyway @@ -127,26 +127,17 @@ STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT} done; :; } # this is simple, a list of the "staged" files depends on this, -_STAGE_BASENAME_USE: .USE ${.TARGET:T} +_STAGE_BASENAME_USE: .USE .dirdep ${.TARGET:T} @${STAGE_FILE_SCRIPT}; StageFiles ${.TARGET:H:${STAGE_DIR_FILTER}} ${.TARGET:T} -_STAGE_AS_BASENAME_USE: .USE ${.TARGET:T} +_STAGE_AS_BASENAME_USE: .USE .dirdep ${.TARGET:T} @${STAGE_AS_SCRIPT}; StageAs ${.TARGET:H:${STAGE_DIR_FILTER}} ${.TARGET:T} ${STAGE_AS_${.TARGET:T}:U${.TARGET:T}} -.if !empty(STAGE_INCSDIR) -STAGE_TARGETS += stage_incs -STAGE_INCS ?= ${.ALLSRC:N.dirdep:Nstage_*} stage_includes: stage_incs stage_incs: .dirdep @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_INCSDIR:${STAGE_DIR_FILTER}} ${STAGE_INCS} @touch $@ -.endif - -.if !empty(STAGE_LIBDIR) -STAGE_TARGETS += stage_libs - -STAGE_LIBS ?= ${.ALLSRC:N.dirdep:Nstage_*} stage_libs: .dirdep @${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} ${STAGE_LIBS} @@ -159,6 +150,18 @@ stage_libs: .dirdep .endif .endif @touch $@ + +.endif # first time + + +.if !empty(STAGE_INCSDIR) +STAGE_TARGETS += stage_incs +STAGE_INCS ?= ${.ALLSRC:N.dirdep:Nstage_*} +.endif + +.if !empty(STAGE_LIBDIR) +STAGE_TARGETS += stage_libs +STAGE_LIBS ?= ${.ALLSRC:N.dirdep:Nstage_*} .endif .if !empty(STAGE_DIR) @@ -184,6 +187,8 @@ STAGE_LINKS_DIR.$s ?= ${STAGE_OBJTOP} STAGE_SYMLINKS_DIR.$s ?= ${STAGE_OBJTOP} STAGE_TARGETS += stage_files +.if !target(.stage_files.$s) +.stage_files.$s: .if $s != "_default" stage_files: stage_files.$s stage_files.$s: .dirdep @@ -192,8 +197,11 @@ stage_files: .dirdep .endif @${STAGE_FILE_SCRIPT}; StageFiles ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_FILES.$s} @touch $@ +.endif STAGE_TARGETS += stage_links +.if !target(.stage_links.$s) +.stage_links.$s: .if $s != "_default" stage_links: stage_links.$s stage_links.$s: .dirdep @@ -202,8 +210,11 @@ stage_links: .dirdep .endif @${STAGE_LINKS_SCRIPT}; StageLinks ${STAGE_LINKS_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_LINKS.$s} @touch $@ +.endif STAGE_TARGETS += stage_symlinks +.if !target(.stage_symlinks.$s) +.stage_symlinks.$s: .if $s != "_default" stage_symlinks: stage_symlinks.$s stage_symlinks.$s: .dirdep @@ -212,6 +223,7 @@ stage_symlinks: .dirdep .endif @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_SYMLINKS_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_SYMLINKS.$s} @touch $@ +.endif .endfor .endif @@ -231,22 +243,32 @@ STAGE_TARGETS += stage_as stage_as_and_s STAGE_AS.$s ?= ${.ALLSRC:N.dirdep:Nstage_*} STAGE_AS_AND_SYMLINK.$s ?= ${.ALLSRC:N.dirdep:Nstage_*} +.if !target(.stage_as.$s) +.stage_as.$s: stage_as: stage_as.$s stage_as.$s: .dirdep @${STAGE_AS_SCRIPT}; StageAs ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:tA}:U${STAGE_AS_${f:T}:U${f:T}}}@} @touch $@ +.endif +.if !target(.stage_as_and_symlink.$s) +.stage_as_and_symlink.$s: stage_as_and_symlink: stage_as_and_symlink.$s stage_as_and_symlink.$s: .dirdep @${STAGE_AS_SCRIPT}; StageAs ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS_AND_SYMLINK.$s:@f@$f ${STAGE_AS_${f:tA}:U${STAGE_AS_${f:T}:U${f:T}}}@} @${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS_AND_SYMLINK.$s:@f@${STAGE_AS_${f:tA}:U${STAGE_AS_${f:T}:U${f:T}}} $f@} @touch $@ +.endif .endfor .endif CLEANFILES += ${STAGE_TARGETS} stage_incs stage_includes +# this lot also only makes sense the first time... +.if !target(__${.PARSEFILE}__) +__${.PARSEFILE}__: + # stage_*links usually needs to follow any others. # for non-jobs mode the order here matters staging: ${STAGE_TARGETS:N*_links} ${STAGE_TARGETS:M*_links} Modified: vendor/NetBSD/bmake/dist/mk/meta2deps.py ============================================================================== --- vendor/NetBSD/bmake/dist/mk/meta2deps.py Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/meta2deps.py Mon Mar 6 19:54:54 2017 (r314787) @@ -37,7 +37,7 @@ We only pay attention to a subset of the """ RCSid: - $Id: meta2deps.py,v 1.22 2016/12/12 19:07:42 sjg Exp $ + $Id: meta2deps.py,v 1.24 2017/02/08 22:17:10 sjg Exp $ Copyright (c) 2011-2013, Juniper Networks, Inc. All rights reserved. @@ -103,20 +103,36 @@ def resolve(path, cwd, last_dir=None, de return p return None +def cleanpath(path): + """cleanup path without using realpath(3)""" + if path.startswith('/'): + r = '/' + else: + r = '' + p = [] + w = path.split('/') + for d in w: + if not d or d == '.': + continue + if d == '..': + p.pop() + continue + p.append(d) + + return r + '/'.join(p) + def abspath(path, cwd, last_dir=None, debug=0, debug_out=sys.stderr): """ Return an absolute path, resolving via cwd or last_dir if needed. - this gets called a lot, so we try to avoid calling realpath - until we know we have something. + this gets called a lot, so we try to avoid calling realpath. """ rpath = resolve(path, cwd, last_dir, debug, debug_out) if rpath: path = rpath if (path.find('/') < 0 or path.find('./') > 0 or - path.endswith('/..') or - os.path.islink(path)): - return os.path.realpath(path) + path.endswith('/..')): + path = cleanpath(path) return path def sort_unique(list, cmp=None, key=None, reverse=False): @@ -126,6 +142,7 @@ def sort_unique(list, cmp=None, key=None for e in list: if e == le: continue + le = e nl.append(e) return nl @@ -504,6 +521,8 @@ class MetaFile: dir = abspath(dir, cwd, self.last_dir, self.debug, self.debug_out) if rdir == dir or rdir.find('./') > 0: rdir = None + if os.path.islink(dir): + rdir = os.path.realpath(dir) # now put path back together path = '/'.join([dir,base]) if self.debug > 1: Modified: vendor/NetBSD/bmake/dist/mk/prog.mk ============================================================================== --- vendor/NetBSD/bmake/dist/mk/prog.mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/prog.mk Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -# $Id: prog.mk,v 1.27 2016/08/02 20:52:17 sjg Exp $ +# $Id: prog.mk,v 1.28 2017/02/14 21:26:13 sjg Exp $ .if !target(__${.PARSEFILE}__) __${.PARSEFILE}__: @@ -191,6 +191,7 @@ install_links: maninstall: afterinstall afterinstall: realinstall +install_links: realinstall proginstall: beforeinstall realinstall: beforeinstall .endif Modified: vendor/NetBSD/bmake/dist/mk/subdir.mk ============================================================================== --- vendor/NetBSD/bmake/dist/mk/subdir.mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/subdir.mk Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -# $Id: subdir.mk,v 1.15 2016/04/05 15:58:37 sjg Exp $ +# $Id: subdir.mk,v 1.16 2017/02/08 22:16:59 sjg Exp $ # skip missing directories... # $NetBSD: bsd.subdir.mk,v 1.11 1996/04/04 02:05:06 jtc Exp $ @@ -45,13 +45,18 @@ _SUBDIRUSE: .USE done ${SUBDIR}:: - @set -e; if test -d ${.CURDIR}/${.TARGET}.${MACHINE}; then \ - _newdir_=${.TARGET}.${MACHINE}; \ + @set -e; _r=${.CURDIR}/; \ + if test -z "${.TARGET:M/*}"; then \ + if test -d ${.CURDIR}/${.TARGET}.${MACHINE}; then \ + _newdir_=${.TARGET}.${MACHINE}; \ + else \ + _newdir_=${.TARGET}; \ + fi; \ else \ - _newdir_=${.TARGET}; \ + _r= _newdir_=${.TARGET}; \ fi; \ ${ECHO_DIR} "===> $${_newdir_}"; \ - cd ${.CURDIR}/$${_newdir_}; \ + cd $${_r}$${_newdir_}; \ ${.MAKE} _THISDIR_="$${_newdir_}" all .endif Modified: vendor/NetBSD/bmake/dist/mk/sys.mk ============================================================================== --- vendor/NetBSD/bmake/dist/mk/sys.mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/sys.mk Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -# $Id: sys.mk,v 1.44 2016/10/01 19:11:55 sjg Exp $ +# $Id: sys.mk,v 1.45 2017/02/05 01:26:13 sjg Exp $ # # @(#) Copyright (c) 2003-2009, Simon J. Gerraty # @@ -71,11 +71,11 @@ SYS_OS_MK := ${_sys_mk} # some options we need to know early OPTIONS_DEFAULT_NO += \ DIRDEPS_BUILD \ - DIRDEPS_CACHE \ - META_MODE + DIRDEPS_CACHE OPTIONS_DEFAULT_DEPENDENT += \ AUTO_OBJ/DIRDEPS_BUILD \ + META_MODE/DIRDEPS_BUILD \ STAGING/DIRDEPS_BUILD \ .-include Modified: vendor/NetBSD/bmake/dist/mk/sys.vars.mk ============================================================================== --- vendor/NetBSD/bmake/dist/mk/sys.vars.mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/mk/sys.vars.mk Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -# $Id: sys.vars.mk,v 1.1 2016/10/01 19:11:55 sjg Exp $ +# $Id: sys.vars.mk,v 1.2 2017/01/31 07:44:45 sjg Exp $ # # @(#) Copyright (c) 2003-2009, Simon J. Gerraty # @@ -67,5 +67,14 @@ M_tA = tA M_tA = C,.*,('cd' & \&\& 'pwd') 2> /dev/null || echo &,:sh .endif +.if ${MAKE_VERSION:U0} >= 20170130 +# M_cmpv allows comparing dotted versions like 3.1.2 +# ${3.1.2:L:${M_cmpv}} -> 3001002 +# we use big jumps to handle 3 digits per dot: +# ${123.456.789:L:${M_cmpv}} -> 123456789 +M_cmpv.units = 1 1000 1000000 +M_cmpv = S,., ,g:_:range:@i@+ $${_:[-$$i]} \* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,1:sh +.endif + # absoulte path to what we are reading. _PARSEDIR = ${.PARSEDIR:${M_tA}} Modified: vendor/NetBSD/bmake/dist/os.sh ============================================================================== --- vendor/NetBSD/bmake/dist/os.sh Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/os.sh Mon Mar 6 19:54:54 2017 (r314787) @@ -17,7 +17,7 @@ # Simon J. Gerraty # RCSid: -# $Id: os.sh,v 1.52 2016/06/17 05:15:14 sjg Exp $ +# $Id: os.sh,v 1.53 2017/01/11 20:01:09 sjg Exp $ # # @(#) Copyright (c) 1994 Simon J. Gerraty # @@ -206,7 +206,13 @@ esac TMP_DIRS=${TMP_DIRS:-"/tmp /var/tmp"} MACHINE_ARCH=${MACHINE_ARCH:-$MACHINE} +case "$MACHINE_ARCH" in +x86*64|amd64) MACHINE32_ARCH=i386;; +*64) MACHINE32_ARCH=`echo $MACHINE_ARCH | sed 's,64,32,'`;; +*) MACHINE32_ARCH=$MACHINE_ARCH;; +esac HOST_ARCH=${HOST_ARCH:-$MACHINE_ARCH} +HOST_ARCH32=${HOST_ARCH32:-$MACHINE32_ARCH} # we mount server:/share/arch/$SHARE_ARCH as /usr/local SHARE_ARCH_DEFAULT=$OS/$OSMAJOR.X/$HOST_ARCH SHARE_ARCH=${SHARE_ARCH:-$SHARE_ARCH_DEFAULT} @@ -215,7 +221,8 @@ TR=${TR:-tr} # Some people like have /share/$HOST_TARGET/bin etc. HOST_TARGET=`echo ${OS}${OSMAJOR}-$HOST_ARCH | tr -d / | toLower` -export HOST_TARGET +HOST_TARGET32=`echo ${OS}${OSMAJOR}-$HOST_ARCH32 | tr -d / | toLower` +export HOST_TARGET HOST_TARGET32 case `echo -n .` in -n*) N=; C="\c";; *) N=-n; C=;; esac Modified: vendor/NetBSD/bmake/dist/parse.c ============================================================================== --- vendor/NetBSD/bmake/dist/parse.c Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/parse.c Mon Mar 6 19:54:54 2017 (r314787) @@ -1,4 +1,4 @@ -/* $NetBSD: parse.c,v 1.217 2016/12/09 22:56:21 sjg Exp $ */ +/* $NetBSD: parse.c,v 1.218 2017/03/01 16:39:49 sjg Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -69,14 +69,14 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: parse.c,v 1.217 2016/12/09 22:56:21 sjg Exp $"; +static char rcsid[] = "$NetBSD: parse.c,v 1.218 2017/03/01 16:39:49 sjg Exp $"; #else #include #ifndef lint #if 0 static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94"; #else -__RCSID("$NetBSD: parse.c,v 1.217 2016/12/09 22:56:21 sjg Exp $"); +__RCSID("$NetBSD: parse.c,v 1.218 2017/03/01 16:39:49 sjg Exp $"); #endif #endif /* not lint */ #endif @@ -578,7 +578,11 @@ loadfile(const char *path, int fd) /* truncate malloc region to actual length (maybe not useful) */ if (lf->len > 0) { + /* as for mmap case, ensure trailing \n */ + if (lf->buf[lf->len - 1] != '\n') + lf->len++; lf->buf = bmake_realloc(lf->buf, lf->len); + lf->buf[lf->len - 1] = '\n'; } #ifdef HAVE_MMAP Modified: vendor/NetBSD/bmake/dist/unit-tests/varmisc.exp ============================================================================== --- vendor/NetBSD/bmake/dist/unit-tests/varmisc.exp Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/unit-tests/varmisc.exp Mon Mar 6 19:54:54 2017 (r314787) @@ -17,4 +17,9 @@ false FALSE do not evaluate or expand :? if discarding is set +year=2016 month=04 day=01 +date=20160401 +Version=123.456.789 == 123456789 +Literal=3.4.5 == 3004005 +We have target specific vars exit status 0 Modified: vendor/NetBSD/bmake/dist/unit-tests/varmisc.mk ============================================================================== --- vendor/NetBSD/bmake/dist/unit-tests/varmisc.mk Mon Mar 6 19:39:31 2017 (r314786) +++ vendor/NetBSD/bmake/dist/unit-tests/varmisc.mk Mon Mar 6 19:54:54 2017 (r314787) @@ -1,8 +1,9 @@ -# $Id: varmisc.mk,v 1.5 2015/10/12 17:10:48 sjg Exp $ +# $Id: varmisc.mk,v 1.9 2017/02/01 18:44:54 sjg Exp $ # # Miscellaneous variable tests. -all: unmatched_var_paren D_true U_true D_false U_false Q_lhs Q_rhs NQ_none +all: unmatched_var_paren D_true U_true D_false U_false Q_lhs Q_rhs NQ_none \ + strftime cmpv unmatched_var_paren: @echo ${foo::=foo-text} @@ -40,3 +41,22 @@ Q_rhs: NQ_none: @echo do not evaluate or expand :? if discarding @echo ${VSET:U${1:L:?${True}:${False}}} + +April1= 1459494000 + +# slightly contorted syntax to use utc via variable +strftime: + @echo ${year=%Y month=%m day=%d:L:gmtime=1459494000} + @echo date=${%Y%m%d:L:${gmtime=${April1}:L}} + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-vendor@freebsd.org Mon Mar 6 19:55:09 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38DFDCFC127; Mon, 6 Mar 2017 19:55:09 +0000 (UTC) (envelope-from sjg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E418410AF; Mon, 6 Mar 2017 19:55:08 +0000 (UTC) (envelope-from sjg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v26Jt8tY031470; Mon, 6 Mar 2017 19:55:08 GMT (envelope-from sjg@FreeBSD.org) Received: (from sjg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v26Jt8DL031469; Mon, 6 Mar 2017 19:55:08 GMT (envelope-from sjg@FreeBSD.org) Message-Id: <201703061955.v26Jt8DL031469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sjg set sender to sjg@FreeBSD.org using -f From: "Simon J. Gerraty" Date: Mon, 6 Mar 2017 19:55:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314788 - vendor/NetBSD/bmake/20170301 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Mar 2017 19:55:09 -0000 Author: sjg Date: Mon Mar 6 19:55:07 2017 New Revision: 314788 URL: https://svnweb.freebsd.org/changeset/base/314788 Log: tag bmake-20170301 Added: vendor/NetBSD/bmake/20170301/ - copied from r314787, vendor/NetBSD/bmake/dist/ From owner-svn-src-vendor@freebsd.org Tue Mar 7 12:41:12 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27EFCCFBBA6; Tue, 7 Mar 2017 12:41:12 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4564D15CE; Tue, 7 Mar 2017 12:41:11 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v27CfAPV047205; Tue, 7 Mar 2017 12:41:10 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v27Cf8P3047184; Tue, 7 Mar 2017 12:41:08 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201703071241.v27Cf8P3047184@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Tue, 7 Mar 2017 12:41:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314847 - in vendor/device-tree/dist: Bindings Bindings/arm Bindings/arm/altera Bindings/arm/bcm Bindings/arm/hisilicon Bindings/arm/keystone Bindings/arm/marvell Bindings/arm/mediatek ... X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Mar 2017 12:41:12 -0000 Author: manu Date: Tue Mar 7 12:41:06 2017 New Revision: 314847 URL: https://svnweb.freebsd.org/changeset/base/314847 Log: Update to Linux 4.10 Added: vendor/device-tree/dist/Bindings/arm/amlogic,scpi.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm23550-cpu-method.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm23550.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/bcm/brcm,ns2.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/cpu-capacity.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/hisilicon/hi3519-sysctrl.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/juno,scpi.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/keystone/ti,sci.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/marvell/marvell,orion5x.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,bdpsys.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,ethsys.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,hifsys.txt (contents, props changed) vendor/device-tree/dist/Bindings/arm/swir.txt (contents, props changed) vendor/device-tree/dist/Bindings/ata/brcm,sata-brcm.txt (contents, props changed) vendor/device-tree/dist/Bindings/auxdisplay/ vendor/device-tree/dist/Bindings/auxdisplay/img-ascii-lcd.txt (contents, props changed) vendor/device-tree/dist/Bindings/bus/nvidia,tegra20-gmi.txt (contents, props changed) vendor/device-tree/dist/Bindings/bus/nvidia,tegra210-aconnect.txt (contents, props changed) vendor/device-tree/dist/Bindings/bus/qcom,ebi2.txt (contents, props changed) vendor/device-tree/dist/Bindings/bus/ti,da850-mstpri.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/amlogic,gxbb-aoclkc.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/amlogic,gxbb-clkc.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/armada3700-periph-clock.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/armada3700-tbg-clock.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/armada3700-xtal-clock.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/brcm,bcm53573-ilp.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/hisi-crg.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/qcom,rpmcc.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/rockchip,rk1108-cru.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/sunxi-ccu.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/uniphier-clock.txt (contents, props changed) vendor/device-tree/dist/Bindings/clock/zx296718-clk.txt (contents, props changed) vendor/device-tree/dist/Bindings/cpufreq/brcm,stb-avs-cpu-freq.txt (contents, props changed) vendor/device-tree/dist/Bindings/devfreq/event/rockchip-dfi.txt (contents, props changed) vendor/device-tree/dist/Bindings/devfreq/rk3399_dmc.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/amlogic,meson-vpu.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/arm,malidp.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/bridge/dumb-vga-dac.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/bridge/sii902x.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/bridge/ti,tfp410.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/bridge/toshiba,tc358767.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/ht16k33.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/mediatek/mediatek,hdmi.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/msm/mdp4.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/msm/mdp5.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/auo,g133han01.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/auo,g185han01.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/auo,t215hvn01.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/chunghwa,claa070wp03xg.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/innolux,g101ice-l01.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/jdi,lt070me05000.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/lg,lp079qx1-sp0v.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/lg,lp097qx1-spa1.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/nvd,9128.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/samsung,lsn122dl01-c01.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/sharp,lq101k1ly04.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/sharp,lq123p1jx31.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/sharp,lq150x1lg11.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/starry,kr122ea0sra.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/panel/tpo,tpg110.txt (contents, props changed) vendor/device-tree/dist/Bindings/display/zte,vou.txt (contents, props changed) vendor/device-tree/dist/Bindings/dma/mv-xor-v2.txt (contents, props changed) vendor/device-tree/dist/Bindings/dma/st_fdma.txt (contents, props changed) vendor/device-tree/dist/Bindings/dma/xilinx/zynqmp_dma.txt (contents, props changed) vendor/device-tree/dist/Bindings/extcon/qcom,pm8941-misc.txt (contents, props changed) vendor/device-tree/dist/Bindings/firmware/ vendor/device-tree/dist/Bindings/firmware/meson/ vendor/device-tree/dist/Bindings/firmware/meson/meson_sm.txt (contents, props changed) vendor/device-tree/dist/Bindings/firmware/nvidia,tegra186-bpmp.txt (contents, props changed) vendor/device-tree/dist/Bindings/firmware/qcom,scm.txt (contents, props changed) vendor/device-tree/dist/Bindings/fpga/altera-fpga2sdram-bridge.txt (contents, props changed) vendor/device-tree/dist/Bindings/fpga/altera-freeze-bridge.txt (contents, props changed) vendor/device-tree/dist/Bindings/fpga/altera-hps2fpga-bridge.txt (contents, props changed) vendor/device-tree/dist/Bindings/fpga/altera-socfpga-a10-fpga-mgr.txt (contents, props changed) vendor/device-tree/dist/Bindings/fpga/fpga-region.txt (contents, props changed) vendor/device-tree/dist/Bindings/gpio/brcm,bcm6345-gpio.txt (contents, props changed) vendor/device-tree/dist/Bindings/gpio/gpio-aspeed.txt (contents, props changed) vendor/device-tree/dist/Bindings/gpio/gpio-axp209.txt (contents, props changed) vendor/device-tree/dist/Bindings/gpio/gpio-max77620.txt (contents, props changed) vendor/device-tree/dist/Bindings/gpio/gpio-tpic2810.txt (contents, props changed) vendor/device-tree/dist/Bindings/gpio/gpio-ts4900.txt (contents, props changed) vendor/device-tree/dist/Bindings/gpio/gpio_oxnas.txt (contents, props changed) vendor/device-tree/dist/Bindings/hwmon/apm-xgene-hwmon.txt (contents, props changed) vendor/device-tree/dist/Bindings/hwmon/jc42.txt (contents, props changed) vendor/device-tree/dist/Bindings/hwmon/ltc4151.txt (contents, props changed) vendor/device-tree/dist/Bindings/hwmon/max6650.txt (contents, props changed) vendor/device-tree/dist/Bindings/hwmon/mcp3021.txt (contents, props changed) vendor/device-tree/dist/Bindings/hwmon/tmp108.txt (contents, props changed) vendor/device-tree/dist/Bindings/i2c/i2c-arb.txt (contents, props changed) vendor/device-tree/dist/Bindings/i2c/i2c-gate.txt (contents, props changed) vendor/device-tree/dist/Bindings/i2c/i2c-imx-lpi2c.txt (contents, props changed) vendor/device-tree/dist/Bindings/i2c/nxp,pca9541.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/accel/dmard06.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/accel/kionix,kxsd9.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/adc/brcm,iproc-static-adc.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/adc/envelope-detector.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/adc/max1363.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/adc/mt6577_auxadc.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/adc/st,stm32-adc.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/adc/ti-adc12138.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/adc/ti-adc161s626.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/chemical/atlas,ec-sm.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/chemical/atlas,orp-sm.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/dac/ad5755.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/dac/dpot-dac.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/dac/mcp4725.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/gyroscope/ vendor/device-tree/dist/Bindings/iio/gyroscope/invensense,mpu3050.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/humidity/hts221.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/light/isl29018.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/light/tsl2583.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/magnetometer/ak8974.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/potentiostat/ vendor/device-tree/dist/Bindings/iio/potentiostat/lmp91000.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/pressure/zpa2326.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/proximity/sx9500.txt (contents, props changed) vendor/device-tree/dist/Bindings/iio/temperature/maxim_thermocouple.txt (contents, props changed) vendor/device-tree/dist/Bindings/infiniband/ vendor/device-tree/dist/Bindings/infiniband/hisilicon-hns-roce.txt (contents, props changed) vendor/device-tree/dist/Bindings/input/adc-keys.txt (contents, props changed) vendor/device-tree/dist/Bindings/input/atmel,captouch.txt (contents, props changed) vendor/device-tree/dist/Bindings/input/gpio-decoder.txt (contents, props changed) vendor/device-tree/dist/Bindings/input/raydium_i2c_ts.txt (contents, props changed) vendor/device-tree/dist/Bindings/input/touchscreen/ektf2127.txt (contents, props changed) vendor/device-tree/dist/Bindings/input/touchscreen/melfas_mip4.txt (contents, props changed) vendor/device-tree/dist/Bindings/input/touchscreen/silead_gsl1680.txt (contents, props changed) vendor/device-tree/dist/Bindings/input/touchscreen/sis_i2c.txt (contents, props changed) vendor/device-tree/dist/Bindings/interrupt-controller/aspeed,ast2400-vic.txt (contents, props changed) vendor/device-tree/dist/Bindings/interrupt-controller/jcore,aic.txt (contents, props changed) vendor/device-tree/dist/Bindings/interrupt-controller/marvell,armada-8k-pic.txt (contents, props changed) vendor/device-tree/dist/Bindings/interrupt-controller/st,stm32-exti.txt (contents, props changed) vendor/device-tree/dist/Bindings/iommu/msm,iommu-v0.txt (contents, props changed) vendor/device-tree/dist/Bindings/ipmi/ vendor/device-tree/dist/Bindings/ipmi/aspeed,ast2400-ibt-bmc.txt (contents, props changed) vendor/device-tree/dist/Bindings/ipmi/ipmi-smic.txt (contents, props changed) vendor/device-tree/dist/Bindings/leds/leds-is31fl319x.txt (contents, props changed) vendor/device-tree/dist/Bindings/leds/leds-pca9532.txt (contents, props changed) vendor/device-tree/dist/Bindings/leds/leds-pm8058.txt (contents, props changed) vendor/device-tree/dist/Bindings/mailbox/brcm,iproc-pdc-mbox.txt (contents, props changed) vendor/device-tree/dist/Bindings/mailbox/meson-mhu.txt (contents, props changed) vendor/device-tree/dist/Bindings/mailbox/nvidia,tegra186-hsp.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/atmel-isc.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/i2c/ad5820.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/mediatek-mdp.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/mediatek-vcodec.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/mediatek-vpu.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/nokia,n900-ir vendor/device-tree/dist/Bindings/media/renesas,fcp.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/renesas,fdp1.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/s5p-cec.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/st,st-hva.txt (contents, props changed) vendor/device-tree/dist/Bindings/media/stih-cec.txt (contents, props changed) vendor/device-tree/dist/Bindings/memory-controllers/atmel,ebi.txt (contents, props changed) vendor/device-tree/dist/Bindings/memory-controllers/fsl/ddr.txt (contents, props changed) vendor/device-tree/dist/Bindings/memory-controllers/ti-da8xx-ddrctl.txt (contents, props changed) vendor/device-tree/dist/Bindings/mfd/ac100.txt (contents, props changed) vendor/device-tree/dist/Bindings/mfd/altera-a10sr.txt (contents, props changed) vendor/device-tree/dist/Bindings/mfd/aspeed-scu.txt (contents, props changed) vendor/device-tree/dist/Bindings/mfd/lp873x.txt (contents, props changed) vendor/device-tree/dist/Bindings/mfd/samsung,exynos5433-lpass.txt (contents, props changed) vendor/device-tree/dist/Bindings/mmc/amlogic,meson-gx.txt (contents, props changed) vendor/device-tree/dist/Bindings/mmc/brcm,sdhci-brcmstb.txt (contents, props changed) vendor/device-tree/dist/Bindings/mmc/sdhci-cadence.txt (contents, props changed) vendor/device-tree/dist/Bindings/mmc/sdhci.txt (contents, props changed) vendor/device-tree/dist/Bindings/mtd/atmel-quadspi.txt (contents, props changed) vendor/device-tree/dist/Bindings/mtd/cadence-quadspi.txt (contents, props changed) vendor/device-tree/dist/Bindings/mtd/hisilicon,fmc-spi-nor.txt (contents, props changed) vendor/device-tree/dist/Bindings/mtd/mtk-nand.txt (contents, props changed) vendor/device-tree/dist/Bindings/mtd/oxnas-nand.txt (contents, props changed) vendor/device-tree/dist/Bindings/mtd/samsung-s3c2410.txt (contents, props changed) vendor/device-tree/dist/Bindings/mtd/tango-nand.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/apm-xgene-mdio.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/brcm,amac.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/brcm,bgmac-nsp.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/brcm,mdio-mux-iproc.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/can/rcar_canfd.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/cirrus,cs89x0.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/dsa/b53.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/dsa/qca8k.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/hisilicon-femac-mdio.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/hisilicon-femac.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/mscc-phy-vsc8531.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/oxnas-dwmac.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/qcom-emac.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/stm32-dwmac.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/wireless/esp,esp8089.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/wireless/marvell-8xxx.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/wireless/qca,ath9k.txt (contents, props changed) vendor/device-tree/dist/Bindings/net/xilinx_gmii2rgmii.txt (contents, props changed) vendor/device-tree/dist/Bindings/nvmem/amlogic-efuse.txt (contents, props changed) vendor/device-tree/dist/Bindings/nvmem/brcm,ocotp.txt (contents, props changed) vendor/device-tree/dist/Bindings/nvmem/lpc1850-otp.txt (contents, props changed) vendor/device-tree/dist/Bindings/pci/aardvark-pci.txt (contents, props changed) vendor/device-tree/dist/Bindings/pci/axis,artpec6-pcie.txt (contents, props changed) vendor/device-tree/dist/Bindings/pci/pci-iommu.txt (contents, props changed) vendor/device-tree/dist/Bindings/pci/rockchip-pcie.txt (contents, props changed) vendor/device-tree/dist/Bindings/perf/ vendor/device-tree/dist/Bindings/perf/apm-xgene-pmu.txt (contents, props changed) vendor/device-tree/dist/Bindings/phy/bcm-ns-usb3-phy.txt (contents, props changed) vendor/device-tree/dist/Bindings/phy/brcm,mdio-mux-bus-pci.txt (contents, props changed) vendor/device-tree/dist/Bindings/phy/meson8b-usb2-phy.txt (contents, props changed) vendor/device-tree/dist/Bindings/phy/phy-da8xx-usb.txt (contents, props changed) vendor/device-tree/dist/Bindings/phy/phy-rockchip-inno-usb2.txt (contents, props changed) vendor/device-tree/dist/Bindings/phy/phy-rockchip-typec.txt (contents, props changed) vendor/device-tree/dist/Bindings/phy/rockchip-pcie-phy.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/brcm,nsp-pinmux.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/nvidia,tegra124-dpaux-padctl.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/oxnas,pinctrl.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/pinctrl-aspeed.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/pinctrl-max77620.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/pinctrl-sx150x.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/qcom,mdm9615-pinctrl.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/qcom,msm8994-pinctrl.txt (contents, props changed) vendor/device-tree/dist/Bindings/pinctrl/ti,da850-pupd.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/domain-idle-state.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/max8903-charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/renesas,apmu.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/reset/axxia-reset.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/reset/brcm,bcm21664-resetmgr.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/reset/imx-snvs-poweroff.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/reset/msm-poweroff.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/reset/qnap-poweroff.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/reset/reboot-mode.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/reset/restart-poweroff.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/reset/syscon-reboot-mode.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/ vendor/device-tree/dist/Bindings/power/supply/ab8500/ vendor/device-tree/dist/Bindings/power/supply/ab8500/btemp.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/ab8500/chargalg.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/ab8500/charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/ab8500/fg.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/act8945a-charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/axp20x_usb_power.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/bq2415x.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/bq24257.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/bq25890.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/charger-manager.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/da9150-charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/da9150-fg.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/gpio-charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/isp1704.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/lp8727_charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/ltc2941.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/max17042_battery.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/max8925_batter.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/olpc_battery.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/power_supply.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/qcom,coincell-charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/qcom_smbb.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/rt9455_charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/rx51-battery.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/sbs_sbs-battery.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/ti,bq24735.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/tps65090.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/tps65217_charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/power/supply/twl-charger.txt (contents, props changed) vendor/device-tree/dist/Bindings/powerpc/opal/ vendor/device-tree/dist/Bindings/powerpc/opal/oppanel-opal.txt (contents, props changed) vendor/device-tree/dist/Bindings/pwm/brcm,iproc-pwm.txt (contents, props changed) vendor/device-tree/dist/Bindings/pwm/google,cros-ec-pwm.txt (contents, props changed) vendor/device-tree/dist/Bindings/pwm/pwm-hibvt.txt (contents, props changed) vendor/device-tree/dist/Bindings/pwm/pwm-meson.txt (contents, props changed) vendor/device-tree/dist/Bindings/pwm/st,stmpe-pwm.txt (contents, props changed) vendor/device-tree/dist/Bindings/regulator/ltc3676.txt (contents, props changed) vendor/device-tree/dist/Bindings/regulator/mt6323-regulator.txt (contents, props changed) vendor/device-tree/dist/Bindings/remoteproc/qcom,adsp.txt (contents, props changed) vendor/device-tree/dist/Bindings/remoteproc/qcom,q6v5.txt (contents, props changed) vendor/device-tree/dist/Bindings/remoteproc/qcom,wcnss-pil.txt (contents, props changed) vendor/device-tree/dist/Bindings/reserved-memory/ramoops.txt (contents, props changed) vendor/device-tree/dist/Bindings/reset/amlogic,meson-reset.txt (contents, props changed) vendor/device-tree/dist/Bindings/reset/renesas,rst.txt (contents, props changed) vendor/device-tree/dist/Bindings/reset/st,stm32-rcc.txt (contents, props changed) vendor/device-tree/dist/Bindings/reset/ti-syscon-reset.txt (contents, props changed) vendor/device-tree/dist/Bindings/reset/uniphier-reset.txt (contents, props changed) vendor/device-tree/dist/Bindings/rng/amlogic,meson-rng.txt (contents, props changed) vendor/device-tree/dist/Bindings/rtc/epson,rtc7301.txt (contents, props changed) vendor/device-tree/dist/Bindings/rtc/epson,rx8900.txt (contents, props changed) vendor/device-tree/dist/Bindings/rtc/ingenic,jz4740-rtc.txt (contents, props changed) vendor/device-tree/dist/Bindings/security/tpm/ibmvtpm.txt (contents, props changed) vendor/device-tree/dist/Bindings/security/tpm/tpm-i2c.txt (contents, props changed) vendor/device-tree/dist/Bindings/security/tpm/tpm_tis_mmio.txt (contents, props changed) vendor/device-tree/dist/Bindings/security/tpm/tpm_tis_spi.txt (contents, props changed) vendor/device-tree/dist/Bindings/serial/st,stm32-usart.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/ vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/cpm/ vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/cpm.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/cpm/brg.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/cpm/i2c.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/cpm/pic.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/cpm/usb.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/gpio.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/network.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/qe/ vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/qe.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/qe/firmware.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/qe/par_io.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/qe/pincfg.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/qe/ucc.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/qe/usb.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/serial.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/cpm_qe/uqe_serial.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/fsl/guts.txt (contents, props changed) vendor/device-tree/dist/Bindings/soc/qcom/qcom,wcnss.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/adi,adau7002.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/axentia,tse850-pcm5142.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/brcm,cygnus-audio.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/cs35l33.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/cs35l34.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/cs42l42.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/cs53l30.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/max98504.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/max9860.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/mt2701-afe-pcm.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/mt2701-cs42448.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/nau8810.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/nvidia,tegra-audio-sgtl5000.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/qcom,msm8916-wcd-analog.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/qcom,msm8916-wcd-digital.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/rockchip,rk3399-gru-sound.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/rt5660.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/rt5663.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/rt5665.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/samsung,tm2-audio.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/simple-scu-card.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/sun4i-i2s.txt (contents, props changed) vendor/device-tree/dist/Bindings/sound/sun8i-codec-analog.txt (contents, props changed) vendor/device-tree/dist/Bindings/spi/brcm,spi-bcm-qspi.txt (contents, props changed) vendor/device-tree/dist/Bindings/spi/jcore,spi.txt (contents, props changed) vendor/device-tree/dist/Bindings/spi/spi-armada-3700.txt (contents, props changed) vendor/device-tree/dist/Bindings/spi/spi-clps711x.txt (contents, props changed) vendor/device-tree/dist/Bindings/spi/spi-fsl-lpspi.txt (contents, props changed) vendor/device-tree/dist/Bindings/thermal/brcm,bcm2835-thermal.txt (contents, props changed) vendor/device-tree/dist/Bindings/thermal/max77620_thermal.txt (contents, props changed) vendor/device-tree/dist/Bindings/thermal/qcom-tsens.txt (contents, props changed) vendor/device-tree/dist/Bindings/timer/ezchip,nps400-timer0.txt (contents, props changed) vendor/device-tree/dist/Bindings/timer/ezchip,nps400-timer1.txt (contents, props changed) vendor/device-tree/dist/Bindings/timer/jcore,pit.txt (contents, props changed) vendor/device-tree/dist/Bindings/timer/oxsemi,rps-timer.txt (contents, props changed) vendor/device-tree/dist/Bindings/timer/rockchip,rk-timer.txt (contents, props changed) vendor/device-tree/dist/Bindings/ufs/tc-dwc-g210-pltfrm.txt (contents, props changed) vendor/device-tree/dist/Bindings/usb/da8xx-usb.txt (contents, props changed) vendor/device-tree/dist/Bindings/usb/dwc3-cavium.txt (contents, props changed) vendor/device-tree/dist/Bindings/usb/mt8173-mtu3.txt (contents, props changed) vendor/device-tree/dist/Bindings/usb/ohci-da8xx.txt (contents, props changed) vendor/device-tree/dist/Bindings/usb/rockchip,dwc3.txt (contents, props changed) vendor/device-tree/dist/Bindings/usb/s3c2410-usb.txt (contents, props changed) vendor/device-tree/dist/Bindings/usb/usb4604.txt (contents, props changed) vendor/device-tree/dist/Bindings/video/bridge/sil-sii8620.txt (contents, props changed) vendor/device-tree/dist/Bindings/watchdog/aspeed-wdt.txt (contents, props changed) vendor/device-tree/dist/Bindings/watchdog/meson-gxbb-wdt.txt (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/gxbb-aoclkc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/gxbb-clkc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/hi3516cv300-clock.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/histb-clock.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/maxim,max77620.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/mt2701-clk.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/oxsemi,ox810se.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/oxsemi,ox820.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/qcom,gcc-mdm9615.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/qcom,gcc-msm8994.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/qcom,lcc-mdm9615.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/qcom,rpmcc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/r8a7743-cpg-mssr.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/r8a7745-cpg-mssr.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/r8a7792-clock.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/r8a7796-cpg-mssr.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/rk1108-cru.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/sun50i-a64-ccu.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/sun6i-a31-ccu.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/sun8i-a23-a33-ccu.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/sun8i-h3-ccu.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/tegra186-clock.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/clock/zx296718-clock.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/display/ vendor/device-tree/dist/include/dt-bindings/display/tda998x.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/gpio/meson-gxl-gpio.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/leds/leds-pca9532.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/mailbox/ vendor/device-tree/dist/include/dt-bindings/mailbox/tegra186-hsp.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/memory/mt2701-larb-port.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/mfd/stm32f4-rcc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/pinctrl/keystone.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/pinctrl/samsung.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/pinctrl/stm32f746-pinfunc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/power/mt2701-power.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/power/r8a7743-sysc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/power/r8a7745-sysc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/power/r8a7792-sysc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/power/r8a7796-sysc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/power/tegra186-powergate.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/amlogic,meson-gxbb-reset.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/amlogic,meson8b-reset.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/gxbb-aoclkc.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/mt2701-resets.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/oxsemi,ox810se.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/oxsemi,ox820.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/qcom,gcc-mdm9615.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/sun50i-a64-ccu.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/sun6i-a31-ccu.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/sun8i-a23-a33-ccu.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/sun8i-h3-ccu.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/tegra186-reset.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/reset/ti-syscon.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/soc/rockchip,boot-mode.h (contents, props changed) vendor/device-tree/dist/include/dt-bindings/sound/cs42l42.h (contents, props changed) vendor/device-tree/dist/src/arc/ vendor/device-tree/dist/src/arc/abilis_tb100.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/abilis_tb100_dvk.dts (contents, props changed) vendor/device-tree/dist/src/arc/abilis_tb101.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/abilis_tb101_dvk.dts (contents, props changed) vendor/device-tree/dist/src/arc/abilis_tb10x.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/axc001.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/axc003.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/axc003_idu.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/axs101.dts (contents, props changed) vendor/device-tree/dist/src/arc/axs103.dts (contents, props changed) vendor/device-tree/dist/src/arc/axs103_idu.dts (contents, props changed) vendor/device-tree/dist/src/arc/axs10x_mb.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/eznps.dts (contents, props changed) vendor/device-tree/dist/src/arc/haps_hs.dts (contents, props changed) vendor/device-tree/dist/src/arc/haps_hs_idu.dts (contents, props changed) vendor/device-tree/dist/src/arc/nsim_700.dts (contents, props changed) vendor/device-tree/dist/src/arc/nsim_hs.dts (contents, props changed) vendor/device-tree/dist/src/arc/nsim_hs_idu.dts (contents, props changed) vendor/device-tree/dist/src/arc/nsimosci.dts (contents, props changed) vendor/device-tree/dist/src/arc/nsimosci_hs.dts (contents, props changed) vendor/device-tree/dist/src/arc/nsimosci_hs_idu.dts (contents, props changed) vendor/device-tree/dist/src/arc/skeleton.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/skeleton_hs.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/skeleton_hs_idu.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/vdk_axc003.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/vdk_axc003_idu.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/vdk_axs10x_mb.dtsi (contents, props changed) vendor/device-tree/dist/src/arc/vdk_hs38.dts (contents, props changed) vendor/device-tree/dist/src/arc/vdk_hs38_smp.dts (contents, props changed) vendor/device-tree/dist/src/arm/am571x-idk.dts (contents, props changed) vendor/device-tree/dist/src/arm/am57xx-beagle-x15-common.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/am57xx-beagle-x15-revb1.dts (contents, props changed) vendor/device-tree/dist/src/arm/arm-realview-eb-11mp-bbrevd-ctrevb.dts (contents, props changed) vendor/device-tree/dist/src/arm/arm-realview-eb-11mp-bbrevd.dts (contents, props changed) vendor/device-tree/dist/src/arm/arm-realview-eb-11mp-ctrevb.dts (contents, props changed) vendor/device-tree/dist/src/arm/arm-realview-eb-a9mp-bbrevd.dts (contents, props changed) vendor/device-tree/dist/src/arm/arm-realview-eb-bbrevd.dts (contents, props changed) vendor/device-tree/dist/src/arm/arm-realview-eb-bbrevd.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/armada-385-turris-omnia.dts (contents, props changed) vendor/device-tree/dist/src/arm/armada-390-db.dts (contents, props changed) vendor/device-tree/dist/src/arm/armada-395-gp.dts (contents, props changed) vendor/device-tree/dist/src/arm/armada-395.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/at91-sam9_l9260.dts (contents, props changed) vendor/device-tree/dist/src/arm/at91sam9260ek.dts (contents, props changed) vendor/device-tree/dist/src/arm/axp809.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm23550-sparrow.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm23550.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm2835-rpi-zero.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm283x-rpi-smsc9512.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm283x-rpi-smsc9514.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm283x-rpi-usb-host.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm4708-luxul-xap-1510.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm4709-tplink-archer-c9-v1.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm4709.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm47094-luxul-xwr-3100.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm47094-netgear-r8500.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm47094.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm47189-tenda-ac9.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm5301x-nand-cs0-bch1.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm5301x-nand-cs0-bch4.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm5301x-nand-cs0.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm53573.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/bcm953012er.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm958522er.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm958525er.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm958525xmc.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm958622hr.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm958623hr.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm958625hr.dts (contents, props changed) vendor/device-tree/dist/src/arm/bcm988312hr.dts (contents, props changed) vendor/device-tree/dist/src/arm/cloudengines-pogoplug-series-3.dts (contents, props changed) vendor/device-tree/dist/src/arm/da850-lcdk.dts (contents, props changed) vendor/device-tree/dist/src/arm/dra71-evm.dts (contents, props changed) vendor/device-tree/dist/src/arm/dra72-evm-tps65917.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/ep7209.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/ep7211-edb7211.dts (contents, props changed) vendor/device-tree/dist/src/arm/ep7211.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/exynos-mfc-reserved-memory.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/exynos4412-itop-elite.dts (contents, props changed) vendor/device-tree/dist/src/arm/exynos4412-itop-scp-core.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/exynos5410-odroidxu.dts (contents, props changed) vendor/device-tree/dist/src/arm/exynos54xx-odroidxu-leds.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/exynos54xx.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/hi3519-demb.dts (contents, props changed) vendor/device-tree/dist/src/arm/hi3519.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx23-sansa.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx23-xfi3.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx53-usbarmory.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6dl-colibri-eval-v3.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6dl-gw553x.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6dl-icore.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6dl-ts4900.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6q-gw553x.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6q-h100.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6q-icore.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6q-nitrogen6_som2.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6q-ts4900.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6q-utilite-pro.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6qdl-colibri.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx6qdl-gw553x.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx6qdl-icore.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx6qdl-nitrogen6_som2.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx6qdl-ts4900.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx6sx-udoo-neo-basic.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6sx-udoo-neo-extended.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6sx-udoo-neo-full.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6sx-udoo-neo.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx6ul-geam-kit.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6ul-geam.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx6ul-liteboard.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6ul-litesom.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx6ull-14x14-evk.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx6ull-pinfunc.h (contents, props changed) vendor/device-tree/dist/src/arm/imx6ull.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx7-colibri-eval-v3.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx7-colibri.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx7d-colibri-eval-v3.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx7d-colibri.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx7s-colibri-eval-v3.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx7s-colibri.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/imx7s-warp.dts (contents, props changed) vendor/device-tree/dist/src/arm/imx7s.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/omap4-droid4-xt894.dts (contents, props changed) vendor/device-tree/dist/src/arm/orion5x-linkstation-lschl.dts (contents, props changed) vendor/device-tree/dist/src/arm/orion5x-mv88f5181.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/orion5x-netgear-wnr854t.dts (contents, props changed) vendor/device-tree/dist/src/arm/ox820.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/pxa25x.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/qcom-apq8060-dragonboard.dts (contents, props changed) vendor/device-tree/dist/src/arm/qcom-apq8064-arrow-sd-600eval-pins.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/qcom-apq8064-arrow-sd-600eval.dts (contents, props changed) vendor/device-tree/dist/src/arm/qcom-mdm9615-wp8548-mangoh-green.dts (contents, props changed) vendor/device-tree/dist/src/arm/qcom-mdm9615-wp8548.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/qcom-mdm9615.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/qcom-msm8974-lge-nexus5-hammerhead.dts (contents, props changed) vendor/device-tree/dist/src/arm/r7s72100-rskrza1.dts (contents, props changed) vendor/device-tree/dist/src/arm/r8a7743-sk-rzg1m.dts (contents, props changed) vendor/device-tree/dist/src/arm/r8a7743.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/r8a7745-sk-rzg1e.dts (contents, props changed) vendor/device-tree/dist/src/arm/r8a7745.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/r8a7792-blanche.dts (contents, props changed) vendor/device-tree/dist/src/arm/r8a7792-wheat.dts (contents, props changed) vendor/device-tree/dist/src/arm/r8a7792.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/rk1108-evb.dts (contents, props changed) vendor/device-tree/dist/src/arm/rk1108.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/rk3066a-mk808.dts (contents, props changed) vendor/device-tree/dist/src/arm/rk3188-px3-evb.dts (contents, props changed) vendor/device-tree/dist/src/arm/rk3229-evb.dts (contents, props changed) vendor/device-tree/dist/src/arm/rk322x.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/rk3288-fennec.dts (contents, props changed) vendor/device-tree/dist/src/arm/rk3288-firefly-reload-core.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/rk3288-firefly-reload.dts (contents, props changed) vendor/device-tree/dist/src/arm/rk3288-veyron-analog-audio.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/sama5d3xmb_emac.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/sama5d3xmb_gmac.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/socfpga_arria10_socdk_qspi.dts (contents, props changed) vendor/device-tree/dist/src/arm/socfpga_cyclone5_sodia.dts (contents, props changed) vendor/device-tree/dist/src/arm/stih410-b2260.dts (contents, props changed) vendor/device-tree/dist/src/arm/stm32746g-eval.dts (contents, props changed) vendor/device-tree/dist/src/arm/stm32f746.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/sun5i-a13-empire-electronix-m712.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun5i-gr8-chip-pro.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun5i-gr8-evb.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun5i-gr8.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/sun5i-reference-design-tablet.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/sun6i-a31s-inet-q972.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun6i-reference-design-tablet.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/sun7i-a20-bananapi-m1-plus.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-a23-inet86dz.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-a23-polaroid-mid2407pxe03.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-a33-inet-d978-rev2.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-a33-olinuxino.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-h3-bananapi-m2-plus.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-h3-nanopi-m1.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-h3-nanopi-neo.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-h3-nanopi.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-h3-orangepi-lite.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-h3-orangepi-pc-plus.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-h3-orangepi-plus2e.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-r16-parrot.dts (contents, props changed) vendor/device-tree/dist/src/arm/sun8i-reference-design-tablet.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/sunxi-reference-design-tablet.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/tegra124-apalis-emc.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/tegra124-apalis-eval.dts (contents, props changed) vendor/device-tree/dist/src/arm/tegra124-apalis.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-ld4-ref.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-ld4.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-ld6b-ref.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-ld6b.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-pro4-ace.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-pro4-ref.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-pro4-sanji.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-pro4.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-pro5.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-pxs2-gentil.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-pxs2-vodka.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-pxs2.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-sld3-ref.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-sld3.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-sld8-ref.dts (contents, props changed) vendor/device-tree/dist/src/arm/uniphier-sld8.dtsi (contents, props changed) vendor/device-tree/dist/src/arm/zynq-microzed.dts (contents, props changed) vendor/device-tree/dist/src/arm64/allwinner/ vendor/device-tree/dist/src/arm64/allwinner/sun50i-a64-pine64-plus.dts (contents, props changed) vendor/device-tree/dist/src/arm64/allwinner/sun50i-a64-pine64.dts (contents, props changed) vendor/device-tree/dist/src/arm64/allwinner/sun50i-a64.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gx-p23x-q20x.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gx.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxbb-nexbox-a95x.dts (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxl-nexbox-a95x.dts (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxl-s905d-p230.dts (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxl-s905d-p231.dts (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxl-s905d.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxl-s905x-p212.dts (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxl-s905x.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxl.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxm-nexbox-a1.dts (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxm-s912-q200.dts (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxm-s912-q201.dts (contents, props changed) vendor/device-tree/dist/src/arm64/amlogic/meson-gxm.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/broadcom/bcm2835-rpi.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/broadcom/bcm2837-rpi-3-b.dts (contents, props changed) vendor/device-tree/dist/src/arm64/broadcom/bcm2837.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/broadcom/bcm283x-rpi-smsc9514.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/broadcom/bcm283x-rpi-usb-host.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/broadcom/bcm283x.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/exynos/exynos5433-pinctrl.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/exynos/exynos5433-tm2.dts (contents, props changed) vendor/device-tree/dist/src/arm64/exynos/exynos5433-tm2e.dts (contents, props changed) vendor/device-tree/dist/src/arm64/exynos/exynos5433-tmu-g3d-sensor-conf.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/exynos/exynos5433-tmu-sensor-conf.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/exynos/exynos5433-tmu.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/exynos/exynos5433.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/freescale/fsl-ls1046a-qds.dts (contents, props changed) vendor/device-tree/dist/src/arm64/freescale/fsl-ls1046a-rdb.dts (contents, props changed) vendor/device-tree/dist/src/arm64/freescale/fsl-ls1046a.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/hisilicon/hip07-d05.dts (contents, props changed) vendor/device-tree/dist/src/arm64/hisilicon/hip07.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/lg/lg1313-ref.dts (contents, props changed) vendor/device-tree/dist/src/arm64/lg/lg1313.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/marvell/armada-3720-espressobin.dts (contents, props changed) vendor/device-tree/dist/src/arm64/marvell/armada-8040-db.dts (contents, props changed) vendor/device-tree/dist/src/arm64/marvell/armada-cp110-slave.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/mediatek/mt6755-evb.dts (contents, props changed) vendor/device-tree/dist/src/arm64/mediatek/mt6755.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/nvidia/tegra186-p2771-0000.dts (contents, props changed) vendor/device-tree/dist/src/arm64/nvidia/tegra186-p3310.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/nvidia/tegra186.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/apq8096-db820c-pins.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/apq8096-db820c-pmic-pins.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/apq8096-db820c.dts (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/apq8096-db820c.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/msm8992-bullhead-rev-101.dts (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/msm8992-pins.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/msm8992.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/msm8994-angler-rev-101.dts (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/msm8994-pins.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/msm8994.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/qcom/msm8996-pins.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/renesas/r8a7795-h3ulcb.dts (contents, props changed) vendor/device-tree/dist/src/arm64/renesas/r8a7796-m3ulcb.dts (contents, props changed) vendor/device-tree/dist/src/arm64/renesas/r8a7796-salvator-x.dts (contents, props changed) vendor/device-tree/dist/src/arm64/renesas/r8a7796.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/rockchip/rk3368-orion-r68-meta.dts (contents, props changed) vendor/device-tree/dist/src/arm64/rockchip/rk3368-px5-evb.dts (contents, props changed) vendor/device-tree/dist/src/arm64/socionext/uniphier-ld11-ref.dts (contents, props changed) vendor/device-tree/dist/src/arm64/socionext/uniphier-ld11.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/socionext/uniphier-ld20-ref.dts (contents, props changed) vendor/device-tree/dist/src/arm64/socionext/uniphier-ld20.dtsi (contents, props changed) vendor/device-tree/dist/src/arm64/zte/ vendor/device-tree/dist/src/arm64/zte/zx296718-evb.dts (contents, props changed) vendor/device-tree/dist/src/arm64/zte/zx296718.dtsi (contents, props changed) vendor/device-tree/dist/src/c6x/ vendor/device-tree/dist/src/c6x/dsk6455.dts (contents, props changed) vendor/device-tree/dist/src/c6x/evmc6457.dts (contents, props changed) vendor/device-tree/dist/src/c6x/evmc6472.dts (contents, props changed) vendor/device-tree/dist/src/c6x/evmc6474.dts (contents, props changed) vendor/device-tree/dist/src/c6x/evmc6678.dts (contents, props changed) vendor/device-tree/dist/src/c6x/tms320c6455.dtsi (contents, props changed) vendor/device-tree/dist/src/c6x/tms320c6457.dtsi (contents, props changed) vendor/device-tree/dist/src/c6x/tms320c6472.dtsi (contents, props changed) vendor/device-tree/dist/src/c6x/tms320c6474.dtsi (contents, props changed) vendor/device-tree/dist/src/c6x/tms320c6678.dtsi (contents, props changed) vendor/device-tree/dist/src/cris/ vendor/device-tree/dist/src/cris/artpec3.dtsi (contents, props changed) vendor/device-tree/dist/src/cris/dev88.dts (contents, props changed) vendor/device-tree/dist/src/cris/etraxfs.dtsi (contents, props changed) vendor/device-tree/dist/src/cris/p1343.dts (contents, props changed) vendor/device-tree/dist/src/h8300/ vendor/device-tree/dist/src/h8300/edosk2674.dts (contents, props changed) vendor/device-tree/dist/src/h8300/h8300h_sim.dts (contents, props changed) vendor/device-tree/dist/src/h8300/h8s_sim.dts (contents, props changed) vendor/device-tree/dist/src/metag/ vendor/device-tree/dist/src/metag/skeleton.dts (contents, props changed) vendor/device-tree/dist/src/metag/skeleton.dtsi (contents, props changed) vendor/device-tree/dist/src/metag/tz1090.dtsi (contents, props changed) vendor/device-tree/dist/src/metag/tz1090_generic.dts (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm3368-netgear-cvg834g.dts (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm3368.dtsi (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm63268-comtrend-vr-3032u.dts (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm63268.dtsi (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm6358-neufbox4-sercomm.dts (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm6362-neufbox6-sercomm.dts (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm6362.dtsi (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm97xxx-nand-cs1-bch24.dtsi (contents, props changed) vendor/device-tree/dist/src/mips/brcm/bcm97xxx-nand-cs1-bch4.dtsi (contents, props changed) vendor/device-tree/dist/src/mips/cavium-octeon/dlink_dsr-500n-1000n.dtsi (contents, props changed) vendor/device-tree/dist/src/mips/cavium-octeon/dlink_dsr-500n.dts (contents, props changed) vendor/device-tree/dist/src/nios2/ vendor/device-tree/dist/src/nios2/10m50_devboard.dts (contents, props changed) vendor/device-tree/dist/src/nios2/3c120_devboard.dts (contents, props changed) vendor/device-tree/dist/src/openrisc/ vendor/device-tree/dist/src/openrisc/or1ksim.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/ vendor/device-tree/dist/src/powerpc/a3m071.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/a4m072.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/ac14xx.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/acadia.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/adder875-redboot.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/adder875-uboot.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/akebono.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/amigaone.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/arches.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/asp834x-redboot.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/bamboo.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/bluestone.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/c2k.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/canyonlands.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/charon.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/cm5200.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/currituck.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/digsy_mtc.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/ebony.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/eiger.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/ep405.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/ep8248e.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/ep88xc.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/ vendor/device-tree/dist/src/powerpc/fsl/b4420qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/b4420si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/b4420si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/b4860qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/b4860si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/b4860si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/b4qds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/b4si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/bsc9131rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/bsc9131rdb.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/bsc9131si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/bsc9131si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/bsc9132qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/bsc9132qds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/bsc9132si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/bsc9132si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/c293pcie.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/c293si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/c293si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/cyrus_p5020.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/e500mc_power_isa.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/e500v2_power_isa.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/e5500_power_isa.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/e6500_power_isa.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/elo3-dma-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/elo3-dma-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/elo3-dma-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/ge_imp3a.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/gef_ppc9a.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/gef_sbc310.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/gef_sbc610.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/interlaken-lac-portals.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/interlaken-lac.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/kmcoge4.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8536ds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8536ds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8536ds_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8536si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8536si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8540ads.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8541cds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8544ds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8544ds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8544si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8544si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8548cds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8548cds_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8548cds_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8548si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8548si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8555cds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8560ads.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8568mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8568si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8568si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8569mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8569si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8569si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8572ds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8572ds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8572ds_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8572ds_camp_core0.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8572ds_camp_core1.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8572si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8572si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8641_hpcn.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8641_hpcn_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8641si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mpc8641si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mvme2500.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/mvme7100.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/oca4080.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010rdb-pa.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010rdb-pa.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010rdb-pa_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010rdb-pb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010rdb-pb_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010rdb.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010rdb_32b.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010rdb_36b.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1010si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020mbg-pc.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020mbg-pc_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020mbg-pc_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb-pc.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb-pc_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb-pc_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb-pc_camp_core0.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb-pc_camp_core1.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb-pd.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020rdb_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020utm-pc.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020utm-pc_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1020utm-pc_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1021mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1021rdb-pc.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1021rdb-pc_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1021rdb-pc_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1021si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1021si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1022ds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1022ds_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1022ds_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1022rdk.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1022si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1022si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1023rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1023si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1023si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1024rdb.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1024rdb_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1024rdb_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1025rdb.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1025rdb_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1025rdb_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1025twr.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p1025twr.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2020ds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2020ds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2020rdb-pc.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2020rdb-pc_32b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2020rdb-pc_36b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2020rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2020si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2020si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2041rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2041si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p2041si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p3041ds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p3041si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p3041si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p4080ds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p4080si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p4080si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p5020ds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p5020si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p5020si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p5040ds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p5040si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/p5040si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/ppa8548.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-dma-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-dma-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-duart-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-esdhc-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-espi-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec1-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec1-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec1-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec1-3.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec1-timer-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec2-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec2-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec2-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec2-grp2-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec2-grp2-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-etsec2-grp2-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-gpio-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-i2c-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-i2c-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-mpic-message-B.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-mpic-timer-B.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-mpic.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-rmu-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-sata2-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-sata2-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-sec2.1-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-sec3.0-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-sec3.1-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-sec3.3-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-sec4.4-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-usb2-dr-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/pq3-usb2-dr-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qonverge-usb2-dr-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-bman1-portals.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-bman1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-clockgen1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-clockgen2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-dma-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-dma-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-duart-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-duart-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-esdhc-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-espi-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-0-10g-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-0-1g-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-0-1g-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-0-1g-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-0-1g-3.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-0-1g-4.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-1-10g-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-1-1g-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-1-1g-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-1-1g-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-1-1g-3.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-1-1g-4.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-10g-0-best-effort.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-10g-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-10g-1-best-effort.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-10g-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-1g-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-1g-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-1g-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-1g-3.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-1g-4.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0-1g-5.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1-10g-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1-10g-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1-1g-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1-1g-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1-1g-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1-1g-3.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1-1g-4.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1-1g-5.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-fman3l-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-gpio-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-gpio-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-gpio-2.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-gpio-3.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-i2c-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-i2c-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-mpic.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-mpic4.3.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-qman1-portals.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-qman1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-qman3.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-raid1.0-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-rmu-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-sata2-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-sata2-1.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-sec4.0-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-sec4.2-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-sec5.0-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-sec5.2-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-sec5.3-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-sec6.0-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-usb2-dr-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/qoriq-usb2-mph-0.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/sbc8641d.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1023rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1023si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1024qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1024rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1024si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t102xsi-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1040d4rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1040qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1040rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1040si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1042d4rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1042qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1042rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1042rdb_pi.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t1042si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t104xd4rdb.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t104xqds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t104xrdb.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t104xsi-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t2080qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t2080rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t2080si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t2081qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t2081si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t208xqds.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t208xrdb.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t208xsi-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t4240qds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t4240rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t4240si-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/fsl/t4240si-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/gamecube.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/glacier.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/haleakala.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/holly.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/hotfoot.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/icon.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/iss4xx-mpic.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/iss4xx.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/katmai.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/kilauea.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/klondike.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/kmeter1.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/ksi8560.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/kuroboxHD.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/kuroboxHG.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/lite5200.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/lite5200b.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/makalu.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/media5200.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mgcoge.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/motionpro.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc5121.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc5121ads.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc5125twr.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc5200b.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc7448hpc2.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8272ads.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8308_p1m.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8308rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8313erdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8315erdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc832x_mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc832x_rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8349emitx.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8349emitxgp.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc834x_mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc836x_mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc836x_rdk.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8377_mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8377_rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8377_wlan.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8378_mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8378_rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8379_mds.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8379_rdb.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc8610_hpcd.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc866ads.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mpc885ads.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mucmc52.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/mvme5100.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/o2d.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/o2d.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/o2d300.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/o2dnt2.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/o2i.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/o2mnt.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/o3dnt.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/obs600.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/pcm030.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/pcm032.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/pdm360ng.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/pq2fads.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/ps3.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/rainier.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/redwood.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/sam440ep.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/sbc8349.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/sbc8548-altflash.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/sbc8548-post.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/sbc8548-pre.dtsi (contents, props changed) vendor/device-tree/dist/src/powerpc/sbc8548.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/sequoia.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/socrates.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/storcenter.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/stx_gp3_8560.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/stxssa8555.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/taishan.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/tqm5200.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/tqm8540.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/tqm8541.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/tqm8548-bigflash.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/tqm8548.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/tqm8555.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/tqm8560.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/tqm8xx.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/uc101.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/virtex440-ml507.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/virtex440-ml510.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/walnut.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/warp.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/wii.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/xcalibur1501.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/xpedite5200.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/xpedite5200_xmon.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/xpedite5301.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/xpedite5330.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/xpedite5370.dts (contents, props changed) vendor/device-tree/dist/src/powerpc/yosemite.dts (contents, props changed) vendor/device-tree/dist/src/sh/ vendor/device-tree/dist/src/sh/j2_mimas_v2.dts (contents, props changed) vendor/device-tree/dist/src/x86/ vendor/device-tree/dist/src/x86/falconfalls.dts (contents, props changed) vendor/device-tree/dist/src/xtensa/ vendor/device-tree/dist/src/xtensa/csp.dts (contents, props changed) vendor/device-tree/dist/src/xtensa/kc705.dts (contents, props changed) vendor/device-tree/dist/src/xtensa/kc705_nommu.dts (contents, props changed) vendor/device-tree/dist/src/xtensa/lx200mx.dts (contents, props changed) vendor/device-tree/dist/src/xtensa/lx60.dts (contents, props changed) vendor/device-tree/dist/src/xtensa/ml605.dts (contents, props changed) vendor/device-tree/dist/src/xtensa/xtfpga-flash-128m.dtsi (contents, props changed) vendor/device-tree/dist/src/xtensa/xtfpga-flash-16m.dtsi (contents, props changed) vendor/device-tree/dist/src/xtensa/xtfpga-flash-4m.dtsi (contents, props changed) vendor/device-tree/dist/src/xtensa/xtfpga.dtsi (contents, props changed) Modified: vendor/device-tree/dist/Bindings/arm/altera/socfpga-eccmgr.txt vendor/device-tree/dist/Bindings/arm/amlogic.txt vendor/device-tree/dist/Bindings/arm/arch_timer.txt vendor/device-tree/dist/Bindings/arm/arm,scpi.txt vendor/device-tree/dist/Bindings/arm/arm-boards vendor/device-tree/dist/Bindings/arm/atmel-at91.txt vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm11351-cpu-method.txt vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm2835.txt vendor/device-tree/dist/Bindings/arm/coresight.txt vendor/device-tree/dist/Bindings/arm/cpus.txt vendor/device-tree/dist/Bindings/arm/davinci.txt vendor/device-tree/dist/Bindings/arm/fsl.txt vendor/device-tree/dist/Bindings/arm/hisilicon/hisilicon.txt vendor/device-tree/dist/Bindings/arm/l2c2x0.txt vendor/device-tree/dist/Bindings/arm/marvell/armada-39x.txt vendor/device-tree/dist/Bindings/arm/mediatek.txt vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,apmixedsys.txt vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,imgsys.txt vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,infracfg.txt vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,mmsys.txt vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,pericfg.txt vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,topckgen.txt vendor/device-tree/dist/Bindings/arm/mediatek/mediatek,vdecsys.txt vendor/device-tree/dist/Bindings/arm/olimex.txt vendor/device-tree/dist/Bindings/arm/omap/omap.txt vendor/device-tree/dist/Bindings/arm/oxnas.txt vendor/device-tree/dist/Bindings/arm/pmu.txt vendor/device-tree/dist/Bindings/arm/qcom.txt vendor/device-tree/dist/Bindings/arm/rockchip.txt vendor/device-tree/dist/Bindings/arm/samsung/pmu.txt vendor/device-tree/dist/Bindings/arm/samsung/samsung-boards.txt vendor/device-tree/dist/Bindings/arm/shmobile.txt vendor/device-tree/dist/Bindings/arm/sunxi.txt vendor/device-tree/dist/Bindings/arm/technologic.txt vendor/device-tree/dist/Bindings/arm/tegra.txt vendor/device-tree/dist/Bindings/arm/xen.txt vendor/device-tree/dist/Bindings/arm/zte.txt vendor/device-tree/dist/Bindings/ata/ahci-fsl-qoriq.txt vendor/device-tree/dist/Bindings/ata/ahci-platform.txt vendor/device-tree/dist/Bindings/ata/ahci-st.txt vendor/device-tree/dist/Bindings/clock/arm-syscon-icst.txt vendor/device-tree/dist/Bindings/clock/at91-clock.txt vendor/device-tree/dist/Bindings/clock/clk-exynos-audss.txt vendor/device-tree/dist/Bindings/clock/clps711x-clock.txt vendor/device-tree/dist/Bindings/clock/exynos5410-clock.txt vendor/device-tree/dist/Bindings/clock/exynos5433-clock.txt vendor/device-tree/dist/Bindings/clock/fixed-factor-clock.txt vendor/device-tree/dist/Bindings/clock/imx31-clock.txt vendor/device-tree/dist/Bindings/clock/maxim,max77686.txt vendor/device-tree/dist/Bindings/clock/mvebu-core-clock.txt vendor/device-tree/dist/Bindings/clock/mvebu-gated-clock.txt vendor/device-tree/dist/Bindings/clock/oxnas,stdclk.txt vendor/device-tree/dist/Bindings/clock/qcom,gcc.txt vendor/device-tree/dist/Bindings/clock/qcom,lcc.txt vendor/device-tree/dist/Bindings/clock/qoriq-clock.txt vendor/device-tree/dist/Bindings/clock/renesas,cpg-mssr.txt vendor/device-tree/dist/Bindings/clock/renesas,cpg-mstp-clocks.txt vendor/device-tree/dist/Bindings/clock/renesas,rcar-gen2-cpg-clocks.txt vendor/device-tree/dist/Bindings/clock/st,stm32-rcc.txt vendor/device-tree/dist/Bindings/clock/st/st,clkgen-mux.txt vendor/device-tree/dist/Bindings/clock/st/st,clkgen-pll.txt vendor/device-tree/dist/Bindings/clock/st/st,clkgen.txt vendor/device-tree/dist/Bindings/clock/st/st,flexgen.txt vendor/device-tree/dist/Bindings/clock/st/st,quadfs.txt vendor/device-tree/dist/Bindings/clock/xgene.txt vendor/device-tree/dist/Bindings/crypto/fsl-sec4.txt vendor/device-tree/dist/Bindings/display/brcm,bcm-vc4.txt vendor/device-tree/dist/Bindings/display/bridge/adi,adv7511.txt vendor/device-tree/dist/Bindings/display/bridge/analogix_dp.txt vendor/device-tree/dist/Bindings/display/bridge/dw_hdmi.txt vendor/device-tree/dist/Bindings/display/bridge/tda998x.txt vendor/device-tree/dist/Bindings/display/cirrus,clps711x-fb.txt vendor/device-tree/dist/Bindings/display/connector/hdmi-connector.txt vendor/device-tree/dist/Bindings/display/exynos/exynos_hdmi.txt vendor/device-tree/dist/Bindings/display/fsl,dcu.txt vendor/device-tree/dist/Bindings/display/msm/dsi.txt vendor/device-tree/dist/Bindings/display/msm/hdmi.txt vendor/device-tree/dist/Bindings/display/mxsfb.txt vendor/device-tree/dist/Bindings/display/panel/display-timing.txt vendor/device-tree/dist/Bindings/display/panel/panel-dpi.txt vendor/device-tree/dist/Bindings/display/renesas,du.txt vendor/device-tree/dist/Bindings/display/rockchip/analogix_dp-rockchip.txt vendor/device-tree/dist/Bindings/display/rockchip/rockchip-vop.txt vendor/device-tree/dist/Bindings/display/sunxi/sun4i-drm.txt vendor/device-tree/dist/Bindings/display/tegra/nvidia,tegra20-host1x.txt vendor/device-tree/dist/Bindings/display/tilcdc/tilcdc.txt vendor/device-tree/dist/Bindings/dma/fsl-imx-sdma.txt vendor/device-tree/dist/Bindings/dma/nbpfaxi.txt vendor/device-tree/dist/Bindings/dma/qcom_hidma_mgmt.txt vendor/device-tree/dist/Bindings/dma/renesas,rcar-dmac.txt vendor/device-tree/dist/Bindings/dma/snps-dma.txt vendor/device-tree/dist/Bindings/dma/sun6i-dma.txt vendor/device-tree/dist/Bindings/dma/ti-edma.txt vendor/device-tree/dist/Bindings/dma/xilinx/xilinx_dma.txt vendor/device-tree/dist/Bindings/extcon/extcon-arizona.txt vendor/device-tree/dist/Bindings/extcon/extcon-usb-gpio.txt vendor/device-tree/dist/Bindings/gpio/cirrus,clps711x-mctrl-gpio.txt vendor/device-tree/dist/Bindings/gpio/gpio-clps711x.txt vendor/device-tree/dist/Bindings/gpio/gpio-pca953x.txt vendor/device-tree/dist/Bindings/gpio/mrvl-gpio.txt vendor/device-tree/dist/Bindings/gpio/renesas,gpio-rcar.txt vendor/device-tree/dist/Bindings/i2c/i2c-arb-gpio-challenge.txt vendor/device-tree/dist/Bindings/i2c/i2c-meson.txt vendor/device-tree/dist/Bindings/i2c/i2c-mux.txt vendor/device-tree/dist/Bindings/i2c/i2c-pxa.txt vendor/device-tree/dist/Bindings/i2c/i2c-rcar.txt vendor/device-tree/dist/Bindings/i2c/i2c-rk3x.txt vendor/device-tree/dist/Bindings/i2c/i2c-sh_mobile.txt vendor/device-tree/dist/Bindings/i2c/i2c.txt vendor/device-tree/dist/Bindings/i2c/trivial-devices.txt vendor/device-tree/dist/Bindings/iio/adc/at91_adc.txt vendor/device-tree/dist/Bindings/iio/adc/rockchip-saradc.txt vendor/device-tree/dist/Bindings/iio/pressure/bmp085.txt vendor/device-tree/dist/Bindings/iio/st-sensors.txt vendor/device-tree/dist/Bindings/input/clps711x-keypad.txt vendor/device-tree/dist/Bindings/input/da9062-onkey.txt vendor/device-tree/dist/Bindings/input/gpio-keys-polled.txt vendor/device-tree/dist/Bindings/input/rmi4/rmi_i2c.txt vendor/device-tree/dist/Bindings/input/rotary-encoder.txt vendor/device-tree/dist/Bindings/input/touchscreen/edt-ft5x06.txt vendor/device-tree/dist/Bindings/input/touchscreen/imx6ul_tsc.txt vendor/device-tree/dist/Bindings/input/touchscreen/touchscreen.txt vendor/device-tree/dist/Bindings/input/tps65218-pwrbutton.txt vendor/device-tree/dist/Bindings/interrupt-controller/arm,gic.txt vendor/device-tree/dist/Bindings/interrupt-controller/cirrus,clps711x-intc.txt vendor/device-tree/dist/Bindings/interrupt-controller/marvell,odmi-controller.txt vendor/device-tree/dist/Bindings/interrupt-controller/mediatek,sysirq.txt vendor/device-tree/dist/Bindings/interrupt-controller/renesas,irqc.txt vendor/device-tree/dist/Bindings/interrupt-controller/snps,archs-idu-intc.txt vendor/device-tree/dist/Bindings/iommu/arm,smmu-v3.txt vendor/device-tree/dist/Bindings/iommu/arm,smmu.txt vendor/device-tree/dist/Bindings/iommu/mediatek,iommu.txt vendor/device-tree/dist/Bindings/leds/backlight/lp855x.txt vendor/device-tree/dist/Bindings/leds/common.txt vendor/device-tree/dist/Bindings/leds/leds-bcm6328.txt vendor/device-tree/dist/Bindings/leds/leds-bcm6358.txt vendor/device-tree/dist/Bindings/leds/leds-gpio.txt vendor/device-tree/dist/Bindings/leds/pca963x.txt vendor/device-tree/dist/Bindings/leds/register-bit-led.txt vendor/device-tree/dist/Bindings/mailbox/brcm,bcm2835-mbox.txt vendor/device-tree/dist/Bindings/media/exynos4-fimc-is.txt vendor/device-tree/dist/Bindings/media/exynos5-gsc.txt vendor/device-tree/dist/Bindings/media/hix5hd2-ir.txt vendor/device-tree/dist/Bindings/media/i2c/adv7180.txt vendor/device-tree/dist/Bindings/media/i2c/adv7604.txt vendor/device-tree/dist/Bindings/media/meson-ir.txt vendor/device-tree/dist/Bindings/media/renesas,vsp1.txt vendor/device-tree/dist/Bindings/media/s5p-mfc.txt vendor/device-tree/dist/Bindings/memory-controllers/mediatek,smi-common.txt vendor/device-tree/dist/Bindings/memory-controllers/mediatek,smi-larb.txt vendor/device-tree/dist/Bindings/memory-controllers/omap-gpmc.txt vendor/device-tree/dist/Bindings/mfd/act8945a.txt vendor/device-tree/dist/Bindings/mfd/arizona.txt vendor/device-tree/dist/Bindings/mfd/axp20x.txt vendor/device-tree/dist/Bindings/mfd/da9052-i2c.txt vendor/device-tree/dist/Bindings/mfd/max77620.txt vendor/device-tree/dist/Bindings/mfd/max77693.txt vendor/device-tree/dist/Bindings/mfd/qcom-pm8xxx.txt vendor/device-tree/dist/Bindings/mfd/qcom-rpm.txt vendor/device-tree/dist/Bindings/mfd/rk808.txt vendor/device-tree/dist/Bindings/mfd/rn5t618.txt vendor/device-tree/dist/Bindings/mfd/stmpe.txt vendor/device-tree/dist/Bindings/mfd/tps65086.txt vendor/device-tree/dist/Bindings/mfd/twl6040.txt vendor/device-tree/dist/Bindings/mips/brcm/soc.txt vendor/device-tree/dist/Bindings/mmc/arasan,sdhci.txt vendor/device-tree/dist/Bindings/mmc/brcm,sdhci-iproc.txt vendor/device-tree/dist/Bindings/mmc/fsl-imx-esdhc.txt vendor/device-tree/dist/Bindings/mmc/mmc-pwrseq-simple.txt vendor/device-tree/dist/Bindings/mmc/mmc.txt vendor/device-tree/dist/Bindings/mmc/renesas,mmcif.txt vendor/device-tree/dist/Bindings/mmc/rockchip-dw-mshc.txt vendor/device-tree/dist/Bindings/mmc/sdhci-msm.txt vendor/device-tree/dist/Bindings/mmc/sdhci-st.txt vendor/device-tree/dist/Bindings/mmc/sunxi-mmc.txt vendor/device-tree/dist/Bindings/mmc/synopsys-dw-mshc.txt vendor/device-tree/dist/Bindings/mmc/tmio_mmc.txt vendor/device-tree/dist/Bindings/mtd/brcm,brcmnand.txt vendor/device-tree/dist/Bindings/mtd/gpmc-nand.txt vendor/device-tree/dist/Bindings/mtd/nand.txt vendor/device-tree/dist/Bindings/mtd/sunxi-nand.txt vendor/device-tree/dist/Bindings/net/apm-xgene-enet.txt vendor/device-tree/dist/Bindings/net/brcm,bcm7445-switch-v4.0.txt vendor/device-tree/dist/Bindings/net/can/rcar_can.txt vendor/device-tree/dist/Bindings/net/cavium-pip.txt vendor/device-tree/dist/Bindings/net/cpsw.txt vendor/device-tree/dist/Bindings/net/davinci-mdio.txt vendor/device-tree/dist/Bindings/net/dsa/dsa.txt vendor/device-tree/dist/Bindings/net/dsa/marvell.txt vendor/device-tree/dist/Bindings/net/ethernet.txt vendor/device-tree/dist/Bindings/net/fsl-fec.txt vendor/device-tree/dist/Bindings/net/hisilicon-hix5hd2-gmac.txt vendor/device-tree/dist/Bindings/net/hisilicon-hns-dsaf.txt vendor/device-tree/dist/Bindings/net/keystone-netcp.txt vendor/device-tree/dist/Bindings/net/macb.txt vendor/device-tree/dist/Bindings/net/marvell-armada-370-neta.txt vendor/device-tree/dist/Bindings/net/marvell-orion-net.txt vendor/device-tree/dist/Bindings/net/mdio-mux-mmioreg.txt vendor/device-tree/dist/Bindings/net/mdio-mux.txt vendor/device-tree/dist/Bindings/net/mediatek-net.txt vendor/device-tree/dist/Bindings/net/meson-dwmac.txt vendor/device-tree/dist/Bindings/net/micrel-ksz90x1.txt vendor/device-tree/dist/Bindings/net/micrel.txt vendor/device-tree/dist/Bindings/net/phy.txt vendor/device-tree/dist/Bindings/net/renesas,ravb.txt vendor/device-tree/dist/Bindings/net/rockchip-dwmac.txt vendor/device-tree/dist/Bindings/net/sh_eth.txt vendor/device-tree/dist/Bindings/net/smsc-lan91c111.txt vendor/device-tree/dist/Bindings/net/smsc911x.txt vendor/device-tree/dist/Bindings/net/snps,dwc-qos-ethernet.txt vendor/device-tree/dist/Bindings/net/socfpga-dwmac.txt vendor/device-tree/dist/Bindings/net/stmmac.txt vendor/device-tree/dist/Bindings/net/ti,dp83867.txt vendor/device-tree/dist/Bindings/net/wireless/ti,wlcore,spi.txt vendor/device-tree/dist/Bindings/nvmem/rockchip-efuse.txt vendor/device-tree/dist/Bindings/opp/opp.txt vendor/device-tree/dist/Bindings/pci/brcm,iproc-pcie.txt vendor/device-tree/dist/Bindings/pci/designware-pcie.txt vendor/device-tree/dist/Bindings/pci/layerscape-pci.txt vendor/device-tree/dist/Bindings/pci/nvidia,tegra20-pcie.txt vendor/device-tree/dist/Bindings/pci/pci.txt vendor/device-tree/dist/Bindings/pci/qcom,pcie.txt vendor/device-tree/dist/Bindings/pci/rcar-pci.txt vendor/device-tree/dist/Bindings/pci/xilinx-nwl-pcie.txt vendor/device-tree/dist/Bindings/phy/brcm-sata-phy.txt vendor/device-tree/dist/Bindings/phy/mxs-usb-phy.txt vendor/device-tree/dist/Bindings/phy/nvidia,tegra124-xusb-padctl.txt vendor/device-tree/dist/Bindings/phy/rcar-gen3-phy-usb2.txt vendor/device-tree/dist/Bindings/phy/rockchip-emmc-phy.txt vendor/device-tree/dist/Bindings/phy/rockchip-usb-phy.txt vendor/device-tree/dist/Bindings/phy/sun4i-usb-phy.txt vendor/device-tree/dist/Bindings/phy/ti-phy.txt vendor/device-tree/dist/Bindings/pinctrl/allwinner,sunxi-pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/atmel,at91-pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/brcm,iproc-gpio.txt vendor/device-tree/dist/Bindings/pinctrl/marvell,orion-pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/meson,pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/pinctrl-bindings.txt vendor/device-tree/dist/Bindings/pinctrl/pinctrl-palmas.txt vendor/device-tree/dist/Bindings/pinctrl/pinctrl-single.txt vendor/device-tree/dist/Bindings/pinctrl/pinctrl-st.txt vendor/device-tree/dist/Bindings/pinctrl/qcom,msm8660-pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/qcom,msm8974-pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/qcom,pmic-gpio.txt vendor/device-tree/dist/Bindings/pinctrl/qcom,pmic-mpp.txt vendor/device-tree/dist/Bindings/pinctrl/renesas,pfc-pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/rockchip,pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/samsung-pinctrl.txt vendor/device-tree/dist/Bindings/pinctrl/st,stm32-pinctrl.txt vendor/device-tree/dist/Bindings/power/power_domain.txt vendor/device-tree/dist/Bindings/power/renesas,rcar-sysc.txt vendor/device-tree/dist/Bindings/power/reset/st-reset.txt vendor/device-tree/dist/Bindings/powerpc/fsl/fman.txt vendor/device-tree/dist/Bindings/pwm/cirrus,clps711x-pwm.txt vendor/device-tree/dist/Bindings/pwm/nvidia,tegra20-pwm.txt vendor/device-tree/dist/Bindings/pwm/pwm-bcm2835.txt vendor/device-tree/dist/Bindings/pwm/pwm-mtk-disp.txt vendor/device-tree/dist/Bindings/pwm/pwm-omap-dmtimer.txt vendor/device-tree/dist/Bindings/pwm/pwm-st.txt vendor/device-tree/dist/Bindings/pwm/pwm-sun4i.txt vendor/device-tree/dist/Bindings/pwm/pwm-tiecap.txt vendor/device-tree/dist/Bindings/pwm/pwm-tiehrpwm.txt vendor/device-tree/dist/Bindings/pwm/pwm-tipwmss.txt vendor/device-tree/dist/Bindings/pwm/renesas,pwm-rcar.txt vendor/device-tree/dist/Bindings/regmap/regmap.txt vendor/device-tree/dist/Bindings/regulator/da9210.txt vendor/device-tree/dist/Bindings/regulator/da9211.txt vendor/device-tree/dist/Bindings/regulator/pv88080.txt vendor/device-tree/dist/Bindings/regulator/pwm-regulator.txt vendor/device-tree/dist/Bindings/regulator/qcom,spmi-regulator.txt vendor/device-tree/dist/Bindings/regulator/regulator.txt vendor/device-tree/dist/Bindings/regulator/tps65218.txt vendor/device-tree/dist/Bindings/reset/hisilicon,hi6220-reset.txt vendor/device-tree/dist/Bindings/reset/oxnas,reset.txt vendor/device-tree/dist/Bindings/reset/st,sti-powerdown.txt vendor/device-tree/dist/Bindings/reset/st,sti-softreset.txt vendor/device-tree/dist/Bindings/rng/brcm,bcm2835.txt vendor/device-tree/dist/Bindings/rng/omap_rng.txt vendor/device-tree/dist/Bindings/rtc/dallas,ds1390.txt vendor/device-tree/dist/Bindings/rtc/maxim,ds3231.txt vendor/device-tree/dist/Bindings/rtc/pcf8563.txt vendor/device-tree/dist/Bindings/rtc/rtc-omap.txt vendor/device-tree/dist/Bindings/rtc/rtc-opal.txt vendor/device-tree/dist/Bindings/rtc/twl-rtc.txt vendor/device-tree/dist/Bindings/scsi/hisilicon-sas.txt vendor/device-tree/dist/Bindings/serial/8250.txt vendor/device-tree/dist/Bindings/serial/cdns,uart.txt vendor/device-tree/dist/Bindings/serial/cirrus,clps711x-uart.txt vendor/device-tree/dist/Bindings/serial/mtk-uart.txt vendor/device-tree/dist/Bindings/serial/nvidia,tegra20-hsuart.txt vendor/device-tree/dist/Bindings/serial/qcom,msm-uartdm.txt vendor/device-tree/dist/Bindings/serial/renesas,sci-serial.txt vendor/device-tree/dist/Bindings/soc/mediatek/scpsys.txt vendor/device-tree/dist/Bindings/soc/qcom/qcom,smd.txt vendor/device-tree/dist/Bindings/soc/qcom/qcom,smp2p.txt vendor/device-tree/dist/Bindings/soc/qcom/qcom,smsm.txt vendor/device-tree/dist/Bindings/sound/adi,adau17x1.txt vendor/device-tree/dist/Bindings/sound/bt-sco.txt vendor/device-tree/dist/Bindings/sound/davinci-mcbsp.txt vendor/device-tree/dist/Bindings/sound/designware-i2s.txt vendor/device-tree/dist/Bindings/sound/fsl-asoc-card.txt vendor/device-tree/dist/Bindings/sound/mt8173-rt5650.txt vendor/device-tree/dist/Bindings/sound/omap-abe-twl6040.txt vendor/device-tree/dist/Bindings/sound/qcom,apq8016-sbc.txt vendor/device-tree/dist/Bindings/sound/renesas,rsnd.txt vendor/device-tree/dist/Bindings/sound/rockchip-i2s.txt vendor/device-tree/dist/Bindings/sound/rt5514.txt vendor/device-tree/dist/Bindings/sound/rt5659.txt vendor/device-tree/dist/Bindings/sound/sgtl5000.txt vendor/device-tree/dist/Bindings/sound/simple-card.txt vendor/device-tree/dist/Bindings/sound/st,sti-asoc-card.txt vendor/device-tree/dist/Bindings/sound/sun4i-codec.txt vendor/device-tree/dist/Bindings/sound/sunxi,sun4i-spdif.txt vendor/device-tree/dist/Bindings/sound/tlv320aic31xx.txt vendor/device-tree/dist/Bindings/sound/wm8580.txt vendor/device-tree/dist/Bindings/spi/fsl-imx-cspi.txt vendor/device-tree/dist/Bindings/spi/sh-msiof.txt vendor/device-tree/dist/Bindings/spi/spi-bus.txt vendor/device-tree/dist/Bindings/spi/spi-davinci.txt vendor/device-tree/dist/Bindings/spi/spi-meson.txt vendor/device-tree/dist/Bindings/spi/spi-orion.txt vendor/device-tree/dist/Bindings/spi/spi-rockchip.txt vendor/device-tree/dist/Bindings/spi/spi-samsung.txt vendor/device-tree/dist/Bindings/spi/spi-sun6i.txt vendor/device-tree/dist/Bindings/spi/ti_qspi.txt vendor/device-tree/dist/Bindings/sram/sram.txt vendor/device-tree/dist/Bindings/submitting-patches.txt vendor/device-tree/dist/Bindings/thermal/mediatek-thermal.txt vendor/device-tree/dist/Bindings/thermal/nvidia,tegra124-soctherm.txt vendor/device-tree/dist/Bindings/thermal/rockchip-thermal.txt vendor/device-tree/dist/Bindings/thermal/st-thermal.txt vendor/device-tree/dist/Bindings/thermal/thermal.txt vendor/device-tree/dist/Bindings/timer/allwinner,sun5i-a13-hstimer.txt vendor/device-tree/dist/Bindings/timer/cirrus,clps711x-timer.txt vendor/device-tree/dist/Bindings/timer/moxa,moxart-timer.txt vendor/device-tree/dist/Bindings/ufs/ufs-qcom.txt vendor/device-tree/dist/Bindings/ufs/ufshcd-pltfrm.txt vendor/device-tree/dist/Bindings/usb/atmel-usb.txt vendor/device-tree/dist/Bindings/usb/ci-hdrc-usb2.txt vendor/device-tree/dist/Bindings/usb/dwc2.txt vendor/device-tree/dist/Bindings/usb/dwc3.txt vendor/device-tree/dist/Bindings/usb/generic.txt vendor/device-tree/dist/Bindings/usb/mt8173-xhci.txt vendor/device-tree/dist/Bindings/usb/nvidia,tegra124-xusb.txt vendor/device-tree/dist/Bindings/usb/renesas_usbhs.txt vendor/device-tree/dist/Bindings/usb/usb-ohci.txt vendor/device-tree/dist/Bindings/usb/usb-xhci.txt vendor/device-tree/dist/Bindings/usb/usbmisc-imx.txt vendor/device-tree/dist/Bindings/vendor-prefixes.txt vendor/device-tree/dist/Bindings/watchdog/of-xilinx-wdt.txt vendor/device-tree/dist/Bindings/watchdog/qcom-wdt.txt vendor/device-tree/dist/Bindings/watchdog/renesas-wdt.txt vendor/device-tree/dist/Bindings/watchdog/st_lpc_wdt.txt vendor/device-tree/dist/include/dt-bindings/clock/exynos5410.h vendor/device-tree/dist/include/dt-bindings/clock/exynos5420.h vendor/device-tree/dist/include/dt-bindings/clock/exynos5433.h vendor/device-tree/dist/include/dt-bindings/clock/exynos5440.h vendor/device-tree/dist/include/dt-bindings/clock/hi6220-clock.h vendor/device-tree/dist/include/dt-bindings/clock/imx5-clock.h vendor/device-tree/dist/include/dt-bindings/clock/imx6qdl-clock.h vendor/device-tree/dist/include/dt-bindings/clock/imx6ul-clock.h vendor/device-tree/dist/include/dt-bindings/clock/lpc32xx-clock.h vendor/device-tree/dist/include/dt-bindings/clock/meson8b-clkc.h vendor/device-tree/dist/include/dt-bindings/clock/qcom,gcc-msm8996.h vendor/device-tree/dist/include/dt-bindings/clock/qcom,mmcc-msm8996.h vendor/device-tree/dist/include/dt-bindings/clock/r7s72100-clock.h vendor/device-tree/dist/include/dt-bindings/clock/r8a7794-clock.h vendor/device-tree/dist/include/dt-bindings/clock/rk3188-cru-common.h vendor/device-tree/dist/include/dt-bindings/clock/rk3228-cru.h vendor/device-tree/dist/include/dt-bindings/clock/rk3399-cru.h vendor/device-tree/dist/include/dt-bindings/clock/stih407-clks.h vendor/device-tree/dist/include/dt-bindings/clock/tegra210-car.h vendor/device-tree/dist/include/dt-bindings/input/linux-event-codes.h vendor/device-tree/dist/include/dt-bindings/mfd/qcom-rpm.h vendor/device-tree/dist/include/dt-bindings/pinctrl/at91.h vendor/device-tree/dist/include/dt-bindings/pinctrl/bcm2835.h vendor/device-tree/dist/include/dt-bindings/pinctrl/qcom,pmic-gpio.h vendor/device-tree/dist/include/dt-bindings/pinctrl/qcom,pmic-mpp.h vendor/device-tree/dist/include/dt-bindings/pinctrl/rockchip.h vendor/device-tree/dist/include/dt-bindings/reset/hisi,hi6220-resets.h vendor/device-tree/dist/include/dt-bindings/thermal/tegra124-soctherm.h vendor/device-tree/dist/scripts/merge-new-release.sh vendor/device-tree/dist/src/arm/aks-cdu.dts vendor/device-tree/dist/src/arm/am335x-baltos-ir2110.dts vendor/device-tree/dist/src/arm/am335x-baltos-ir3220.dts vendor/device-tree/dist/src/arm/am335x-baltos-ir5221.dts vendor/device-tree/dist/src/arm/am335x-baltos.dtsi vendor/device-tree/dist/src/arm/am335x-base0033.dts vendor/device-tree/dist/src/arm/am335x-bone-common.dtsi vendor/device-tree/dist/src/arm/am335x-boneblack.dts vendor/device-tree/dist/src/arm/am335x-chilisom.dtsi vendor/device-tree/dist/src/arm/am335x-cm-t335.dts vendor/device-tree/dist/src/arm/am335x-evm.dts vendor/device-tree/dist/src/arm/am335x-evmsk.dts vendor/device-tree/dist/src/arm/am335x-icev2.dts vendor/device-tree/dist/src/arm/am335x-igep0033.dtsi vendor/device-tree/dist/src/arm/am335x-lxm.dts vendor/device-tree/dist/src/arm/am335x-nano.dts vendor/device-tree/dist/src/arm/am335x-pepper.dts vendor/device-tree/dist/src/arm/am335x-phycore-som.dtsi vendor/device-tree/dist/src/arm/am335x-shc.dts vendor/device-tree/dist/src/arm/am335x-sl50.dts vendor/device-tree/dist/src/arm/am335x-wega.dtsi vendor/device-tree/dist/src/arm/am33xx.dtsi vendor/device-tree/dist/src/arm/am3517-craneboard.dts vendor/device-tree/dist/src/arm/am3517-evm.dts vendor/device-tree/dist/src/arm/am3517.dtsi vendor/device-tree/dist/src/arm/am3517_mt_ventoux.dts vendor/device-tree/dist/src/arm/am4372.dtsi vendor/device-tree/dist/src/arm/am437x-cm-t43.dts vendor/device-tree/dist/src/arm/am437x-gp-evm.dts vendor/device-tree/dist/src/arm/am437x-idk-evm.dts vendor/device-tree/dist/src/arm/am437x-sbc-t43.dts vendor/device-tree/dist/src/arm/am437x-sk-evm.dts vendor/device-tree/dist/src/arm/am43x-epos-evm.dts vendor/device-tree/dist/src/arm/am43xx-clocks.dtsi vendor/device-tree/dist/src/arm/am572x-idk.dts vendor/device-tree/dist/src/arm/am57xx-beagle-x15.dts vendor/device-tree/dist/src/arm/am57xx-cl-som-am57x.dts vendor/device-tree/dist/src/arm/am57xx-idk-common.dtsi vendor/device-tree/dist/src/arm/am57xx-sbc-am57x.dts vendor/device-tree/dist/src/arm/animeo_ip.dts vendor/device-tree/dist/src/arm/arm-realview-eb-11mp.dts vendor/device-tree/dist/src/arm/arm-realview-eb.dtsi vendor/device-tree/dist/src/arm/arm-realview-pbx-a9.dts vendor/device-tree/dist/src/arm/armada-370-db.dts vendor/device-tree/dist/src/arm/armada-370-dlink-dns327l.dts vendor/device-tree/dist/src/arm/armada-370-mirabox.dts vendor/device-tree/dist/src/arm/armada-370-netgear-rn102.dts vendor/device-tree/dist/src/arm/armada-370-netgear-rn104.dts vendor/device-tree/dist/src/arm/armada-370-rd.dts vendor/device-tree/dist/src/arm/armada-370-seagate-nas-4bay.dts vendor/device-tree/dist/src/arm/armada-370-seagate-nas-xbay.dtsi vendor/device-tree/dist/src/arm/armada-370-seagate-personal-cloud.dtsi vendor/device-tree/dist/src/arm/armada-370-synology-ds213j.dts vendor/device-tree/dist/src/arm/armada-370-xp.dtsi vendor/device-tree/dist/src/arm/armada-370.dtsi vendor/device-tree/dist/src/arm/armada-375-db.dts vendor/device-tree/dist/src/arm/armada-375.dtsi vendor/device-tree/dist/src/arm/armada-385-db-ap.dts vendor/device-tree/dist/src/arm/armada-385-linksys.dtsi vendor/device-tree/dist/src/arm/armada-388-clearfog.dts vendor/device-tree/dist/src/arm/armada-388-db.dts vendor/device-tree/dist/src/arm/armada-388-gp.dts vendor/device-tree/dist/src/arm/armada-388-rd.dts vendor/device-tree/dist/src/arm/armada-38x.dtsi vendor/device-tree/dist/src/arm/armada-390.dtsi vendor/device-tree/dist/src/arm/armada-398-db.dts vendor/device-tree/dist/src/arm/armada-398.dtsi vendor/device-tree/dist/src/arm/armada-39x.dtsi vendor/device-tree/dist/src/arm/armada-xp-axpwifiap.dts vendor/device-tree/dist/src/arm/armada-xp-db.dts vendor/device-tree/dist/src/arm/armada-xp-gp.dts vendor/device-tree/dist/src/arm/armada-xp-lenovo-ix4-300d.dts vendor/device-tree/dist/src/arm/armada-xp-linksys-mamba.dts vendor/device-tree/dist/src/arm/armada-xp-matrix.dts vendor/device-tree/dist/src/arm/armada-xp-mv78230.dtsi vendor/device-tree/dist/src/arm/armada-xp-mv78260.dtsi vendor/device-tree/dist/src/arm/armada-xp-mv78460.dtsi vendor/device-tree/dist/src/arm/armada-xp-netgear-rn2120.dts vendor/device-tree/dist/src/arm/armada-xp-openblocks-ax3-4.dts vendor/device-tree/dist/src/arm/armada-xp-synology-ds414.dts vendor/device-tree/dist/src/arm/armada-xp.dtsi vendor/device-tree/dist/src/arm/armv7-m.dtsi vendor/device-tree/dist/src/arm/artpec6-devboard.dts vendor/device-tree/dist/src/arm/artpec6.dtsi vendor/device-tree/dist/src/arm/at91-ariag25.dts vendor/device-tree/dist/src/arm/at91-cosino.dtsi vendor/device-tree/dist/src/arm/at91-foxg20.dts vendor/device-tree/dist/src/arm/at91-kizbox.dts vendor/device-tree/dist/src/arm/at91-qil_a9260.dts vendor/device-tree/dist/src/arm/at91-sama5d2_xplained.dts vendor/device-tree/dist/src/arm/at91-sama5d3_xplained.dts vendor/device-tree/dist/src/arm/at91-sama5d4_ma5d4.dtsi vendor/device-tree/dist/src/arm/at91-sama5d4_ma5d4evk.dts vendor/device-tree/dist/src/arm/at91-sama5d4_xplained.dts vendor/device-tree/dist/src/arm/at91-sama5d4ek.dts vendor/device-tree/dist/src/arm/at91-vinco.dts vendor/device-tree/dist/src/arm/at91rm9200.dtsi vendor/device-tree/dist/src/arm/at91sam9260.dtsi vendor/device-tree/dist/src/arm/at91sam9261.dtsi vendor/device-tree/dist/src/arm/at91sam9263.dtsi vendor/device-tree/dist/src/arm/at91sam9263ek.dts vendor/device-tree/dist/src/arm/at91sam9g20ek_common.dtsi vendor/device-tree/dist/src/arm/at91sam9g25ek.dts vendor/device-tree/dist/src/arm/at91sam9g45.dtsi vendor/device-tree/dist/src/arm/at91sam9n12.dtsi vendor/device-tree/dist/src/arm/at91sam9rl.dtsi vendor/device-tree/dist/src/arm/at91sam9rlek.dts vendor/device-tree/dist/src/arm/at91sam9x5.dtsi vendor/device-tree/dist/src/arm/at91sam9x5ek.dtsi vendor/device-tree/dist/src/arm/axp209.dtsi vendor/device-tree/dist/src/arm/axp22x.dtsi vendor/device-tree/dist/src/arm/bcm-cygnus.dtsi vendor/device-tree/dist/src/arm/bcm-nsp.dtsi vendor/device-tree/dist/src/arm/bcm11351.dtsi vendor/device-tree/dist/src/arm/bcm21664.dtsi vendor/device-tree/dist/src/arm/bcm2835-rpi-a-plus.dts vendor/device-tree/dist/src/arm/bcm2835-rpi-a.dts vendor/device-tree/dist/src/arm/bcm2835-rpi-b-plus.dts vendor/device-tree/dist/src/arm/bcm2835-rpi-b-rev2.dts vendor/device-tree/dist/src/arm/bcm2835-rpi-b.dts vendor/device-tree/dist/src/arm/bcm2835-rpi.dtsi vendor/device-tree/dist/src/arm/bcm2835.dtsi vendor/device-tree/dist/src/arm/bcm2836-rpi-2-b.dts vendor/device-tree/dist/src/arm/bcm2836.dtsi vendor/device-tree/dist/src/arm/bcm283x.dtsi vendor/device-tree/dist/src/arm/bcm4708-buffalo-wzr-1750dhp.dts vendor/device-tree/dist/src/arm/bcm4708-netgear-r6250.dts vendor/device-tree/dist/src/arm/bcm4708-netgear-r6300-v2.dts vendor/device-tree/dist/src/arm/bcm4708-smartrg-sr400ac.dts vendor/device-tree/dist/src/arm/bcm4709-asus-rt-ac87u.dts vendor/device-tree/dist/src/arm/bcm4709-buffalo-wxr-1900dhp.dts vendor/device-tree/dist/src/arm/bcm4709-netgear-r7000.dts vendor/device-tree/dist/src/arm/bcm4709-netgear-r8000.dts vendor/device-tree/dist/src/arm/bcm47094-dlink-dir-885l.dts vendor/device-tree/dist/src/arm/bcm5301x-nand-cs0-bch8.dtsi vendor/device-tree/dist/src/arm/bcm5301x.dtsi vendor/device-tree/dist/src/arm/bcm958625k.dts vendor/device-tree/dist/src/arm/berlin2-sony-nsz-gs7.dts vendor/device-tree/dist/src/arm/berlin2.dtsi vendor/device-tree/dist/src/arm/berlin2cd-google-chromecast.dts vendor/device-tree/dist/src/arm/berlin2cd.dtsi vendor/device-tree/dist/src/arm/berlin2q-marvell-dmp.dts vendor/device-tree/dist/src/arm/berlin2q.dtsi vendor/device-tree/dist/src/arm/compulab-sb-som.dtsi vendor/device-tree/dist/src/arm/da850-evm.dts vendor/device-tree/dist/src/arm/da850.dtsi vendor/device-tree/dist/src/arm/dm8148-evm.dts vendor/device-tree/dist/src/arm/dm8148-t410.dts vendor/device-tree/dist/src/arm/dm814x.dtsi vendor/device-tree/dist/src/arm/dm8168-evm.dts vendor/device-tree/dist/src/arm/dm816x.dtsi vendor/device-tree/dist/src/arm/dra62x-j5eco-evm.dts vendor/device-tree/dist/src/arm/dra7-evm.dts vendor/device-tree/dist/src/arm/dra7.dtsi vendor/device-tree/dist/src/arm/dra72-evm-common.dtsi vendor/device-tree/dist/src/arm/dra72-evm-revc.dts vendor/device-tree/dist/src/arm/dra72-evm.dts vendor/device-tree/dist/src/arm/dra72x.dtsi vendor/device-tree/dist/src/arm/dra74x.dtsi vendor/device-tree/dist/src/arm/dra7xx-clocks.dtsi vendor/device-tree/dist/src/arm/efm32gg-dk3750.dts vendor/device-tree/dist/src/arm/efm32gg.dtsi vendor/device-tree/dist/src/arm/emev2-kzm9d.dts vendor/device-tree/dist/src/arm/emev2.dtsi vendor/device-tree/dist/src/arm/ethernut5.dts vendor/device-tree/dist/src/arm/evk-pro3.dts vendor/device-tree/dist/src/arm/exynos3250-artik5-eval.dts vendor/device-tree/dist/src/arm/exynos3250-artik5.dtsi vendor/device-tree/dist/src/arm/exynos3250-monk.dts vendor/device-tree/dist/src/arm/exynos3250-pinctrl.dtsi vendor/device-tree/dist/src/arm/exynos3250-rinato.dts vendor/device-tree/dist/src/arm/exynos3250.dtsi vendor/device-tree/dist/src/arm/exynos4.dtsi vendor/device-tree/dist/src/arm/exynos4210-origen.dts vendor/device-tree/dist/src/arm/exynos4210-pinctrl.dtsi vendor/device-tree/dist/src/arm/exynos4210-smdkv310.dts vendor/device-tree/dist/src/arm/exynos4210-trats.dts vendor/device-tree/dist/src/arm/exynos4210-universal_c210.dts vendor/device-tree/dist/src/arm/exynos4210.dtsi vendor/device-tree/dist/src/arm/exynos4412-odroid-common.dtsi vendor/device-tree/dist/src/arm/exynos4412-odroidu3.dts vendor/device-tree/dist/src/arm/exynos4412-odroidx.dts vendor/device-tree/dist/src/arm/exynos4412-odroidx2.dts vendor/device-tree/dist/src/arm/exynos4412-origen.dts vendor/device-tree/dist/src/arm/exynos4412-smdk4412.dts vendor/device-tree/dist/src/arm/exynos4412-tiny4412.dts vendor/device-tree/dist/src/arm/exynos4412-trats2.dts vendor/device-tree/dist/src/arm/exynos4x12-pinctrl.dtsi vendor/device-tree/dist/src/arm/exynos4x12.dtsi vendor/device-tree/dist/src/arm/exynos5.dtsi vendor/device-tree/dist/src/arm/exynos5250-arndale.dts vendor/device-tree/dist/src/arm/exynos5250-pinctrl.dtsi vendor/device-tree/dist/src/arm/exynos5250-smdk5250.dts vendor/device-tree/dist/src/arm/exynos5250-snow-common.dtsi vendor/device-tree/dist/src/arm/exynos5250-snow-rev5.dts vendor/device-tree/dist/src/arm/exynos5250-snow.dts vendor/device-tree/dist/src/arm/exynos5250-spring.dts vendor/device-tree/dist/src/arm/exynos5250.dtsi vendor/device-tree/dist/src/arm/exynos5260-pinctrl.dtsi vendor/device-tree/dist/src/arm/exynos5260-xyref5260.dts vendor/device-tree/dist/src/arm/exynos5260.dtsi vendor/device-tree/dist/src/arm/exynos5410-pinctrl.dtsi vendor/device-tree/dist/src/arm/exynos5410-smdk5410.dts vendor/device-tree/dist/src/arm/exynos5410.dtsi vendor/device-tree/dist/src/arm/exynos5420-arndale-octa.dts vendor/device-tree/dist/src/arm/exynos5420-peach-pit.dts vendor/device-tree/dist/src/arm/exynos5420-pinctrl.dtsi vendor/device-tree/dist/src/arm/exynos5420-smdk5420.dts vendor/device-tree/dist/src/arm/exynos5420.dtsi vendor/device-tree/dist/src/arm/exynos5422-odroidxu3-common.dtsi vendor/device-tree/dist/src/arm/exynos5422-odroidxu3-lite.dts vendor/device-tree/dist/src/arm/exynos5422-odroidxu3.dts vendor/device-tree/dist/src/arm/exynos5440-sd5v1.dts vendor/device-tree/dist/src/arm/exynos5440-ssdk5440.dts vendor/device-tree/dist/src/arm/exynos5440.dtsi vendor/device-tree/dist/src/arm/exynos5800-peach-pi.dts vendor/device-tree/dist/src/arm/ge863-pro3.dtsi vendor/device-tree/dist/src/arm/hi3620.dtsi vendor/device-tree/dist/src/arm/hip01.dtsi vendor/device-tree/dist/src/arm/hisi-x5hd2.dtsi vendor/device-tree/dist/src/arm/imx1-ads.dts vendor/device-tree/dist/src/arm/imx1-apf9328.dts vendor/device-tree/dist/src/arm/imx1.dtsi vendor/device-tree/dist/src/arm/imx23.dtsi vendor/device-tree/dist/src/arm/imx25-eukrea-mbimxsd25-baseboard.dts vendor/device-tree/dist/src/arm/imx25-pdk.dts vendor/device-tree/dist/src/arm/imx25-pinfunc.h vendor/device-tree/dist/src/arm/imx25.dtsi vendor/device-tree/dist/src/arm/imx27-eukrea-cpuimx27.dtsi vendor/device-tree/dist/src/arm/imx27-eukrea-mbimxsd27-baseboard.dts vendor/device-tree/dist/src/arm/imx27-pdk.dts vendor/device-tree/dist/src/arm/imx27-phytec-phycard-s-rdk.dts vendor/device-tree/dist/src/arm/imx27-phytec-phycore-rdk.dts vendor/device-tree/dist/src/arm/imx27.dtsi vendor/device-tree/dist/src/arm/imx28-apf28dev.dts vendor/device-tree/dist/src/arm/imx28-cfa10049.dts vendor/device-tree/dist/src/arm/imx28-eukrea-mbmx28lc.dtsi vendor/device-tree/dist/src/arm/imx28-evk.dts vendor/device-tree/dist/src/arm/imx28-m28.dtsi vendor/device-tree/dist/src/arm/imx28-m28evk.dts vendor/device-tree/dist/src/arm/imx28-tx28.dts vendor/device-tree/dist/src/arm/imx28.dtsi vendor/device-tree/dist/src/arm/imx31-bug.dts vendor/device-tree/dist/src/arm/imx31.dtsi vendor/device-tree/dist/src/arm/imx35-eukrea-mbimxsd35-baseboard.dts vendor/device-tree/dist/src/arm/imx35-pdk.dts vendor/device-tree/dist/src/arm/imx35.dtsi vendor/device-tree/dist/src/arm/imx50.dtsi vendor/device-tree/dist/src/arm/imx51-babbage.dts vendor/device-tree/dist/src/arm/imx51-eukrea-mbimxsd51-baseboard.dts vendor/device-tree/dist/src/arm/imx51-ts4800.dts vendor/device-tree/dist/src/arm/imx51.dtsi vendor/device-tree/dist/src/arm/imx53-m53.dtsi vendor/device-tree/dist/src/arm/imx53-m53evk.dts vendor/device-tree/dist/src/arm/imx53-qsb.dts vendor/device-tree/dist/src/arm/imx53-smd.dts vendor/device-tree/dist/src/arm/imx53-tqma53.dtsi vendor/device-tree/dist/src/arm/imx53-tx53.dtsi vendor/device-tree/dist/src/arm/imx53.dtsi vendor/device-tree/dist/src/arm/imx6dl-riotboard.dts vendor/device-tree/dist/src/arm/imx6dl-tx6dl-comtft.dts vendor/device-tree/dist/src/arm/imx6dl-tx6u-801x.dts vendor/device-tree/dist/src/arm/imx6dl.dtsi vendor/device-tree/dist/src/arm/imx6q-apalis-ixora.dts vendor/device-tree/dist/src/arm/imx6q-arm2.dts vendor/device-tree/dist/src/arm/imx6q-b450v3.dts vendor/device-tree/dist/src/arm/imx6q-b650v3.dts vendor/device-tree/dist/src/arm/imx6q-ba16.dtsi vendor/device-tree/dist/src/arm/imx6q-bx50v3.dtsi vendor/device-tree/dist/src/arm/imx6q-cm-fx6.dts vendor/device-tree/dist/src/arm/imx6q-dmo-edmqmx6.dts vendor/device-tree/dist/src/arm/imx6q-evi.dts vendor/device-tree/dist/src/arm/imx6q-gw5400-a.dts vendor/device-tree/dist/src/arm/imx6q-marsboard.dts vendor/device-tree/dist/src/arm/imx6q-novena.dts vendor/device-tree/dist/src/arm/imx6q-phytec-pbab01.dts vendor/device-tree/dist/src/arm/imx6q-sbc6x.dts vendor/device-tree/dist/src/arm/imx6q-tbs2910.dts vendor/device-tree/dist/src/arm/imx6q-tx6q-1010-comtft.dts vendor/device-tree/dist/src/arm/imx6q-tx6q-1010.dts vendor/device-tree/dist/src/arm/imx6q-tx6q-1020-comtft.dts vendor/device-tree/dist/src/arm/imx6q-tx6q-1020.dts vendor/device-tree/dist/src/arm/imx6q.dtsi vendor/device-tree/dist/src/arm/imx6qdl-apalis.dtsi vendor/device-tree/dist/src/arm/imx6qdl-apf6dev.dtsi vendor/device-tree/dist/src/arm/imx6qdl-aristainetos.dtsi vendor/device-tree/dist/src/arm/imx6qdl-aristainetos2.dtsi vendor/device-tree/dist/src/arm/imx6qdl-dfi-fs700-m60.dtsi vendor/device-tree/dist/src/arm/imx6qdl-gw51xx.dtsi vendor/device-tree/dist/src/arm/imx6qdl-gw52xx.dtsi vendor/device-tree/dist/src/arm/imx6qdl-gw53xx.dtsi vendor/device-tree/dist/src/arm/imx6qdl-gw54xx.dtsi vendor/device-tree/dist/src/arm/imx6qdl-gw551x.dtsi vendor/device-tree/dist/src/arm/imx6qdl-gw552x.dtsi vendor/device-tree/dist/src/arm/imx6qdl-icore-rqs.dtsi vendor/device-tree/dist/src/arm/imx6qdl-microsom.dtsi vendor/device-tree/dist/src/arm/imx6qdl-nit6xlite.dtsi vendor/device-tree/dist/src/arm/imx6qdl-nitrogen6_max.dtsi vendor/device-tree/dist/src/arm/imx6qdl-nitrogen6x.dtsi vendor/device-tree/dist/src/arm/imx6qdl-phytec-pfla02.dtsi vendor/device-tree/dist/src/arm/imx6qdl-rex.dtsi vendor/device-tree/dist/src/arm/imx6qdl-sabreauto.dtsi vendor/device-tree/dist/src/arm/imx6qdl-sabrelite.dtsi vendor/device-tree/dist/src/arm/imx6qdl-sabresd.dtsi vendor/device-tree/dist/src/arm/imx6qdl-tx6.dtsi vendor/device-tree/dist/src/arm/imx6qdl-udoo.dtsi vendor/device-tree/dist/src/arm/imx6qdl-wandboard-revb1.dtsi vendor/device-tree/dist/src/arm/imx6qdl-wandboard.dtsi vendor/device-tree/dist/src/arm/imx6qdl.dtsi vendor/device-tree/dist/src/arm/imx6qp.dtsi vendor/device-tree/dist/src/arm/imx6sl-warp.dts vendor/device-tree/dist/src/arm/imx6sl.dtsi vendor/device-tree/dist/src/arm/imx6sx-nitrogen6sx.dts vendor/device-tree/dist/src/arm/imx6sx-pinfunc.h vendor/device-tree/dist/src/arm/imx6sx-sabreauto.dts vendor/device-tree/dist/src/arm/imx6sx-sdb.dtsi vendor/device-tree/dist/src/arm/imx6sx.dtsi vendor/device-tree/dist/src/arm/imx6ul-14x14-evk.dts vendor/device-tree/dist/src/arm/imx6ul-pico-hobbit.dts vendor/device-tree/dist/src/arm/imx6ul-tx6ul-mainboard.dts vendor/device-tree/dist/src/arm/imx6ul-tx6ul.dtsi vendor/device-tree/dist/src/arm/imx6ul.dtsi vendor/device-tree/dist/src/arm/imx7d-cl-som-imx7.dts vendor/device-tree/dist/src/arm/imx7d-nitrogen7.dts vendor/device-tree/dist/src/arm/imx7d-pinfunc.h vendor/device-tree/dist/src/arm/imx7d-sdb.dts vendor/device-tree/dist/src/arm/imx7d.dtsi vendor/device-tree/dist/src/arm/integratorap.dts vendor/device-tree/dist/src/arm/integratorcp.dts vendor/device-tree/dist/src/arm/keystone-k2e-evm.dts vendor/device-tree/dist/src/arm/keystone-k2e.dtsi vendor/device-tree/dist/src/arm/keystone-k2g-evm.dts vendor/device-tree/dist/src/arm/keystone-k2g.dtsi vendor/device-tree/dist/src/arm/keystone-k2hk-evm.dts vendor/device-tree/dist/src/arm/keystone-k2l-evm.dts vendor/device-tree/dist/src/arm/keystone-k2l.dtsi vendor/device-tree/dist/src/arm/keystone.dtsi vendor/device-tree/dist/src/arm/kirkwood-ib62x0.dts vendor/device-tree/dist/src/arm/kirkwood-ns2lite.dts vendor/device-tree/dist/src/arm/kirkwood-openblocks_a6.dts vendor/device-tree/dist/src/arm/kirkwood-openrd.dtsi vendor/device-tree/dist/src/arm/kirkwood-topkick.dts vendor/device-tree/dist/src/arm/logicpd-som-lv-37xx-devkit.dts vendor/device-tree/dist/src/arm/logicpd-som-lv.dtsi vendor/device-tree/dist/src/arm/logicpd-torpedo-37xx-devkit.dts vendor/device-tree/dist/src/arm/logicpd-torpedo-som.dtsi vendor/device-tree/dist/src/arm/lpc18xx.dtsi vendor/device-tree/dist/src/arm/lpc32xx.dtsi vendor/device-tree/dist/src/arm/lpc4337-ciaa.dts vendor/device-tree/dist/src/arm/lpc4350-hitex-eval.dts vendor/device-tree/dist/src/arm/lpc4357-ea4357-devkit.dts vendor/device-tree/dist/src/arm/ls1021a-twr.dts vendor/device-tree/dist/src/arm/ls1021a.dtsi vendor/device-tree/dist/src/arm/meson8-minix-neo-x8.dts vendor/device-tree/dist/src/arm/meson8b.dtsi vendor/device-tree/dist/src/arm/mpa1600.dts vendor/device-tree/dist/src/arm/mps2-an385.dts vendor/device-tree/dist/src/arm/mps2-an399.dts vendor/device-tree/dist/src/arm/mps2.dtsi vendor/device-tree/dist/src/arm/mt2701.dtsi vendor/device-tree/dist/src/arm/omap2.dtsi vendor/device-tree/dist/src/arm/omap2420-h4.dts vendor/device-tree/dist/src/arm/omap2420-n8x0-common.dtsi vendor/device-tree/dist/src/arm/omap2420.dtsi vendor/device-tree/dist/src/arm/omap2430-sdp.dts vendor/device-tree/dist/src/arm/omap2430.dtsi vendor/device-tree/dist/src/arm/omap24xx-clocks.dtsi vendor/device-tree/dist/src/arm/omap3-beagle-xm.dts vendor/device-tree/dist/src/arm/omap3-beagle.dts vendor/device-tree/dist/src/arm/omap3-cm-t3x.dtsi vendor/device-tree/dist/src/arm/omap3-devkit8000-common.dtsi vendor/device-tree/dist/src/arm/omap3-devkit8000-lcd-common.dtsi vendor/device-tree/dist/src/arm/omap3-devkit8000-lcd43.dts vendor/device-tree/dist/src/arm/omap3-devkit8000-lcd70.dts vendor/device-tree/dist/src/arm/omap3-evm-37xx.dts vendor/device-tree/dist/src/arm/omap3-evm.dts vendor/device-tree/dist/src/arm/omap3-gta04.dtsi vendor/device-tree/dist/src/arm/omap3-ha-lcd.dts vendor/device-tree/dist/src/arm/omap3-igep.dtsi vendor/device-tree/dist/src/arm/omap3-igep0020-common.dtsi vendor/device-tree/dist/src/arm/omap3-ldp.dts vendor/device-tree/dist/src/arm/omap3-lilly-a83x.dtsi vendor/device-tree/dist/src/arm/omap3-n900.dts vendor/device-tree/dist/src/arm/omap3-n950-n9.dtsi vendor/device-tree/dist/src/arm/omap3-overo-alto35-common.dtsi vendor/device-tree/dist/src/arm/omap3-overo-base.dtsi vendor/device-tree/dist/src/arm/omap3-overo-chestnut43-common.dtsi vendor/device-tree/dist/src/arm/omap3-overo-common-dvi.dtsi vendor/device-tree/dist/src/arm/omap3-overo-common-lcd35.dtsi vendor/device-tree/dist/src/arm/omap3-overo-common-lcd43.dtsi vendor/device-tree/dist/src/arm/omap3-overo-gallop43-common.dtsi vendor/device-tree/dist/src/arm/omap3-overo-palo35-common.dtsi vendor/device-tree/dist/src/arm/omap3-overo-palo43-common.dtsi vendor/device-tree/dist/src/arm/omap3-overo-tobi-common.dtsi vendor/device-tree/dist/src/arm/omap3-overo-tobiduo-common.dtsi vendor/device-tree/dist/src/arm/omap3-pandora-common.dtsi vendor/device-tree/dist/src/arm/omap3-sb-t35.dtsi vendor/device-tree/dist/src/arm/omap3-sniper.dts vendor/device-tree/dist/src/arm/omap3-tao3530.dtsi vendor/device-tree/dist/src/arm/omap3-thunder.dts vendor/device-tree/dist/src/arm/omap3-zoom3.dts vendor/device-tree/dist/src/arm/omap3.dtsi vendor/device-tree/dist/src/arm/omap3430-sdp.dts vendor/device-tree/dist/src/arm/omap34xx.dtsi vendor/device-tree/dist/src/arm/omap36xx.dtsi vendor/device-tree/dist/src/arm/omap4-duovero-parlor.dts vendor/device-tree/dist/src/arm/omap4-duovero.dtsi vendor/device-tree/dist/src/arm/omap4-kc1.dts vendor/device-tree/dist/src/arm/omap4-panda-common.dtsi vendor/device-tree/dist/src/arm/omap4-sdp.dts vendor/device-tree/dist/src/arm/omap4-var-om44customboard.dtsi vendor/device-tree/dist/src/arm/omap4-var-som-om44.dtsi vendor/device-tree/dist/src/arm/omap4.dtsi vendor/device-tree/dist/src/arm/omap5-board-common.dtsi vendor/device-tree/dist/src/arm/omap5-cm-t54.dts vendor/device-tree/dist/src/arm/omap5-igep0050.dts vendor/device-tree/dist/src/arm/omap5-uevm.dts vendor/device-tree/dist/src/arm/omap5.dtsi vendor/device-tree/dist/src/arm/orion5x-linkstation-lsgl.dts vendor/device-tree/dist/src/arm/orion5x.dtsi vendor/device-tree/dist/src/arm/pm9g45.dts vendor/device-tree/dist/src/arm/pxa27x.dtsi vendor/device-tree/dist/src/arm/pxa2xx.dtsi vendor/device-tree/dist/src/arm/pxa3xx.dtsi vendor/device-tree/dist/src/arm/qcom-apq8064-asus-nexus7-flo.dts vendor/device-tree/dist/src/arm/qcom-apq8064-ifc6410.dts vendor/device-tree/dist/src/arm/qcom-apq8064-pins.dtsi vendor/device-tree/dist/src/arm/qcom-apq8064-sony-xperia-yuga.dts vendor/device-tree/dist/src/arm/qcom-apq8064.dtsi vendor/device-tree/dist/src/arm/qcom-apq8074-dragonboard.dts vendor/device-tree/dist/src/arm/qcom-apq8084.dtsi vendor/device-tree/dist/src/arm/qcom-ipq4019.dtsi vendor/device-tree/dist/src/arm/qcom-ipq8064-ap148.dts vendor/device-tree/dist/src/arm/qcom-ipq8064.dtsi vendor/device-tree/dist/src/arm/qcom-msm8660-surf.dts vendor/device-tree/dist/src/arm/qcom-msm8660.dtsi vendor/device-tree/dist/src/arm/qcom-msm8960.dtsi vendor/device-tree/dist/src/arm/qcom-msm8974-sony-xperia-honami.dts vendor/device-tree/dist/src/arm/qcom-msm8974.dtsi vendor/device-tree/dist/src/arm/qcom-pm8941.dtsi vendor/device-tree/dist/src/arm/qcom-pma8084.dtsi vendor/device-tree/dist/src/arm/r7s72100-genmai.dts vendor/device-tree/dist/src/arm/r7s72100.dtsi vendor/device-tree/dist/src/arm/r8a73a4-ape6evm.dts vendor/device-tree/dist/src/arm/r8a73a4.dtsi vendor/device-tree/dist/src/arm/r8a7740-armadillo800eva.dts vendor/device-tree/dist/src/arm/r8a7740.dtsi vendor/device-tree/dist/src/arm/r8a7778-bockw.dts vendor/device-tree/dist/src/arm/r8a7778.dtsi vendor/device-tree/dist/src/arm/r8a7779-marzen.dts vendor/device-tree/dist/src/arm/r8a7779.dtsi vendor/device-tree/dist/src/arm/r8a7790-lager.dts vendor/device-tree/dist/src/arm/r8a7790.dtsi vendor/device-tree/dist/src/arm/r8a7791-koelsch.dts vendor/device-tree/dist/src/arm/r8a7791-porter.dts vendor/device-tree/dist/src/arm/r8a7791.dtsi vendor/device-tree/dist/src/arm/r8a7793-gose.dts vendor/device-tree/dist/src/arm/r8a7793.dtsi vendor/device-tree/dist/src/arm/r8a7794-alt.dts vendor/device-tree/dist/src/arm/r8a7794-silk.dts vendor/device-tree/dist/src/arm/r8a7794.dtsi vendor/device-tree/dist/src/arm/rk3036-evb.dts vendor/device-tree/dist/src/arm/rk3036-kylin.dts vendor/device-tree/dist/src/arm/rk3036.dtsi vendor/device-tree/dist/src/arm/rk3066a-bqcurie2.dts vendor/device-tree/dist/src/arm/rk3066a-marsboard.dts vendor/device-tree/dist/src/arm/rk3066a-rayeager.dts vendor/device-tree/dist/src/arm/rk3066a.dtsi vendor/device-tree/dist/src/arm/rk3188-radxarock.dts vendor/device-tree/dist/src/arm/rk3188.dtsi vendor/device-tree/dist/src/arm/rk3228-evb.dts vendor/device-tree/dist/src/arm/rk3288-evb-act8846.dts vendor/device-tree/dist/src/arm/rk3288-evb-rk808.dts vendor/device-tree/dist/src/arm/rk3288-evb.dtsi vendor/device-tree/dist/src/arm/rk3288-firefly.dtsi vendor/device-tree/dist/src/arm/rk3288-miqi.dts vendor/device-tree/dist/src/arm/rk3288-popmetal.dts vendor/device-tree/dist/src/arm/rk3288-r89.dts vendor/device-tree/dist/src/arm/rk3288-rock2-som.dtsi vendor/device-tree/dist/src/arm/rk3288-veyron-chromebook.dtsi vendor/device-tree/dist/src/arm/rk3288-veyron.dtsi vendor/device-tree/dist/src/arm/rk3288.dtsi vendor/device-tree/dist/src/arm/rk3xxx.dtsi vendor/device-tree/dist/src/arm/s3c2416-pinctrl.dtsi vendor/device-tree/dist/src/arm/s3c6410-mini6410.dts vendor/device-tree/dist/src/arm/s3c64xx-pinctrl.dtsi vendor/device-tree/dist/src/arm/s5pv210-aquila.dts vendor/device-tree/dist/src/arm/s5pv210-goni.dts vendor/device-tree/dist/src/arm/s5pv210-pinctrl.dtsi vendor/device-tree/dist/src/arm/s5pv210-smdkc110.dts vendor/device-tree/dist/src/arm/s5pv210-smdkv210.dts vendor/device-tree/dist/src/arm/s5pv210-torbreck.dts vendor/device-tree/dist/src/arm/s5pv210.dtsi vendor/device-tree/dist/src/arm/sama5d2.dtsi vendor/device-tree/dist/src/arm/sama5d3.dtsi vendor/device-tree/dist/src/arm/sama5d31ek.dts vendor/device-tree/dist/src/arm/sama5d33ek.dts vendor/device-tree/dist/src/arm/sama5d34ek.dts vendor/device-tree/dist/src/arm/sama5d35ek.dts vendor/device-tree/dist/src/arm/sama5d36ek.dts vendor/device-tree/dist/src/arm/sama5d3xcm.dtsi vendor/device-tree/dist/src/arm/sama5d3xmb.dtsi vendor/device-tree/dist/src/arm/sama5d4.dtsi vendor/device-tree/dist/src/arm/sh73a0-kzm9g.dts vendor/device-tree/dist/src/arm/sh73a0.dtsi vendor/device-tree/dist/src/arm/skeleton.dtsi vendor/device-tree/dist/src/arm/socfpga.dtsi vendor/device-tree/dist/src/arm/socfpga_arria10.dtsi vendor/device-tree/dist/src/arm/socfpga_arria10_socdk.dtsi vendor/device-tree/dist/src/arm/socfpga_arria10_socdk_sdmmc.dts vendor/device-tree/dist/src/arm/socfpga_arria5_socdk.dts vendor/device-tree/dist/src/arm/socfpga_cyclone5_de0_sockit.dts vendor/device-tree/dist/src/arm/socfpga_cyclone5_mcv.dtsi vendor/device-tree/dist/src/arm/socfpga_cyclone5_mcvevk.dts vendor/device-tree/dist/src/arm/socfpga_cyclone5_socdk.dts vendor/device-tree/dist/src/arm/socfpga_cyclone5_sockit.dts vendor/device-tree/dist/src/arm/socfpga_cyclone5_socrates.dts vendor/device-tree/dist/src/arm/socfpga_cyclone5_vining_fpga.dts vendor/device-tree/dist/src/arm/spear13xx.dtsi vendor/device-tree/dist/src/arm/ste-dbx5x0.dtsi vendor/device-tree/dist/src/arm/ste-href-tvk1281618.dtsi vendor/device-tree/dist/src/arm/ste-href.dtsi vendor/device-tree/dist/src/arm/ste-hrefv60plus.dtsi vendor/device-tree/dist/src/arm/ste-nomadik-nhk15.dts vendor/device-tree/dist/src/arm/ste-nomadik-stn8815.dtsi vendor/device-tree/dist/src/arm/ste-snowball.dts vendor/device-tree/dist/src/arm/stih407-clock.dtsi vendor/device-tree/dist/src/arm/stih407-family.dtsi vendor/device-tree/dist/src/arm/stih407-pinctrl.dtsi vendor/device-tree/dist/src/arm/stih407.dtsi vendor/device-tree/dist/src/arm/stih410-clock.dtsi vendor/device-tree/dist/src/arm/stih410.dtsi vendor/device-tree/dist/src/arm/stih418-b2199.dts vendor/device-tree/dist/src/arm/stih418-clock.dtsi vendor/device-tree/dist/src/arm/stihxxx-b2120.dtsi vendor/device-tree/dist/src/arm/stm32429i-eval.dts vendor/device-tree/dist/src/arm/stm32f429-disco.dts vendor/device-tree/dist/src/arm/stm32f429.dtsi vendor/device-tree/dist/src/arm/stm32f469-disco.dts vendor/device-tree/dist/src/arm/sun4i-a10-a1000.dts vendor/device-tree/dist/src/arm/sun4i-a10-ba10-tvbox.dts vendor/device-tree/dist/src/arm/sun4i-a10-hackberry.dts vendor/device-tree/dist/src/arm/sun4i-a10-jesurun-q5.dts vendor/device-tree/dist/src/arm/sun4i-a10.dtsi vendor/device-tree/dist/src/arm/sun5i-a10s-auxtek-t004.dts vendor/device-tree/dist/src/arm/sun5i-a10s-mk802.dts vendor/device-tree/dist/src/arm/sun5i-a10s-olinuxino-micro.dts vendor/device-tree/dist/src/arm/sun5i-a10s-wobo-i5.dts vendor/device-tree/dist/src/arm/sun5i-a10s.dtsi vendor/device-tree/dist/src/arm/sun5i-a13-difrnce-dit4350.dts vendor/device-tree/dist/src/arm/sun5i-a13-inet-98v-rev2.dts vendor/device-tree/dist/src/arm/sun5i-a13-olinuxino.dts vendor/device-tree/dist/src/arm/sun5i-a13-q8-tablet.dts vendor/device-tree/dist/src/arm/sun5i-a13-utoo-p66.dts vendor/device-tree/dist/src/arm/sun5i-a13.dtsi vendor/device-tree/dist/src/arm/sun5i-r8-chip.dts vendor/device-tree/dist/src/arm/sun5i-r8.dtsi vendor/device-tree/dist/src/arm/sun5i.dtsi vendor/device-tree/dist/src/arm/sun6i-a31-hummingbird.dts vendor/device-tree/dist/src/arm/sun6i-a31-m9.dts vendor/device-tree/dist/src/arm/sun6i-a31-mele-a1000g-quad.dts vendor/device-tree/dist/src/arm/sun6i-a31.dtsi vendor/device-tree/dist/src/arm/sun6i-a31s-colorfly-e708-q1.dts vendor/device-tree/dist/src/arm/sun6i-a31s-sina31s.dts vendor/device-tree/dist/src/arm/sun6i-a31s.dtsi vendor/device-tree/dist/src/arm/sun7i-a20-lamobo-r1.dts vendor/device-tree/dist/src/arm/sun7i-a20-olimex-som-evb.dts vendor/device-tree/dist/src/arm/sun7i-a20-olinuxino-lime2-emmc.dts vendor/device-tree/dist/src/arm/sun7i-a20.dtsi vendor/device-tree/dist/src/arm/sun8i-a23-a33.dtsi vendor/device-tree/dist/src/arm/sun8i-a23-gt90h-v4.dts vendor/device-tree/dist/src/arm/sun8i-a23-ippo-q8h-v1.2.dts vendor/device-tree/dist/src/arm/sun8i-a23-ippo-q8h-v5.dts vendor/device-tree/dist/src/arm/sun8i-a23-polaroid-mid2809pxe04.dts vendor/device-tree/dist/src/arm/sun8i-a23-q8-tablet.dts vendor/device-tree/dist/src/arm/sun8i-a23.dtsi vendor/device-tree/dist/src/arm/sun8i-a33-et-q8-v1.6.dts vendor/device-tree/dist/src/arm/sun8i-a33-ga10h-v1.1.dts vendor/device-tree/dist/src/arm/sun8i-a33-ippo-q8h-v1.2.dts vendor/device-tree/dist/src/arm/sun8i-a33-q8-tablet.dts vendor/device-tree/dist/src/arm/sun8i-a33-sinlinx-sina33.dts vendor/device-tree/dist/src/arm/sun8i-a33.dtsi vendor/device-tree/dist/src/arm/sun8i-h3-orangepi-2.dts vendor/device-tree/dist/src/arm/sun8i-h3-orangepi-one.dts vendor/device-tree/dist/src/arm/sun8i-h3-orangepi-pc.dts vendor/device-tree/dist/src/arm/sun8i-h3-orangepi-plus.dts vendor/device-tree/dist/src/arm/sun8i-h3.dtsi vendor/device-tree/dist/src/arm/sun8i-q8-common.dtsi vendor/device-tree/dist/src/arm/sun9i-a80-cubieboard4.dts vendor/device-tree/dist/src/arm/sun9i-a80-optimus.dts vendor/device-tree/dist/src/arm/sun9i-a80.dtsi vendor/device-tree/dist/src/arm/tegra114-dalmore.dts vendor/device-tree/dist/src/arm/tegra114-roth.dts vendor/device-tree/dist/src/arm/tegra114-tn7.dts vendor/device-tree/dist/src/arm/tegra114.dtsi vendor/device-tree/dist/src/arm/tegra124-jetson-tk1-emc.dtsi vendor/device-tree/dist/src/arm/tegra124-jetson-tk1.dts vendor/device-tree/dist/src/arm/tegra124-nyan-big-emc.dtsi vendor/device-tree/dist/src/arm/tegra124-nyan-big.dts vendor/device-tree/dist/src/arm/tegra124-nyan-blaze-emc.dtsi vendor/device-tree/dist/src/arm/tegra124-nyan-blaze.dts vendor/device-tree/dist/src/arm/tegra124-nyan.dtsi vendor/device-tree/dist/src/arm/tegra124-venice2.dts vendor/device-tree/dist/src/arm/tegra124.dtsi vendor/device-tree/dist/src/arm/tegra20-colibri-512.dtsi vendor/device-tree/dist/src/arm/tegra20-harmony.dts vendor/device-tree/dist/src/arm/tegra20-paz00.dts vendor/device-tree/dist/src/arm/tegra20-seaboard.dts vendor/device-tree/dist/src/arm/tegra20-tamonten.dtsi vendor/device-tree/dist/src/arm/tegra20-trimslice.dts vendor/device-tree/dist/src/arm/tegra20-ventana.dts vendor/device-tree/dist/src/arm/tegra20-whistler.dts vendor/device-tree/dist/src/arm/tegra20.dtsi vendor/device-tree/dist/src/arm/tegra30-apalis.dtsi vendor/device-tree/dist/src/arm/tegra30-beaver.dts vendor/device-tree/dist/src/arm/tegra30-cardhu.dtsi vendor/device-tree/dist/src/arm/tegra30-colibri-eval-v3.dts vendor/device-tree/dist/src/arm/tegra30-colibri.dtsi vendor/device-tree/dist/src/arm/tegra30.dtsi vendor/device-tree/dist/src/arm/tny_a9260_common.dtsi vendor/device-tree/dist/src/arm/tny_a9263.dts vendor/device-tree/dist/src/arm/tps65217.dtsi vendor/device-tree/dist/src/arm/uniphier-pinctrl.dtsi vendor/device-tree/dist/src/arm/usb_a9260_common.dtsi vendor/device-tree/dist/src/arm/usb_a9263.dts vendor/device-tree/dist/src/arm/usb_a9g20_common.dtsi vendor/device-tree/dist/src/arm/vexpress-v2p-ca15-tc1.dts vendor/device-tree/dist/src/arm/vexpress-v2p-ca15_a7.dts vendor/device-tree/dist/src/arm/vf-colibri-eval-v3.dtsi vendor/device-tree/dist/src/arm/vf-colibri.dtsi vendor/device-tree/dist/src/arm/vf500.dtsi vendor/device-tree/dist/src/arm/vf610-zii-dev-rev-b.dts vendor/device-tree/dist/src/arm/vf610m4.dtsi vendor/device-tree/dist/src/arm/vfxxx.dtsi vendor/device-tree/dist/src/arm/zynq-7000.dtsi vendor/device-tree/dist/src/arm/zynq-parallella.dts vendor/device-tree/dist/src/arm/zynq-zc702.dts vendor/device-tree/dist/src/arm/zynq-zc706.dts vendor/device-tree/dist/src/arm/zynq-zed.dts vendor/device-tree/dist/src/arm/zynq-zybo.dts vendor/device-tree/dist/src/arm64/altera/socfpga_stratix10.dtsi vendor/device-tree/dist/src/arm64/amlogic/meson-gxbb-odroidc2.dts vendor/device-tree/dist/src/arm64/amlogic/meson-gxbb-p200.dts vendor/device-tree/dist/src/arm64/amlogic/meson-gxbb-p20x.dtsi vendor/device-tree/dist/src/arm64/amlogic/meson-gxbb-vega-s95.dtsi vendor/device-tree/dist/src/arm64/amlogic/meson-gxbb.dtsi vendor/device-tree/dist/src/arm64/apm/apm-merlin.dts vendor/device-tree/dist/src/arm64/apm/apm-mustang.dts vendor/device-tree/dist/src/arm64/apm/apm-shadowcat.dtsi vendor/device-tree/dist/src/arm64/apm/apm-storm.dtsi vendor/device-tree/dist/src/arm64/arm/juno-base.dtsi vendor/device-tree/dist/src/arm64/arm/juno-r1.dts vendor/device-tree/dist/src/arm64/arm/juno-r2.dts vendor/device-tree/dist/src/arm64/arm/juno.dts vendor/device-tree/dist/src/arm64/arm/rtsm_ve-aemv8a.dts vendor/device-tree/dist/src/arm64/broadcom/ns2-svk.dts vendor/device-tree/dist/src/arm64/broadcom/ns2.dtsi vendor/device-tree/dist/src/arm64/cavium/thunder-88xx.dtsi vendor/device-tree/dist/src/arm64/exynos/exynos7-espresso.dts vendor/device-tree/dist/src/arm64/exynos/exynos7-pinctrl.dtsi vendor/device-tree/dist/src/arm64/exynos/exynos7.dtsi vendor/device-tree/dist/src/arm64/freescale/fsl-ls1043a-qds.dts vendor/device-tree/dist/src/arm64/freescale/fsl-ls1043a-rdb.dts vendor/device-tree/dist/src/arm64/freescale/fsl-ls1043a.dtsi vendor/device-tree/dist/src/arm64/freescale/fsl-ls2080a-qds.dts vendor/device-tree/dist/src/arm64/freescale/fsl-ls2080a-rdb.dts vendor/device-tree/dist/src/arm64/freescale/fsl-ls2080a-simu.dts vendor/device-tree/dist/src/arm64/freescale/fsl-ls2080a.dtsi vendor/device-tree/dist/src/arm64/hisilicon/hi6220-hikey.dts vendor/device-tree/dist/src/arm64/hisilicon/hi6220.dtsi vendor/device-tree/dist/src/arm64/hisilicon/hip05.dtsi vendor/device-tree/dist/src/arm64/hisilicon/hip06-d03.dts vendor/device-tree/dist/src/arm64/hisilicon/hip06.dtsi vendor/device-tree/dist/src/arm64/marvell/armada-3720-db.dts vendor/device-tree/dist/src/arm64/marvell/armada-37xx.dtsi vendor/device-tree/dist/src/arm64/marvell/armada-8020.dtsi vendor/device-tree/dist/src/arm64/marvell/armada-8040.dtsi vendor/device-tree/dist/src/arm64/marvell/armada-ap806.dtsi vendor/device-tree/dist/src/arm64/marvell/armada-cp110-master.dtsi vendor/device-tree/dist/src/arm64/marvell/berlin4ct-dmp.dts vendor/device-tree/dist/src/arm64/marvell/berlin4ct-stb.dts vendor/device-tree/dist/src/arm64/marvell/berlin4ct.dtsi vendor/device-tree/dist/src/arm64/mediatek/mt8173-evb.dts vendor/device-tree/dist/src/arm64/mediatek/mt8173.dtsi vendor/device-tree/dist/src/arm64/nvidia/tegra132.dtsi vendor/device-tree/dist/src/arm64/nvidia/tegra210-p2180.dtsi vendor/device-tree/dist/src/arm64/nvidia/tegra210-p2371-2180.dts vendor/device-tree/dist/src/arm64/nvidia/tegra210-p2597.dtsi vendor/device-tree/dist/src/arm64/nvidia/tegra210-smaug.dts vendor/device-tree/dist/src/arm64/nvidia/tegra210.dtsi vendor/device-tree/dist/src/arm64/qcom/apq8016-sbc-soc-pins.dtsi vendor/device-tree/dist/src/arm64/qcom/apq8016-sbc.dtsi vendor/device-tree/dist/src/arm64/qcom/msm8916.dtsi vendor/device-tree/dist/src/arm64/qcom/msm8996.dtsi vendor/device-tree/dist/src/arm64/qcom/pm8916.dtsi vendor/device-tree/dist/src/arm64/qcom/pm8994.dtsi vendor/device-tree/dist/src/arm64/renesas/r8a7795-salvator-x.dts vendor/device-tree/dist/src/arm64/renesas/r8a7795.dtsi vendor/device-tree/dist/src/arm64/rockchip/rk3368-geekbox.dts vendor/device-tree/dist/src/arm64/rockchip/rk3368-r88.dts vendor/device-tree/dist/src/arm64/rockchip/rk3368.dtsi vendor/device-tree/dist/src/arm64/rockchip/rk3399-evb.dts vendor/device-tree/dist/src/arm64/rockchip/rk3399.dtsi vendor/device-tree/dist/src/arm64/socionext/uniphier-pinctrl.dtsi vendor/device-tree/dist/src/arm64/xilinx/zynqmp-ep108.dts vendor/device-tree/dist/src/arm64/xilinx/zynqmp.dtsi vendor/device-tree/dist/src/mips/brcm/bcm7125.dtsi vendor/device-tree/dist/src/mips/brcm/bcm7346.dtsi vendor/device-tree/dist/src/mips/brcm/bcm7358.dtsi vendor/device-tree/dist/src/mips/brcm/bcm7360.dtsi vendor/device-tree/dist/src/mips/brcm/bcm7362.dtsi vendor/device-tree/dist/src/mips/brcm/bcm7420.dtsi vendor/device-tree/dist/src/mips/brcm/bcm7425.dtsi vendor/device-tree/dist/src/mips/brcm/bcm7435.dtsi vendor/device-tree/dist/src/mips/brcm/bcm97125cbmb.dts vendor/device-tree/dist/src/mips/brcm/bcm97346dbsmb.dts vendor/device-tree/dist/src/mips/brcm/bcm97358svmb.dts vendor/device-tree/dist/src/mips/brcm/bcm97360svmb.dts vendor/device-tree/dist/src/mips/brcm/bcm97362svmb.dts vendor/device-tree/dist/src/mips/brcm/bcm97420c.dts vendor/device-tree/dist/src/mips/brcm/bcm97425svmb.dts vendor/device-tree/dist/src/mips/brcm/bcm97435svmb.dts vendor/device-tree/dist/src/mips/cavium-octeon/dlink_dsr-1000n.dts vendor/device-tree/dist/src/mips/cavium-octeon/octeon_3xxx.dts vendor/device-tree/dist/src/mips/ingenic/jz4740.dtsi vendor/device-tree/dist/src/mips/ingenic/qi_lb60.dts vendor/device-tree/dist/src/mips/mti/malta.dts vendor/device-tree/dist/src/mips/mti/sead3.dts Modified: vendor/device-tree/dist/Bindings/arm/altera/socfpga-eccmgr.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/altera/socfpga-eccmgr.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/altera/socfpga-eccmgr.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -61,7 +61,9 @@ Required Properties: - #address-cells: must be 1 - #size-cells: must be 1 - interrupts : Should be single bit error interrupt, then double bit error - interrupt. Note the rising edge type. + interrupt. +- interrupt-controller : boolean indicator that ECC Manager is an interrupt controller +- #interrupt-cells : must be set to 2. - ranges : standard definition, should translate from local addresses Subcomponents: @@ -70,11 +72,64 @@ L2 Cache ECC Required Properties: - compatible : Should be "altr,socfpga-a10-l2-ecc" - reg : Address and size for ECC error interrupt clear registers. +- interrupts : Should be single bit error interrupt, then double bit error + interrupt, in this order. On-Chip RAM ECC Required Properties: - compatible : Should be "altr,socfpga-a10-ocram-ecc" - reg : Address and size for ECC block registers. +- interrupts : Should be single bit error interrupt, then double bit error + interrupt, in this order. + +Ethernet FIFO ECC +Required Properties: +- compatible : Should be "altr,socfpga-eth-mac-ecc" +- reg : Address and size for ECC block registers. +- altr,ecc-parent : phandle to parent Ethernet node. +- interrupts : Should be single bit error interrupt, then double bit error + interrupt, in this order. + +NAND FIFO ECC +Required Properties: +- compatible : Should be "altr,socfpga-nand-ecc" +- reg : Address and size for ECC block registers. +- altr,ecc-parent : phandle to parent NAND node. +- interrupts : Should be single bit error interrupt, then double bit error + interrupt, in this order. + +DMA FIFO ECC +Required Properties: +- compatible : Should be "altr,socfpga-dma-ecc" +- reg : Address and size for ECC block registers. +- altr,ecc-parent : phandle to parent DMA node. +- interrupts : Should be single bit error interrupt, then double bit error + interrupt, in this order. + +USB FIFO ECC +Required Properties: +- compatible : Should be "altr,socfpga-usb-ecc" +- reg : Address and size for ECC block registers. +- altr,ecc-parent : phandle to parent USB node. +- interrupts : Should be single bit error interrupt, then double bit error + interrupt, in this order. + +QSPI FIFO ECC +Required Properties: +- compatible : Should be "altr,socfpga-qspi-ecc" +- reg : Address and size for ECC block registers. +- altr,ecc-parent : phandle to parent QSPI node. +- interrupts : Should be single bit error interrupt, then double bit error + interrupt, in this order. + +SDMMC FIFO ECC +Required Properties: +- compatible : Should be "altr,socfpga-sdmmc-ecc" +- reg : Address and size for ECC block registers. +- altr,ecc-parent : phandle to parent SD/MMC node. +- interrupts : Should be single bit error interrupt, then double bit error + interrupt, in this order for port A, and then single bit error interrupt, + then double bit error interrupt in this order for port B. Example: @@ -85,15 +140,94 @@ Example: #size-cells = <1>; interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>, <0 0 IRQ_TYPE_LEVEL_HIGH>; + interrupt-controller; + #interrupt-cells = <2>; ranges; l2-ecc@ffd06010 { compatible = "altr,socfpga-a10-l2-ecc"; reg = <0xffd06010 0x4>; + interrupts = <0 IRQ_TYPE_LEVEL_HIGH>, + <32 IRQ_TYPE_LEVEL_HIGH>; }; ocram-ecc@ff8c3000 { compatible = "altr,socfpga-a10-ocram-ecc"; reg = <0xff8c3000 0x90>; + interrupts = <1 IRQ_TYPE_LEVEL_HIGH>, + <33 IRQ_TYPE_LEVEL_HIGH> ; + }; + + emac0-rx-ecc@ff8c0800 { + compatible = "altr,socfpga-eth-mac-ecc"; + reg = <0xff8c0800 0x400>; + altr,ecc-parent = <&gmac0>; + interrupts = <4 IRQ_TYPE_LEVEL_HIGH>, + <36 IRQ_TYPE_LEVEL_HIGH>; + }; + + emac0-tx-ecc@ff8c0c00 { + compatible = "altr,socfpga-eth-mac-ecc"; + reg = <0xff8c0c00 0x400>; + altr,ecc-parent = <&gmac0>; + interrupts = <5 IRQ_TYPE_LEVEL_HIGH>, + <37 IRQ_TYPE_LEVEL_HIGH>; + }; + + nand-buf-ecc@ff8c2000 { + compatible = "altr,socfpga-nand-ecc"; + reg = <0xff8c2000 0x400>; + altr,ecc-parent = <&nand>; + interrupts = <11 IRQ_TYPE_LEVEL_HIGH>, + <43 IRQ_TYPE_LEVEL_HIGH>; + }; + + nand-rd-ecc@ff8c2400 { + compatible = "altr,socfpga-nand-ecc"; + reg = <0xff8c2400 0x400>; + altr,ecc-parent = <&nand>; + interrupts = <13 IRQ_TYPE_LEVEL_HIGH>, + <45 IRQ_TYPE_LEVEL_HIGH>; + }; + + nand-wr-ecc@ff8c2800 { + compatible = "altr,socfpga-nand-ecc"; + reg = <0xff8c2800 0x400>; + altr,ecc-parent = <&nand>; + interrupts = <12 IRQ_TYPE_LEVEL_HIGH>, + <44 IRQ_TYPE_LEVEL_HIGH>; + }; + + dma-ecc@ff8c8000 { + compatible = "altr,socfpga-dma-ecc"; + reg = <0xff8c8000 0x400>; + altr,ecc-parent = <&pdma>; + interrupts = <10 IRQ_TYPE_LEVEL_HIGH>, + <42 IRQ_TYPE_LEVEL_HIGH>; + + usb0-ecc@ff8c8800 { + compatible = "altr,socfpga-usb-ecc"; + reg = <0xff8c8800 0x400>; + altr,ecc-parent = <&usb0>; + interrupts = <2 IRQ_TYPE_LEVEL_HIGH>, + <34 IRQ_TYPE_LEVEL_HIGH>; + }; + + qspi-ecc@ff8c8400 { + compatible = "altr,socfpga-qspi-ecc"; + reg = <0xff8c8400 0x400>; + altr,ecc-parent = <&qspi>; + interrupts = <14 IRQ_TYPE_LEVEL_HIGH>, + <46 IRQ_TYPE_LEVEL_HIGH>; + }; + + sdmmc-ecc@ff8c2c00 { + compatible = "altr,socfpga-sdmmc-ecc"; + reg = <0xff8c2c00 0x400>; + altr,ecc-parent = <&mmc>; + interrupts = <15 IRQ_TYPE_LEVEL_HIGH>, + <47 IRQ_TYPE_LEVEL_HIGH>, + <16 IRQ_TYPE_LEVEL_HIGH>, + <48 IRQ_TYPE_LEVEL_HIGH>; }; }; Added: vendor/device-tree/dist/Bindings/arm/amlogic,scpi.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/device-tree/dist/Bindings/arm/amlogic,scpi.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -0,0 +1,20 @@ +System Control and Power Interface (SCPI) Message Protocol +(in addition to the standard binding in [0]) +---------------------------------------------------------- +Required properties + +- compatible : should be "amlogic,meson-gxbb-scpi" + +AMLOGIC SRAM and Shared Memory for SCPI +------------------------------------ + +Required properties: +- compatible : should be "amlogic,meson-gxbb-sram" + +Each sub-node represents the reserved area for SCPI. + +Required sub-node properties: +- compatible : should be "amlogic,meson-gxbb-scp-shmem" for SRAM based shared + memory on Amlogic GXBB SoC. + +[0] Documentation/devicetree/bindings/arm/arm,scpi.txt Modified: vendor/device-tree/dist/Bindings/arm/amlogic.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/amlogic.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/amlogic.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -17,6 +17,18 @@ Boards with the Amlogic Meson GXBaby SoC Required root node property: compatible: "amlogic,meson-gxbb"; +Boards with the Amlogic Meson GXL S905X SoC shall have the following properties: + Required root node property: + compatible: "amlogic,s905x", "amlogic,meson-gxl"; + +Boards with the Amlogic Meson GXL S905D SoC shall have the following properties: + Required root node property: + compatible: "amlogic,s905d", "amlogic,meson-gxl"; + +Boards with the Amlogic Meson GXM S912 SoC shall have the following properties: + Required root node property: + compatible: "amlogic,s912", "amlogic,meson-gxm"; + Board compatible values: - "geniatech,atv1200" (Meson6) - "minix,neo-x8" (Meson8) @@ -28,3 +40,10 @@ Board compatible values: - "hardkernel,odroid-c2" (Meson gxbb) - "amlogic,p200" (Meson gxbb) - "amlogic,p201" (Meson gxbb) + - "amlogic,p212" (Meson gxl s905x) + - "amlogic,p230" (Meson gxl s905d) + - "amlogic,p231" (Meson gxl s905d) + - "amlogic,q200" (Meson gxm s912) + - "amlogic,q201" (Meson gxm s912) + - "nexbox,a95x" (Meson gxbb or Meson gxl s905x) + - "nexbox,a1" (Meson gxm s912) Modified: vendor/device-tree/dist/Bindings/arm/arch_timer.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/arch_timer.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/arch_timer.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -25,6 +25,12 @@ to deliver its interrupts via SPIs. - always-on : a boolean property. If present, the timer is powered through an always-on power domain, therefore it never loses context. +- fsl,erratum-a008585 : A boolean property. Indicates the presence of + QorIQ erratum A-008585, which says that reading the counter is + unreliable unless the same value is returned by back-to-back reads. + This also affects writes to the tval register, due to the implicit + counter read. + ** Optional properties: - arm,cpu-registers-not-fw-configured : Firmware does not initialize @@ -32,6 +38,11 @@ to deliver its interrupts via SPIs. architecturally-defined reset values. Only supported for 32-bit systems which follow the ARMv7 architected reset values. +- arm,no-tick-in-suspend : The main counter does not tick when the system is in + low-power system suspend on some SoCs. This behavior does not match the + Architecture Reference Manual's specification that the system counter "must + be implemented in an always-on power domain." + Example: Modified: vendor/device-tree/dist/Bindings/arm/arm,scpi.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/arm,scpi.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/arm,scpi.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -7,7 +7,10 @@ by Linux to initiate various system cont Required properties: -- compatible : should be "arm,scpi" +- compatible : should be + * "arm,scpi" : For implementations complying to SCPI v1.0 or above + * "arm,scpi-pre-1.0" : For implementations complying to all + unversioned releases prior to SCPI v1.0 - mboxes: List of phandle and mailbox channel specifiers All the channels reserved by remote SCP firmware for use by SCPI message protocol should be specified in any order @@ -59,18 +62,14 @@ SRAM and Shared Memory for SCPI A small area of SRAM is reserved for SCPI communication between application processors and SCP. -Required properties: -- compatible : should be "arm,juno-sram-ns" for Non-secure SRAM on Juno - -The rest of the properties should follow the generic mmio-sram description -found in ../../sram/sram.txt +The properties should follow the generic mmio-sram description found in [3] Each sub-node represents the reserved area for SCPI. Required sub-node properties: - reg : The base offset and size of the reserved area with the SRAM -- compatible : should be "arm,juno-scp-shmem" for Non-secure SRAM based - shared memory on Juno platforms +- compatible : should be "arm,scp-shmem" for Non-secure SRAM based + shared memory Sensor bindings for the sensors based on SCPI Message Protocol -------------------------------------------------------------- @@ -81,16 +80,37 @@ Required properties: - #thermal-sensor-cells: should be set to 1. This property follows the thermal device tree bindings[2]. - Valid cell values are raw identifiers (Sensor - ID) as used by the firmware. Refer to - platform documentation for your - implementation for the IDs to use. For Juno - R0 and Juno R1 refer to [3]. + Valid cell values are raw identifiers (Sensor ID) + as used by the firmware. Refer to platform details + for your implementation for the IDs to use. + +Power domain bindings for the power domains based on SCPI Message Protocol +------------------------------------------------------------ + +This binding uses the generic power domain binding[4]. + +PM domain providers +=================== + +Required properties: + - #power-domain-cells : Should be 1. Contains the device or the power + domain ID value used by SCPI commands. + - num-domains: Total number of power domains provided by SCPI. This is + needed as the SCPI message protocol lacks a mechanism to + query this information at runtime. + +PM domain consumers +=================== + +Required properties: + - power-domains : A phandle and PM domain specifier as defined by bindings of + the power controller specified by phandle. [0] http://infocenter.arm.com/help/topic/com.arm.doc.dui0922b/index.html [1] Documentation/devicetree/bindings/clock/clock-bindings.txt [2] Documentation/devicetree/bindings/thermal/thermal.txt -[3] http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0922b/apas03s22.html +[3] Documentation/devicetree/bindings/sram/sram.txt +[4] Documentation/devicetree/bindings/power/power_domain.txt Example: @@ -144,6 +164,12 @@ scpi_protocol: scpi@2e000000 { compatible = "arm,scpi-sensors"; #thermal-sensor-cells = <1>; }; + + scpi_devpd: scpi-power-domains { + compatible = "arm,scpi-power-domains"; + num-domains = <2>; + #power-domain-cells = <1>; + }; }; cpu@0 { @@ -156,6 +182,7 @@ hdlcd@7ff60000 { ... reg = <0 0x7ff60000 0 0x1000>; clocks = <&scpi_clk 4>; + power-domains = <&scpi_devpd 1>; }; thermal-zones { @@ -186,3 +213,7 @@ The thermal-sensors property in the soc_ temperature sensor provided by SCP firmware to setup a thermal zone. The ID "3" is the sensor identifier for the temperature sensor as used by the firmware. + +The num-domains property in scpi-power-domains domain specifies that +SCPI provides 2 power domains. The hdlcd node uses the power domain with +domain ID 1. Modified: vendor/device-tree/dist/Bindings/arm/arm-boards ============================================================================== --- vendor/device-tree/dist/Bindings/arm/arm-boards Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/arm-boards Tue Mar 7 12:41:06 2017 (r314847) @@ -148,11 +148,12 @@ Example: /dts-v1/; #include -#include "skeleton.dtsi" / { model = "ARM RealView PB1176 with device tree"; compatible = "arm,realview-pb1176"; + #address-cells = <1>; + #size-cells = <1>; soc { #address-cells = <1>; Modified: vendor/device-tree/dist/Bindings/arm/atmel-at91.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/atmel-at91.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/atmel-at91.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -225,3 +225,19 @@ required properties: compatible = "atmel,sama5d3-sfr", "syscon"; reg = <0xf0038000 0x60>; }; + +Security Module (SECUMOD) + +The Security Module macrocell provides all necessary secure functions to avoid +voltage, temperature, frequency and mechanical attacks on the chip. It also +embeds secure memories that can be scrambled + +required properties: +- compatible: Should be "atmel,-secumod", "syscon". + can be "sama5d2". +- reg: Should contain registers location and length + + secumod@fc040000 { + compatible = "atmel,sama5d2-secumod", "syscon"; + reg = <0xfc040000 0x100>; + }; Modified: vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm11351-cpu-method.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm11351-cpu-method.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm11351-cpu-method.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -5,7 +5,7 @@ CPUs in the following Broadcom SoCs: BCM11130, BCM11140, BCM11351, BCM28145, BCM28155, BCM21664 The enable method is specified by defining the following required -properties in the "cpus" device tree node: +properties in the "cpu" device tree node: - enable-method = "brcm,bcm11351-cpu-method"; - secondary-boot-reg = <...>; @@ -19,8 +19,6 @@ Example: cpus { #address-cells = <1>; #size-cells = <0>; - enable-method = "brcm,bcm11351-cpu-method"; - secondary-boot-reg = <0x3500417c>; cpu0: cpu@0 { device_type = "cpu"; @@ -32,5 +30,7 @@ Example: device_type = "cpu"; compatible = "arm,cortex-a9"; reg = <1>; + enable-method = "brcm,bcm11351-cpu-method"; + secondary-boot-reg = <0x3500417c>; }; }; Added: vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm23550-cpu-method.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm23550-cpu-method.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -0,0 +1,36 @@ +Broadcom Kona Family CPU Enable Method +-------------------------------------- +This binding defines the enable method used for starting secondary +CPUs in the following Broadcom SoCs: + BCM23550 + +The enable method is specified by defining the following required +properties in the "cpu" device tree node: + - enable-method = "brcm,bcm23550"; + - secondary-boot-reg = <...>; + +The secondary-boot-reg property is a u32 value that specifies the +physical address of the register used to request the ROM holding pen +code release a secondary CPU. The value written to the register is +formed by encoding the target CPU id into the low bits of the +physical start address it should jump to. + +Example: + cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu0: cpu@0 { + device_type = "cpu"; + compatible = "arm,cortex-a9"; + reg = <0>; + }; + + cpu1: cpu@1 { + device_type = "cpu"; + compatible = "arm,cortex-a9"; + reg = <1>; + enable-method = "brcm,bcm23550"; + secondary-boot-reg = <0x3500417c>; + }; + }; Added: vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm23550.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm23550.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -0,0 +1,15 @@ +Broadcom BCM23550 device tree bindings +-------------------------------------- + +This document describes the device tree bindings for boards with the BCM23550 +SoC. + +Required root node property: + - compatible: brcm,bcm23550 + +Example: + / { + model = "BCM23550 SoC"; + compatible = "brcm,bcm23550"; + [...] + } Modified: vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm2835.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm2835.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/bcm/brcm,bcm2835.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -30,10 +30,18 @@ Raspberry Pi 2 Model B Required root node properties: compatible = "raspberrypi,2-model-b", "brcm,bcm2836"; +Raspberry Pi 3 Model B +Required root node properties: +compatible = "raspberrypi,3-model-b", "brcm,bcm2837"; + Raspberry Pi Compute Module Required root node properties: compatible = "raspberrypi,compute-module", "brcm,bcm2835"; +Raspberry Pi Zero +Required root node properties: +compatible = "raspberrypi,model-zero", "brcm,bcm2835"; + Generic BCM2835 board Required root node properties: compatible = "brcm,bcm2835"; Added: vendor/device-tree/dist/Bindings/arm/bcm/brcm,ns2.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/device-tree/dist/Bindings/arm/bcm/brcm,ns2.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -0,0 +1,9 @@ +Broadcom North Star 2 (NS2) device tree bindings +------------------------------------------------ + +Boards with NS2 shall have the following properties: + +Required root node property: + +NS2 SVK board +compatible = "brcm,ns2-svk", "brcm,ns2"; Modified: vendor/device-tree/dist/Bindings/arm/coresight.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/coresight.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/coresight.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -12,14 +12,33 @@ its hardware characteristcs. * compatible: These have to be supplemented with "arm,primecell" as drivers are using the AMBA bus interface. Possible values include: - - "arm,coresight-etb10", "arm,primecell"; - - "arm,coresight-tpiu", "arm,primecell"; - - "arm,coresight-tmc", "arm,primecell"; - - "arm,coresight-funnel", "arm,primecell"; - - "arm,coresight-etm3x", "arm,primecell"; - - "arm,coresight-etm4x", "arm,primecell"; - - "qcom,coresight-replicator1x", "arm,primecell"; - - "arm,coresight-stm", "arm,primecell"; [1] + - Embedded Trace Buffer (version 1.0): + "arm,coresight-etb10", "arm,primecell"; + + - Trace Port Interface Unit: + "arm,coresight-tpiu", "arm,primecell"; + + - Trace Memory Controller, used for Embedded Trace Buffer(ETB), + Embedded Trace FIFO(ETF) and Embedded Trace Router(ETR) + configuration. The configuration mode (ETB, ETF, ETR) is + discovered at boot time when the device is probed. + "arm,coresight-tmc", "arm,primecell"; + + - Trace Funnel: + "arm,coresight-funnel", "arm,primecell"; + + - Embedded Trace Macrocell (version 3.x) and + Program Flow Trace Macrocell: + "arm,coresight-etm3x", "arm,primecell"; + + - Embedded Trace Macrocell (version 4.x): + "arm,coresight-etm4x", "arm,primecell"; + + - Qualcomm Configurable Replicator (version 1.x): + "qcom,coresight-replicator1x", "arm,primecell"; + + - System Trace Macrocell: + "arm,coresight-stm", "arm,primecell"; [1] * reg: physical base address and length of the register set(s) of the component. Added: vendor/device-tree/dist/Bindings/arm/cpu-capacity.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/device-tree/dist/Bindings/arm/cpu-capacity.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -0,0 +1,236 @@ +========================================== +ARM CPUs capacity bindings +========================================== + +========================================== +1 - Introduction +========================================== + +ARM systems may be configured to have cpus with different power/performance +characteristics within the same chip. In this case, additional information has +to be made available to the kernel for it to be aware of such differences and +take decisions accordingly. + +========================================== +2 - CPU capacity definition +========================================== + +CPU capacity is a number that provides the scheduler information about CPUs +heterogeneity. Such heterogeneity can come from micro-architectural differences +(e.g., ARM big.LITTLE systems) or maximum frequency at which CPUs can run +(e.g., SMP systems with multiple frequency domains). Heterogeneity in this +context is about differing performance characteristics; this binding tries to +capture a first-order approximation of the relative performance of CPUs. + +CPU capacities are obtained by running a suitable benchmark. This binding makes +no guarantees on the validity or suitability of any particular benchmark, the +final capacity should, however, be: + +* A "single-threaded" or CPU affine benchmark +* Divided by the running frequency of the CPU executing the benchmark +* Not subject to dynamic frequency scaling of the CPU + +For the time being we however advise usage of the Dhrystone benchmark. What +above thus becomes: + +CPU capacities are obtained by running the Dhrystone benchmark on each CPU at +max frequency (with caches enabled). The obtained DMIPS score is then divided +by the frequency (in MHz) at which the benchmark has been run, so that +DMIPS/MHz are obtained. Such values are then normalized w.r.t. the highest +score obtained in the system. + +========================================== +3 - capacity-dmips-mhz +========================================== + +capacity-dmips-mhz is an optional cpu node [1] property: u32 value +representing CPU capacity expressed in normalized DMIPS/MHz. At boot time, the +maximum frequency available to the cpu is then used to calculate the capacity +value internally used by the kernel. + +capacity-dmips-mhz property is all-or-nothing: if it is specified for a cpu +node, it has to be specified for every other cpu nodes, or the system will +fall back to the default capacity value for every CPU. If cpufreq is not +available, final capacities are calculated by directly using capacity-dmips- +mhz values (normalized w.r.t. the highest value found while parsing the DT). + +=========================================== +4 - Examples +=========================================== + +Example 1 (ARM 64-bit, 6-cpu system, two clusters): +capacities-dmips-mhz are scaled w.r.t. 1024 (cpu@0 and cpu@1) +supposing cluster0@max-freq=1100 and custer1@max-freq=850, +final capacities are 1024 for cluster0 and 446 for cluster1 + +cpus { + #address-cells = <2>; + #size-cells = <0>; + + cpu-map { + cluster0 { + core0 { + cpu = <&A57_0>; + }; + core1 { + cpu = <&A57_1>; + }; + }; + + cluster1 { + core0 { + cpu = <&A53_0>; + }; + core1 { + cpu = <&A53_1>; + }; + core2 { + cpu = <&A53_2>; + }; + core3 { + cpu = <&A53_3>; + }; + }; + }; + + idle-states { + entry-method = "arm,psci"; + + CPU_SLEEP_0: cpu-sleep-0 { + compatible = "arm,idle-state"; + arm,psci-suspend-param = <0x0010000>; + local-timer-stop; + entry-latency-us = <100>; + exit-latency-us = <250>; + min-residency-us = <150>; + }; + + CLUSTER_SLEEP_0: cluster-sleep-0 { + compatible = "arm,idle-state"; + arm,psci-suspend-param = <0x1010000>; + local-timer-stop; + entry-latency-us = <800>; + exit-latency-us = <700>; + min-residency-us = <2500>; + }; + }; + + A57_0: cpu@0 { + compatible = "arm,cortex-a57","arm,armv8"; + reg = <0x0 0x0>; + device_type = "cpu"; + enable-method = "psci"; + next-level-cache = <&A57_L2>; + clocks = <&scpi_dvfs 0>; + cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; + capacity-dmips-mhz = <1024>; + }; + + A57_1: cpu@1 { + compatible = "arm,cortex-a57","arm,armv8"; + reg = <0x0 0x1>; + device_type = "cpu"; + enable-method = "psci"; + next-level-cache = <&A57_L2>; + clocks = <&scpi_dvfs 0>; + cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; + capacity-dmips-mhz = <1024>; + }; + + A53_0: cpu@100 { + compatible = "arm,cortex-a53","arm,armv8"; + reg = <0x0 0x100>; + device_type = "cpu"; + enable-method = "psci"; + next-level-cache = <&A53_L2>; + clocks = <&scpi_dvfs 1>; + cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; + capacity-dmips-mhz = <578>; + }; + + A53_1: cpu@101 { + compatible = "arm,cortex-a53","arm,armv8"; + reg = <0x0 0x101>; + device_type = "cpu"; + enable-method = "psci"; + next-level-cache = <&A53_L2>; + clocks = <&scpi_dvfs 1>; + cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; + capacity-dmips-mhz = <578>; + }; + + A53_2: cpu@102 { + compatible = "arm,cortex-a53","arm,armv8"; + reg = <0x0 0x102>; + device_type = "cpu"; + enable-method = "psci"; + next-level-cache = <&A53_L2>; + clocks = <&scpi_dvfs 1>; + cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; + capacity-dmips-mhz = <578>; + }; + + A53_3: cpu@103 { + compatible = "arm,cortex-a53","arm,armv8"; + reg = <0x0 0x103>; + device_type = "cpu"; + enable-method = "psci"; + next-level-cache = <&A53_L2>; + clocks = <&scpi_dvfs 1>; + cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; + capacity-dmips-mhz = <578>; + }; + + A57_L2: l2-cache0 { + compatible = "cache"; + }; + + A53_L2: l2-cache1 { + compatible = "cache"; + }; +}; + +Example 2 (ARM 32-bit, 4-cpu system, two clusters, + cpus 0,1@1GHz, cpus 2,3@500MHz): +capacities-dmips-mhz are scaled w.r.t. 2 (cpu@0 and cpu@1), this means that first +cpu@0 and cpu@1 are twice fast than cpu@2 and cpu@3 (at the same frequency) + +cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu0: cpu@0 { + device_type = "cpu"; + compatible = "arm,cortex-a15"; + reg = <0>; + capacity-dmips-mhz = <2>; + }; + + cpu1: cpu@1 { + device_type = "cpu"; + compatible = "arm,cortex-a15"; + reg = <1>; + capacity-dmips-mhz = <2>; + }; + + cpu2: cpu@2 { + device_type = "cpu"; + compatible = "arm,cortex-a15"; + reg = <0x100>; + capacity-dmips-mhz = <1>; + }; + + cpu3: cpu@3 { + device_type = "cpu"; + compatible = "arm,cortex-a15"; + reg = <0x101>; + capacity-dmips-mhz = <1>; + }; +}; + +=========================================== +5 - References +=========================================== + +[1] ARM Linux Kernel documentation - CPUs bindings + Documentation/devicetree/bindings/arm/cpus.txt Modified: vendor/device-tree/dist/Bindings/arm/cpus.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/cpus.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/cpus.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -178,6 +178,7 @@ nodes to be present and contain the prop "marvell,pj4b" "marvell,sheeva-v5" "nvidia,tegra132-denver" + "nvidia,tegra186-denver" "qcom,krait" "qcom,kryo" "qcom,scorpion" @@ -193,6 +194,8 @@ nodes to be present and contain the prop "allwinner,sun6i-a31" "allwinner,sun8i-a23" "arm,realview-smp" + "brcm,bcm11351-cpu-method" + "brcm,bcm23550" "brcm,bcm-nsp-smp" "brcm,brahma-b15" "marvell,armada-375-smp" @@ -204,6 +207,7 @@ nodes to be present and contain the prop "qcom,gcc-msm8660" "qcom,kpss-acc-v1" "qcom,kpss-acc-v2" + "renesas,apmu" "rockchip,rk3036-smp" "rockchip,rk3066-smp" "ste,dbx500-smp" @@ -238,6 +242,14 @@ nodes to be present and contain the prop # List of phandles to idle state nodes supported by this cpu [3]. + - capacity-dmips-mhz + Usage: Optional + Value type: + Definition: + # u32 value representing CPU capacity [3] in + DMIPS/MHz, relative to highest capacity-dmips-mhz + in the system. + - rockchip,pmu Usage: optional for systems that have an "enable-method" property value of "rockchip,rk3066-smp" @@ -461,3 +473,5 @@ cpus { [2] arm/msm/qcom,kpss-acc.txt [3] ARM Linux kernel documentation - idle states bindings Documentation/devicetree/bindings/arm/idle-states.txt +[3] ARM Linux kernel documentation - cpu capacity bindings + Documentation/devicetree/bindings/arm/cpu-capacity.txt Modified: vendor/device-tree/dist/Bindings/arm/davinci.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/davinci.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/davinci.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -5,6 +5,10 @@ DA850/OMAP-L138/AM18x Evaluation Module Required root node properties: - compatible = "ti,da850-evm", "ti,da850"; +DA850/OMAP-L138/AM18x L138/C6748 Development Kit (LCDK) board +Required root node properties: + - compatible = "ti,da850-lcdk", "ti,da850"; + EnBW AM1808 based CMC board Required root node properties: - compatible = "enbw,cmc", "ti,da850; Modified: vendor/device-tree/dist/Bindings/arm/fsl.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/fsl.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/fsl.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -97,7 +97,7 @@ Freescale LS1021A Platform Device Tree B Required root node compatible properties: - compatible = "fsl,ls1021a"; -Freescale LS1021A SoC-specific Device Tree Bindings +Freescale SoC-specific Device Tree Bindings ------------------------------------------- Freescale SCFG @@ -105,7 +105,11 @@ Freescale SCFG configuration and status registers for the chip. Such as getting PEX port status. Required properties: - - compatible: should be "fsl,ls1021a-scfg" + - compatible: Should contain a chip-specific compatible string, + Chip-specific strings are of the form "fsl,-scfg", + The following s are known to be supported: + ls1021a, ls1043a, ls1046a, ls2080a. + - reg: should contain base address and length of SCFG memory-mapped registers Example: @@ -119,7 +123,11 @@ Freescale DCFG configuration and status for the device. Such as setting the secondary core start address and release the secondary core from holdoff and startup. Required properties: - - compatible: should be "fsl,ls1021a-dcfg" + - compatible: Should contain a chip-specific compatible string, + Chip-specific strings are of the form "fsl,-dcfg", + The following s are known to be supported: + ls1021a, ls1043a, ls1046a, ls2080a. + - reg : should contain base address and length of DCFG memory-mapped registers Example: @@ -131,6 +139,10 @@ Example: Freescale ARMv8 based Layerscape SoC family Device Tree Bindings ---------------------------------------------------------------- +LS1043A SoC +Required root node properties: + - compatible = "fsl,ls1043a"; + LS1043A ARMv8 based RDB Board Required root node properties: - compatible = "fsl,ls1043a-rdb", "fsl,ls1043a"; @@ -139,6 +151,22 @@ LS1043A ARMv8 based QDS Board Required root node properties: - compatible = "fsl,ls1043a-qds", "fsl,ls1043a"; +LS1046A SoC +Required root node properties: + - compatible = "fsl,ls1046a"; + +LS1046A ARMv8 based QDS Board +Required root node properties: + - compatible = "fsl,ls1046a-qds", "fsl,ls1046a"; + +LS1046A ARMv8 based RDB Board +Required root node properties: + - compatible = "fsl,ls1046a-rdb", "fsl,ls1046a"; + +LS2080A SoC +Required root node properties: + - compatible = "fsl,ls2080a"; + LS2080A ARMv8 based Simulator model Required root node properties: - compatible = "fsl,ls2080a-simu", "fsl,ls2080a"; Added: vendor/device-tree/dist/Bindings/arm/hisilicon/hi3519-sysctrl.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/device-tree/dist/Bindings/arm/hisilicon/hi3519-sysctrl.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -0,0 +1,14 @@ +* Hisilicon Hi3519 System Controller Block + +This bindings use the following binding: +Documentation/devicetree/bindings/mfd/syscon.txt + +Required properties: +- compatible: "hisilicon,hi3519-sysctrl". +- reg: the register region of this block + +Examples: +sysctrl: system-controller@12010000 { + compatible = "hisilicon,hi3519-sysctrl", "syscon"; + reg = <0x12010000 0x1000>; +}; Modified: vendor/device-tree/dist/Bindings/arm/hisilicon/hisilicon.txt ============================================================================== --- vendor/device-tree/dist/Bindings/arm/hisilicon/hisilicon.txt Tue Mar 7 12:39:41 2017 (r314846) +++ vendor/device-tree/dist/Bindings/arm/hisilicon/hisilicon.txt Tue Mar 7 12:41:06 2017 (r314847) @@ -28,6 +28,10 @@ HiP06 D03 Board Required root node properties: - compatible = "hisilicon,hip06-d03"; +HiP07 D05 Board +Required root node properties: + - compatible = "hisilicon,hip07-d05"; + Hisilicon system controller Required properties: @@ -175,38 +179,55 @@ Example: }; ----------------------------------------------------------------------- -Hisilicon HiP05 PCIe-SAS system controller +Hisilicon HiP05/HiP06 PCIe-SAS sub system controller Required properties: - compatible : "hisilicon,pcie-sas-subctrl", "syscon"; - reg : Register address and size -The HiP05 PCIe-SAS system controller is shared by PCIe and SAS controllers in -HiP05 Soc to implement some basic configurations. +The PCIe-SAS sub system controller is shared by PCIe and SAS controllers in +HiP05 or HiP06 Soc to implement some basic configurations. Example: - /* for HiP05 PCIe-SAS system */ - pcie_sas: system_controller@0xb0000000 { + /* for HiP05 PCIe-SAS sub system */ + pcie_sas: system_controller@b0000000 { compatible = "hisilicon,pcie-sas-subctrl", "syscon"; reg = <0xb0000000 0x10000>; }; -Hisilicon HiP05 PERISUB system controller +Hisilicon HiP05/HiP06 PERI sub system controller Required properties: -- compatible : "hisilicon,hip05-perisubc", "syscon"; +- compatible : "hisilicon,peri-subctrl", "syscon"; - reg : Register address and size -The HiP05 PERISUB system controller is shared by peripheral controllers in -HiP05 Soc to implement some basic configurations. The peripheral *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-vendor@freebsd.org Tue Mar 7 12:43:38 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A239CFBE10; Tue, 7 Mar 2017 12:43:38 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D64A1AE1; Tue, 7 Mar 2017 12:43:38 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v27ChbQh048742; Tue, 7 Mar 2017 12:43:37 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v27ChbQp048741; Tue, 7 Mar 2017 12:43:37 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201703071243.v27ChbQp048741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Tue, 7 Mar 2017 12:43:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314848 - vendor/device-tree/4.10 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Mar 2017 12:43:38 -0000 Author: manu Date: Tue Mar 7 12:43:37 2017 New Revision: 314848 URL: https://svnweb.freebsd.org/changeset/base/314848 Log: Tag update of DTS to Linux 4.10 Added: vendor/device-tree/4.10/ - copied from r314847, vendor/device-tree/dist/ From owner-svn-src-vendor@freebsd.org Tue Mar 7 20:53:29 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F536D02829; Tue, 7 Mar 2017 20:53:29 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 876C21796; Tue, 7 Mar 2017 20:53:28 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v27KrRWm054120; Tue, 7 Mar 2017 20:53:27 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v27KrRL5054114; Tue, 7 Mar 2017 20:53:27 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201703072053.v27KrRL5054114@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Tue, 7 Mar 2017 20:53:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314879 - in vendor/edk2: . MdePkg MdePkg/Include MdePkg/Include/AArch64 MdePkg/Include/Arm MdePkg/Include/Ebc MdePkg/Include/Guid MdePkg/Include/Ia32 MdePkg/Include/IndustryStandard Md... X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Mar 2017 20:53:29 -0000 Author: imp Date: Tue Mar 7 20:53:26 2017 New Revision: 314879 URL: https://svnweb.freebsd.org/changeset/base/314879 Log: Bring in snapshot of the MdePkg from Tianocore's EDK2 project at git hash 7babb4372e6a34cbbc54249b25056272a5a9924c From 2017-Mar-03. EDK2 is Intel's BSD Licensed UEFI implementation. We'll be bringing in various routines from there rather than reimplementing them from scratch for libefivar and the EFI boot loader. The upstream repo has ^M ending on everything (sometimes multiple times!), so the following script was run prior to import so changes we have to do don't first include changing every line: % find . -type f | xargs -n 1 sed -I.BAK -e `printf "s/\r//g"` % find . -name \*.BAK | xargs rm Also, only the MdePkg was brought in (it's 17MB, while the entire repo is 250MB). It's almost completely certain nothing else will be used, but if it is, it can be brough in along side MdePkg in the future. Obtained from: https://github.com/tianocore/edk2.git Added: vendor/edk2/ vendor/edk2/MdePkg/ vendor/edk2/MdePkg/Contributions.txt (contents, props changed) vendor/edk2/MdePkg/Include/ vendor/edk2/MdePkg/Include/AArch64/ vendor/edk2/MdePkg/Include/AArch64/ProcessorBind.h (contents, props changed) vendor/edk2/MdePkg/Include/Arm/ vendor/edk2/MdePkg/Include/Arm/ProcessorBind.h (contents, props changed) vendor/edk2/MdePkg/Include/Base.h (contents, props changed) vendor/edk2/MdePkg/Include/Ebc/ vendor/edk2/MdePkg/Include/Ebc/ProcessorBind.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/ vendor/edk2/MdePkg/Include/Guid/Acpi.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/Apriori.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/AprioriFileName.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/CapsuleReport.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/Cper.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/DebugImageInfoTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/DxeServices.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/EventGroup.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/EventLegacyBios.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/FileInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/FileSystemInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/FileSystemVolumeLabelInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/FirmwareContentsSigned.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/FirmwareFileSystem2.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/FirmwareFileSystem3.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/FmpCapsule.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/GlobalVariable.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/Gpt.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/GraphicsInfoHob.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/HardwareErrorVariable.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/HiiFormMapMethodGuid.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/HiiKeyBoardLayout.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/HiiPlatformSetupFormset.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/HobList.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/ImageAuthentication.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/MdePkgTokenSpace.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/MemoryAllocationHob.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/MemoryAttributesTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/MemoryOverwriteControl.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/Mps.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/PcAnsi.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/PropertiesTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/SalSystemTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/SmBios.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/StatusCodeDataTypeId.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/SystemResourceTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/VectorHandoffTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Guid/WinCertificate.h (contents, props changed) vendor/edk2/MdePkg/Include/Ia32/ vendor/edk2/MdePkg/Include/Ia32/ProcessorBind.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/ vendor/edk2/MdePkg/Include/IndustryStandard/Acpi.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Acpi10.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Acpi20.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Acpi30.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Acpi40.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Acpi50.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Acpi51.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Acpi60.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Acpi61.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/AcpiAml.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/AlertStandardFormatTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Atapi.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Bluetooth.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Bmp.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/DebugPort2Table.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/DebugPortTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Dhcp.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/DmaRemappingReportingTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/ElTorito.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Emmc.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/HighPrecisionEventTimerTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Hsti.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Http11.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IScsiBootFirmwareTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Ipmi.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnApp.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnBridge.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnChassis.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnFirmware.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnGroupExtension.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnSensorEvent.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnStorage.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/IpmiNetFnTransport.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/LegacyBiosMpTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/LowPowerIdleTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Mbr.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/MemoryMappedConfigurationSpaceAccessTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/MemoryOverwriteRequestControlLock.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Nvme.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Pal.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Pci.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Pci22.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Pci23.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Pci30.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/PciCodeId.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/PciExpress21.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/PciExpress30.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/PciExpress31.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/PeImage.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Sal.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Scsi.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Sd.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/SdramSpd.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/SdramSpdDdr3.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/SdramSpdDdr4.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/SdramSpdLpDdr.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/SerialPortConsoleRedirectionTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/SmBios.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/SmBus.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/TcgPhysicalPresence.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/TcgStorageCore.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/TcgStorageOpal.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/TcpaAcpi.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Tls1.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Tpm12.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Tpm20.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Tpm2Acpi.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/TpmPtp.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/TpmTis.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/UefiTcgPlatform.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/Usb.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/WatchdogActionTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/WatchdogResourceTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/WindowsSmmSecurityMitigationTable.h (contents, props changed) vendor/edk2/MdePkg/Include/IndustryStandard/WindowsUxCapsule.h (contents, props changed) vendor/edk2/MdePkg/Include/Ipf/ vendor/edk2/MdePkg/Include/Ipf/IpfMacro.i vendor/edk2/MdePkg/Include/Ipf/ProcessorBind.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/ vendor/edk2/MdePkg/Include/Library/BaseLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/BaseMemoryLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/CacheMaintenanceLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/CpuLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/DebugLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/DebugPrintErrorLevelLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/DevicePathLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/DxeCoreEntryPoint.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/DxeServicesLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/DxeServicesTableLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/ExtendedSalLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/ExtractGuidedSectionLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/FileHandleLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/HobLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/HstiLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/IoLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/MemoryAllocationLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/OrderedCollectionLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PalLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PcdLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PciCf8Lib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PciExpressLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PciLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PciSegmentLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PeCoffExtraActionLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PeCoffGetEntryPointLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PeCoffLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PeiCoreEntryPoint.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PeiServicesLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PeiServicesTablePointerLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PeimEntryPoint.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PerformanceLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PostCodeLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/PrintLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/ReportStatusCodeLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/ResourcePublicationLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/RngLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/S3BootScriptLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/S3IoLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/S3PciLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/S3SmbusLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/S3StallLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SalLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SerialPortLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SmbusLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SmiHandlerProfileLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SmmLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SmmMemLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SmmPeriodicSmiLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SmmServicesTableLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/SynchronizationLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/TimerLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiApplicationEntryPoint.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiBootServicesTableLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiDecompressLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiDriverEntryPoint.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiRuntimeLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiRuntimeServicesTableLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiScsiLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Library/UefiUsbLib.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/ vendor/edk2/MdePkg/Include/Pi/PiBootMode.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiDependency.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiDxeCis.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiFirmwareFile.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiFirmwareVolume.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiHob.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiI2c.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiMultiPhase.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiPeiCis.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiS3BootScript.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiSmmCis.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiSmmCommunicationAcpiTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Pi/PiStatusCode.h (contents, props changed) vendor/edk2/MdePkg/Include/PiDxe.h (contents, props changed) vendor/edk2/MdePkg/Include/PiPei.h (contents, props changed) vendor/edk2/MdePkg/Include/PiSmm.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/ vendor/edk2/MdePkg/Include/Ppi/BlockIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/BlockIo2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/BootInRecoveryMode.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Capsule.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/CpuIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Decompress.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/DeviceRecoveryModule.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/DxeIpl.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/EndOfPeiPhase.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/FirmwareVolume.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/FirmwareVolumeInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/FirmwareVolumeInfo2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Graphics.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/GuidedSectionExtraction.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/I2cMaster.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/IsaHc.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/LoadFile.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/LoadImage.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/MasterBootMode.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/MemoryDiscovered.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/MpServices.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Pcd.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/PcdInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/PciCfg2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/PiPcd.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/PiPcdInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/ReadOnlyVariable2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/RecoveryModule.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/ReportStatusCodeHandler.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Reset.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Reset2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/S3Resume2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/SecPlatformInformation.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/SecPlatformInformation2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Security2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Smbus2.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/Stall.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/StatusCode.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/SuperIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/TemporaryRamDone.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/TemporaryRamSupport.h (contents, props changed) vendor/edk2/MdePkg/Include/Ppi/VectorHandoffInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ vendor/edk2/MdePkg/Include/Protocol/AbsolutePointer.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/AcpiSystemDescriptionTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/AcpiTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/AdapterInformation.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Arp.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/AtaPassThru.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/AuthenticationInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Bds.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Bis.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/BlockIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/BlockIo2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/BlockIoCrypto.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/BluetoothConfig.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/BluetoothHc.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/BluetoothIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/BootManagerPolicy.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/BusSpecificDriverOverride.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Capsule.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ComponentName.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ComponentName2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Cpu.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/CpuIo2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DebugPort.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DebugSupport.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Decompress.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DeferredImageLoad.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DeviceIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DevicePath.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DevicePathFromText.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DevicePathToText.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DevicePathUtilities.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Dhcp4.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Dhcp6.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DiskInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DiskIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DiskIo2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Dns4.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Dns6.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DriverBinding.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DriverConfiguration.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DriverConfiguration2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DriverDiagnostics.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DriverDiagnostics2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DriverFamilyOverride.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DriverHealth.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DriverSupportedEfiVersion.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/DxeSmmReadyToLock.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Eap.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/EapConfiguration.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/EapManagement.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/EapManagement2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Ebc.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/EdidActive.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/EdidDiscovered.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/EdidOverride.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/EraseBlock.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ExtendedSalBootService.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ExtendedSalServiceClasses.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/FirmwareManagement.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/FirmwareVolume2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/FirmwareVolumeBlock.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/FormBrowser2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Ftp4.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/GraphicsOutput.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/GuidedSectionExtraction.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Hash.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Hash2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiConfigAccess.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiConfigKeyword.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiConfigRouting.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiDatabase.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiFont.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiImage.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiImageDecoder.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiImageEx.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiPackageList.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HiiString.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Http.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/HttpUtilities.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/I2cBusConfigurationManagement.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/I2cEnumerate.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/I2cHost.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/I2cIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/I2cMaster.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/IScsiInitiatorName.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/IdeControllerInit.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/IncompatiblePciDeviceSupport.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Ip4.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Ip4Config.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Ip4Config2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Ip6.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Ip6Config.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/IpSec.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/IpSecConfig.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/IsaHc.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Kms.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/LegacyRegion2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/LoadFile.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/LoadFile2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/LoadedImage.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ManagedNetwork.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/McaInitPmi.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Metronome.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/MonotonicCounter.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/MpService.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Mtftp4.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Mtftp6.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/NetworkInterfaceIdentifier.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/NvmExpressPassthru.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Pcd.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PcdInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PciEnumerationComplete.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PciHostBridgeResourceAllocation.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PciHotPlugInit.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PciHotPlugRequest.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PciIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PciOverride.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PciPlatform.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PciRootBridgeIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PiPcd.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PiPcdInfo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Pkcs7Verify.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PlatformDriverOverride.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PlatformToDriverConfiguration.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PxeBaseCode.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/PxeBaseCodeCallBack.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/RamDisk.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/RealTimeClock.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/RegularExpressionProtocol.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ReportStatusCodeHandler.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Reset.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Rest.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Rng.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Runtime.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/S3SaveState.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/S3SmmSaveState.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ScsiIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ScsiPassThru.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ScsiPassThruExt.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SdMmcPassThru.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Security.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Security2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SecurityPolicy.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SerialIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ServiceBinding.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Shell.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ShellDynamicCommand.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/ShellParameters.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SimpleFileSystem.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SimpleNetwork.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SimplePointer.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SimpleTextIn.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SimpleTextInEx.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SimpleTextOut.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmartCardEdge.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmartCardReader.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Smbios.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmbusHc.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmAccess2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmBase2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmCommunication.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmConfiguration.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmControl2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmCpu.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmCpuIo2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmEndOfDxe.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmGpiDispatch2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmIoTrapDispatch2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmPciRootBridgeIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmPeriodicTimerDispatch2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmPowerButtonDispatch2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmReadyToLock.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmReportStatusCodeHandler.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmStandbyButtonDispatch2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmStatusCode.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmSwDispatch2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmSxDispatch2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SmmUsbDispatch2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/StatusCode.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/StorageSecurityCommand.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SuperIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/SuperIoControl.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Supplicant.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/TapeIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Tcg2Protocol.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/TcgService.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Tcp4.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Tcp6.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Timer.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Timestamp.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Tls.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/TlsConfig.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/TrEEProtocol.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Udp4.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Udp6.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UgaDraw.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UgaIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UnicodeCollation.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Usb2HostController.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UsbFunctionIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UsbHostController.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UsbIo.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UserCredential.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UserCredential2.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/UserManager.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/Variable.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/VariableWrite.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/VlanConfig.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/WatchdogTimer.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/WiFi.h (contents, props changed) vendor/edk2/MdePkg/Include/Protocol/WiFi2.h (contents, props changed) vendor/edk2/MdePkg/Include/Uefi/ vendor/edk2/MdePkg/Include/Uefi.h (contents, props changed) vendor/edk2/MdePkg/Include/Uefi/UefiAcpiDataTable.h (contents, props changed) vendor/edk2/MdePkg/Include/Uefi/UefiBaseType.h (contents, props changed) vendor/edk2/MdePkg/Include/Uefi/UefiGpt.h (contents, props changed) vendor/edk2/MdePkg/Include/Uefi/UefiInternalFormRepresentation.h (contents, props changed) vendor/edk2/MdePkg/Include/Uefi/UefiMultiPhase.h (contents, props changed) vendor/edk2/MdePkg/Include/Uefi/UefiPxe.h (contents, props changed) vendor/edk2/MdePkg/Include/Uefi/UefiSpec.h (contents, props changed) vendor/edk2/MdePkg/Include/X64/ vendor/edk2/MdePkg/Include/X64/ProcessorBind.h (contents, props changed) vendor/edk2/MdePkg/Library/ vendor/edk2/MdePkg/Library/BaseCacheMaintenanceLib/ vendor/edk2/MdePkg/Library/BaseCacheMaintenanceLib/ArmCache.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf vendor/edk2/MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.uni vendor/edk2/MdePkg/Library/BaseCacheMaintenanceLib/EbcCache.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCacheMaintenanceLib/IpfCache.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCacheMaintenanceLib/X86Cache.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/ vendor/edk2/MdePkg/Library/BaseCpuLib/AArch64/ vendor/edk2/MdePkg/Library/BaseCpuLib/AArch64/CpuFlushTlb.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/AArch64/CpuSleep.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Arm/ vendor/edk2/MdePkg/Library/BaseCpuLib/Arm/CpuFlushTlb.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Arm/CpuFlushTlb.asm vendor/edk2/MdePkg/Library/BaseCpuLib/Arm/CpuSleep.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Arm/CpuSleep.asm vendor/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.inf vendor/edk2/MdePkg/Library/BaseCpuLib/BaseCpuLib.uni vendor/edk2/MdePkg/Library/BaseCpuLib/Ebc/ vendor/edk2/MdePkg/Library/BaseCpuLib/Ebc/CpuSleepFlushTlb.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/ vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/CpuFlushTlb.asm vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/CpuFlushTlb.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/CpuFlushTlb.nasm vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/CpuFlushTlbGcc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/CpuSleep.asm vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/CpuSleep.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/CpuSleep.nasm vendor/edk2/MdePkg/Library/BaseCpuLib/Ia32/CpuSleepGcc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Ipf/ vendor/edk2/MdePkg/Library/BaseCpuLib/Ipf/CpuFlushTlb.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/Ipf/CpuSleep.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/X64/ vendor/edk2/MdePkg/Library/BaseCpuLib/X64/CpuFlushTlb.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/X64/CpuFlushTlb.asm vendor/edk2/MdePkg/Library/BaseCpuLib/X64/CpuFlushTlb.nasm vendor/edk2/MdePkg/Library/BaseCpuLib/X64/CpuSleep.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseCpuLib/X64/CpuSleep.asm vendor/edk2/MdePkg/Library/BaseCpuLib/X64/CpuSleep.nasm vendor/edk2/MdePkg/Library/BaseDebugLibNull/ vendor/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf vendor/edk2/MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.uni vendor/edk2/MdePkg/Library/BaseDebugLibNull/DebugLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseDebugLibSerialPort/ vendor/edk2/MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf vendor/edk2/MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.uni vendor/edk2/MdePkg/Library/BaseDebugLibSerialPort/DebugLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseDebugPrintErrorLevelLib/ vendor/edk2/MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf vendor/edk2/MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.uni vendor/edk2/MdePkg/Library/BaseExtractGuidedSectionLib/ vendor/edk2/MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.inf vendor/edk2/MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.uni vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/ vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.uni vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicInternal.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/Ia32/ vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/Ia32/IoFifo.asm vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/Ia32/IoFifo.nasm vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoHighLevel.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoLibArm.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoLibEbc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoLibGcc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoLibIcc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoLibIpf.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoLibMmioBuffer.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/IoLibMsc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/X64/ vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/X64/IoFifo.asm vendor/edk2/MdePkg/Library/BaseIoLibIntrinsic/X64/IoFifo.nasm vendor/edk2/MdePkg/Library/BaseLib/ vendor/edk2/MdePkg/Library/BaseLib/AArch64/ vendor/edk2/MdePkg/Library/BaseLib/AArch64/CpuBreakpoint.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/AArch64/DisableInterrupts.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/AArch64/EnableInterrupts.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/AArch64/GetInterruptsState.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/AArch64/MemoryFence.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/AArch64/SetJumpLongJump.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/AArch64/SwitchStack.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/ARShiftU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/ vendor/edk2/MdePkg/Library/BaseLib/Arm/CpuBreakpoint.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/CpuBreakpoint.asm vendor/edk2/MdePkg/Library/BaseLib/Arm/CpuPause.asm vendor/edk2/MdePkg/Library/BaseLib/Arm/DisableInterrupts.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/DisableInterrupts.asm vendor/edk2/MdePkg/Library/BaseLib/Arm/EnableInterrupts.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/EnableInterrupts.asm vendor/edk2/MdePkg/Library/BaseLib/Arm/GetInterruptsState.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/GetInterruptsState.asm vendor/edk2/MdePkg/Library/BaseLib/Arm/InternalSwitchStack.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/Math64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/MemoryFence.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/MemoryFence.asm vendor/edk2/MdePkg/Library/BaseLib/Arm/SetJumpLongJump.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/SetJumpLongJump.asm vendor/edk2/MdePkg/Library/BaseLib/Arm/SwitchStack.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Arm/SwitchStack.asm vendor/edk2/MdePkg/Library/BaseLib/Arm/Unaligned.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/BaseLib.inf vendor/edk2/MdePkg/Library/BaseLib/BaseLib.uni vendor/edk2/MdePkg/Library/BaseLib/BaseLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/BitField.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/CheckSum.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/ChkStkGcc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Cpu.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/CpuDeadLoop.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/DivS64x64Remainder.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/DivU64x32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/DivU64x32Remainder.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/DivU64x64Remainder.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ebc/ vendor/edk2/MdePkg/Library/BaseLib/Ebc/CpuBreakpoint.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ebc/SwitchStack.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/FilePaths.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/GetPowerOfTwo32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/GetPowerOfTwo64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/HighBitSet32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/HighBitSet64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ vendor/edk2/MdePkg/Library/BaseLib/Ia32/ARShiftU64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ARShiftU64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ARShiftU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ARShiftU64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuBreakpoint.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuBreakpoint.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuBreakpoint.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuId.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuId.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuId.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuId.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuIdEx.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuIdEx.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuIdEx.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuIdEx.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuPause.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuPause.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/CpuPause.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisableCache.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisableCache.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisableCache.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisableCache.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisableInterrupts.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisableInterrupts.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisableInterrupts.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisablePaging32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisablePaging32.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisablePaging32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DisablePaging32.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivS64x64Remainder.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x32.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x32.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x32Remainder.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x32Remainder.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x32Remainder.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x32Remainder.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x64Remainder.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x64Remainder.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/DivU64x64Remainder.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableCache.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableCache.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableCache.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableCache.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableDisableInterrupts.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableDisableInterrupts.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableDisableInterrupts.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableDisableInterrupts.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableInterrupts.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableInterrupts.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnableInterrupts.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnablePaging32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnablePaging32.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnablePaging32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnablePaging32.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnablePaging64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnablePaging64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/EnablePaging64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/FxRestore.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/FxRestore.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/FxRestore.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/FxSave.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/FxSave.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/FxSave.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/GccInline.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/InternalSwitchStack.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/InternalSwitchStack.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/InternalSwitchStack.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Invd.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Invd.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/Invd.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/LRotU64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/LRotU64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/LRotU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/LRotU64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/LShiftU64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/LShiftU64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/LShiftU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/LShiftU64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/LongJump.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/LongJump.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/LongJump.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/LongJump.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ModU64x32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ModU64x32.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ModU64x32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ModU64x32.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Monitor.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/Monitor.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Monitor.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/Monitor.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/MultU64x32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/MultU64x32.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/MultU64x32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/MultU64x32.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/MultU64x64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/MultU64x64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/MultU64x64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/MultU64x64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Mwait.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/Mwait.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Mwait.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/Mwait.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Non-existing.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/RRotU64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/RRotU64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/RRotU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/RRotU64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/RShiftU64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/RShiftU64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/RShiftU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/RShiftU64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/RdRand.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/RdRand.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/RdRand.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr0.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr0.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr0.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr2.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr2.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr2.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr3.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr3.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr3.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr4.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr4.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCr4.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCs.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCs.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadCs.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr0.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr0.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr0.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr1.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr1.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr1.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr2.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr2.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr2.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr3.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr3.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr3.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr4.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr4.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr4.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr5.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr5.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr5.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr6.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr6.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr6.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr7.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr7.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDr7.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDs.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDs.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadDs.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadEflags.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadEflags.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadEflags.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadEs.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadEs.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadEs.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadFs.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadFs.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadFs.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadGdtr.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadGdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadGdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadGs.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadGs.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadGs.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadIdtr.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadIdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadIdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadLdtr.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadLdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadLdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm0.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm0.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm0.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm1.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm1.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm1.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm2.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm2.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm2.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm3.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm3.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm3.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm4.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm4.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm4.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm5.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm5.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm5.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm6.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm6.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm6.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm7.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm7.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMm7.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMsr64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMsr64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadMsr64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadPmc.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadPmc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadPmc.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadSs.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadSs.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadSs.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadTr.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadTr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadTr.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadTsc.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadTsc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/ReadTsc.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/SetJump.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/SetJump.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/SetJump.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/SetJump.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/SwapBytes64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/SwapBytes64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/SwapBytes64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/SwapBytes64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Thunk16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/Thunk16.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Thunk16.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Wbinvd.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/Wbinvd.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/Wbinvd.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr0.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr0.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr0.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr2.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr2.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr2.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr3.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr3.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr3.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr4.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr4.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteCr4.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr0.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr0.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr0.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr1.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr1.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr1.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr2.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr2.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr2.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr3.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr3.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr3.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr4.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr4.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr4.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr5.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr5.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr5.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr6.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr6.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr6.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr7.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr7.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteDr7.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteGdtr.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteGdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteGdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteIdtr.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteIdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteIdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteLdtr.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteLdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteLdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm0.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm0.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm0.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm1.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm1.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm1.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm2.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm2.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm2.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm3.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm3.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm3.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm4.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm4.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm4.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm5.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm5.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm5.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm6.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm6.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm6.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm7.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm7.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMm7.nasm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMsr64.asm vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMsr64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ia32/WriteMsr64.nasm vendor/edk2/MdePkg/Library/BaseLib/Ipf/ vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessDbr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessEicr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessGcr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessGp.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessKr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessKr7.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessMsr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessMsrDb.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessPmr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AccessPsr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/Asm.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AsmCpuMisc.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/AsmPalCall.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/CpuBreakpoint.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/CpuBreakpointMsc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/CpuPause.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/ExecFc.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/FlushCacheRange.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/GetInterruptState.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/Ia64gen.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/InternalFlushCacheRange.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/InternalSwitchStack.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/LongJmp.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/ReadAr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/ReadCpuid.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/ReadCr.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/SetJmp.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/SwitchStack.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Ipf/Unaligned.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/LRotU32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/LRotU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/LShiftU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/LinkedList.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/LongJump.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/LowBitSet32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/LowBitSet64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Math64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/ModU64x32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/MultS64x64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/MultU64x32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/MultU64x64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/RRotU32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/RRotU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/RShiftU64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/SafeString.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/SetJump.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/String.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/SwapBytes16.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/SwapBytes32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/SwapBytes64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/SwitchStack.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/Unaligned.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/ vendor/edk2/MdePkg/Library/BaseLib/X64/CpuBreakpoint.asm vendor/edk2/MdePkg/Library/BaseLib/X64/CpuBreakpoint.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/CpuBreakpoint.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/CpuId.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/CpuId.asm vendor/edk2/MdePkg/Library/BaseLib/X64/CpuId.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/CpuIdEx.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/CpuIdEx.asm vendor/edk2/MdePkg/Library/BaseLib/X64/CpuIdEx.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/CpuPause.asm vendor/edk2/MdePkg/Library/BaseLib/X64/CpuPause.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/DisableCache.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/DisableCache.asm vendor/edk2/MdePkg/Library/BaseLib/X64/DisableCache.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/DisableInterrupts.asm vendor/edk2/MdePkg/Library/BaseLib/X64/DisableInterrupts.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/DisablePaging64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/DisablePaging64.asm vendor/edk2/MdePkg/Library/BaseLib/X64/DisablePaging64.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/EnableCache.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/EnableCache.asm vendor/edk2/MdePkg/Library/BaseLib/X64/EnableCache.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/EnableDisableInterrupts.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/EnableDisableInterrupts.asm vendor/edk2/MdePkg/Library/BaseLib/X64/EnableDisableInterrupts.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/EnableInterrupts.asm vendor/edk2/MdePkg/Library/BaseLib/X64/EnableInterrupts.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/FlushCacheLine.asm vendor/edk2/MdePkg/Library/BaseLib/X64/FlushCacheLine.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/FxRestore.asm vendor/edk2/MdePkg/Library/BaseLib/X64/FxRestore.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/FxSave.asm vendor/edk2/MdePkg/Library/BaseLib/X64/FxSave.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/GccInline.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/Invd.asm vendor/edk2/MdePkg/Library/BaseLib/X64/Invd.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/LongJump.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/LongJump.asm vendor/edk2/MdePkg/Library/BaseLib/X64/LongJump.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/Monitor.asm vendor/edk2/MdePkg/Library/BaseLib/X64/Monitor.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/Mwait.asm vendor/edk2/MdePkg/Library/BaseLib/X64/Mwait.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/Non-existing.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/RdRand.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/RdRand.asm vendor/edk2/MdePkg/Library/BaseLib/X64/RdRand.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCr0.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCr0.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCr2.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCr2.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCr3.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCr3.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCr4.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCr4.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCs.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadCs.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr0.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr0.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr1.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr1.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr2.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr2.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr3.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr3.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr4.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr4.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr5.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr5.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr6.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr6.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr7.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDr7.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDs.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadDs.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadEflags.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadEflags.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadEs.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadEs.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadFs.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadFs.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadGdtr.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadGdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadGs.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadGs.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadIdtr.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadIdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadLdtr.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadLdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm0.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm0.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm1.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm1.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm2.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm2.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm3.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm3.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm4.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm4.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm5.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm5.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm6.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm6.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm7.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMm7.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMsr64.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMsr64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/ReadMsr64.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadPmc.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadPmc.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadSs.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadSs.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadTr.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadTr.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadTsc.asm vendor/edk2/MdePkg/Library/BaseLib/X64/ReadTsc.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/SetJump.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/SetJump.asm vendor/edk2/MdePkg/Library/BaseLib/X64/SetJump.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/SwitchStack.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/SwitchStack.asm vendor/edk2/MdePkg/Library/BaseLib/X64/SwitchStack.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/Thunk16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/Thunk16.asm vendor/edk2/MdePkg/Library/BaseLib/X64/Thunk16.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/Wbinvd.asm vendor/edk2/MdePkg/Library/BaseLib/X64/Wbinvd.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteCr0.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteCr0.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteCr2.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteCr2.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteCr3.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteCr3.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteCr4.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteCr4.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr0.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr0.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr1.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr1.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr2.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr2.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr3.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr3.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr4.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr4.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr5.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr5.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr6.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr6.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr7.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteDr7.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteGdtr.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteGdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteIdtr.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteIdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteLdtr.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteLdtr.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm0.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm0.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm1.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm1.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm2.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm2.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm3.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm3.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm4.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm4.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm5.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm5.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm6.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm6.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm7.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMm7.nasm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMsr64.asm vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMsr64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X64/WriteMsr64.nasm vendor/edk2/MdePkg/Library/BaseLib/X86DisablePaging32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86DisablePaging64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86EnablePaging32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86EnablePaging64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86FxRestore.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86FxSave.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86GetInterruptState.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86MemoryFence.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86Msr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86RdRand.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86ReadGdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86ReadIdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86Thunk.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86WriteGdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseLib/X86WriteIdtr.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/ vendor/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf vendor/edk2/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.uni vendor/edk2/MdePkg/Library/BaseMemoryLib/CompareMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/CopyMem.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/IsZeroBufferWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/MemLibGeneric.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/MemLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/ScanMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/ScanMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/ScanMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/ScanMem8Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/SetMem.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/SetMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/SetMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/SetMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/SetMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLib/ZeroMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/ vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.uni vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/CompareMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/CopyMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/Ia32/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/IsZeroBufferWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/MemLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/ScanMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/ScanMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/ScanMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/ScanMem8Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/SetMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/SetMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/SetMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/SetMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/X64/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibMmx/ZeroMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/ vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/ vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/CompareGuid.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/ScanMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/CompareGuid.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/CompareGuid.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ScanMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ScanMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ScanMemGeneric.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.uni vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/CompareMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/CopyMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Ia32/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/IsZeroBufferWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/MemLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/ScanMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/ScanMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/ScanMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/ScanMem8Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/SetMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/SetMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/SetMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/SetMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/X64/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptDxe/ZeroMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/ vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.uni vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/CompareMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/CopyMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/Ia32/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/IsZeroBufferWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/MemLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/ScanMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/ScanMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/ScanMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/ScanMem8Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/SetMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/SetMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/SetMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/SetMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/X64/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibOptPei/ZeroMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/ vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.uni vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/CompareMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/CopyMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/Ia32/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/IsZeroBufferWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/MemLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/ScanMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/ScanMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/ScanMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/ScanMem8Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/SetMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/SetMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/SetMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/SetMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/X64/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibRepStr/ZeroMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/ vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/BaseMemoryLibSse2.inf vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/BaseMemoryLibSse2.uni vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/CompareMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/CopyMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/IsZeroBufferWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/MemLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/ScanMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/ScanMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/ScanMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/ScanMem8Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/SetMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/SetMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/SetMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/SetMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/CompareMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/CompareMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/CompareMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/CopyMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/CopyMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/CopyMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/IsZeroBuffer.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem8.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem8.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem8.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem16.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem16.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem16.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem32.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem32.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem32.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem64.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem64.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/SetMem64.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ZeroMem.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ZeroMem.asm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/X64/ZeroMem.nasm vendor/edk2/MdePkg/Library/BaseMemoryLibSse2/ZeroMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/ vendor/edk2/MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf vendor/edk2/MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.uni vendor/edk2/MdePkg/Library/BasePalLibNull/ vendor/edk2/MdePkg/Library/BasePalLibNull/BasePalLibNull.inf vendor/edk2/MdePkg/Library/BasePalLibNull/BasePalLibNull.uni vendor/edk2/MdePkg/Library/BasePalLibNull/PalCall.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePcdLibNull/ vendor/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf vendor/edk2/MdePkg/Library/BasePcdLibNull/BasePcdLibNull.uni vendor/edk2/MdePkg/Library/BasePcdLibNull/PcdLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePciCf8Lib/ vendor/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf vendor/edk2/MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.uni vendor/edk2/MdePkg/Library/BasePciCf8Lib/PciCf8Lib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePciExpressLib/ vendor/edk2/MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf vendor/edk2/MdePkg/Library/BasePciExpressLib/BasePciExpressLib.uni vendor/edk2/MdePkg/Library/BasePciExpressLib/PciExpressLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePciLibCf8/ vendor/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf vendor/edk2/MdePkg/Library/BasePciLibCf8/BasePciLibCf8.uni vendor/edk2/MdePkg/Library/BasePciLibCf8/PciLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePciLibPciExpress/ vendor/edk2/MdePkg/Library/BasePciLibPciExpress/BasePciLibPciExpress.inf vendor/edk2/MdePkg/Library/BasePciLibPciExpress/BasePciLibPciExpress.uni vendor/edk2/MdePkg/Library/BasePciLibPciExpress/PciLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePciSegmentLibPci/ vendor/edk2/MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf vendor/edk2/MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.uni vendor/edk2/MdePkg/Library/BasePciSegmentLibPci/PciSegmentLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/ vendor/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf vendor/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/PeCoffExtraActionLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePeCoffExtraActionLibNull/PeCoffExtraActionLibNull.uni vendor/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/ vendor/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf vendor/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.uni vendor/edk2/MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePeCoffLib/ vendor/edk2/MdePkg/Library/BasePeCoffLib/Arm/ vendor/edk2/MdePkg/Library/BasePeCoffLib/Arm/PeCoffLoaderEx.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePeCoffLib/BasePeCoff.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf vendor/edk2/MdePkg/Library/BasePeCoffLib/BasePeCoffLib.uni vendor/edk2/MdePkg/Library/BasePeCoffLib/BasePeCoffLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BasePeCoffLib/Ipf/ vendor/edk2/MdePkg/Library/BasePeCoffLib/Ipf/PeCoffLoaderEx.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePeCoffLib/PeCoffLoaderEx.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePerformanceLibNull/ vendor/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf vendor/edk2/MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.uni vendor/edk2/MdePkg/Library/BasePerformanceLibNull/PerformanceLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePostCodeLibDebug/ vendor/edk2/MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.inf vendor/edk2/MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.uni vendor/edk2/MdePkg/Library/BasePostCodeLibDebug/PostCode.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePostCodeLibPort80/ vendor/edk2/MdePkg/Library/BasePostCodeLibPort80/BasePostCodeLibPort80.inf vendor/edk2/MdePkg/Library/BasePostCodeLibPort80/BasePostCodeLibPort80.uni vendor/edk2/MdePkg/Library/BasePostCodeLibPort80/PostCode.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePrintLib/ vendor/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.inf vendor/edk2/MdePkg/Library/BasePrintLib/BasePrintLib.uni vendor/edk2/MdePkg/Library/BasePrintLib/PrintLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePrintLib/PrintLibInternal.c (contents, props changed) vendor/edk2/MdePkg/Library/BasePrintLib/PrintLibInternal.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/ vendor/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf vendor/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.uni vendor/edk2/MdePkg/Library/BaseRngLib/ vendor/edk2/MdePkg/Library/BaseRngLib/BaseRng.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseRngLib/BaseRngLib.inf vendor/edk2/MdePkg/Library/BaseRngLib/BaseRngLib.uni vendor/edk2/MdePkg/Library/BaseS3BootScriptLibNull/ vendor/edk2/MdePkg/Library/BaseS3BootScriptLibNull/BaseS3BootScriptLibNull.inf vendor/edk2/MdePkg/Library/BaseS3BootScriptLibNull/BaseS3BootScriptLibNull.uni vendor/edk2/MdePkg/Library/BaseS3BootScriptLibNull/BootScriptLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseS3IoLib/ vendor/edk2/MdePkg/Library/BaseS3IoLib/BaseS3IoLib.inf vendor/edk2/MdePkg/Library/BaseS3IoLib/BaseS3IoLib.uni vendor/edk2/MdePkg/Library/BaseS3IoLib/S3IoLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseS3PciLib/ vendor/edk2/MdePkg/Library/BaseS3PciLib/BaseS3PciLib.inf vendor/edk2/MdePkg/Library/BaseS3PciLib/BaseS3PciLib.uni vendor/edk2/MdePkg/Library/BaseS3PciLib/S3PciLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseS3SmbusLib/ vendor/edk2/MdePkg/Library/BaseS3SmbusLib/BaseS3SmbusLib.inf vendor/edk2/MdePkg/Library/BaseS3SmbusLib/BaseS3SmbusLib.uni vendor/edk2/MdePkg/Library/BaseS3SmbusLib/S3SmbusLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseS3StallLib/ vendor/edk2/MdePkg/Library/BaseS3StallLib/BaseS3StallLib.inf vendor/edk2/MdePkg/Library/BaseS3StallLib/BaseS3StallLib.uni vendor/edk2/MdePkg/Library/BaseS3StallLib/S3StallLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSerialPortLibNull/ vendor/edk2/MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf vendor/edk2/MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.uni vendor/edk2/MdePkg/Library/BaseSmbusLibNull/ vendor/edk2/MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf vendor/edk2/MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.uni vendor/edk2/MdePkg/Library/BaseStackCheckLib/ vendor/edk2/MdePkg/Library/BaseStackCheckLib/BaseStackCheckGcc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf vendor/edk2/MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.uni vendor/edk2/MdePkg/Library/BaseSynchronizationLib/ vendor/edk2/MdePkg/Library/BaseSynchronizationLib/AArch64/ vendor/edk2/MdePkg/Library/BaseSynchronizationLib/AArch64/Synchronization.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Arm/ vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Arm/Synchronization.S (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Arm/Synchronization.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.uni vendor/edk2/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ebc/ vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ebc/Synchronization.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/ vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/GccInline.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange16.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange16.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange16.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange32.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange32.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange64.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedCompareExchange64.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedDecrement.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedDecrement.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedDecrement.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedIncrement.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedIncrement.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InterlockedIncrement.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/InternalGetSpinLockProperties.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ipf/ vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ipf/InterlockedCompareExchange16.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ipf/InterlockedCompareExchange32.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ipf/InterlockedCompareExchange64.s (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ipf/InternalGetSpinLockProperties.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Ipf/Synchronization.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/Synchronization.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/SynchronizationGcc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/SynchronizationMsc.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/ vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/GccInline.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.nasm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.asm vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.nasm vendor/edk2/MdePkg/Library/BaseTimerLibNullTemplate/ vendor/edk2/MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf vendor/edk2/MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.uni vendor/edk2/MdePkg/Library/BaseTimerLibNullTemplate/TimerLibNull.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseUefiDecompressLib/ vendor/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.c (contents, props changed) vendor/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf vendor/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.uni vendor/edk2/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/DxeCoreEntryPoint/ vendor/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf vendor/edk2/MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.uni vendor/edk2/MdePkg/Library/DxeCoreHobLib/ vendor/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf vendor/edk2/MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.uni vendor/edk2/MdePkg/Library/DxeCoreHobLib/HobLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeExtendedSalLib/ vendor/edk2/MdePkg/Library/DxeExtendedSalLib/DxeExtendedSalLib.inf vendor/edk2/MdePkg/Library/DxeExtendedSalLib/DxeExtendedSalLib.uni vendor/edk2/MdePkg/Library/DxeExtendedSalLib/ExtendedSalLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeExtendedSalLib/Ipf/ vendor/edk2/MdePkg/Library/DxeExtendedSalLib/Ipf/AsmExtendedSalLib.s (contents, props changed) vendor/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/ vendor/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf vendor/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.uni vendor/edk2/MdePkg/Library/DxeHobLib/ vendor/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.inf vendor/edk2/MdePkg/Library/DxeHobLib/DxeHobLib.uni vendor/edk2/MdePkg/Library/DxeHobLib/HobLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeHstiLib/ vendor/edk2/MdePkg/Library/DxeHstiLib/DxeHstiLib.inf vendor/edk2/MdePkg/Library/DxeHstiLib/DxeHstiLib.uni vendor/edk2/MdePkg/Library/DxeHstiLib/HstiAip.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeHstiLib/HstiDxe.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeHstiLib/HstiDxe.h (contents, props changed) vendor/edk2/MdePkg/Library/DxeIoLibCpuIo2/ vendor/edk2/MdePkg/Library/DxeIoLibCpuIo2/DxeCpuIo2LibInternal.h (contents, props changed) vendor/edk2/MdePkg/Library/DxeIoLibCpuIo2/DxeIoLibCpuIo2.inf vendor/edk2/MdePkg/Library/DxeIoLibCpuIo2/DxeIoLibCpuIo2.uni vendor/edk2/MdePkg/Library/DxeIoLibCpuIo2/IoHighLevel.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeIoLibCpuIo2/IoLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeIoLibCpuIo2/IoLibMmioBuffer.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeIoLibEsal/ vendor/edk2/MdePkg/Library/DxeIoLibEsal/DxeIoLibEsal.inf vendor/edk2/MdePkg/Library/DxeIoLibEsal/DxeIoLibEsal.uni vendor/edk2/MdePkg/Library/DxeIoLibEsal/DxeIoLibEsalInternal.h (contents, props changed) vendor/edk2/MdePkg/Library/DxeIoLibEsal/IoHighLevel.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeIoLibEsal/IoLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeIoLibEsal/IoLibMmioBuffer.c (contents, props changed) vendor/edk2/MdePkg/Library/DxePalLibEsal/ vendor/edk2/MdePkg/Library/DxePalLibEsal/DxePalLibEsal.c (contents, props changed) vendor/edk2/MdePkg/Library/DxePalLibEsal/DxePalLibEsal.inf vendor/edk2/MdePkg/Library/DxePalLibEsal/DxePalLibEsal.uni vendor/edk2/MdePkg/Library/DxePcdLib/ vendor/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.inf vendor/edk2/MdePkg/Library/DxePcdLib/DxePcdLib.uni vendor/edk2/MdePkg/Library/DxePciLibEsal/ vendor/edk2/MdePkg/Library/DxePciLibEsal/DxePciLibEsal.inf vendor/edk2/MdePkg/Library/DxePciLibEsal/DxePciLibEsal.uni vendor/edk2/MdePkg/Library/DxePciLibEsal/PciLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxePciSegmentLibEsal/ vendor/edk2/MdePkg/Library/DxePciSegmentLibEsal/DxePciSegementLibEsal.uni vendor/edk2/MdePkg/Library/DxePciSegmentLibEsal/DxePciSegmentLibEsal.inf vendor/edk2/MdePkg/Library/DxePciSegmentLibEsal/PciLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeRuntimeExtendedSalLib/ vendor/edk2/MdePkg/Library/DxeRuntimeExtendedSalLib/DxeRuntimeExtendedSalLib.inf vendor/edk2/MdePkg/Library/DxeRuntimeExtendedSalLib/DxeRuntimeExtendedSalLib.uni vendor/edk2/MdePkg/Library/DxeRuntimeExtendedSalLib/ExtendedSalLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeRuntimeExtendedSalLib/Ipf/ vendor/edk2/MdePkg/Library/DxeRuntimeExtendedSalLib/Ipf/AsmExtendedSalLib.s (contents, props changed) vendor/edk2/MdePkg/Library/DxeRuntimePciExpressLib/ vendor/edk2/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.inf vendor/edk2/MdePkg/Library/DxeRuntimePciExpressLib/DxeRuntimePciExpressLib.uni vendor/edk2/MdePkg/Library/DxeRuntimePciExpressLib/PciExpressLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeSalLibEsal/ vendor/edk2/MdePkg/Library/DxeSalLibEsal/DxeSalLibEsal.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeSalLibEsal/DxeSalLibEsal.inf vendor/edk2/MdePkg/Library/DxeSalLibEsal/DxeSalLibEsal.uni vendor/edk2/MdePkg/Library/DxeServicesLib/ vendor/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.inf vendor/edk2/MdePkg/Library/DxeServicesLib/DxeServicesLib.uni vendor/edk2/MdePkg/Library/DxeServicesTableLib/ vendor/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf vendor/edk2/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.uni vendor/edk2/MdePkg/Library/DxeSmbusLib/ vendor/edk2/MdePkg/Library/DxeSmbusLib/DxeSmbusLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeSmbusLib/DxeSmbusLib.inf vendor/edk2/MdePkg/Library/DxeSmbusLib/DxeSmbusLib.uni vendor/edk2/MdePkg/Library/DxeSmbusLib/InternalSmbusLib.h (contents, props changed) vendor/edk2/MdePkg/Library/DxeSmbusLib/SmbusLib.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeTimerLibEsal/ vendor/edk2/MdePkg/Library/DxeTimerLibEsal/DxeTimerLibEsal.c (contents, props changed) vendor/edk2/MdePkg/Library/DxeTimerLibEsal/DxeTimerLibEsal.inf vendor/edk2/MdePkg/Library/DxeTimerLibEsal/DxeTimerLibEsal.uni vendor/edk2/MdePkg/Library/PeiCoreEntryPoint/ vendor/edk2/MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf vendor/edk2/MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.uni vendor/edk2/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/ vendor/edk2/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PeiDxePostCodeLibReportStatusCode.inf vendor/edk2/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PeiDxePostCodeLibReportStatusCode.uni vendor/edk2/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiExtractGuidedSectionLib/ vendor/edk2/MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf vendor/edk2/MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.uni vendor/edk2/MdePkg/Library/PeiHobLib/ vendor/edk2/MdePkg/Library/PeiHobLib/HobLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiHobLib/PeiHobLib.inf vendor/edk2/MdePkg/Library/PeiHobLib/PeiHobLib.uni vendor/edk2/MdePkg/Library/PeiIoLibCpuIo/ vendor/edk2/MdePkg/Library/PeiIoLibCpuIo/IoHighLevel.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiIoLibCpuIo/IoLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiIoLibCpuIo/IoLibMmioBuffer.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf vendor/edk2/MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.uni vendor/edk2/MdePkg/Library/PeiMemoryAllocationLib/ vendor/edk2/MdePkg/Library/PeiMemoryAllocationLib/MemoryAllocationLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf vendor/edk2/MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.uni vendor/edk2/MdePkg/Library/PeiMemoryLib/ vendor/edk2/MdePkg/Library/PeiMemoryLib/CompareMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/CopyMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/IsZeroBufferWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/MemLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/MemLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/PeiMemoryLib.inf vendor/edk2/MdePkg/Library/PeiMemoryLib/PeiMemoryLib.uni vendor/edk2/MdePkg/Library/PeiMemoryLib/ScanMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/ScanMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/ScanMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/ScanMem8Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/SetMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/SetMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/SetMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/SetMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiMemoryLib/ZeroMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiPalLib/ vendor/edk2/MdePkg/Library/PeiPalLib/PeiPalLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiPalLib/PeiPalLib.inf vendor/edk2/MdePkg/Library/PeiPalLib/PeiPalLib.uni vendor/edk2/MdePkg/Library/PeiPcdLib/ vendor/edk2/MdePkg/Library/PeiPcdLib/PeiPcdLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiPcdLib/PeiPcdLib.inf vendor/edk2/MdePkg/Library/PeiPcdLib/PeiPcdLib.uni vendor/edk2/MdePkg/Library/PeiPciLibPciCfg2/ vendor/edk2/MdePkg/Library/PeiPciLibPciCfg2/PciLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiPciLibPciCfg2/PeiPciLibPciCfg2.inf vendor/edk2/MdePkg/Library/PeiPciLibPciCfg2/PeiPciLibPciCfg2.uni vendor/edk2/MdePkg/Library/PeiPciSegmentLibPciCfg2/ vendor/edk2/MdePkg/Library/PeiPciSegmentLibPciCfg2/PciSegmentLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiPciSegmentLibPciCfg2/PeiPciSegmentLibPciCfg2.inf vendor/edk2/MdePkg/Library/PeiPciSegmentLibPciCfg2/PeiPciSegmentLibPciCfg2.uni vendor/edk2/MdePkg/Library/PeiResourcePublicationLib/ vendor/edk2/MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf vendor/edk2/MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.uni vendor/edk2/MdePkg/Library/PeiServicesLib/ vendor/edk2/MdePkg/Library/PeiServicesLib/PeiServicesLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiServicesLib/PeiServicesLib.inf vendor/edk2/MdePkg/Library/PeiServicesLib/PeiServicesLib.uni vendor/edk2/MdePkg/Library/PeiServicesTablePointerLib/ vendor/edk2/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointer.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf vendor/edk2/MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.uni vendor/edk2/MdePkg/Library/PeiServicesTablePointerLibIdt/ vendor/edk2/MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointer.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf vendor/edk2/MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.uni vendor/edk2/MdePkg/Library/PeiServicesTablePointerLibKr7/ vendor/edk2/MdePkg/Library/PeiServicesTablePointerLibKr7/PeiServicesTablePointer.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiServicesTablePointerLibKr7/PeiServicesTablePointerLibKr7.inf vendor/edk2/MdePkg/Library/PeiServicesTablePointerLibKr7/PeiServicesTablePointerLibKr7.uni vendor/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/ vendor/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/InternalSmbusLib.h (contents, props changed) vendor/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/PeiSmbusLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/PeiSmbusLibSmbus2Ppi.inf vendor/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/PeiSmbusLibSmbus2Ppi.uni vendor/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/SmbusLib.c (contents, props changed) vendor/edk2/MdePkg/Library/PeimEntryPoint/ vendor/edk2/MdePkg/Library/PeimEntryPoint/PeimEntryPoint.c (contents, props changed) vendor/edk2/MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf vendor/edk2/MdePkg/Library/PeimEntryPoint/PeimEntryPoint.uni vendor/edk2/MdePkg/Library/SecPeiDxeTimerLibCpu/ vendor/edk2/MdePkg/Library/SecPeiDxeTimerLibCpu/IpfTimerLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf vendor/edk2/MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.uni vendor/edk2/MdePkg/Library/SecPeiDxeTimerLibCpu/X86TimerLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SmiHandlerProfileLibNull/ vendor/edk2/MdePkg/Library/SmiHandlerProfileLibNull/SmiHandlerProfileLibNull.c (contents, props changed) vendor/edk2/MdePkg/Library/SmiHandlerProfileLibNull/SmiHandlerProfileLibNull.inf vendor/edk2/MdePkg/Library/SmiHandlerProfileLibNull/SmiHandlerProfileLibNull.uni vendor/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/ vendor/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/IoHighLevel.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/IoLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/IoLibMmioBuffer.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/SmmCpuIoLibInternal.h (contents, props changed) vendor/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/SmmIoLibSmmCpuIo2.inf vendor/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/SmmIoLibSmmCpuIo2.uni vendor/edk2/MdePkg/Library/SmmLibNull/ vendor/edk2/MdePkg/Library/SmmLibNull/SmmLibNull.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmLibNull/SmmLibNull.inf vendor/edk2/MdePkg/Library/SmmLibNull/SmmLibNull.uni vendor/edk2/MdePkg/Library/SmmMemLib/ vendor/edk2/MdePkg/Library/SmmMemLib/SmmMemLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmMemLib/SmmMemLib.inf vendor/edk2/MdePkg/Library/SmmMemLib/SmmMemLib.uni vendor/edk2/MdePkg/Library/SmmMemoryAllocationLib/ vendor/edk2/MdePkg/Library/SmmMemoryAllocationLib/MemoryAllocationLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf vendor/edk2/MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.uni vendor/edk2/MdePkg/Library/SmmPciExpressLib/ vendor/edk2/MdePkg/Library/SmmPciExpressLib/PciExpressLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmPciExpressLib/SmmPciExpressLib.inf vendor/edk2/MdePkg/Library/SmmPciLibPciRootBridgeIo/ vendor/edk2/MdePkg/Library/SmmPciLibPciRootBridgeIo/PciLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmPciLibPciRootBridgeIo/SmmPciLibPciRootBridgeIo.inf vendor/edk2/MdePkg/Library/SmmPciLibPciRootBridgeIo/SmmPciLibPciRootBridgeIo.uni vendor/edk2/MdePkg/Library/SmmPeriodicSmiLib/ vendor/edk2/MdePkg/Library/SmmPeriodicSmiLib/SmmPeriodicSmiLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmPeriodicSmiLib/SmmPeriodicSmiLib.inf vendor/edk2/MdePkg/Library/SmmPeriodicSmiLib/SmmPeriodicSmiLib.uni vendor/edk2/MdePkg/Library/SmmServicesTableLib/ vendor/edk2/MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.c (contents, props changed) vendor/edk2/MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf vendor/edk2/MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.uni vendor/edk2/MdePkg/Library/UefiApplicationEntryPoint/ vendor/edk2/MdePkg/Library/UefiApplicationEntryPoint/ApplicationEntryPoint.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf vendor/edk2/MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.uni vendor/edk2/MdePkg/Library/UefiBootServicesTableLib/ vendor/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf vendor/edk2/MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.uni vendor/edk2/MdePkg/Library/UefiDebugLibConOut/ vendor/edk2/MdePkg/Library/UefiDebugLibConOut/DebugLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.inf vendor/edk2/MdePkg/Library/UefiDebugLibConOut/UefiDebugLibConOut.uni vendor/edk2/MdePkg/Library/UefiDebugLibDebugPortProtocol/ vendor/edk2/MdePkg/Library/UefiDebugLibDebugPortProtocol/DebugLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDebugLibDebugPortProtocol/UefiDebugLibDebugPortProtocol.inf vendor/edk2/MdePkg/Library/UefiDebugLibDebugPortProtocol/UefiDebugLibDebugPortProtocol.uni vendor/edk2/MdePkg/Library/UefiDebugLibStdErr/ vendor/edk2/MdePkg/Library/UefiDebugLibStdErr/DebugLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.inf vendor/edk2/MdePkg/Library/UefiDebugLibStdErr/UefiDebugLibStdErr.uni vendor/edk2/MdePkg/Library/UefiDevicePathLib/ vendor/edk2/MdePkg/Library/UefiDevicePathLib/DevicePathFromText.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDevicePathLib/DevicePathUtilities.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.h (contents, props changed) vendor/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf vendor/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.uni vendor/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLibOptionalDevicePathProtocol.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLibOptionalDevicePathProtocol.inf vendor/edk2/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLibOptionalDevicePathProtocol.uni vendor/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/ vendor/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf vendor/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.uni vendor/edk2/MdePkg/Library/UefiDriverEntryPoint/ vendor/edk2/MdePkg/Library/UefiDriverEntryPoint/DriverEntryPoint.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf vendor/edk2/MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.uni vendor/edk2/MdePkg/Library/UefiFileHandleLib/ vendor/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf vendor/edk2/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.uni vendor/edk2/MdePkg/Library/UefiLib/ vendor/edk2/MdePkg/Library/UefiLib/Console.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiLib/UefiDriverModel.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiLib/UefiLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiLib/UefiLib.inf vendor/edk2/MdePkg/Library/UefiLib/UefiLib.uni vendor/edk2/MdePkg/Library/UefiLib/UefiLibInternal.h (contents, props changed) vendor/edk2/MdePkg/Library/UefiLib/UefiLibPrint.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiLib/UefiNotTiano.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryAllocationLib/ vendor/edk2/MdePkg/Library/UefiMemoryAllocationLib/MemoryAllocationLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf vendor/edk2/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.uni vendor/edk2/MdePkg/Library/UefiMemoryLib/ vendor/edk2/MdePkg/Library/UefiMemoryLib/CompareMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/CopyMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/IsZeroBufferWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/MemLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/MemLibGuid.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/MemLibInternals.h (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/ScanMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/ScanMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/ScanMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/ScanMem8Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/SetMem16Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/SetMem32Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/SetMem64Wrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/SetMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.inf vendor/edk2/MdePkg/Library/UefiMemoryLib/UefiMemoryLib.uni vendor/edk2/MdePkg/Library/UefiMemoryLib/ZeroMemWrapper.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiPalLib/ vendor/edk2/MdePkg/Library/UefiPalLib/UefiPalLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiPalLib/UefiPalLib.inf vendor/edk2/MdePkg/Library/UefiPalLib/UefiPalLib.uni vendor/edk2/MdePkg/Library/UefiPciLibPciRootBridgeIo/ vendor/edk2/MdePkg/Library/UefiPciLibPciRootBridgeIo/PciLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiPciLibPciRootBridgeIo/UefiPciLibPciRootBridgeIo.inf vendor/edk2/MdePkg/Library/UefiPciLibPciRootBridgeIo/UefiPciLibPciRootBridgeIo.uni vendor/edk2/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/ vendor/edk2/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/PciSegmentLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/PciSegmentLib.h (contents, props changed) vendor/edk2/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/UefiPciSegmentLibPciRootBridgeIo.inf vendor/edk2/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/UefiPciSegmentLibPciRootBridgeIo.uni vendor/edk2/MdePkg/Library/UefiRuntimeLib/ vendor/edk2/MdePkg/Library/UefiRuntimeLib/RuntimeLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf vendor/edk2/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.uni vendor/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/ vendor/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf vendor/edk2/MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.uni vendor/edk2/MdePkg/Library/UefiSalLib/ vendor/edk2/MdePkg/Library/UefiSalLib/UefiSalLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiSalLib/UefiSalLib.inf vendor/edk2/MdePkg/Library/UefiSalLib/UefiSalLib.uni vendor/edk2/MdePkg/Library/UefiScsiLib/ vendor/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.inf vendor/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.uni vendor/edk2/MdePkg/Library/UefiUsbLib/ vendor/edk2/MdePkg/Library/UefiUsbLib/Hid.c (contents, props changed) vendor/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.inf vendor/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLib.uni vendor/edk2/MdePkg/Library/UefiUsbLib/UefiUsbLibInternal.h (contents, props changed) vendor/edk2/MdePkg/Library/UefiUsbLib/UsbDxeLib.c (contents, props changed) vendor/edk2/MdePkg/License.txt (contents, props changed) vendor/edk2/MdePkg/MdePkg.dec vendor/edk2/MdePkg/MdePkg.dsc vendor/edk2/MdePkg/MdePkg.uni vendor/edk2/MdePkg/MdePkgExtra.uni Added: vendor/edk2/MdePkg/Contributions.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/edk2/MdePkg/Contributions.txt Tue Mar 7 20:53:26 2017 (r314879) @@ -0,0 +1,218 @@ + +====================== += Code Contributions = +====================== + +To make a contribution to a TianoCore project, follow these steps. +1. Create a change description in the format specified below to + use in the source control commit log. +2. Your commit message must include your "Signed-off-by" signature, + and "Contributed-under" message. +3. Your "Contributed-under" message explicitly states that the + contribution is made under the terms of the specified + contribution agreement. Your "Contributed-under" message + must include the name of contribution agreement and version. + For example: Contributed-under: TianoCore Contribution Agreement 1.0 + The "TianoCore Contribution Agreement" is included below in + this document. +4. Submit your code to the TianoCore project using the process + that the project documents on its web page. If the process is + not documented, then submit the code on development email list + for the project. +5. It is preferred that contributions are submitted using the same + copyright license as the base project. When that is not possible, + then contributions using the following licenses can be accepted: + * BSD (2-clause): http://opensource.org/licenses/BSD-2-Clause + * BSD (3-clause): http://opensource.org/licenses/BSD-3-Clause + * MIT: http://opensource.org/licenses/MIT + * Python-2.0: http://opensource.org/licenses/Python-2.0 + * Zlib: http://opensource.org/licenses/Zlib + + Contributions of code put into the public domain can also be + accepted. + + Contributions using other licenses might be accepted, but further + review will be required. + +===================================================== += Change Description / Commit Message / Patch Email = +===================================================== + +Your change description should use the standard format for a +commit message, and must include your "Signed-off-by" signature +and the "Contributed-under" message. + +== Sample Change Description / Commit Message = + +=== Start of sample patch email message === + +From: Contributor Name +Subject: [PATCH] CodeModule: Brief-single-line-summary + +Full-commit-message + +Contributed-under: TianoCore Contribution Agreement 1.0 +Signed-off-by: Contributor Name +--- + +An extra message for the patch email which will not be considered part +of the commit message can be added here. + +Patch content inline or attached + +=== End of sample patch email message === + +=== Notes for sample patch email === + +* The first line of commit message is taken from the email's subject + line following [PATCH]. The remaining portion of the commit message + is the email's content until the '---' line. +* git format-patch is one way to create this format + +=== Definitions for sample patch email === + +* "CodeModule" is a short idenfier for the affected code. For + example MdePkg, or MdeModulePkg UsbBusDxe. +* "Brief-single-line-summary" is a short summary of the change. +* The entire first line should be less than ~70 characters. +* "Full-commit-message" a verbose multiple line comment describing + the change. Each line should be less than ~70 characters. +* "Contributed-under" explicitely states that the contribution is + made under the terms of the contribtion agreement. This + agreement is included below in this document. +* "Signed-off-by" is the contributor's signature identifying them + by their real/legal name and their email address. + +======================================== += TianoCore Contribution Agreement 1.0 = +======================================== + +INTEL CORPORATION ("INTEL") MAKES AVAILABLE SOFTWARE, DOCUMENTATION, +INFORMATION AND/OR OTHER MATERIALS FOR USE IN THE TIANOCORE OPEN SOURCE +PROJECT (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE +TERMS AND CONDITIONS OF THIS AGREEMENT BETWEEN YOU AND INTEL AND/OR THE +TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR +REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE OF THE +CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS +OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED +BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS +AGREEMENT AND THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE +AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT +USE THE CONTENT. + +Unless otherwise indicated, all Content made available on the TianoCore +site is provided to you under the terms and conditions of the BSD +License ("BSD"). A copy of the BSD License is available at +http://opensource.org/licenses/bsd-license.php +or when applicable, in the associated License.txt file. + +Certain other content may be made available under other licenses as +indicated in or with such Content. (For example, in a License.txt file.) + +You accept and agree to the following terms and conditions for Your +present and future Contributions submitted to TianoCore site. Except +for the license granted to Intel hereunder, You reserve all right, +title, and interest in and to Your Contributions. + +== SECTION 1: Definitions == +* "You" or "Contributor" shall mean the copyright owner or legal + entity authorized by the copyright owner that is making a + Contribution hereunder. All other entities that control, are + controlled by, or are under common control with that entity are + considered to be a single Contributor. For the purposes of this + definition, "control" means (i) the power, direct or indirect, to + cause the direction or management of such entity, whether by + contract or otherwise, or (ii) ownership of fifty percent (50%) + or more of the outstanding shares, or (iii) beneficial ownership + of such entity. +* "Contribution" shall mean any original work of authorship, + including any modifications or additions to an existing work, + that is intentionally submitted by You to the TinaoCore site for + inclusion in, or documentation of, any of the Content. For the + purposes of this definition, "submitted" means any form of + electronic, verbal, or written communication sent to the + TianoCore site or its representatives, including but not limited + to communication on electronic mailing lists, source code + control systems, and issue tracking systems that are managed by, + or on behalf of, the TianoCore site for the purpose of + discussing and improving the Content, but excluding + communication that is conspicuously marked or otherwise + designated in writing by You as "Not a Contribution." + +== SECTION 2: License for Contributions == +* Contributor hereby agrees that redistribution and use of the + Contribution in source and binary forms, with or without + modification, are permitted provided that the following + conditions are met: +** Redistributions of source code must retain the Contributor's + copyright notice, this list of conditions and the following + disclaimer. +** Redistributions in binary form must reproduce the Contributor's + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. +* Disclaimer. None of the names of Contributor, Intel, or the names + of their respective contributors may be used to endorse or + promote products derived from this software without specific + prior written permission. +* Contributor grants a license (with the right to sublicense) under + claims of Contributor's patents that Contributor can license that + are infringed by the Contribution (as delivered by Contributor) to + make, use, distribute, sell, offer for sale, and import the + Contribution and derivative works thereof solely to the minimum + extent necessary for licensee to exercise the granted copyright + license; this patent license applies solely to those portions of + the Contribution that are unmodified. No hardware per se is + licensed. +* EXCEPT AS EXPRESSLY SET FORTH IN SECTION 3 BELOW, THE + CONTRIBUTION IS PROVIDED BY THE CONTRIBUTOR "AS IS" AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + CONTRIBUTOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE + CONTRIBUTION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +== SECTION 3: Representations == +* You represent that You are legally entitled to grant the above + license. If your employer(s) has rights to intellectual property + that You create that includes Your Contributions, You represent + that You have received permission to make Contributions on behalf + of that employer, that Your employer has waived such rights for + Your Contributions. +* You represent that each of Your Contributions is Your original + creation (see Section 4 for submissions on behalf of others). + You represent that Your Contribution submissions include complete + details of any third-party license or other restriction + (including, but not limited to, related patents and trademarks) + of which You are personally aware and which are associated with + any part of Your Contributions. + +== SECTION 4: Third Party Contributions == +* Should You wish to submit work that is not Your original creation, + You may submit it to TianoCore site separately from any + Contribution, identifying the complete details of its source + and of any license or other restriction (including, but not + limited to, related patents, trademarks, and license agreements) + of which You are personally aware, and conspicuously marking the + work as "Submitted on behalf of a third-party: [named here]". + +== SECTION 5: Miscellaneous == +* Applicable Laws. Any claims arising under or relating to this + Agreement shall be governed by the internal substantive laws of + the State of Delaware or federal courts located in Delaware, + without regard to principles of conflict of laws. +* Language. This Agreement is in the English language only, which + language shall be controlling in all respects, and all versions + of this Agreement in any other language shall be for accommodation + only and shall not be binding. All communications and notices made + or given pursuant to this Agreement, and all documentation and + support to be provided, unless otherwise noted, shall be in the + English language. + Added: vendor/edk2/MdePkg/Include/AArch64/ProcessorBind.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/edk2/MdePkg/Include/AArch64/ProcessorBind.h Tue Mar 7 20:53:26 2017 (r314879) @@ -0,0 +1,154 @@ +/** @file + Processor or Compiler specific defines and types for AArch64. + + Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+ Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.
+ Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved.
+ + This program and the accompanying materials + are licensed and made available under the terms and conditions of the BSD License + which accompanies this distribution. The full text of the license may be found at + http://opensource.org/licenses/bsd-license.php + + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + +#ifndef __PROCESSOR_BIND_H__ +#define __PROCESSOR_BIND_H__ + +/// +/// Define the processor type so other code can make processor based choices +/// +#define MDE_CPU_AARCH64 + +// +// Make sure we are using the correct packing rules per EFI specification +// +#ifndef __GNUC__ +#pragma pack() +#endif + +#if _MSC_EXTENSIONS + // + // use Microsoft* C compiler dependent integer width types + // + typedef unsigned __int64 UINT64; + typedef __int64 INT64; + typedef unsigned __int32 UINT32; + typedef __int32 INT32; + typedef unsigned short UINT16; + typedef unsigned short CHAR16; + typedef short INT16; + typedef unsigned char BOOLEAN; + typedef unsigned char UINT8; + typedef char CHAR8; + typedef signed char INT8; +#else + // + // Assume standard AARCH64 alignment. + // + typedef unsigned long long UINT64; + typedef long long INT64; + typedef unsigned int UINT32; + typedef int INT32; + typedef unsigned short UINT16; + typedef unsigned short CHAR16; + typedef short INT16; + typedef unsigned char BOOLEAN; + typedef unsigned char UINT8; + typedef char CHAR8; + typedef signed char INT8; +#endif + +/// +/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions, +/// 8 bytes on supported 64-bit processor instructions) +/// +typedef UINT64 UINTN; + +/// +/// Signed value of native width. (4 bytes on supported 32-bit processor instructions, +/// 8 bytes on supported 64-bit processor instructions) +/// +typedef INT64 INTN; + +// +// Processor specific defines +// + +/// +/// A value of native width with the highest bit set. +/// +#define MAX_BIT 0x8000000000000000ULL + +/// +/// A value of native width with the two highest bits set. +/// +#define MAX_2_BITS 0xC000000000000000ULL + +/// +/// Maximum legal AARCH64 address +/// +#define MAX_ADDRESS 0xFFFFFFFFFFFFFFFFULL + +/// +/// Maximum legal AArch64 INTN and UINTN values. +/// +#define MAX_INTN ((INTN)0x7FFFFFFFFFFFFFFFULL) +#define MAX_UINTN ((UINTN)0xFFFFFFFFFFFFFFFFULL) + +/// +/// The stack alignment required for AARCH64 +/// +#define CPU_STACK_ALIGNMENT 16 + +/// +/// Page allocation granularity for AARCH64 +/// +#define DEFAULT_PAGE_ALLOCATION_GRANULARITY (0x1000) +#define RUNTIME_PAGE_ALLOCATION_GRANULARITY (0x10000) + +// +// Modifier to ensure that all protocol member functions and EFI intrinsics +// use the correct C calling convention. All protocol member functions and +// EFI intrinsics are required to modify their member functions with EFIAPI. +// +#define EFIAPI + +// When compiling with Clang, we still use GNU as for the assembler, so we still +// need to define the GCC_ASM* macros. +#if defined(__GNUC__) || defined(__clang__) + /// + /// For GNU assembly code, .global or .globl can declare global symbols. + /// Define this macro to unify the usage. + /// + #define ASM_GLOBAL .globl + + #define GCC_ASM_EXPORT(func__) \ + .global _CONCATENATE (__USER_LABEL_PREFIX__, func__) ;\ + .type ASM_PFX(func__), %function + + #define GCC_ASM_IMPORT(func__) \ + .extern _CONCATENATE (__USER_LABEL_PREFIX__, func__) + +#endif + +/** + Return the pointer to the first instruction of a function given a function pointer. + On ARM CPU architectures, these two pointer values are the same, + so the implementation of this macro is very simple. + + @param FunctionPointer A pointer to a function. + + @return The pointer to the first instruction of a function given a function pointer. + +**/ +#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer) + +#ifndef __USER_LABEL_PREFIX__ +#define __USER_LABEL_PREFIX__ +#endif + +#endif Added: vendor/edk2/MdePkg/Include/Arm/ProcessorBind.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/edk2/MdePkg/Include/Arm/ProcessorBind.h Tue Mar 7 20:53:26 2017 (r314879) @@ -0,0 +1,182 @@ +/** @file + Processor or Compiler specific defines and types for ARM. + + Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.
+ Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.
+ This program and the accompanying materials + are licensed and made available under the terms and conditions of the BSD License + which accompanies this distribution. The full text of the license may be found at + http://opensource.org/licenses/bsd-license.php + + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + +#ifndef __PROCESSOR_BIND_H__ +#define __PROCESSOR_BIND_H__ + +/// +/// Define the processor type so other code can make processor based choices +/// +#define MDE_CPU_ARM + +// +// Make sure we are using the correct packing rules per EFI specification +// +#ifndef __GNUC__ +#pragma pack() +#endif + +// +// RVCT does not support the __builtin_unreachable() macro +// +#ifdef __ARMCC_VERSION +#define UNREACHABLE() +#endif + +#if _MSC_EXTENSIONS + // + // use Microsoft* C compiler dependent integer width types + // + typedef unsigned __int64 UINT64; + typedef __int64 INT64; + typedef unsigned __int32 UINT32; + typedef __int32 INT32; + typedef unsigned short UINT16; + typedef unsigned short CHAR16; + typedef short INT16; + typedef unsigned char BOOLEAN; + typedef unsigned char UINT8; + typedef char CHAR8; + typedef signed char INT8; +#else + // + // Assume standard ARM alignment. + // Need to check portability of long long + // + typedef unsigned long long UINT64; + typedef long long INT64; + typedef unsigned int UINT32; + typedef int INT32; + typedef unsigned short UINT16; + typedef unsigned short CHAR16; + typedef short INT16; + typedef unsigned char BOOLEAN; + typedef unsigned char UINT8; + typedef char CHAR8; + typedef signed char INT8; +#endif + +/// +/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions, +/// 8 bytes on supported 64-bit processor instructions) +/// +typedef UINT32 UINTN; + +/// +/// Signed value of native width. (4 bytes on supported 32-bit processor instructions, +/// 8 bytes on supported 64-bit processor instructions) +/// +typedef INT32 INTN; + +// +// Processor specific defines +// + +/// +/// A value of native width with the highest bit set. +/// +#define MAX_BIT 0x80000000 + +/// +/// A value of native width with the two highest bits set. +/// +#define MAX_2_BITS 0xC0000000 + +/// +/// Maximum legal ARM address +/// +#define MAX_ADDRESS 0xFFFFFFFF + +/// +/// Maximum legal ARM INTN and UINTN values. +/// +#define MAX_INTN ((INTN)0x7FFFFFFF) +#define MAX_UINTN ((UINTN)0xFFFFFFFF) + +/// +/// The stack alignment required for ARM +/// +#define CPU_STACK_ALIGNMENT sizeof(UINT64) + +/// +/// Page allocation granularity for ARM +/// +#define DEFAULT_PAGE_ALLOCATION_GRANULARITY (0x1000) +#define RUNTIME_PAGE_ALLOCATION_GRANULARITY (0x1000) + +// +// Modifier to ensure that all protocol member functions and EFI intrinsics +// use the correct C calling convention. All protocol member functions and +// EFI intrinsics are required to modify their member functions with EFIAPI. +// +#define EFIAPI + +// When compiling with Clang, we still use GNU as for the assembler, so we still +// need to define the GCC_ASM* macros. +#if defined(__GNUC__) || defined(__clang__) + /// + /// For GNU assembly code, .global or .globl can declare global symbols. + /// Define this macro to unify the usage. + /// + #define ASM_GLOBAL .globl + + #if !defined(__APPLE__) + /// + /// ARM EABI defines that the linker should not manipulate call relocations + /// (do bl/blx conversion) unless the target symbol has function type. + /// CodeSourcery 2010.09 started requiring the .type to function properly + /// + #define INTERWORK_FUNC(func__) .type ASM_PFX(func__), %function + + #define GCC_ASM_EXPORT(func__) \ + .global _CONCATENATE (__USER_LABEL_PREFIX__, func__) ;\ + .type ASM_PFX(func__), %function + + #define GCC_ASM_IMPORT(func__) \ + .extern _CONCATENATE (__USER_LABEL_PREFIX__, func__) + + #else + // + // .type not supported by Apple Xcode tools + // + #define INTERWORK_FUNC(func__) + + #define GCC_ASM_EXPORT(func__) \ + .globl _CONCATENATE (__USER_LABEL_PREFIX__, func__) \ + + #define GCC_ASM_IMPORT(name) + + #endif +#endif + +/** + Return the pointer to the first instruction of a function given a function pointer. + On ARM CPU architectures, these two pointer values are the same, + so the implementation of this macro is very simple. + + @param FunctionPointer A pointer to a function. + + @return The pointer to the first instruction of a function given a function pointer. + +**/ +#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer) + +#ifndef __USER_LABEL_PREFIX__ +#define __USER_LABEL_PREFIX__ +#endif + +#endif + + Added: vendor/edk2/MdePkg/Include/Base.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/edk2/MdePkg/Include/Base.h Tue Mar 7 20:53:26 2017 (r314879) @@ -0,0 +1,1270 @@ +/** @file + Root include file for Mde Package Base type modules + + This is the include file for any module of type base. Base modules only use + types defined via this include file and can be ported easily to any + environment. There are a set of base libraries in the Mde Package that can + be used to implement base modules. + +Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.
+Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.
+This program and the accompanying materials +are licensed and made available under the terms and conditions of the BSD License +which accompanies this distribution. The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php. + +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + + +#ifndef __BASE_H__ +#define __BASE_H__ + +// +// Include processor specific binding +// +#include + +#if defined(_MSC_EXTENSIONS) +// +// Disable warning when last field of data structure is a zero sized array. +// +#pragma warning ( disable : 4200 ) +#endif + +/** + Verifies the storage size of a given data type. + + This macro generates a divide by zero error or a zero size array declaration in + the preprocessor if the size is incorrect. These are declared as "extern" so + the space for these arrays will not be in the modules. + + @param TYPE The date type to determine the size of. + @param Size The expected size for the TYPE. + +**/ +#define VERIFY_SIZE_OF(TYPE, Size) extern UINT8 _VerifySizeof##TYPE[(sizeof(TYPE) == (Size)) / (sizeof(TYPE) == (Size))] + +// +// Verify that ProcessorBind.h produced UEFI Data Types that are compliant with +// Section 2.3.1 of the UEFI 2.3 Specification. +// +VERIFY_SIZE_OF (BOOLEAN, 1); +VERIFY_SIZE_OF (INT8, 1); +VERIFY_SIZE_OF (UINT8, 1); +VERIFY_SIZE_OF (INT16, 2); +VERIFY_SIZE_OF (UINT16, 2); +VERIFY_SIZE_OF (INT32, 4); +VERIFY_SIZE_OF (UINT32, 4); +VERIFY_SIZE_OF (INT64, 8); +VERIFY_SIZE_OF (UINT64, 8); +VERIFY_SIZE_OF (CHAR8, 1); +VERIFY_SIZE_OF (CHAR16, 2); + +// +// The following three enum types are used to verify that the compiler +// configuration for enum types is compliant with Section 2.3.1 of the +// UEFI 2.3 Specification. These enum types and enum values are not +// intended to be used. A prefix of '__' is used avoid conflicts with +// other types. +// +typedef enum { + __VerifyUint8EnumValue = 0xff +} __VERIFY_UINT8_ENUM_SIZE; + +typedef enum { + __VerifyUint16EnumValue = 0xffff +} __VERIFY_UINT16_ENUM_SIZE; + +typedef enum { + __VerifyUint32EnumValue = 0xffffffff +} __VERIFY_UINT32_ENUM_SIZE; + +VERIFY_SIZE_OF (__VERIFY_UINT8_ENUM_SIZE, 4); +VERIFY_SIZE_OF (__VERIFY_UINT16_ENUM_SIZE, 4); +VERIFY_SIZE_OF (__VERIFY_UINT32_ENUM_SIZE, 4); + +// +// The Microsoft* C compiler can removed references to unreferenced data items +// if the /OPT:REF linker option is used. We defined a macro as this is a +// a non standard extension +// +#if defined(_MSC_EXTENSIONS) && !defined (MDE_CPU_EBC) + /// + /// Remove global variable from the linked image if there are no references to + /// it after all compiler and linker optimizations have been performed. + /// + /// + #define GLOBAL_REMOVE_IF_UNREFERENCED __declspec(selectany) +#else + /// + /// Remove the global variable from the linked image if there are no references + /// to it after all compiler and linker optimizations have been performed. + /// + /// + #define GLOBAL_REMOVE_IF_UNREFERENCED +#endif + +// +// Should be used in combination with NORETURN to avoid 'noreturn' returns +// warnings. +// +#ifndef UNREACHABLE + #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4) + /// + /// Signal compilers and analyzers that this call is not reachable. It is + /// up to the compiler to remove any code past that point. + /// Not implemented by GCC 4.4 or earlier. + /// + #define UNREACHABLE() __builtin_unreachable () + #elif defined (__has_feature) + #if __has_builtin (__builtin_unreachable) + /// + /// Signal compilers and analyzers that this call is not reachable. It is + /// up to the compiler to remove any code past that point. + /// + #define UNREACHABLE() __builtin_unreachable () + #endif + #endif + + #ifndef UNREACHABLE + /// + /// Signal compilers and analyzers that this call is not reachable. It is + /// up to the compiler to remove any code past that point. + /// + #define UNREACHABLE() + #endif +#endif + +// +// Signaling compilers and analyzers that a certain function cannot return may +// remove all following code and thus lead to better optimization and less +// false positives. +// +#ifndef NORETURN + #if defined (__GNUC__) || defined (__clang__) + /// + /// Signal compilers and analyzers that the function cannot return. + /// It is up to the compiler to remove any code past a call to functions + /// flagged with this attribute. + /// + #define NORETURN __attribute__((noreturn)) + #elif defined(_MSC_EXTENSIONS) && !defined(MDE_CPU_EBC) + /// + /// Signal compilers and analyzers that the function cannot return. + /// It is up to the compiler to remove any code past a call to functions + /// flagged with this attribute. + /// + #define NORETURN __declspec(noreturn) + #else + /// + /// Signal compilers and analyzers that the function cannot return. + /// It is up to the compiler to remove any code past a call to functions + /// flagged with this attribute. + /// + #define NORETURN + #endif +#endif + +// +// Should be used in combination with ANALYZER_NORETURN to avoid 'noreturn' +// returns warnings. +// +#ifndef ANALYZER_UNREACHABLE + #ifdef __clang_analyzer__ + #if __has_builtin (__builtin_unreachable) + /// + /// Signal the analyzer that this call is not reachable. + /// This excludes compilers. + /// + #define ANALYZER_UNREACHABLE() __builtin_unreachable () + #endif + #endif + + #ifndef ANALYZER_UNREACHABLE + /// + /// Signal the analyzer that this call is not reachable. + /// This excludes compilers. + /// + #define ANALYZER_UNREACHABLE() + #endif +#endif + +// +// Static Analyzers may issue errors about potential NULL-dereferences when +// dereferencing a pointer, that has been checked before, outside of a +// NULL-check. This may lead to false positives, such as when using ASSERT() +// for verification. +// +#ifndef ANALYZER_NORETURN + #ifdef __has_feature + #if __has_feature (attribute_analyzer_noreturn) + /// + /// Signal analyzers that the function cannot return. + /// This excludes compilers. + /// + #define ANALYZER_NORETURN __attribute__((analyzer_noreturn)) + #endif + #endif + + #ifndef ANALYZER_NORETURN + /// + /// Signal the analyzer that the function cannot return. + /// This excludes compilers. + /// + #define ANALYZER_NORETURN + #endif +#endif + +// +// For symbol name in assembly code, an extra "_" is sometimes necessary +// + +/// +/// Private worker functions for ASM_PFX() +/// +#define _CONCATENATE(a, b) __CONCATENATE(a, b) +#define __CONCATENATE(a, b) a ## b + +/// +/// The __USER_LABEL_PREFIX__ macro predefined by GNUC represents the prefix +/// on symbols in assembly language. +/// +#define ASM_PFX(name) _CONCATENATE (__USER_LABEL_PREFIX__, name) + +#if __APPLE__ + // + // Apple extension that is used by the linker to optimize code size + // with assembly functions. Put at the end of your .S files + // + #define ASM_FUNCTION_REMOVE_IF_UNREFERENCED .subsections_via_symbols +#else + #define ASM_FUNCTION_REMOVE_IF_UNREFERENCED +#endif + +#ifdef __CC_ARM + // + // Older RVCT ARM compilers don't fully support #pragma pack and require __packed + // as a prefix for the structure. + // + #define PACKED __packed +#else + #define PACKED +#endif + +/// +/// 128 bit buffer containing a unique identifier value. +/// Unless otherwise specified, aligned on a 64 bit boundary. +/// +typedef struct { + UINT32 Data1; + UINT16 Data2; + UINT16 Data3; + UINT8 Data4[8]; +} GUID; + +/// +/// 4-byte buffer. An IPv4 internet protocol address. +/// +typedef struct { + UINT8 Addr[4]; +} IPv4_ADDRESS; + +/// +/// 16-byte buffer. An IPv6 internet protocol address. +/// +typedef struct { + UINT8 Addr[16]; +} IPv6_ADDRESS; + +// +// 8-bytes unsigned value that represents a physical system address. +// +typedef UINT64 PHYSICAL_ADDRESS; + +/// +/// LIST_ENTRY structure definition. +/// +typedef struct _LIST_ENTRY LIST_ENTRY; + +/// +/// _LIST_ENTRY structure definition. +/// +struct _LIST_ENTRY { + LIST_ENTRY *ForwardLink; + LIST_ENTRY *BackLink; +}; + +// +// Modifiers to abstract standard types to aid in debug of problems +// + +/// +/// Datum is read-only. +/// +#define CONST const + +/// +/// Datum is scoped to the current file or function. +/// +#define STATIC static + +/// +/// Undeclared type. +/// +#define VOID void + +// +// Modifiers for Data Types used to self document code. +// This concept is borrowed for UEFI specification. +// + +/// +/// Datum is passed to the function. +/// +#define IN + +/// +/// Datum is returned from the function. +/// +#define OUT + +/// +/// Passing the datum to the function is optional, and a NULL +/// is passed if the value is not supplied. +/// +#define OPTIONAL + +// +// UEFI specification claims 1 and 0. We are concerned about the +// compiler portability so we did it this way. +// + +/// +/// Boolean true value. UEFI Specification defines this value to be 1, +/// but this form is more portable. +/// +#define TRUE ((BOOLEAN)(1==1)) + +/// +/// Boolean false value. UEFI Specification defines this value to be 0, +/// but this form is more portable. +/// +#define FALSE ((BOOLEAN)(0==1)) + +/// +/// NULL pointer (VOID *) +/// +#define NULL ((VOID *) 0) + +// +// Null character +// +#define CHAR_NULL 0x0000 + +/// +/// Maximum values for common UEFI Data Types +/// +#define MAX_INT8 ((INT8)0x7F) +#define MAX_UINT8 ((UINT8)0xFF) +#define MAX_INT16 ((INT16)0x7FFF) +#define MAX_UINT16 ((UINT16)0xFFFF) +#define MAX_INT32 ((INT32)0x7FFFFFFF) +#define MAX_UINT32 ((UINT32)0xFFFFFFFF) +#define MAX_INT64 ((INT64)0x7FFFFFFFFFFFFFFFULL) +#define MAX_UINT64 ((UINT64)0xFFFFFFFFFFFFFFFFULL) + +#define BIT0 0x00000001 +#define BIT1 0x00000002 +#define BIT2 0x00000004 +#define BIT3 0x00000008 +#define BIT4 0x00000010 +#define BIT5 0x00000020 +#define BIT6 0x00000040 +#define BIT7 0x00000080 +#define BIT8 0x00000100 +#define BIT9 0x00000200 +#define BIT10 0x00000400 +#define BIT11 0x00000800 +#define BIT12 0x00001000 +#define BIT13 0x00002000 +#define BIT14 0x00004000 +#define BIT15 0x00008000 +#define BIT16 0x00010000 +#define BIT17 0x00020000 +#define BIT18 0x00040000 +#define BIT19 0x00080000 +#define BIT20 0x00100000 +#define BIT21 0x00200000 +#define BIT22 0x00400000 +#define BIT23 0x00800000 +#define BIT24 0x01000000 +#define BIT25 0x02000000 +#define BIT26 0x04000000 +#define BIT27 0x08000000 +#define BIT28 0x10000000 +#define BIT29 0x20000000 +#define BIT30 0x40000000 +#define BIT31 0x80000000 +#define BIT32 0x0000000100000000ULL +#define BIT33 0x0000000200000000ULL +#define BIT34 0x0000000400000000ULL +#define BIT35 0x0000000800000000ULL +#define BIT36 0x0000001000000000ULL +#define BIT37 0x0000002000000000ULL +#define BIT38 0x0000004000000000ULL +#define BIT39 0x0000008000000000ULL +#define BIT40 0x0000010000000000ULL +#define BIT41 0x0000020000000000ULL +#define BIT42 0x0000040000000000ULL +#define BIT43 0x0000080000000000ULL +#define BIT44 0x0000100000000000ULL +#define BIT45 0x0000200000000000ULL +#define BIT46 0x0000400000000000ULL +#define BIT47 0x0000800000000000ULL +#define BIT48 0x0001000000000000ULL +#define BIT49 0x0002000000000000ULL +#define BIT50 0x0004000000000000ULL +#define BIT51 0x0008000000000000ULL +#define BIT52 0x0010000000000000ULL +#define BIT53 0x0020000000000000ULL +#define BIT54 0x0040000000000000ULL +#define BIT55 0x0080000000000000ULL *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-vendor@freebsd.org Tue Mar 7 20:58:09 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F279D02A98; Tue, 7 Mar 2017 20:58:09 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3221F1C41; Tue, 7 Mar 2017 20:58:09 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v27Kw87x054368; Tue, 7 Mar 2017 20:58:08 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v27Kw8CK054367; Tue, 7 Mar 2017 20:58:08 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201703072058.v27Kw8CK054367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Tue, 7 Mar 2017 20:58:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314880 - in vendor/edk2: MdePkg dist dist/MdePkg X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Mar 2017 20:58:09 -0000 Author: imp Date: Tue Mar 7 20:58:08 2017 New Revision: 314880 URL: https://svnweb.freebsd.org/changeset/base/314880 Log: Move down to required dist directory for vendor tracking. Pointy Hat To: me Added: vendor/edk2/dist/ vendor/edk2/dist/MdePkg/ - copied from r314879, vendor/edk2/MdePkg/ Deleted: vendor/edk2/MdePkg/ From owner-svn-src-vendor@freebsd.org Tue Mar 7 20:59:50 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B3902D02B25; Tue, 7 Mar 2017 20:59:50 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67CCE1DB0; Tue, 7 Mar 2017 20:59:50 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v27Kxn7v054471; Tue, 7 Mar 2017 20:59:49 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v27KxnrK054470; Tue, 7 Mar 2017 20:59:49 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201703072059.v27KxnrK054470@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Tue, 7 Mar 2017 20:59:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314881 - vendor/edk2/7babb4372e6a34cbbc54249b25056272a5a9924c X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Mar 2017 20:59:50 -0000 Author: imp Date: Tue Mar 7 20:59:49 2017 New Revision: 314881 URL: https://svnweb.freebsd.org/changeset/base/314881 Log: Record Tianocore EDK2 at 7babb4372e6a34cbbc54249b25056272a5a9924c from https://github.com/tianocore/edk2.git Added: vendor/edk2/7babb4372e6a34cbbc54249b25056272a5a9924c/ - copied from r314880, vendor/edk2/dist/ From owner-svn-src-vendor@freebsd.org Wed Mar 8 13:39:23 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C19ECFBD8F; Wed, 8 Mar 2017 13:39:23 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F5F31D7F; Wed, 8 Mar 2017 13:39:23 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v28DdMs8064074; Wed, 8 Mar 2017 13:39:22 GMT (envelope-from avg@FreeBSD.org) Received: (from avg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v28DdMHB064073; Wed, 8 Mar 2017 13:39:22 GMT (envelope-from avg@FreeBSD.org) Message-Id: <201703081339.v28DdMHB064073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: avg set sender to avg@FreeBSD.org using -f From: Andriy Gapon Date: Wed, 8 Mar 2017 13:39:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314910 - vendor-sys/illumos/dist/uts/common/fs/zfs X-SVN-Group: vendor-sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Mar 2017 13:39:23 -0000 Author: avg Date: Wed Mar 8 13:39:22 2017 New Revision: 314910 URL: https://svnweb.freebsd.org/changeset/base/314910 Log: 7843 get_clones_stat() is suboptimal for lots of clones illumos/illumos-gate@c5bde7273ef861a8dc54cfb9abe48d56062177da https://github.com/illumos/illumos-gate/commit/c5bde7273ef861a8dc54cfb9abe48d56062177da https://www.illumos.org/issues/7843 get_clones_stat() could be very slow if a snapshot has many (thousands) clones. Clone names are added to an nvlist that's created with NV_UNIQUE_NAME. So, each time a new name is appended to the list, the whole list is searched linearly to see if that name is not already in the list. That results in the quadratic complexity. That should be easy to fix as we know in advance that we should not get any duplicate names, so we can drop NV_UNIQUE_NAME when creating the list. Reviewed by: Pavel Zakharov Reviewed by: Matthew Ahrens Approved by: Dan McDonald Author: Andriy Gapon Modified: vendor-sys/illumos/dist/uts/common/fs/zfs/dsl_dataset.c Modified: vendor-sys/illumos/dist/uts/common/fs/zfs/dsl_dataset.c ============================================================================== --- vendor-sys/illumos/dist/uts/common/fs/zfs/dsl_dataset.c Wed Mar 8 13:09:12 2017 (r314909) +++ vendor-sys/illumos/dist/uts/common/fs/zfs/dsl_dataset.c Wed Mar 8 13:39:22 2017 (r314910) @@ -1725,11 +1725,22 @@ get_clones_stat(dsl_dataset_t *ds, nvlis zap_cursor_t zc; zap_attribute_t za; nvlist_t *propval = fnvlist_alloc(); - nvlist_t *val = fnvlist_alloc(); + nvlist_t *val; ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool)); /* + * We use nvlist_alloc() instead of fnvlist_alloc() because the + * latter would allocate the list with NV_UNIQUE_NAME flag. + * As a result, every time a clone name is appended to the list + * it would be (linearly) searched for for a duplicate name. + * We already know that all clone names must be unique and we + * want avoid the quadratic complexity of double-checking that + * because we can have a large number of clones. + */ + VERIFY0(nvlist_alloc(&val, 0, KM_SLEEP)); + + /* * There may be missing entries in ds_next_clones_obj * due to a bug in a previous version of the code. * Only trust it if it has the right number of entries. From owner-svn-src-vendor@freebsd.org Wed Mar 8 13:40:26 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B2DCCFBE37; Wed, 8 Mar 2017 13:40:26 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 081B51EC0; Wed, 8 Mar 2017 13:40:25 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v28DePff064177; Wed, 8 Mar 2017 13:40:25 GMT (envelope-from avg@FreeBSD.org) Received: (from avg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v28DePhN064176; Wed, 8 Mar 2017 13:40:25 GMT (envelope-from avg@FreeBSD.org) Message-Id: <201703081340.v28DePhN064176@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: avg set sender to avg@FreeBSD.org using -f From: Andriy Gapon Date: Wed, 8 Mar 2017 13:40:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314911 - vendor-sys/illumos/dist/uts/common/fs/zfs X-SVN-Group: vendor-sys MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Mar 2017 13:40:26 -0000 Author: avg Date: Wed Mar 8 13:40:24 2017 New Revision: 314911 URL: https://svnweb.freebsd.org/changeset/base/314911 Log: 7867 ARC space accounting leak illumos/illumos-gate@6de76ce2a90f54fecb0dba46dca08c99cef7aa08 https://github.com/illumos/illumos-gate/commit/6de76ce2a90f54fecb0dba46dca08c99cef7aa08 https://www.illumos.org/issues/7867 It seems that in the case where arc_hdr_free_pdata() sees HDR_L2_WRITING() we would fail to update the ARC space statistics. In the normal case those statistics are updated in arc_free_data_buf(). But in the arc_hdr_free_on_write() path we don't do that. Reviewed by: Matthew Ahrens Reviewed by: Dan Kimmel Approved by: Dan McDonald Author: Andriy Gapon Modified: vendor-sys/illumos/dist/uts/common/fs/zfs/arc.c Modified: vendor-sys/illumos/dist/uts/common/fs/zfs/arc.c ============================================================================== --- vendor-sys/illumos/dist/uts/common/fs/zfs/arc.c Wed Mar 8 13:39:22 2017 (r314910) +++ vendor-sys/illumos/dist/uts/common/fs/zfs/arc.c Wed Mar 8 13:40:24 2017 (r314911) @@ -2323,6 +2323,12 @@ arc_hdr_free_on_write(arc_buf_hdr_t *hdr size, hdr); } (void) refcount_remove_many(&state->arcs_size, size, hdr); + if (type == ARC_BUFC_METADATA) { + arc_space_return(size, ARC_SPACE_META); + } else { + ASSERT(type == ARC_BUFC_DATA); + arc_space_return(size, ARC_SPACE_DATA); + } l2arc_free_data_on_write(hdr->b_l1hdr.b_pdata, size, type); } From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:50:29 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CC29D05BE9; Thu, 9 Mar 2017 22:50:29 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D52961182; Thu, 9 Mar 2017 22:50:28 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29MoSCW097547; Thu, 9 Mar 2017 22:50:28 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29MoRxW097540; Thu, 9 Mar 2017 22:50:27 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092250.v29MoRxW097540@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:50:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314975 - in vendor/llvm/dist: docs lib/Analysis lib/Transforms/IPO lib/Transforms/Scalar test/DebugInfo/Inputs test/Feature test/Object/Inputs test/Transforms/GVNHoist test/tools/dsymu... X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:50:29 -0000 Author: dim Date: Thu Mar 9 22:50:27 2017 New Revision: 314975 URL: https://svnweb.freebsd.org/changeset/base/314975 Log: Vendor import of llvm 4.0.0 release r297347: https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_400/final@297347 Added: vendor/llvm/dist/test/DebugInfo/Inputs/split-dwarf-empty.o (contents, props changed) vendor/llvm/dist/test/Object/Inputs/dynamic-reloc.so (contents, props changed) vendor/llvm/dist/test/Object/Inputs/macho-bad-archive1.a (contents, props changed) vendor/llvm/dist/test/Object/Inputs/macho-bad-archive2.a (contents, props changed) vendor/llvm/dist/test/Object/Inputs/macho-toc64-archive-x86_64.a (contents, props changed) vendor/llvm/dist/test/Transforms/GVNHoist/hoist-unsafe-pr31729.ll vendor/llvm/dist/test/tools/dsymutil/Inputs/common.macho.x86_64.o (contents, props changed) vendor/llvm/dist/test/tools/dsymutil/Inputs/thumb.o (contents, props changed) vendor/llvm/dist/test/tools/llvm-objdump/Inputs/eh_frame_zero_cie.o (contents, props changed) Modified: vendor/llvm/dist/docs/ReleaseNotes.rst vendor/llvm/dist/lib/Analysis/ScalarEvolution.cpp vendor/llvm/dist/lib/Transforms/IPO/PassManagerBuilder.cpp vendor/llvm/dist/lib/Transforms/Scalar/GVNHoist.cpp vendor/llvm/dist/test/Feature/optnone-opt.ll vendor/llvm/dist/unittests/Analysis/ScalarEvolutionTest.cpp Modified: vendor/llvm/dist/docs/ReleaseNotes.rst ============================================================================== --- vendor/llvm/dist/docs/ReleaseNotes.rst Thu Mar 9 21:49:11 2017 (r314974) +++ vendor/llvm/dist/docs/ReleaseNotes.rst Thu Mar 9 22:50:27 2017 (r314975) @@ -30,7 +30,8 @@ from now, will be version 5.0.0. Non-comprehensive list of changes in this release ================================================= -* Minimum compiler version to build has been raised to GCC 4.8 and VS 2015. +* The minimum compiler version required for building LLVM has been raised to + 4.8 for GCC and 2015 for Visual Studio. * The C API functions ``LLVMAddFunctionAttr``, ``LLVMGetFunctionAttr``, ``LLVMRemoveFunctionAttr``, ``LLVMAddAttribute``, ``LLVMRemoveAttribute``, @@ -56,15 +57,8 @@ Non-comprehensive list of changes in thi with LLVM option ``-adce-remove-loops`` when the loop body otherwise has no live operations. -* The GVNHoist pass is now enabled by default. The new pass based on Global - Value Numbering detects similar computations in branch code and replaces - multiple instances of the same computation with a unique expression. The - transform benefits code size and generates better schedules. GVNHoist is - more aggressive at ``-Os`` and ``-Oz``, hoisting more expressions at the - expense of execution time degradations. - - * The llvm-cov tool can now export coverage data as json. Its html output mode - has also improved. +* The llvm-cov tool can now export coverage data as json. Its html output mode + has also improved. Improvements to ThinLTO (-flto=thin) ------------------------------------ @@ -225,6 +219,10 @@ Changes to the ARM Targets A lot of work has also been done in LLD for ARM, which now supports more relocations and TLS. +Note: From the next release (5.0), the "vulcan" target will be renamed to +"thunderx2t99", including command line options, assembly directives, etc. This +release (4.0) will be the last one to accept "vulcan" as its name. + Changes to the AVR Target ----------------------------- @@ -274,6 +272,15 @@ Changes to the MIPS Target * Fixed several crashes involving FastISel. * Corrected the corrected definitions for aui/daui/dahi/dati for MIPSR6. +Changes to the X86 Target +------------------------- + +**During this release the X86 target has:** + +* Added support AMD Ryzen (znver1) CPUs. +* Gained support for using VEX encoding on AVX-512 CPUs to reduce code size when possible. +* Improved AVX-512 codegen. + Changes to the OCaml bindings ----------------------------- @@ -299,6 +306,34 @@ x86/x86_64 systems like Linux, OS X, Fre and PowerPC (32/64 bit). Ports to other architectures like AArch64 and MIPS64 are underway. +Portable Computing Language (pocl) +---------------------------------- + +In addition to producing an easily portable open source OpenCL +implementation, another major goal of `pocl `_ +is improving performance portability of OpenCL programs with +compiler optimizations, reducing the need for target-dependent manual +optimizations. An important part of pocl is a set of LLVM passes used to +statically parallelize multiple work-items with the kernel compiler, even in +the presence of work-group barriers. This enables static parallelization of +the fine-grained static concurrency in the work groups in multiple ways. + +TTA-based Co-design Environment (TCE) +------------------------------------- + +`TCE `_ is a toolset for designing customized +processors based on the Transport Triggered Architecture (TTA). +The toolset provides a complete co-design flow from C/C++ +programs down to synthesizable VHDL/Verilog and parallel program binaries. +Processor customization points include register files, function units, +supported operations, and the interconnection network. + +TCE uses Clang and LLVM for C/C++/OpenCL C language support, target independent +optimizations and also for parts of code generation. It generates new +LLVM-based code generators "on the fly" for the designed TTA processors and +loads them in to the compiler backend as runtime libraries to avoid +per-target recompilation of larger parts of the compiler chain. + Additional Information ====================== Modified: vendor/llvm/dist/lib/Analysis/ScalarEvolution.cpp ============================================================================== --- vendor/llvm/dist/lib/Analysis/ScalarEvolution.cpp Thu Mar 9 21:49:11 2017 (r314974) +++ vendor/llvm/dist/lib/Analysis/ScalarEvolution.cpp Thu Mar 9 22:50:27 2017 (r314975) @@ -127,10 +127,15 @@ static cl::opt MulOpsInlineThr cl::desc("Threshold for inlining multiplication operands into a SCEV"), cl::init(1000)); -static cl::opt - MaxCompareDepth("scalar-evolution-max-compare-depth", cl::Hidden, - cl::desc("Maximum depth of recursive compare complexity"), - cl::init(32)); +static cl::opt MaxSCEVCompareDepth( + "scalar-evolution-max-scev-compare-depth", cl::Hidden, + cl::desc("Maximum depth of recursive SCEV complexity comparisons"), + cl::init(32)); + +static cl::opt MaxValueCompareDepth( + "scalar-evolution-max-value-compare-depth", cl::Hidden, + cl::desc("Maximum depth of recursive value complexity comparisons"), + cl::init(2)); //===----------------------------------------------------------------------===// // SCEV class definitions @@ -481,7 +486,7 @@ static int CompareValueComplexity(SmallSet, 8> &EqCache, const LoopInfo *const LI, Value *LV, Value *RV, unsigned Depth) { - if (Depth > MaxCompareDepth || EqCache.count({LV, RV})) + if (Depth > MaxValueCompareDepth || EqCache.count({LV, RV})) return 0; // Order pointer values after integer values. This helps SCEVExpander form @@ -568,7 +573,7 @@ static int CompareSCEVComplexity( if (LType != RType) return (int)LType - (int)RType; - if (Depth > MaxCompareDepth || EqCacheSCEV.count({LHS, RHS})) + if (Depth > MaxSCEVCompareDepth || EqCacheSCEV.count({LHS, RHS})) return 0; // Aside from the getSCEVType() ordering, the particular ordering // isn't very important except that it's beneficial to be consistent, Modified: vendor/llvm/dist/lib/Transforms/IPO/PassManagerBuilder.cpp ============================================================================== --- vendor/llvm/dist/lib/Transforms/IPO/PassManagerBuilder.cpp Thu Mar 9 21:49:11 2017 (r314974) +++ vendor/llvm/dist/lib/Transforms/IPO/PassManagerBuilder.cpp Thu Mar 9 22:50:27 2017 (r314975) @@ -141,8 +141,8 @@ static cl::opt PreInlineThreshold( "(default = 75)")); static cl::opt EnableGVNHoist( - "enable-gvn-hoist", cl::init(true), cl::Hidden, - cl::desc("Enable the GVN hoisting pass (default = on)")); + "enable-gvn-hoist", cl::init(false), cl::Hidden, + cl::desc("Enable the GVN hoisting pass")); static cl::opt DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false), Modified: vendor/llvm/dist/lib/Transforms/Scalar/GVNHoist.cpp ============================================================================== --- vendor/llvm/dist/lib/Transforms/Scalar/GVNHoist.cpp Thu Mar 9 21:49:11 2017 (r314974) +++ vendor/llvm/dist/lib/Transforms/Scalar/GVNHoist.cpp Thu Mar 9 22:50:27 2017 (r314975) @@ -200,13 +200,11 @@ static void combineKnownMetadata(Instruc class GVNHoist { public: GVNHoist(DominatorTree *DT, AliasAnalysis *AA, MemoryDependenceResults *MD, - MemorySSA *MSSA, bool OptForMinSize) - : DT(DT), AA(AA), MD(MD), MSSA(MSSA), OptForMinSize(OptForMinSize), - HoistingGeps(OptForMinSize), HoistedCtr(0) { - // Hoist as far as possible when optimizing for code-size. - if (OptForMinSize) - MaxNumberOfBBSInPath = -1; - } + MemorySSA *MSSA) + : DT(DT), AA(AA), MD(MD), MSSA(MSSA), + HoistingGeps(false), + HoistedCtr(0) + { } bool run(Function &F) { VN.setDomTree(DT); @@ -251,7 +249,6 @@ private: AliasAnalysis *AA; MemoryDependenceResults *MD; MemorySSA *MSSA; - const bool OptForMinSize; const bool HoistingGeps; DenseMap DFSNumber; BBSideEffectsSet BBSideEffects; @@ -505,11 +502,6 @@ private: bool safeToHoistScalar(const BasicBlock *HoistBB, SmallPtrSetImpl &WL, int &NBBsOnAllPaths) { - // Enable scalar hoisting at -Oz as it is safe to hoist scalars to a place - // where they are partially needed. - if (OptForMinSize) - return true; - // Check that the hoisted expression is needed on all paths. if (!hoistingFromAllPaths(HoistBB, WL)) return false; @@ -923,13 +915,8 @@ private: Intr->getIntrinsicID() == Intrinsic::assume) continue; } - if (Call->mayHaveSideEffects()) { - if (!OptForMinSize) - break; - // We may continue hoisting across calls which write to memory. - if (Call->mayThrow()) - break; - } + if (Call->mayHaveSideEffects()) + break; if (Call->isConvergent()) break; @@ -971,7 +958,7 @@ public: auto &MD = getAnalysis().getMemDep(); auto &MSSA = getAnalysis().getMSSA(); - GVNHoist G(&DT, &AA, &MD, &MSSA, F.optForMinSize()); + GVNHoist G(&DT, &AA, &MD, &MSSA); return G.run(F); } @@ -991,7 +978,7 @@ PreservedAnalyses GVNHoistPass::run(Func AliasAnalysis &AA = AM.getResult(F); MemoryDependenceResults &MD = AM.getResult(F); MemorySSA &MSSA = AM.getResult(F).getMSSA(); - GVNHoist G(&DT, &AA, &MD, &MSSA, F.optForMinSize()); + GVNHoist G(&DT, &AA, &MD, &MSSA); if (!G.run(F)) return PreservedAnalyses::all(); Added: vendor/llvm/dist/test/DebugInfo/Inputs/split-dwarf-empty.o ============================================================================== Binary file. No diff available. Modified: vendor/llvm/dist/test/Feature/optnone-opt.ll ============================================================================== --- vendor/llvm/dist/test/Feature/optnone-opt.ll Thu Mar 9 21:49:11 2017 (r314974) +++ vendor/llvm/dist/test/Feature/optnone-opt.ll Thu Mar 9 22:50:27 2017 (r314975) @@ -41,7 +41,6 @@ attributes #0 = { optnone noinline } ; OPT-O1-DAG: Skipping pass 'Combine redundant instructions' ; OPT-O1-DAG: Skipping pass 'Dead Store Elimination' ; OPT-O1-DAG: Skipping pass 'Early CSE' -; OPT-O1-DAG: Skipping pass 'Early GVN Hoisting of Expressions' ; OPT-O1-DAG: Skipping pass 'Jump Threading' ; OPT-O1-DAG: Skipping pass 'MemCpy Optimization' ; OPT-O1-DAG: Skipping pass 'Reassociate expressions' Added: vendor/llvm/dist/test/Object/Inputs/dynamic-reloc.so ============================================================================== Binary file. No diff available. Added: vendor/llvm/dist/test/Object/Inputs/macho-bad-archive1.a ============================================================================== Binary file. No diff available. Added: vendor/llvm/dist/test/Object/Inputs/macho-bad-archive2.a ============================================================================== Binary file. No diff available. Added: vendor/llvm/dist/test/Object/Inputs/macho-toc64-archive-x86_64.a ============================================================================== Binary file. No diff available. Added: vendor/llvm/dist/test/Transforms/GVNHoist/hoist-unsafe-pr31729.ll ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/llvm/dist/test/Transforms/GVNHoist/hoist-unsafe-pr31729.ll Thu Mar 9 22:50:27 2017 (r314975) @@ -0,0 +1,81 @@ +; RUN: opt -gvn-hoist -S < %s | FileCheck %s + +; Check that urem is not hoisted. +; CHECK-LABEL: @main +; CHECK: urem +; CHECK: urem +; CHECK: urem + +@g_x_s = global i32 -470211272, align 4 +@g_z_s = global i32 2007237709, align 4 +@g_x_u = global i32 282475249, align 4 +@g_z_u = global i32 984943658, align 4 +@g_m = global i32 16807, align 4 +@res = common global i32 0, align 4 + +; Function Attrs: +define i64 @func() #0 { +entry: + ret i64 1 +} + +; Function Attrs: +define i32 @main() { +entry: + %0 = load volatile i32, i32* @g_x_s, align 4 + %1 = load volatile i32, i32* @g_z_s, align 4 + %2 = load volatile i32, i32* @g_x_u, align 4 + %3 = load volatile i32, i32* @g_z_u, align 4 + %4 = load volatile i32, i32* @g_m, align 4 + %call = call i64 @func() #4 + %conv = sext i32 %1 to i64 + %cmp = icmp ne i64 %call, %conv + br i1 %cmp, label %if.end, label %lor.lhs.false + +lor.lhs.false: + %div = udiv i32 %4, %1 + %rem = urem i32 %0, %div + %cmp2 = icmp eq i32 %rem, 0 + br i1 %cmp2, label %if.end, label %if.then + +if.then: + br label %cleanup + +if.end: + %call4 = call i64 @func() #4 + %conv5 = zext i32 %3 to i64 + %cmp6 = icmp ne i64 %call4, %conv5 + br i1 %cmp6, label %if.end14, label %lor.lhs.false8 + +lor.lhs.false8: + %div9 = udiv i32 %4, %3 + %rem10 = urem i32 %0, %div9 + %cmp11 = icmp eq i32 %rem10, 0 + br i1 %cmp11, label %if.end14, label %if.then13 + +if.then13: + br label %cleanup + +if.end14: + %call15 = call i64 @func() #4 + %cmp17 = icmp ne i64 %call15, %conv + br i1 %cmp17, label %if.end25, label %lor.lhs.false19 + +lor.lhs.false19: + %div20 = udiv i32 %4, %1 + %rem21 = urem i32 %0, %div20 + %cmp22 = icmp eq i32 %rem21, 0 + br i1 %cmp22, label %if.end25, label %if.then24 + +if.then24: + br label %cleanup + +if.end25: + br label %cleanup + +cleanup: + %retval.0 = phi i32 [ 0, %if.end25 ], [ 1, %if.then24 ], [ 1, %if.then13 ], [ 1, %if.then ] + ret i32 %retval.0 +} + +attributes #0 = { minsize noinline nounwind optsize uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" } Added: vendor/llvm/dist/test/tools/dsymutil/Inputs/common.macho.x86_64.o ============================================================================== Binary file. No diff available. Added: vendor/llvm/dist/test/tools/dsymutil/Inputs/thumb.o ============================================================================== Binary file. No diff available. Added: vendor/llvm/dist/test/tools/llvm-objdump/Inputs/eh_frame_zero_cie.o ============================================================================== Binary file. No diff available. Modified: vendor/llvm/dist/unittests/Analysis/ScalarEvolutionTest.cpp ============================================================================== --- vendor/llvm/dist/unittests/Analysis/ScalarEvolutionTest.cpp Thu Mar 9 21:49:11 2017 (r314974) +++ vendor/llvm/dist/unittests/Analysis/ScalarEvolutionTest.cpp Thu Mar 9 22:50:27 2017 (r314975) @@ -465,7 +465,7 @@ TEST_F(ScalarEvolutionsTest, Commutative }); } -TEST_F(ScalarEvolutionsTest, SCEVCompareComplexity) { +TEST_F(ScalarEvolutionsTest, CompareSCEVComplexity) { FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context), std::vector(), false); Function *F = cast(M.getOrInsertFunction("f", FTy)); @@ -532,5 +532,41 @@ TEST_F(ScalarEvolutionsTest, SCEVCompare EXPECT_NE(nullptr, SE.getSCEV(Acc[0])); } +TEST_F(ScalarEvolutionsTest, CompareValueComplexity) { + IntegerType *IntPtrTy = M.getDataLayout().getIntPtrType(Context); + PointerType *IntPtrPtrTy = IntPtrTy->getPointerTo(); + + FunctionType *FTy = + FunctionType::get(Type::getVoidTy(Context), {IntPtrTy, IntPtrTy}, false); + Function *F = cast(M.getOrInsertFunction("f", FTy)); + BasicBlock *EntryBB = BasicBlock::Create(Context, "entry", F); + + Value *X = &*F->arg_begin(); + Value *Y = &*std::next(F->arg_begin()); + + const int ValueDepth = 10; + for (int i = 0; i < ValueDepth; i++) { + X = new LoadInst(new IntToPtrInst(X, IntPtrPtrTy, "", EntryBB), "", + /*isVolatile*/ false, EntryBB); + Y = new LoadInst(new IntToPtrInst(Y, IntPtrPtrTy, "", EntryBB), "", + /*isVolatile*/ false, EntryBB); + } + + auto *MulA = BinaryOperator::CreateMul(X, Y, "", EntryBB); + auto *MulB = BinaryOperator::CreateMul(Y, X, "", EntryBB); + ReturnInst::Create(Context, nullptr, EntryBB); + + // This test isn't checking for correctness. Today making A and B resolve to + // the same SCEV would require deeper searching in CompareValueComplexity, + // which will slow down compilation. However, this test can fail (with LLVM's + // behavior still being correct) if we ever have a smarter + // CompareValueComplexity that is both fast and more accurate. + + ScalarEvolution SE = buildSE(*F); + auto *A = SE.getSCEV(MulA); + auto *B = SE.getSCEV(MulB); + EXPECT_NE(A, B); +} + } // end anonymous namespace } // end namespace llvm From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:50:32 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 445A1D05C06; Thu, 9 Mar 2017 22:50:32 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E8F28118B; Thu, 9 Mar 2017 22:50:31 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29MoV5L097595; Thu, 9 Mar 2017 22:50:31 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29MoVjo097594; Thu, 9 Mar 2017 22:50:31 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092250.v29MoVjo097594@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:50:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314976 - vendor/llvm/llvm-release_400-r297347 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:50:32 -0000 Author: dim Date: Thu Mar 9 22:50:30 2017 New Revision: 314976 URL: https://svnweb.freebsd.org/changeset/base/314976 Log: Tag llvm 4.0.0 release r297347. Added: vendor/llvm/llvm-release_400-r297347/ - copied from r314975, vendor/llvm/dist/ From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:50:49 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33F3FD05C71; Thu, 9 Mar 2017 22:50:49 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBAAD1470; Thu, 9 Mar 2017 22:50:48 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29Molhu097654; Thu, 9 Mar 2017 22:50:47 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29MolAX097651; Thu, 9 Mar 2017 22:50:47 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092250.v29MolAX097651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:50:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314977 - in vendor/clang/dist: lib/Basic lib/Serialization test/PCH X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:50:49 -0000 Author: dim Date: Thu Mar 9 22:50:47 2017 New Revision: 314977 URL: https://svnweb.freebsd.org/changeset/base/314977 Log: Vendor import of clang 4.0.0 release r297347: https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_400/final@297347 Added: vendor/clang/dist/test/PCH/empty-def-fwd-struct.h (contents, props changed) Modified: vendor/clang/dist/lib/Basic/Version.cpp vendor/clang/dist/lib/Serialization/ASTReaderDecl.cpp Modified: vendor/clang/dist/lib/Basic/Version.cpp ============================================================================== --- vendor/clang/dist/lib/Basic/Version.cpp Thu Mar 9 22:50:30 2017 (r314976) +++ vendor/clang/dist/lib/Basic/Version.cpp Thu Mar 9 22:50:47 2017 (r314977) @@ -36,7 +36,7 @@ std::string getClangRepositoryPath() { // If the SVN_REPOSITORY is empty, try to use the SVN keyword. This helps us // pick up a tag in an SVN export, for example. - StringRef SVNRepository("$URL: https://llvm.org/svn/llvm-project/cfe/branches/release_40/lib/Basic/Version.cpp $"); + StringRef SVNRepository("$URL: https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_400/final/lib/Basic/Version.cpp $"); if (URL.empty()) { URL = SVNRepository.slice(SVNRepository.find(':'), SVNRepository.find("/lib/Basic")); Modified: vendor/clang/dist/lib/Serialization/ASTReaderDecl.cpp ============================================================================== --- vendor/clang/dist/lib/Serialization/ASTReaderDecl.cpp Thu Mar 9 22:50:30 2017 (r314976) +++ vendor/clang/dist/lib/Serialization/ASTReaderDecl.cpp Thu Mar 9 22:50:47 2017 (r314977) @@ -2513,8 +2513,8 @@ static bool isConsumerInterestedIn(ASTCo // An ImportDecl or VarDecl imported from a module will get emitted when // we import the relevant module. - if ((isa(D) || isa(D)) && Ctx.DeclMustBeEmitted(D) && - D->getImportedOwningModule()) + if ((isa(D) || isa(D)) && D->getImportedOwningModule() && + Ctx.DeclMustBeEmitted(D)) return false; if (isa(D) || Added: vendor/clang/dist/test/PCH/empty-def-fwd-struct.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/clang/dist/test/PCH/empty-def-fwd-struct.h Thu Mar 9 22:50:47 2017 (r314977) @@ -0,0 +1,12 @@ +// RUN: %clang_cc1 -emit-pch -x c++-header %s -std=c++14 -o %t.pch +// RUN: %clang_cc1 -emit-llvm-only -x c++ /dev/null -std=c++14 -include-pch %t.pch -o %t.o +struct FVector; +struct FVector {}; +struct FBox { + FVector Min; + FBox(int); +}; +namespace { +FBox InvalidBoundingBox(0); +} + From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:50:52 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58DDCD05C9A; Thu, 9 Mar 2017 22:50:52 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 09AE614CF; Thu, 9 Mar 2017 22:50:51 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29MopKL097700; Thu, 9 Mar 2017 22:50:51 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29MopJV097699; Thu, 9 Mar 2017 22:50:51 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092250.v29MopJV097699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:50:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314978 - vendor/clang/clang-release_400-r297347 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:50:52 -0000 Author: dim Date: Thu Mar 9 22:50:50 2017 New Revision: 314978 URL: https://svnweb.freebsd.org/changeset/base/314978 Log: Tag clang 4.0.0 release r297347. Added: vendor/clang/clang-release_400-r297347/ - copied from r314977, vendor/clang/dist/ From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:50:58 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F044FD05CD5; Thu, 9 Mar 2017 22:50:58 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3AB215E9; Thu, 9 Mar 2017 22:50:58 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29MovMm097749; Thu, 9 Mar 2017 22:50:57 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29Mov9v097748; Thu, 9 Mar 2017 22:50:57 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092250.v29Mov9v097748@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:50:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314979 - vendor/compiler-rt/compiler-rt-release_400-r297347 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:50:59 -0000 Author: dim Date: Thu Mar 9 22:50:57 2017 New Revision: 314979 URL: https://svnweb.freebsd.org/changeset/base/314979 Log: Tag compiler-rt 4.0.0 release r297347. Added: vendor/compiler-rt/compiler-rt-release_400-r297347/ - copied from r314978, vendor/compiler-rt/dist/ From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:51:12 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B57DD05D7C; Thu, 9 Mar 2017 22:51:12 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E465C1776; Thu, 9 Mar 2017 22:51:11 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29MpBv0097856; Thu, 9 Mar 2017 22:51:11 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29MpB1Q097855; Thu, 9 Mar 2017 22:51:11 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092251.v29MpB1Q097855@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:51:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314981 - vendor/libc++/libc++-release_400-r297347 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:51:12 -0000 Author: dim Date: Thu Mar 9 22:51:10 2017 New Revision: 314981 URL: https://svnweb.freebsd.org/changeset/base/314981 Log: Tag libc++ 4.0.0 release r297347. Added: vendor/libc++/libc++-release_400-r297347/ - copied from r314980, vendor/libc++/dist/ From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:51:17 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76F4DD05DCE; Thu, 9 Mar 2017 22:51:17 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C7131814; Thu, 9 Mar 2017 22:51:17 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29MpGJ4000285; Thu, 9 Mar 2017 22:51:16 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29MpGAk000284; Thu, 9 Mar 2017 22:51:16 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092251.v29MpGAk000284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:51:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314982 - vendor/lld/dist/test/ELF/Inputs X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:51:17 -0000 Author: dim Date: Thu Mar 9 22:51:16 2017 New Revision: 314982 URL: https://svnweb.freebsd.org/changeset/base/314982 Log: Vendor import of lld 4.0.0 release r297347: https://llvm.org/svn/llvm-project/lld/tags/RELEASE_400/final@297347 Added: vendor/lld/dist/test/ELF/Inputs/arm-thumb-narrow-branch.o (contents, props changed) vendor/lld/dist/test/ELF/Inputs/llvm33-rela-outside-group.o (contents, props changed) vendor/lld/dist/test/ELF/Inputs/mips-options.o (contents, props changed) vendor/lld/dist/test/ELF/Inputs/progname-ver.so (contents, props changed) vendor/lld/dist/test/ELF/Inputs/verneed1.so (contents, props changed) vendor/lld/dist/test/ELF/Inputs/verneed2.so (contents, props changed) vendor/lld/dist/test/ELF/Inputs/version-undef-sym.so (contents, props changed) vendor/lld/dist/test/ELF/Inputs/version-use.so (contents, props changed) Added: vendor/lld/dist/test/ELF/Inputs/arm-thumb-narrow-branch.o ============================================================================== Binary file. No diff available. Added: vendor/lld/dist/test/ELF/Inputs/llvm33-rela-outside-group.o ============================================================================== Binary file. No diff available. Added: vendor/lld/dist/test/ELF/Inputs/mips-options.o ============================================================================== Binary file. No diff available. Added: vendor/lld/dist/test/ELF/Inputs/progname-ver.so ============================================================================== Binary file. No diff available. Added: vendor/lld/dist/test/ELF/Inputs/verneed1.so ============================================================================== Binary file. No diff available. Added: vendor/lld/dist/test/ELF/Inputs/verneed2.so ============================================================================== Binary file. No diff available. Added: vendor/lld/dist/test/ELF/Inputs/version-undef-sym.so ============================================================================== Binary file. No diff available. Added: vendor/lld/dist/test/ELF/Inputs/version-use.so ============================================================================== Binary file. No diff available. From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:51:09 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 919D9D05D58; Thu, 9 Mar 2017 22:51:09 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08CD6172A; Thu, 9 Mar 2017 22:51:08 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29Mp8KQ097808; Thu, 9 Mar 2017 22:51:08 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29Mp8mf097806; Thu, 9 Mar 2017 22:51:08 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092251.v29Mp8mf097806@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:51:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314980 - in vendor/libc++/dist/lib/abi: . 4.0 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:51:09 -0000 Author: dim Date: Thu Mar 9 22:51:07 2017 New Revision: 314980 URL: https://svnweb.freebsd.org/changeset/base/314980 Log: Vendor import of libc++ 4.0.0 release r297347: https://llvm.org/svn/llvm-project/libcxx/tags/RELEASE_400/final@297347 Added: vendor/libc++/dist/lib/abi/4.0/ vendor/libc++/dist/lib/abi/4.0/x86_64-apple-darwin16.0.0.abilist vendor/libc++/dist/lib/abi/4.0/x86_64-unknown-linux-gnu.abilist Modified: vendor/libc++/dist/lib/abi/CHANGELOG.TXT vendor/libc++/dist/lib/abi/x86_64-apple-darwin16.0.0.abilist vendor/libc++/dist/lib/abi/x86_64-unknown-linux-gnu.abilist Added: vendor/libc++/dist/lib/abi/4.0/x86_64-apple-darwin16.0.0.abilist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/libc++/dist/lib/abi/4.0/x86_64-apple-darwin16.0.0.abilist Thu Mar 9 22:51:07 2017 (r314980) @@ -0,0 +1,2376 @@ +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt10bad_typeid4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt10bad_typeid4whatEv'} +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt11logic_error4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt11logic_error4whatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt12bad_any_cast4whatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt12experimental15fundamentals_v112bad_any_cast4whatEv'} +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt13bad_exception4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt13bad_exception4whatEv'} +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt13runtime_error4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt13runtime_error4whatEv'} +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt16bad_array_length4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt16bad_array_length4whatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt16nested_exception14rethrow_nestedEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt18bad_variant_access4whatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt19bad_optional_access4whatEv'} +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt20bad_array_new_length4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt20bad_array_new_length4whatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110__time_put8__do_putEPcRS1_PK2tmcc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110__time_put8__do_putEPwRS1_PK2tmcc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110error_code7messageEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE13do_neg_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE13do_pos_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE14do_curr_symbolEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE14do_frac_digitsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE16do_negative_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE16do_positive_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb0EE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE13do_neg_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE13do_pos_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE14do_curr_symbolEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE14do_frac_digitsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE16do_negative_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE16do_positive_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIcLb1EE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE13do_neg_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE13do_pos_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE14do_curr_symbolEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE14do_frac_digitsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE16do_negative_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE16do_positive_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb0EE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE13do_neg_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE13do_pos_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE14do_curr_symbolEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE14do_frac_digitsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE16do_negative_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE16do_positive_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__110moneypunctIwLb1EE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db15__decrementableEPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db15__find_c_from_iEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db15__subscriptableEPKvl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db17__dereferenceableEPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db17__find_c_and_lockEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db22__less_than_comparableEPKvS2_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db6unlockEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db8__find_cEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__111__libcpp_db9__addableEPKvl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112bad_weak_ptr4whatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE12find_last_ofEPKcmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE13find_first_ofEPKcmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE16find_last_not_ofEPKcmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE17find_first_not_ofEPKcmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE2atEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE4copyEPcmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE4findEPKcmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE4findEcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5rfindEPKcmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5rfindEcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7compareEPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7compareEmmPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7compareEmmPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7compareEmmRKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE12find_last_ofEPKwmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE13find_first_ofEPKwmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE16find_last_not_ofEPKwmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE17find_first_not_ofEPKwmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE2atEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE4copyEPwmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE4findEPKwmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE4findEwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE5rfindEPKwmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE5rfindEwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7compareEPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7compareEmmPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7compareEmmPKwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7compareEmmRKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIcE10do_tolowerEPcPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIcE10do_tolowerEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIcE10do_toupperEPcPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIcE10do_toupperEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE10do_scan_isEjPKwS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE10do_tolowerEPwPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE10do_tolowerEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE10do_toupperEPwPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE10do_toupperEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE11do_scan_notEjPKwS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE5do_isEPKwS3_Pj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE5do_isEjw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE8do_widenEPKcS3_Pw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE8do_widenEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE9do_narrowEPKwS3_cPc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112ctype_bynameIwE9do_narrowEwc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__112strstreambuf6pcountEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__113random_device7entropyEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDiE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDiE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDiE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDiE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDiE5do_inER11__mbstate_tPKcS5_RS5_PDiS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDiE6do_outER11__mbstate_tPKDiS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDiE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDsE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDsE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDsE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDsE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDsE5do_inER11__mbstate_tPKcS5_RS5_PDsS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDsE6do_outER11__mbstate_tPKDsS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IDsE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IwE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IwE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IwE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IwE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IwE5do_inER11__mbstate_tPKcS5_RS5_PwS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IwE6do_outER11__mbstate_tPKwS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114__codecvt_utf8IwE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114collate_bynameIcE10do_compareEPKcS3_S3_S3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114collate_bynameIcE12do_transformEPKcS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114collate_bynameIwE10do_compareEPKwS3_S3_S3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114collate_bynameIwE12do_transformEPKwS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114error_category10equivalentERKNS_10error_codeEi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114error_category10equivalentEiRKNS_15error_conditionE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__114error_category23default_error_conditionEi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb0EE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb0EE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb0EE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb0EE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb0EE5do_inER11__mbstate_tPKcS5_RS5_PDiS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb0EE6do_outER11__mbstate_tPKDiS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb0EE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb1EE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb1EE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb1EE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb1EE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb1EE5do_inER11__mbstate_tPKcS5_RS5_PDiS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb1EE6do_outER11__mbstate_tPKDiS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDiLb1EE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb0EE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb0EE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb0EE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb0EE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb0EE5do_inER11__mbstate_tPKcS5_RS5_PDsS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb0EE6do_outER11__mbstate_tPKDsS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb0EE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb1EE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb1EE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb1EE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb1EE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb1EE5do_inER11__mbstate_tPKcS5_RS5_PDsS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb1EE6do_outER11__mbstate_tPKDsS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IDsLb1EE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb0EE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb0EE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb0EE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb0EE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb0EE5do_inER11__mbstate_tPKcS5_RS5_PwS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb0EE6do_outER11__mbstate_tPKwS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb0EE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb1EE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb1EE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb1EE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb1EE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb1EE5do_inER11__mbstate_tPKcS5_RS5_PwS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb1EE6do_outER11__mbstate_tPKwS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115__codecvt_utf16IwLb1EE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115basic_streambufIcNS_11char_traitsIcEEE6getlocEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115basic_streambufIwNS_11char_traitsIwEEE6getlocEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__115error_condition7messageEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE13do_neg_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE13do_pos_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE14do_curr_symbolEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE14do_frac_digitsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE16do_negative_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE16do_positive_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb0EE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE13do_neg_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE13do_pos_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE14do_curr_symbolEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE14do_frac_digitsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE16do_negative_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE16do_positive_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIcLb1EE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE13do_neg_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE13do_pos_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE14do_curr_symbolEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE14do_frac_digitsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE16do_negative_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE16do_positive_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb0EE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE13do_neg_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE13do_pos_formatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE14do_curr_symbolEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE14do_frac_digitsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE16do_negative_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE16do_positive_signEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__117moneypunct_bynameIwLb1EE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__118__time_get_storageIcE15__do_date_orderEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__118__time_get_storageIwE15__do_date_orderEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__119__shared_weak_count13__get_deleterERKSt9type_info'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDiE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDiE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDiE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDiE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDiE5do_inER11__mbstate_tPKcS5_RS5_PDiS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDiE6do_outER11__mbstate_tPKDiS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDiE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDsE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDsE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDsE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDsE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDsE5do_inER11__mbstate_tPKcS5_RS5_PDsS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDsE6do_outER11__mbstate_tPKDsS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IDsE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IwE10do_unshiftER11__mbstate_tPcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IwE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IwE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IwE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IwE5do_inER11__mbstate_tPKcS5_RS5_PwS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IwE6do_outER11__mbstate_tPKwS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__codecvt_utf8_utf16IwE9do_lengthER11__mbstate_tPKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIcE3__XEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIcE3__cEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIcE3__rEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIcE3__xEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIcE7__am_pmEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIcE7__weeksEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIcE8__monthsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIwE3__XEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIwE3__cEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIwE3__rEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIwE3__xEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIwE7__am_pmEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIwE7__weeksEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__time_get_c_storageIwE8__monthsEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__120__vector_base_commonILb1EE20__throw_out_of_rangeEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__121__basic_string_commonILb1EE20__throw_out_of_rangeEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__123__match_any_but_newlineIcE6__execERNS_7__stateIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__123__match_any_but_newlineIwE6__execERNS_7__stateIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__124__libcpp_debug_exception4whatEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIcE10do_tolowerEPcPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIcE10do_tolowerEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIcE10do_toupperEPcPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIcE10do_toupperEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIcE8do_widenEPKcS3_Pc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIcE8do_widenEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIcE9do_narrowEPKcS3_cPc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIcE9do_narrowEcc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE10do_scan_isEjPKwS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE10do_tolowerEPwPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE10do_tolowerEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE10do_toupperEPwPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE10do_toupperEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE11do_scan_notEjPKwS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE5do_isEPKwS3_Pj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE5do_isEjw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE8do_widenEPKcS3_Pw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE8do_widenEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE9do_narrowEPKwS3_cPc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__15ctypeIwE9do_narrowEwc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__16locale4nameEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__16locale9has_facetERNS0_2idE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__16locale9use_facetERNS0_2idE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__16localeeqERKS0_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDic11__mbstate_tE10do_unshiftERS1_PcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDic11__mbstate_tE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDic11__mbstate_tE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDic11__mbstate_tE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDic11__mbstate_tE5do_inERS1_PKcS5_RS5_PDiS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDic11__mbstate_tE6do_outERS1_PKDiS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDic11__mbstate_tE9do_lengthERS1_PKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDsc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDsc11__mbstate_tE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDsc11__mbstate_tE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDsc11__mbstate_tE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDsc11__mbstate_tE5do_inERS1_PKcS5_RS5_PDsS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDsc11__mbstate_tE6do_outERS1_PKDsS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIDsc11__mbstate_tE9do_lengthERS1_PKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIcc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIcc11__mbstate_tE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIcc11__mbstate_tE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIcc11__mbstate_tE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIcc11__mbstate_tE5do_inERS1_PKcS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIcc11__mbstate_tE6do_outERS1_PKcS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIcc11__mbstate_tE9do_lengthERS1_PKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIwc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIwc11__mbstate_tE11do_encodingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIwc11__mbstate_tE13do_max_lengthEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIwc11__mbstate_tE16do_always_noconvEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIwc11__mbstate_tE6do_outERS1_PKwS5_RS5_PcS7_RS7_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17codecvtIwc11__mbstate_tE9do_lengthERS1_PKcS5_m'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17collateIcE10do_compareEPKcS3_S3_S3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17collateIcE12do_transformEPKcS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17collateIcE7do_hashEPKcS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17collateIwE10do_compareEPKwS3_S3_S3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17collateIwE12do_transformEPKwS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17collateIwE7do_hashEPKwS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRf'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRt'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRf'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRt'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEce'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18ios_base6getlocEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18messagesIcE6do_getEliiRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18messagesIcE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18messagesIcE8do_closeEl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18messagesIwE6do_getEliiRKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18messagesIwE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18messagesIwE8do_closeEl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIcE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIcE11do_truenameEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIcE12do_falsenameEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIcE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIcE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIwE11do_groupingEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIwE11do_truenameEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIwE12do_falsenameEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIwE16do_decimal_pointEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18numpunctIwE16do_thousands_sepEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13do_date_orderEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIcEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13do_date_orderEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIwEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE3putES4_RNS_8ios_baseEcPK2tmPKcSC_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPK2tmcc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE3putES4_RNS_8ios_baseEwPK2tmPKwSC_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPK2tmcc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIcS3_NS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIwS3_NS_9allocatorIwEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEcRKNS_12basic_stringIcS3_NS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEce'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwRKNS_12basic_stringIwS3_NS_9allocatorIwEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwe'} +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt8bad_cast4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt8bad_cast4whatEv'} +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt9bad_alloc4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt9bad_alloc4whatEv'} +{'type': 'U', 'is_defined': False, 'name': '__ZNKSt9exception4whatEv'} +{'type': 'I', 'is_defined': True, 'name': '__ZNKSt9exception4whatEv'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt10bad_typeidC1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt10bad_typeidC1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt10bad_typeidC2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt10bad_typeidC2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt10bad_typeidD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt10bad_typeidD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt10bad_typeidD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt10bad_typeidD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt10bad_typeidD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt10bad_typeidD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt11logic_errorC1EPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt11logic_errorC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt11logic_errorC1ERKS_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt11logic_errorC2EPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt11logic_errorC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt11logic_errorC2ERKS_'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt11logic_errorD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt11logic_errorD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt11logic_errorD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt11logic_errorD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt11logic_errorD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt11logic_errorD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt11logic_erroraSERKS_'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt11range_errorD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt11range_errorD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt11range_errorD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt11range_errorD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt11range_errorD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt11range_errorD2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12domain_errorD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12domain_errorD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12domain_errorD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12domain_errorD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12domain_errorD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12domain_errorD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt12experimental19bad_optional_accessD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt12experimental19bad_optional_accessD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt12experimental19bad_optional_accessD2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12length_errorD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12length_errorD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12length_errorD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12length_errorD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12length_errorD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12length_errorD2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12out_of_rangeD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12out_of_rangeD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12out_of_rangeD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12out_of_rangeD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt12out_of_rangeD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt12out_of_rangeD2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt13bad_exceptionD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt13bad_exceptionD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt13bad_exceptionD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt13bad_exceptionD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt13bad_exceptionD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt13bad_exceptionD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13exception_ptrC1ERKS_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13exception_ptrC2ERKS_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13exception_ptrD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13exception_ptrD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13exception_ptraSERKS_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13runtime_errorC1EPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13runtime_errorC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13runtime_errorC1ERKS_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13runtime_errorC2EPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13runtime_errorC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13runtime_errorC2ERKS_'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt13runtime_errorD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt13runtime_errorD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt13runtime_errorD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt13runtime_errorD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt13runtime_errorD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt13runtime_errorD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt13runtime_erroraSERKS_'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt14overflow_errorD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt14overflow_errorD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt14overflow_errorD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt14overflow_errorD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt14overflow_errorD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt14overflow_errorD2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt15underflow_errorD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt15underflow_errorD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt15underflow_errorD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt15underflow_errorD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt15underflow_errorD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt15underflow_errorD2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt16bad_array_lengthC1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt16bad_array_lengthC1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt16bad_array_lengthC2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt16bad_array_lengthC2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt16bad_array_lengthD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt16bad_array_lengthD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt16bad_array_lengthD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt16bad_array_lengthD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt16bad_array_lengthD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt16bad_array_lengthD2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt16invalid_argumentD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt16invalid_argumentD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt16invalid_argumentD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt16invalid_argumentD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt16invalid_argumentD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt16invalid_argumentD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt16nested_exceptionC1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt16nested_exceptionC2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt16nested_exceptionD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt16nested_exceptionD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt16nested_exceptionD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt19bad_optional_accessD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt19bad_optional_accessD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt19bad_optional_accessD2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt20bad_array_new_lengthC1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt20bad_array_new_lengthC1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt20bad_array_new_lengthC2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt20bad_array_new_lengthC2Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt20bad_array_new_lengthD0Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt20bad_array_new_lengthD0Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt20bad_array_new_lengthD1Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt20bad_array_new_lengthD1Ev'} +{'type': 'U', 'is_defined': False, 'name': '__ZNSt20bad_array_new_lengthD2Ev'} +{'type': 'I', 'is_defined': True, 'name': '__ZNSt20bad_array_new_lengthD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_getC1EPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_getC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_getC2EPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_getC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_getD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_getD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_putC1EPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_putC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_putC2EPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_putC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_putD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110__time_putD2Ev'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110adopt_lockE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5alnumE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5alphaE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5blankE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5cntrlE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5digitE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5graphE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5lowerE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5printE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5punctE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5spaceE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base5upperE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110ctype_base6xdigitE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110defer_lockE', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110istrstreamD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110istrstreamD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110istrstreamD2Ev'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110moneypunctIcLb0EE2idE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110moneypunctIcLb0EE4intlE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110moneypunctIcLb1EE2idE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110moneypunctIcLb1EE4intlE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110moneypunctIwLb0EE2idE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110moneypunctIwLb0EE4intlE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110moneypunctIwLb1EE2idE', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__110moneypunctIwLb1EE4intlE', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110ostrstreamD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110ostrstreamD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110ostrstreamD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEf'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__110to_wstringEy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__call_onceERVmPvPFvS2_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_db10__insert_cEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_db10__insert_iEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_db11__insert_icEPvPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_db15__iterator_copyEPvPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_db16__invalidate_allEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_db4swapEPvS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_db9__erase_cEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_db9__erase_iEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_dbC1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_dbC2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_dbD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__libcpp_dbD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_SF_Ri'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_SJ_Ri'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111regex_errorC1ENS_15regex_constants10error_typeE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111regex_errorC2ENS_15regex_constants10error_typeE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111regex_errorD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111regex_errorD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111regex_errorD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111this_thread9sleep_forERKNS_6chrono8durationIxNS_5ratioILl1ELl1000000000EEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111timed_mutex4lockEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111timed_mutex6unlockEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111timed_mutex8try_lockEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111timed_mutexC1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111timed_mutexC2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111timed_mutexD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__111timed_mutexD2Ev'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__111try_to_lockE', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__do_nothingEPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__get_sp_mutEPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__next_primeEm'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112__rs_default4__c_E', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__rs_defaultC1ERKS0_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__rs_defaultC1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__rs_defaultC2ERKS0_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__rs_defaultC2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__rs_defaultD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__rs_defaultD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112__rs_defaultclEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112bad_weak_ptrD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112bad_weak_ptrD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112bad_weak_ptrD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEmmmmmmPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE2atEm'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE4nposE', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5eraseEmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEmc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendERKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEmc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignERKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEmc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertENS_11__wrap_iterIPKcEEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmRKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmmc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEmc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmRKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmmc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEmmmmmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1ERKS5_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1ERKS5_RKS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1ERKS5_mmRKS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_RKS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_mmRKS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE21__grow_by_and_replaceEmmmmmmPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE2atEm'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE4nposE', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE5eraseEmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEmw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendEPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendEPKwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendERKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendEmw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignERKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEmw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertENS_11__wrap_iterIPKwEEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertEmPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertEmPKwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertEmRKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertEmmw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6resizeEmw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceEmmPKw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceEmmPKwm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceEmmRKS5_mm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceEmmmw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEmmmmmm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC1ERKS5_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC1ERKS5_RKS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC1ERKS5_mmRKS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC2ERKS5_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC2ERKS5_RKS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC2ERKS5_mmRKS4_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEaSERKS5_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEaSEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIcEC1EPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIcEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIcEC2EPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIcEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIcED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIcED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIcED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIwEC1EPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIwEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIwEC2EPKcm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIwEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIwED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIwED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112ctype_bynameIwED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112future_errorC1ENS_10error_codeE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112future_errorC2ENS_10error_codeE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112future_errorD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112future_errorD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112future_errorD2Ev'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_1E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_2E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_3E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_4E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_5E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_6E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_7E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_8E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders2_9E', 'size': 0} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__112placeholders3_10E', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf3strEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf4swapERS0_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf6__initEPclS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf6freezeEb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf7seekoffExNS_8ios_base7seekdirEj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf7seekposENS_4fposI11__mbstate_tEEj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf8overflowEi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf9pbackfailEi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambuf9underflowEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC1EPFPvmEPFvS1_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC1EPKal'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC1EPKcl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC1EPKhl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC1EPalS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC1EPclS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC1EPhlS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC1El'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC2EPFPvmEPFvS1_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC2EPKal'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC2EPKcl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC2EPKhl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC2EPalS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC2EPclS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC2EPhlS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufC2El'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112strstreambufD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_error6__initERKNS_10error_codeENS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC1ENS_10error_codeE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC1ENS_10error_codeEPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC1ENS_10error_codeERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC1EiRKNS_14error_categoryE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC1EiRKNS_14error_categoryEPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC1EiRKNS_14error_categoryERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC2ENS_10error_codeE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC2ENS_10error_codeEPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC2ENS_10error_codeERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC2EiRKNS_14error_categoryE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC2EiRKNS_14error_categoryEPKc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorC2EiRKNS_14error_categoryERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__112system_errorD2Ev'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__113allocator_argE', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getEPcl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getEPclc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getERNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getERNS_15basic_streambufIcS2_EEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getERc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE4peekEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE4readEPcl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE4swapERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE4syncEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE5seekgENS_4fposI11__mbstate_tEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE5seekgExNS_8ios_base7seekdirE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE5tellgEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE5ungetEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6ignoreEli'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC1ERS3_b'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE7getlineEPcl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE7getlineEPclc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE7putbackEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE8readsomeEPcl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEEC1EPNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEEC2EPNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsEPFRNS_8ios_baseES5_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsEPFRNS_9basic_iosIcS2_EES6_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsEPFRS3_S4_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsEPNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERf'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERs'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERt'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getEPwl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getEPwlw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getERNS_15basic_streambufIwS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getERNS_15basic_streambufIwS2_EEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getERw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE4peekEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE4readEPwl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE4swapERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE4syncEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE5seekgENS_4fposI11__mbstate_tEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE5seekgExNS_8ios_base7seekdirE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE5tellgEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE5ungetEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE6ignoreEli'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE6sentryC1ERS3_b'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE6sentryC2ERS3_b'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE7getlineEPwl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE7getlineEPwlw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE7putbackEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE8readsomeEPwl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEEC1EPNS_15basic_streambufIwS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEEC2EPNS_15basic_streambufIwS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsEPFRNS_8ios_baseES5_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsEPFRNS_9basic_iosIwS2_EES6_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsEPFRS3_S4_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsEPNS_15basic_streambufIwS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERPv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERf'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERs'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERt'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE4swapERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5seekpENS_4fposI11__mbstate_tEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5seekpExNS_8ios_base7seekdirE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5tellpEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5writeEPKcl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC1ERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEEC1EPNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEEC2EPNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPFRNS_8ios_baseES5_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPFRNS_9basic_iosIcS2_EES6_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPFRS3_S4_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEf'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEs'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEt'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE3putEw'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE4swapERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5flushEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5seekpENS_4fposI11__mbstate_tEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5seekpExNS_8ios_base7seekdirE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5tellpEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5writeEPKwl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE6sentryC1ERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE6sentryC2ERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE6sentryD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE6sentryD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEEC1EPNS_15basic_streambufIwS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEEC2EPNS_15basic_streambufIwS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPFRNS_8ios_baseES5_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPFRNS_9basic_iosIwS2_EES6_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPFRS3_S4_E'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPKv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPNS_15basic_streambufIwS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEb'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEd'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEe'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEf'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEi'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEl'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEm'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEs'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEt'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEx'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEy'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113random_deviceC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113random_deviceC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113random_deviceD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113random_deviceD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113random_deviceclEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113shared_futureIvED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113shared_futureIvED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__113shared_futureIvEaSERKS1_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__get_const_dbEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__num_get_base10__get_baseERNS_8ios_baseE'} +{'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__114__num_get_base5__srcE', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__num_put_base12__format_intEPcPKcbj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__num_put_base14__format_floatEPcPKcj'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__shared_count12__add_sharedEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__shared_count16__release_sharedEv'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__shared_countD0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__shared_countD1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114__shared_countD2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEE4swapERS3_'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEEC1EPNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEEC2EPNS_15basic_streambufIcS2_EE'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIDic11__mbstate_tED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIDic11__mbstate_tED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIDic11__mbstate_tED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIDsc11__mbstate_tED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIDsc11__mbstate_tED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIDsc11__mbstate_tED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIcc11__mbstate_tED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIcc11__mbstate_tED1Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIcc11__mbstate_tED2Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIwc11__mbstate_tED0Ev'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__114codecvt_bynameIwc11__mbstate_tED1Ev'} *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:51:20 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A27B8D05E1B; Thu, 9 Mar 2017 22:51:20 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5536D1894; Thu, 9 Mar 2017 22:51:20 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29MpJO9000334; Thu, 9 Mar 2017 22:51:19 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29MpJ0T000333; Thu, 9 Mar 2017 22:51:19 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092251.v29MpJ0T000333@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:51:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314983 - vendor/lld/lld-release_400-r297347 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:51:20 -0000 Author: dim Date: Thu Mar 9 22:51:19 2017 New Revision: 314983 URL: https://svnweb.freebsd.org/changeset/base/314983 Log: Tag lld 4.0.0 release r297347. Added: vendor/lld/lld-release_400-r297347/ - copied from r314982, vendor/lld/dist/ From owner-svn-src-vendor@freebsd.org Thu Mar 9 22:51:31 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 948D4D05ED2; Thu, 9 Mar 2017 22:51:31 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4194C1A3D; Thu, 9 Mar 2017 22:51:31 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29MpUqf000387; Thu, 9 Mar 2017 22:51:30 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29MpUmT000386; Thu, 9 Mar 2017 22:51:30 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201703092251.v29MpUmT000386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 9 Mar 2017 22:51:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314984 - vendor/lldb/lldb-release_400-r297347 X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 22:51:31 -0000 Author: dim Date: Thu Mar 9 22:51:30 2017 New Revision: 314984 URL: https://svnweb.freebsd.org/changeset/base/314984 Log: Tag lldb 4.0.0 release r297347. Added: vendor/lldb/lldb-release_400-r297347/ - copied from r314983, vendor/lldb/dist/ From owner-svn-src-vendor@freebsd.org Fri Mar 10 03:28:45 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21DEFD05F3C; Fri, 10 Mar 2017 03:28:45 +0000 (UTC) (envelope-from gonzo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA2371D60; Fri, 10 Mar 2017 03:28:44 +0000 (UTC) (envelope-from gonzo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2A3SicD014120; Fri, 10 Mar 2017 03:28:44 GMT (envelope-from gonzo@FreeBSD.org) Received: (from gonzo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2A3Sh9V014114; Fri, 10 Mar 2017 03:28:43 GMT (envelope-from gonzo@FreeBSD.org) Message-Id: <201703100328.v2A3Sh9V014114@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gonzo set sender to gonzo@FreeBSD.org using -f From: Oleksandr Tymoshenko Date: Fri, 10 Mar 2017 03:28:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r314985 - in vendor/dtc/dist: . Documentation libfdt scripts tests X-SVN-Group: vendor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Mar 2017 03:28:45 -0000 Author: gonzo Date: Fri Mar 10 03:28:43 2017 New Revision: 314985 URL: https://svnweb.freebsd.org/changeset/base/314985 Log: Import dtc 1.4.3 Obtained from: https://www.kernel.org/pub/software/utils/dtc/dtc-1.4.3.tar.gz Added: vendor/dtc/dist/Documentation/dt-object-internal.txt (contents, props changed) vendor/dtc/dist/README vendor/dtc/dist/libfdt/fdt_addresses.c (contents, props changed) vendor/dtc/dist/libfdt/fdt_overlay.c (contents, props changed) vendor/dtc/dist/scripts/kup-dtc (contents, props changed) vendor/dtc/dist/tests/addr_size_cells.c (contents, props changed) vendor/dtc/dist/tests/addresses.dts (contents, props changed) vendor/dtc/dist/tests/bad-octal-literal.dts (contents, props changed) vendor/dtc/dist/tests/bad-size-cells.dts (contents, props changed) vendor/dtc/dist/tests/check_path.c (contents, props changed) vendor/dtc/dist/tests/division-by-zero.dts (contents, props changed) vendor/dtc/dist/tests/embedded_nul.dts (contents, props changed) vendor/dtc/dist/tests/embedded_nul_equiv.dts (contents, props changed) vendor/dtc/dist/tests/fdtdump-runtest.sh (contents, props changed) vendor/dtc/dist/tests/fdtdump.dts (contents, props changed) vendor/dtc/dist/tests/nul-in-escape.dts (contents, props changed) vendor/dtc/dist/tests/nul-in-line-info1.dts (contents, props changed) vendor/dtc/dist/tests/nul-in-line-info2.dts (contents, props changed) vendor/dtc/dist/tests/overlay.c (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup.c (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_bad_index.dts (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_base.dtsi (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_empty.dts (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_empty_index.dts (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_index_trailing.dts (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_path_empty_prop.dts (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_path_only.dts (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_path_only_sep.dts (contents, props changed) vendor/dtc/dist/tests/overlay_bad_fixup_path_prop.dts (contents, props changed) vendor/dtc/dist/tests/overlay_base.dts (contents, props changed) vendor/dtc/dist/tests/overlay_base_manual_symbols.dts (contents, props changed) vendor/dtc/dist/tests/overlay_overlay.dts (contents, props changed) vendor/dtc/dist/tests/overlay_overlay_manual_fixups.dts (contents, props changed) vendor/dtc/dist/tests/overlay_overlay_no_fixups.dts (contents, props changed) vendor/dtc/dist/tests/overlay_overlay_simple.dts (contents, props changed) vendor/dtc/dist/tests/property_iterate.c (contents, props changed) vendor/dtc/dist/tests/property_iterate.dts (contents, props changed) vendor/dtc/dist/tests/reg-without-unit-addr.dts (contents, props changed) vendor/dtc/dist/tests/sourceoutput.dts (contents, props changed) vendor/dtc/dist/tests/stringlist.c (contents, props changed) vendor/dtc/dist/tests/stringlist.dts (contents, props changed) vendor/dtc/dist/tests/test_label_ref.dts (contents, props changed) vendor/dtc/dist/tests/test_tree1_label_noderef.dts (contents, props changed) vendor/dtc/dist/tests/unit-addr-without-reg.dts (contents, props changed) Deleted: vendor/dtc/dist/Makefile.ftdump vendor/dtc/dist/ftdump.c vendor/dtc/dist/tests/references_dts0.dts vendor/dtc/dist/tests/test_tree1_body.dtsi vendor/dtc/dist/tests/test_tree1_dts0.dts Modified: vendor/dtc/dist/Documentation/manual.txt vendor/dtc/dist/Makefile vendor/dtc/dist/checks.c vendor/dtc/dist/convert-dtsv0-lexer.l vendor/dtc/dist/data.c vendor/dtc/dist/dtc-lexer.l vendor/dtc/dist/dtc-parser.y vendor/dtc/dist/dtc.c vendor/dtc/dist/dtc.h vendor/dtc/dist/fdtdump.c vendor/dtc/dist/fdtget.c vendor/dtc/dist/fdtput.c vendor/dtc/dist/flattree.c vendor/dtc/dist/fstree.c vendor/dtc/dist/libfdt/Makefile.libfdt vendor/dtc/dist/libfdt/fdt.c vendor/dtc/dist/libfdt/fdt_ro.c vendor/dtc/dist/libfdt/fdt_rw.c vendor/dtc/dist/libfdt/fdt_strerror.c vendor/dtc/dist/libfdt/fdt_wip.c vendor/dtc/dist/libfdt/libfdt.h vendor/dtc/dist/libfdt/libfdt_env.h vendor/dtc/dist/libfdt/libfdt_internal.h vendor/dtc/dist/libfdt/version.lds vendor/dtc/dist/livetree.c vendor/dtc/dist/srcpos.c vendor/dtc/dist/srcpos.h vendor/dtc/dist/tests/Makefile.tests vendor/dtc/dist/tests/dumptrees.c vendor/dtc/dist/tests/get_phandle.c vendor/dtc/dist/tests/line_directives.dts vendor/dtc/dist/tests/multilabel.dts vendor/dtc/dist/tests/multilabel_merge.dts vendor/dtc/dist/tests/path-references.c vendor/dtc/dist/tests/path-references.dts vendor/dtc/dist/tests/path_offset.c vendor/dtc/dist/tests/references.c vendor/dtc/dist/tests/references.dts vendor/dtc/dist/tests/run_tests.sh vendor/dtc/dist/tests/setprop.c vendor/dtc/dist/tests/setprop_inplace.c vendor/dtc/dist/tests/subnode_iterate.c vendor/dtc/dist/tests/test_tree1.dts vendor/dtc/dist/tests/test_tree1_delete.dts vendor/dtc/dist/tests/testdata.h vendor/dtc/dist/tests/tests.sh vendor/dtc/dist/tests/testutils.c vendor/dtc/dist/tests/trees.S vendor/dtc/dist/treesource.c vendor/dtc/dist/util.c vendor/dtc/dist/util.h Added: vendor/dtc/dist/Documentation/dt-object-internal.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ vendor/dtc/dist/Documentation/dt-object-internal.txt Fri Mar 10 03:28:43 2017 (r314985) @@ -0,0 +1,310 @@ +Device Tree Dynamic Object format internals +------------------------------------------- + +The Device Tree for most platforms is a static representation of +the hardware capabilities. This is insufficient for platforms +that need to dynamically insert Device Tree fragments into the +live tree. + +This document explains the the Device Tree object format and +modifications made to the Device Tree compiler, which make it possible. + +1. Simplified Problem Definition +-------------------------------- + +Assume we have a platform which boots using following simplified Device Tree. + +---- foo.dts ----------------------------------------------------------------- + /* FOO platform */ + / { + compatible = "corp,foo"; + + /* shared resources */ + res: res { + }; + + /* On chip peripherals */ + ocp: ocp { + /* peripherals that are always instantiated */ + peripheral1 { ... }; + }; + }; +---- foo.dts ----------------------------------------------------------------- + +We have a number of peripherals that after probing (using some undefined method) +should result in different Device Tree configuration. + +We cannot boot with this static tree because due to the configuration of the +foo platform there exist multiple conficting peripherals DT fragments. + +So for the bar peripheral we would have this: + +---- foo+bar.dts ------------------------------------------------------------- + /* FOO platform + bar peripheral */ + / { + compatible = "corp,foo"; + + /* shared resources */ + res: res { + }; + + /* On chip peripherals */ + ocp: ocp { + /* peripherals that are always instantiated */ + peripheral1 { ... }; + + /* bar peripheral */ + bar { + compatible = "corp,bar"; + ... /* various properties and child nodes */ + }; + }; + }; +---- foo+bar.dts ------------------------------------------------------------- + +While for the baz peripheral we would have this: + +---- foo+baz.dts ------------------------------------------------------------- + /* FOO platform + baz peripheral */ + / { + compatible = "corp,foo"; + + /* shared resources */ + res: res { + /* baz resources */ + baz_res: res_baz { ... }; + }; + + /* On chip peripherals */ + ocp: ocp { + /* peripherals that are always instantiated */ + peripheral1 { ... }; + + /* baz peripheral */ + baz { + compatible = "corp,baz"; + /* reference to another point in the tree */ + ref-to-res = <&baz_res>; + ... /* various properties and child nodes */ + }; + }; + }; +---- foo+baz.dts ------------------------------------------------------------- + +We note that the baz case is more complicated, since the baz peripheral needs to +reference another node in the DT tree. + +2. Device Tree Object Format Requirements +----------------------------------------- + +Since the Device Tree is used for booting a number of very different hardware +platforms it is imperative that we tread very carefully. + +2.a) No changes to the Device Tree binary format for the base tree. We cannot +modify the tree format at all and all the information we require should be +encoded using Device Tree itself. We can add nodes that can be safely ignored +by both bootloaders and the kernel. The plugin dtbs are optionally tagged +with a different magic number in the header but otherwise they're simple +blobs. + +2.b) Changes to the DTS source format should be absolutely minimal, and should +only be needed for the DT fragment definitions, and not the base boot DT. + +2.c) An explicit option should be used to instruct DTC to generate the required +information needed for object resolution. Platforms that don't use the +dynamic object format can safely ignore it. + +2.d) Finally, DT syntax changes should be kept to a minimum. It should be +possible to express everything using the existing DT syntax. + +3. Implementation +----------------- + +The basic unit of addressing in Device Tree is the phandle. Turns out it's +relatively simple to extend the way phandles are generated and referenced +so that it's possible to dynamically convert symbolic references (labels) +to phandle values. This is a valid assumption as long as the author uses +reference syntax and does not assign phandle values manually (which might +be a problem with decompiled source files). + +We can roughly divide the operation into two steps. + +3.a) Compilation of the base board DTS file using the '-@' option +generates a valid DT blob with an added __symbols__ node at the root node, +containing a list of all nodes that are marked with a label. + +Using the foo.dts file above the following node will be generated; + +$ dtc -@ -O dtb -o foo.dtb -b 0 foo.dts +$ fdtdump foo.dtb +... +/ { + ... + res { + ... + phandle = <0x00000001>; + ... + }; + ocp { + ... + phandle = <0x00000002>; + ... + }; + __symbols__ { + res="/res"; + ocp="/ocp"; + }; +}; + +Notice that all the nodes that had a label have been recorded, and that +phandles have been generated for them. + +This blob can be used to boot the board normally, the __symbols__ node will +be safely ignored both by the bootloader and the kernel (the only loss will +be a few bytes of memory and disk space). + +We generate a __symbols__ node to record nodes that had labels in the base +tree (or subsequent loaded overlays) so that they can be matched up with +references made to them in Device Tree objects. + +3.b) The Device Tree fragments must be compiled with the same option but they +must also have a tag (/plugin/) that allows undefined references to nodes +that are not present at compilation time to be recorded so that the runtime +loader can fix them. + +So the bar peripheral's DTS format would be of the form: + +/dts-v1/; +/plugin/; /* allow undefined references and record them */ +/ { + .... /* various properties for loader use; i.e. part id etc. */ + fragment@0 { + target = <&ocp>; + __overlay__ { + /* bar peripheral */ + bar { + compatible = "corp,bar"; + ... /* various properties and child nodes */ + } + }; + }; +}; + +Note that there's a target property that specifies the location where the +contents of the overlay node will be placed, and it references the node +in the foo.dts file. + +$ dtc -@ -O dtb -o bar.dtbo -b 0 bar.dts +$ fdtdump bar.dtbo +... +/ { + ... /* properties */ + fragment@0 { + target = <0xffffffff>; + __overlay__ { + bar { + compatible = "corp,bar"; + ... /* various properties and child nodes */ + } + }; + }; + __fixups__ { + ocp = "/fragment@0:target:0"; + }; +}; + +No __symbols__ node has been generated (no label in bar.dts). +Note that the target's ocp label is undefined, so the phandle +value is filled with the illegal value '0xffffffff', while a __fixups__ +node has been generated, which marks the location in the tree where +the label lookup should store the runtime phandle value of the ocp node. + +The format of the __fixups__ node entry is + +