Home
last modified time | relevance | path

Searched refs:LLVM_NATIVE_ARCH (Results 1 – 19 of 19) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/cmake/
H A Dconfig-ix.cmake416 string(TOLOWER "${LLVM_TARGET_ARCH}" LLVM_NATIVE_ARCH)
417 if( LLVM_NATIVE_ARCH STREQUAL "host" )
418 string(REGEX MATCH "^[^-]*" LLVM_NATIVE_ARCH ${LLVM_HOST_TRIPLE})
421 if (LLVM_NATIVE_ARCH MATCHES "i[2-6]86")
422 set(LLVM_NATIVE_ARCH X86) variable
423 elseif (LLVM_NATIVE_ARCH STREQUAL "x86")
424 set(LLVM_NATIVE_ARCH X86) variable
425 elseif (LLVM_NATIVE_ARCH STREQUAL "amd64")
426 set(LLVM_NATIVE_ARCH X86) variable
427 elseif (LLVM_NATIVE_ARCH STREQUAL "x86_64")
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Config/
H A Dllvm-config.h.cmake33 #cmakedefine LLVM_NATIVE_ARCH ${LLVM_NATIVE_ARCH}
36 #cmakedefine LLVM_NATIVE_ASMPARSER LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser
39 #cmakedefine LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter
42 #cmakedefine LLVM_NATIVE_DISASSEMBLER LLVMInitialize${LLVM_NATIVE_ARCH}Disassembler
45 #cmakedefine LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target
48 #cmakedefine LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo
51 #cmakedefine LLVM_NATIVE_TARGETMC LLVMInitialize${LLVM_NATIVE_ARCH}TargetMC
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/
H A DCMakeLists.txt19 if ((LLVM_TARGETS_TO_BUILD MATCHES "${LLVM_NATIVE_ARCH}") AND (LLVM_EXEGESIS_TARGETS MATCHES "${LLV…
20 set(LLVM_EXEGESIS_NATIVE_ARCH "${LLVM_NATIVE_ARCH}")
/netbsd-src/external/apache2/llvm/dist/llvm/lib/
H A DCMakeLists.txt51 if(TARGET ${LLVM_NATIVE_ARCH})
52 add_llvm_component_group(Native LINK_COMPONENTS ${LLVM_NATIVE_ARCH})
53 add_llvm_component_group(NativeCodeGen LINK_COMPONENTS ${LLVM_NATIVE_ARCH}CodeGen)
/netbsd-src/external/apache2/llvm/dist/llvm/cmake/modules/
H A DLLVM-Config.cmake160 if( TARGET LLVM${LLVM_NATIVE_ARCH}CodeGen )
161 list(APPEND expanded_components "${LLVM_NATIVE_ARCH}CodeGen")
163 if( TARGET LLVM${LLVM_NATIVE_ARCH}Desc )
164 list(APPEND expanded_components "${LLVM_NATIVE_ARCH}Desc")
166 if( TARGET LLVM${LLVM_NATIVE_ARCH}Info )
167 list(APPEND expanded_components "${LLVM_NATIVE_ARCH}Info")
237 list(FIND LLVM_TARGETS_TO_BUILD "${LLVM_NATIVE_ARCH}" have_native_backend)
240 list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" have_jit)
251 list(APPEND link_components ${LLVM_NATIVE_ARCH})
H A DLLVMConfig.cmake.in71 set(LLVM_NATIVE_ARCH @LLVM_NATIVE_ARCH@) variable
H A DLLVM-Build.cmake83 if(TARGET ${LLVM_NATIVE_ARCH})
84 get_property(llvm_has_jit_native TARGET ${LLVM_NATIVE_ARCH} PROPERTY LLVM_HAS_JIT)
H A DHandleLLVMOptions.cmake310 if(CMAKE_COMPILER_IS_GNUCXX AND LLVM_NATIVE_ARCH STREQUAL "Mips" AND
319 if(${CMAKE_SYSTEM_NAME} STREQUAL "SunOS" AND LLVM_NATIVE_ARCH STREQUAL "Sparc")
/netbsd-src/external/apache2/llvm/dist/llvm/examples/
H A DCMakeLists.txt12 if(LLVM_ENABLE_EH AND (NOT WIN32) AND (NOT "${LLVM_NATIVE_ARCH}" STREQUAL "ARM"))
/netbsd-src/external/apache2/llvm/autoconf/autoconf/
H A Dconfigure.ac413 x86) LLVM_NATIVE_ARCH="X86" ;;
414 x86_64) LLVM_NATIVE_ARCH="X86" ;;
415 *) LLVM_NATIVE_ARCH="$llvm_cv_target_arch" ;;
420 AC_SUBST(LLVM_NATIVE_ARCH,$LLVM_NATIVE_ARCH) subst
1107 dnl If so, define LLVM_NATIVE_ARCH to that LLVM target.
1109 if test "$a_target" = "$LLVM_NATIVE_ARCH"; then
1110 AC_DEFINE_UNQUOTED(LLVM_NATIVE_ARCH, $LLVM_NATIVE_ARCH, definition
1112 LLVM_NATIVE_TARGET="LLVMInitialize${LLVM_NATIVE_ARCH}Target"
1113 LLVM_NATIVE_TARGETINFO="LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo"
1114 LLVM_NATIVE_TARGETMC="LLVMInitialize${LLVM_NATIVE_ARCH}TargetMC"
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/tests/
H A DCMakeLists.txt43 if(${LLVM_NATIVE_ARCH} MATCHES "^(AArch64|Hexagon|Sparc|SystemZ)$")
/netbsd-src/external/apache2/llvm/autoconf/include/llvm/Config/
H A Dllvm-config.h.in36 #undef LLVM_NATIVE_ARCH
H A Dconfig.h.in439 #undef LLVM_NATIVE_ARCH
/netbsd-src/external/apache2/llvm/config/llvm/Config/
H A Dllvm-config.h.in37 #define LLVM_NATIVE_ARCH X86 macro
H A Dconfig.h.in436 #define LLVM_NATIVE_ARCH X86 macro
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DCMakeLists.txt30 OR NOT LLVM_NATIVE_ARCH IN_LIST LLVM_TARGETS_TO_BUILD
/netbsd-src/external/apache2/llvm/autoconf/
H A Dconfigure4263 x86) LLVM_NATIVE_ARCH="X86" ;;
4264 x86_64) LLVM_NATIVE_ARCH="X86" ;;
4265 *) LLVM_NATIVE_ARCH="$llvm_cv_target_arch" ;;
4270 LLVM_NATIVE_ARCH=$LLVM_NATIVE_ARCH
5499 if test "$a_target" = "$LLVM_NATIVE_ARCH"; then
5505 LLVM_NATIVE_TARGET="LLVMInitialize${LLVM_NATIVE_ARCH}Target"
5506 LLVM_NATIVE_TARGETINFO="LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo"
5507 LLVM_NATIVE_TARGETMC="LLVMInitialize${LLVM_NATIVE_ARCH}TargetMC"
5508 LLVM_NATIVE_ASMPRINTER="LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter"
5509 if test -f ${llvm_srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/AsmParser/CMakeLists.txt ; then
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/include/llvm/Config/
H A DBUILD.gn336 "LLVM_NATIVE_ARCH=$native_target",
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/test/
H A DBUILD.gn65 "LLVM_NATIVE_ARCH=$native_target",