| /external/swiftshader/third_party/llvm-subzero/ |
| D | CMakeLists.txt | 7 # http://www.apache.org/licenses/LICENSE-2.0 16 "build/Android/include/llvm/Config/abi-breaking.h" 17 "build/Android/include/llvm/Config/config.h" 18 "build/Android/include/llvm/Config/llvm-config.h" 19 "build/Android/include/llvm/Support/DataTypes.h" 20 "build/Fuchsia/include/llvm/Config/abi-breaking.h" 21 "build/Fuchsia/include/llvm/Config/config.h" 22 "build/Fuchsia/include/llvm/Config/llvm-config.h" 23 "build/Fuchsia/include/llvm/Support/DataTypes.h" 24 "build/Linux/include/llvm/Config/abi-breaking.h" [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/ |
| D | ObjCopy.cpp | 1 //===- Objcopy.cpp --------------------------------------------------------===// 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 7 //===----------------------------------------------------------------------===// 9 #include "llvm/ObjCopy/ObjCopy.h" 10 #include "llvm/ObjCopy/COFF/COFFConfig.h" 11 #include "llvm/ObjCopy/COFF/COFFObjcopy.h" 12 #include "llvm/ObjCopy/CommonConfig.h" 13 #include "llvm/ObjCopy/ELF/ELFConfig.h" [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ |
| D | TargetSelect.h | 1 //===- TargetSelect.h - Target Selection & Registration ---------*- C++ -*-===// 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 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 18 #include "llvm/Config/llvm-config.h" 21 // Declare all of the target-initialization functions that are available. 23 #include "llvm/Config/Targets.def" 26 #include "llvm/Config/Targets.def" [all …]
|
| /external/llvm/docs/CommandGuide/ |
| D | llvm-config.rst | 1 llvm-config - Print LLVM compilation options 6 -------- 9 **llvm-config** *option* [*components*...] 13 ----------- 16 **llvm-config** makes it easier to build applications that use LLVM. It can 18 against LLVM. 22 -------- 28 .. code-block:: sh 30 g++ `llvm-config --cxxflags` -o HowToUseJIT.o -c HowToUseJIT.cpp 31 g++ `llvm-config --ldflags` -o HowToUseJIT HowToUseJIT.o \ [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| D | TargetSelect.h | 1 //===- TargetSelect.h - Target Selection & Registration ---------*- C++ -*-===// 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 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 18 #include "llvm/Config/llvm-config.h" 21 // Declare all of the target-initialization functions that are available. 23 #include "llvm/Config/Targets.def" 26 #include "llvm/Config/Targets.def" [all …]
|
| /external/llvm/device/include/llvm/Config/ |
| D | llvm-config.h | 1 /* include/llvm/Config/llvm-config.h. Generated from llvm-config.h.in by configure. */ 2 /*===-- llvm/config/llvm-config.h - llvm configure variable -------*- C -*-===*/ 4 /* The LLVM Compiler Infrastructure */ 9 /*===----------------------------------------------------------------------===*/ 11 /* This file enumerates all of the llvm variables from configure so that 13 directives. This is a C file so we can include it in the llvm-c headers. */ 16 headers and config.h, conditionally include these. */ 21 #define LLVM_BINDIR "/opt/llvm-android/bin" 23 /* Time at which LLVM was configured */ 27 #define LLVM_DATADIR "/opt/llvm-android/share/llvm" [all …]
|
| /external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
| D | tiled_dot_emitter.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 29 // Provides tiled access to an in-memory rank 2 array. 36 MemoryTile(VectorSupportLibrary* vsl, llvm::IRBuilder<>* b, in MemoryTile() 37 llvm::Value* matrix, int64_t matrix_size_along_minor_dim, in MemoryTile() 38 llvm::Value* major_dim_offset, int64_t tile_size_along_major_dim) in MemoryTile() 42 llvm::Value* total_offset = in MemoryTile() 43 b->CreateMul(b->getInt64(matrix_size_along_minor_dim), in MemoryTile() 44 b->CreateAdd(b->getInt64(i), major_dim_offset)); in MemoryTile() 45 pointers_.push_back(vsl_->ComputeOffsetPointer(matrix, total_offset)); in MemoryTile() 53 std::vector<llvm::Value*> LoadTile(llvm::Value* minor_dim_offset) const { in LoadTile() [all …]
|
| /external/tensorflow/tensorflow/compiler/aot/ |
| D | BUILD | 74 "@llvm-project//llvm:ARMCodeGen", # fixdeps: keep 75 "@llvm-project//llvm:PowerPCCodeGen", # fixdeps: keep 76 "@llvm-project//llvm:Support", 77 "@llvm-project//llvm:Target", 78 "@llvm-project//llvm:X86CodeGen", # fixdeps: keep 81 "@llvm-project//llvm:SystemZCodeGen", # fixdeps: keep 83 "@llvm-project//llvm:AArch64CodeGen", # fixdeps: keep 104 "@llvm-project//llvm:Support", # fixdeps: keep 105 "@llvm-project//llvm:X86CodeGen", # fixdeps: keep 119 "@llvm-project//llvm:ARMCodeGen", # fixdeps: keep [all …]
|
| /external/llvm/include/llvm/Support/ |
| D | TargetSelect.h | 1 //===- TargetSelect.h - Target Selection & Registration ---------*- C++ -*-===// 3 // The LLVM Compiler Infrastructure 8 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 19 #include "llvm/Config/llvm-config.h" 22 // Declare all of the target-initialization functions that are available. 24 #include "llvm/Config/Targets.def" 27 #include "llvm/Config/Targets.def" 29 // Declare all of the target-MC-initialization functions that are available. 31 #include "llvm/Config/Targets.def" [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/COFF/ |
| D | COFFObjcopy.cpp | 1 //===- COFFObjcopy.cpp ----------------------------------------------------===// 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 7 //===----------------------------------------------------------------------===// 9 #include "llvm/ObjCopy/COFF/COFFObjcopy.h" 13 #include "llvm/ObjCopy/COFF/COFFConfig.h" 14 #include "llvm/ObjCopy/CommonConfig.h" 16 #include "llvm/Object/Binary.h" 17 #include "llvm/Object/COFF.h" [all …]
|
| /external/llvm/host/include/llvm/Config/ |
| D | llvm-config.h | 1 /* include/llvm/Config/llvm-config.h. Generated from llvm-config.h.in by configure. */ 2 /*===-- llvm/config/llvm-config.h - llvm configure variable -------*- C -*-===*/ 4 /* The LLVM Compiler Infrastructure */ 9 /*===----------------------------------------------------------------------===*/ 11 /* This file enumerates all of the llvm variables from configure so that 13 directives. This is a C file so we can include it in the llvm-c headers. */ 16 headers and config.h, conditionally include these. */ 21 #define LLVM_BINDIR "/opt/llvm-android/bin" 23 /* Time at which LLVM was configured */ 27 #define LLVM_DATADIR "/opt/llvm-android/share/llvm" [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/ELF/ |
| D | ELFObjcopy.cpp | 1 //===- ELFObjcopy.cpp -----------------------------------------------------===// 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 7 //===----------------------------------------------------------------------===// 9 #include "llvm/ObjCopy/ELF/ELFObjcopy.h" 11 #include "llvm/ADT/BitmaskEnum.h" 12 #include "llvm/ADT/DenseSet.h" 13 #include "llvm/ADT/STLExtras.h" 14 #include "llvm/ADT/SmallVector.h" [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/wasm/ |
| D | WasmObjcopy.cpp | 1 //===- WasmObjcopy.cpp ----------------------------------------------------===// 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 7 //===----------------------------------------------------------------------===// 9 #include "llvm/ObjCopy/wasm/WasmObjcopy.h" 13 #include "llvm/ObjCopy/CommonConfig.h" 14 #include "llvm/Support/Errc.h" 15 #include "llvm/Support/FileOutputBuffer.h" 17 namespace llvm { namespace [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/LTO/ |
| D | LTOCodeGenerator.cpp | 1 //===-LTOCodeGenerator.cpp - LLVM Link Time Optimizer ---------------------===// 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 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 14 #include "llvm/LTO/legacy/LTOCodeGenerator.h" 16 #include "llvm/ADT/Statistic.h" 17 #include "llvm/ADT/StringExtras.h" 18 #include "llvm/Analysis/Passes.h" [all …]
|
| /external/angle/third_party/clspv/gn/llvm/config/ |
| D | BUILD.gn | 1 # This setups the actions for generated header file headers used by the LLVM 2 # libs. The below are heavily influenced by LLVM. 5 # This sets up the generation of the cmake config files used for LLVM. 6 # Based on the LLVM version 12 "//$clspv_llvm_dir/llvm/utils/gn/secondary/llvm/lib/DebugInfo/PDB/enable_dia.gni") 14 import("//$clspv_llvm_dir/llvm/utils/gn/secondary/llvm/version.gni") 23 # Actions to create config.h, llvm-config.h, abi-breaking.h and various .def 24 # files used by llvm/lib/Target. Based on 25 # `llvm/utils/gn/secondary/llvm/include/llvm/Config/BUILD.GN` 28 # Enable additional checks that alter the LLVM C++ ABI. [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
| D | Target.h | 1 /*===-- llvm-c/Target.h - Target Lib C Iface --------------------*- C++ -*-===*/ 3 /* Part of the LLVM Project, under the Apache License v2.0 with LLVM */ 5 /* See https://llvm.org/LICENSE.txt for license information. */ 6 /* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ 8 /*===----------------------------------------------------------------------===*/ 17 /*===----------------------------------------------------------------------===*/ 22 #include "llvm-c/ExternC.h" 23 #include "llvm-c/Types.h" 24 #include "llvm/Config/llvm-config.h" 40 /* Declare all of the target-initialization functions that are available. */ [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm-c/ |
| D | Target.h | 1 /*===-- llvm-c/Target.h - Target Lib C Iface --------------------*- C++ -*-===*/ 3 /* Part of the LLVM Project, under the Apache License v2.0 with LLVM */ 5 /* See https://llvm.org/LICENSE.txt for license information. */ 6 /* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ 8 /*===----------------------------------------------------------------------===*/ 17 /*===----------------------------------------------------------------------===*/ 22 #include "llvm-c/ExternC.h" 23 #include "llvm-c/Types.h" 24 #include "llvm/Config/llvm-config.h" 40 /* Declare all of the target-initialization functions that are available. */ [all …]
|
| /external/llvm/include/llvm-c/ |
| D | Target.h | 1 /*===-- llvm-c/Target.h - Target Lib C Iface --------------------*- C++ -*-===*/ 3 /* The LLVM Compiler Infrastructure */ 8 /*===----------------------------------------------------------------------===*/ 17 /*===----------------------------------------------------------------------===*/ 22 #include "llvm-c/Types.h" 23 #include "llvm/Config/llvm-config.h" 45 /* Declare all of the target-initialization functions that are available. */ 48 #include "llvm/Config/Targets.def" 52 #include "llvm/Config/Targets.def" 57 #include "llvm/Config/Targets.def" [all …]
|
| /external/llvm/test/ |
| D | lit.cfg | 1 # -*- Python -*- 14 config.name = 'LLVM' 19 path = getattr(config, 'lit_tools_dir', None) 21 config.environment['PATH'], 25 config.environment['PATH'])) 26 config.environment['PATH'] = path 40 config.test_format = lit.formats.ShTest(execute_external) 44 config.suffixes = ['.ll', '.c', '.cxx', '.test', '.txt', '.s', '.mir'] 49 config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt'] 52 config.test_source_root = os.path.dirname(__file__) [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/MachO/ |
| D | MachOObjcopy.cpp | 1 //===- MachOObjcopy.cpp -----------------------------------------*- C++ -*-===// 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 7 //===----------------------------------------------------------------------===// 9 #include "llvm/ObjCopy/MachO/MachOObjcopy.h" 13 #include "llvm/ADT/DenseSet.h" 14 #include "llvm/ObjCopy/CommonConfig.h" 15 #include "llvm/ObjCopy/MachO/MachOConfig.h" 16 #include "llvm/ObjCopy/MultiFormatConfig.h" [all …]
|
| /external/bazelbuild-rules_rust/examples/nix_cross_compiling/bazel/toolchains/cc/aarch64-linux-android/ |
| D | BUILD.bazel | 2 "@nix_config//:config.bzl", 7 "LLVM", 21 …"{}/share/android-sdk/ndk/{}/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/c++/v1".for… 23 …"{}/share/android-sdk/ndk/{}/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/local/include".form… 24 …"{}/share/android-sdk/ndk/{}/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include/aarch64-lin… 25 …"{}/share/android-sdk/ndk/{}/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include".format(SDK… 37 …"{}/share/android-sdk/ndk/{}/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/14.0.7".format(SDK_… 38 …"{}/share/android-sdk/ndk/{}/toolchains/llvm/prebuilt/linux-x86_64/lib64/clang/14.0.7/lib/linux/aa… 39 …"{}/share/android-sdk/ndk/{}/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-a… 40 …"{}/share/android-sdk/ndk/{}/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-a… [all …]
|
| /external/llvm/tools/llvm-config/ |
| D | CMakeLists.txt | 6 # Add the llvm-config tool. 7 add_llvm_tool(llvm-config 8 llvm-config.cpp 17 if (l MATCHES "^-") 22 set(SYSTEM_LIBS ${SYSTEM_LIBS} "-l${l}") 29 get_property(COMPILE_FLAGS TARGET llvm-config PROPERTY COMPILE_FLAGS) 54 # Set build-time environment(s). 55 add_definitions(-DCMAKE_CFG_INTDIR="${CMAKE_CFG_INTDIR}") 58 add_file_dependencies(${CMAKE_CURRENT_SOURCE_DIR}/llvm-config.cpp ${BUILDVARIABLES_OBJPATH}) 61 set(${project}_LLVM_CONFIG_EXE "${LLVM_NATIVE_BUILD}/bin/llvm-config") [all …]
|
| /external/tensorflow/tensorflow/core/kernels/mlir_generated/ |
| D | base_ops_test.h | 7 http://www.apache.org/licenses/LICENSE-2.0 23 #include "llvm/ADT/STLExtras.h" 30 using is_integer = llvm::is_one_of<T, int8_t, int16_t, int32_t, int64_t, 83 double atol = -1; 84 double rtol = -1; 89 OpsTestConfig config = *this; in ExpectStrictlyEqual() local 90 config.expect_strictly_equal = true; in ExpectStrictlyEqual() 91 return config; in ExpectStrictlyEqual() 94 OpsTestConfig config = *this; in SuppressTolerance() local 95 config.supress_tolerance = true; in SuppressTolerance() [all …]
|
| /external/llvm/ |
| D | CMakeLists.txt | 1 # See docs/CMake.html for instructions about how to build LLVM with CMake. 48 project(LLVM project 59 message(STATUS "Found libtool - ${CMAKE_LIBTOOL}") 63 "${CMAKE_LIBTOOL} -static -o <TARGET> <LINK_FLAGS> <OBJECTS> ") 82 add_definitions(-DLLVM_BUILD_GLOBAL_ISEL) 119 "Append the version control system revision id to LLVM version" OFF) 125 set(PACKAGE_NAME LLVM) 127 set(PACKAGE_BUGREPORT "http://llvm.org/bugs/") 133 set(CPACK_PACKAGE_INSTALL_DIRECTORY "LLVM") 134 set(CPACK_PACKAGE_VENDOR "LLVM") [all …]
|
| /external/AFLplusplus/.github/workflows/ |
| D | ci.yml | 6 - stable 7 - dev 10 - dev # No need for stable-pull-request, as that equals dev-push 14 runs-on: "${{ matrix.os }}" 17 os: [ubuntu-22.04, ubuntu-20.04] 22 - uses: actions/checkout@v3 23 - name: update 24 run: sudo apt-get update && sudo apt-get upgrade -y 25 - name: debug 26 …run: apt-cache search plugin-dev | grep gcc-; echo; apt-cache search clang-format- | grep clang-fo… [all …]
|