| /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
| llvm_dep.go | 1 //===- llvm_dep.go - creates LLVM dependency ------------------------------===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 9 // This file ensures that the LLVM libraries are built before using the 16 package llvm package
|
| version.go | 1 //===- version.go - LLVM version info -------------------------------------===// 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 9 // This file defines LLVM version information. 13 package llvm package 16 #include "llvm/Config/llvm-config.h"
|
| linker.go | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 13 package llvm package 16 #include "llvm-c/Core.h" 17 #include "llvm-c/Linker.h"
|
| string_test.go | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 13 package llvm package
|
| transforms_coroutines.go | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 13 package llvm package 16 #include "llvm-c/Transforms/Coroutines.h"
|
| bitreader.go | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 13 package llvm package 16 #include "llvm-c/BitReader.h" 17 #include "llvm-c/Core.h" 27 // ParseBitcodeFile parses the LLVM IR (bitcode) in the file with the 28 // specified name, and returns a new LLVM module.
|
| support.go | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 13 package llvm package 16 #include "llvm-c/Support.h" 27 // Loads a dynamic library such that it may be used as an LLVM plugin. 28 // See llvm::sys::DynamicLibrary::LoadLibraryPermanently. 42 // Parse the given arguments using the LLVM command line parser. 43 // See llvm::cl::ParseCommandLineOptions [all...] |
| bitwriter.go | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 13 package llvm package 16 #include "llvm-c/BitWriter.h"
|
| /src/external/bsd/libfido2/dist/src/ |
| diff_exports.sh | 8 for f in export.gnu export.llvm export.msvc; do 16 LLVM="${TMPDIR}/llvm" 20 sed 's/^_//' export.llvm | sort > "${LLVM}" 22 diff -u "${GNU}" "${LLVM}" && diff -u "${MSVC}" "${LLVM}" 24 rm "${GNU}" "${LLVM}" "${MSVC}"
|
| /src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/ |
| PkgCmdID.cs | 1 namespace LLVM.ClangFormat
|
| Guids.cs | 3 namespace LLVM.ClangFormat
|
| /src/external/apache2/llvm/dist/llvm/utils/vim/ftplugin/ |
| llvm.vim | 2 " Language: LLVM Assembly 3 " Maintainer: The LLVM team, http://llvm.org/
|
| tablegen.vim | 2 " Language: LLVM TableGen 3 " Maintainer: The LLVM team, http://llvm.org/
|
| mir.vim | 2 " Language: LLVM Machine IR 3 " Maintainer: The LLVM team, http://llvm.org/
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/all_backends/ |
| llvm_all_backends.mli | 1 (*===-- llvm_all_backends.mli - LLVM OCaml Interface ----------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/bitreader/ |
| llvm_bitreader.ml | 1 (*===-- llvm_bitreader.ml - LLVM OCaml Interface --------------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 14 : Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodule 17 : Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodul [all...] |
| llvm_bitreader.mli | 1 (*===-- llvm_bitreader.mli - LLVM OCaml Interface -------------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 11 This interface provides an OCaml API for the LLVM bitcode reader, the 19 encountered. See the function [llvm::getBitcodeModule]. *) 20 val get_module : Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodul [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/irreader/ |
| llvm_irreader.ml | 1 (*===-- llvm_irreader.ml - LLVM OCaml Interface ---------------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 14 external parse_ir : Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodule
|
| llvm_irreader.mli | 1 (*===-- llvm_irreader.mli - LLVM OCaml Interface --------------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 11 This interface provides an OCaml API for the LLVM assembly reader, the 19 encountered. See the function [llvm::ParseIR]. *) 20 val parse_ir : Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodul [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/linker/ |
| llvm_linker.ml | 1 (*===-- llvm_linker.ml - LLVM OCaml Interface ------------------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 13 external link_modules' : Llvm.llmodule -> Llvm.llmodule -> unit
|
| llvm_linker.mli | 1 (*===-- llvm_linker.mli - LLVM OCaml Interface -----------------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 11 This interface provides an OCaml API for LLVM bitcode linker, 18 val link_modules' : Llvm.llmodule -> Llvm.llmodule -> uni
|
| /src/external/apache2/llvm/autoconf/autoconf/m4/ |
| config_project.m4 | 2 # Provide the arguments and other processing needed for an LLVM project 6 AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]), 10 AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/bitwriter/ |
| llvm_bitwriter.ml | 1 (*===-- llvm_bitwriter.ml - LLVM OCaml Interface --------------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 9 * This interface provides an OCaml API for the LLVM intermediate 15 : Llvm.llmodule -> string -> bool 19 : ?unbuffered:bool -> Llvm.llmodule -> Unix.file_descr -> bool 23 : Llvm.llmodule -> Llvm.llmemorybuffe [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/transforms/passmgr_builder/ |
| llvm_passmgr_builder.ml | 1 (*===-- llvm_passmgr_builder.ml - LLVM OCaml Interface --------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 24 : [ `Function ] Llvm.PassManager.t -> t -> unit 27 : [ `Module ] Llvm.PassManager.t -> t -> unit 30 : [ `Module ] Llvm.PassManager.t -> internalize:bool -> run_inliner:bool -> t -> unit
|
| llvm_passmgr_builder.mli | 1 (*===-- llvm_passmgr_builder.mli - LLVM OCaml Interface -------*- OCaml -*-===* 3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 * See https://llvm.org/LICENSE.txt for license information. 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 11 This interface provides an OCaml API for LLVM pass manager builder 16 (** See the [llvm::PassManagerBuilder] function. *) 20 (** See the [llvm::PassManagerBuilder::OptLevel] function. *) 24 (** See the [llvm::PassManagerBuilder::SizeLevel] function. *) 28 (** See the [llvm::PassManagerBuilder::DisableUnitAtATime] function. * [all...] |