mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Added LLVM as a submodule
This commit is contained in:
parent
6135b450c2
commit
02d1c9f6d2
661 changed files with 43575 additions and 17 deletions
1
llvm_build/include/llvm/CMakeFiles/generate.stamp
Normal file
1
llvm_build/include/llvm/CMakeFiles/generate.stamp
Normal file
|
@ -0,0 +1 @@
|
|||
# CMake generation timestamp file for this directory.
|
3
llvm_build/include/llvm/CMakeFiles/generate.stamp.depend
Normal file
3
llvm_build/include/llvm/CMakeFiles/generate.stamp.depend
Normal file
|
@ -0,0 +1,3 @@
|
|||
# CMake generation dependency list for this directory.
|
||||
D:/Projects/rpcs3/llvm/include/llvm/CMakeLists.txt
|
||||
D:/Projects/rpcs3/llvm/include/llvm/module.modulemap.build
|
30
llvm_build/include/llvm/Config/AsmParsers.def
Normal file
30
llvm_build/include/llvm/Config/AsmParsers.def
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*===- llvm/Config/AsmParsers.def - LLVM Assembly Parsers -------*- C++ -*-===*\
|
||||
|* *|
|
||||
|* The LLVM Compiler Infrastructure *|
|
||||
|* *|
|
||||
|* This file is distributed under the University of Illinois Open Source *|
|
||||
|* License. See LICENSE.TXT for details. *|
|
||||
|* *|
|
||||
|*===----------------------------------------------------------------------===*|
|
||||
|* *|
|
||||
|* This file enumerates all of the assembly-language parsers *|
|
||||
|* supported by this build of LLVM. Clients of this file should define *|
|
||||
|* the LLVM_ASM_PARSER macro to be a function-like macro with a *|
|
||||
|* single parameter (the name of the target whose assembly can be *|
|
||||
|* generated); including this file will then enumerate all of the *|
|
||||
|* targets with assembly parsers. *|
|
||||
|* *|
|
||||
|* The set of targets supported by LLVM is generated at configuration *|
|
||||
|* time, at which point this header is generated. Do not modify this *|
|
||||
|* header directly. *|
|
||||
|* *|
|
||||
\*===----------------------------------------------------------------------===*/
|
||||
|
||||
#ifndef LLVM_ASM_PARSER
|
||||
# error Please define the macro LLVM_ASM_PARSER(TargetName)
|
||||
#endif
|
||||
|
||||
LLVM_ASM_PARSER(X86)
|
||||
|
||||
|
||||
#undef LLVM_ASM_PARSER
|
30
llvm_build/include/llvm/Config/AsmPrinters.def
Normal file
30
llvm_build/include/llvm/Config/AsmPrinters.def
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*===- llvm/Config/AsmPrinters.def - LLVM Assembly Printers -----*- C++ -*-===*\
|
||||
|* *|
|
||||
|* The LLVM Compiler Infrastructure *|
|
||||
|* *|
|
||||
|* This file is distributed under the University of Illinois Open Source *|
|
||||
|* License. See LICENSE.TXT for details. *|
|
||||
|* *|
|
||||
|*===----------------------------------------------------------------------===*|
|
||||
|* *|
|
||||
|* This file enumerates all of the assembly-language printers *|
|
||||
|* supported by this build of LLVM. Clients of this file should define *|
|
||||
|* the LLVM_ASM_PRINTER macro to be a function-like macro with a *|
|
||||
|* single parameter (the name of the target whose assembly can be *|
|
||||
|* generated); including this file will then enumerate all of the *|
|
||||
|* targets with assembly printers. *|
|
||||
|* *|
|
||||
|* The set of targets supported by LLVM is generated at configuration *|
|
||||
|* time, at which point this header is generated. Do not modify this *|
|
||||
|* header directly. *|
|
||||
|* *|
|
||||
\*===----------------------------------------------------------------------===*/
|
||||
|
||||
#ifndef LLVM_ASM_PRINTER
|
||||
# error Please define the macro LLVM_ASM_PRINTER(TargetName)
|
||||
#endif
|
||||
|
||||
LLVM_ASM_PRINTER(X86)
|
||||
|
||||
|
||||
#undef LLVM_ASM_PRINTER
|
30
llvm_build/include/llvm/Config/Disassemblers.def
Normal file
30
llvm_build/include/llvm/Config/Disassemblers.def
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*===- llvm/Config/Disassemblers.def - LLVM Assembly Parsers ----*- C++ -*-===*\
|
||||
|* *|
|
||||
|* The LLVM Compiler Infrastructure *|
|
||||
|* *|
|
||||
|* This file is distributed under the University of Illinois Open Source *|
|
||||
|* License. See LICENSE.TXT for details. *|
|
||||
|* *|
|
||||
|*===----------------------------------------------------------------------===*|
|
||||
|* *|
|
||||
|* This file enumerates all of the assembly-language parsers *|
|
||||
|* supported by this build of LLVM. Clients of this file should define *|
|
||||
|* the LLVM_DISASSEMBLER macro to be a function-like macro with a *|
|
||||
|* single parameter (the name of the target whose assembly can be *|
|
||||
|* generated); including this file will then enumerate all of the *|
|
||||
|* targets with assembly parsers. *|
|
||||
|* *|
|
||||
|* The set of targets supported by LLVM is generated at configuration *|
|
||||
|* time, at which point this header is generated. Do not modify this *|
|
||||
|* header directly. *|
|
||||
|* *|
|
||||
\*===----------------------------------------------------------------------===*/
|
||||
|
||||
#ifndef LLVM_DISASSEMBLER
|
||||
# error Please define the macro LLVM_DISASSEMBLER(TargetName)
|
||||
#endif
|
||||
|
||||
LLVM_DISASSEMBLER(X86)
|
||||
|
||||
|
||||
#undef LLVM_DISASSEMBLER
|
29
llvm_build/include/llvm/Config/Targets.def
Normal file
29
llvm_build/include/llvm/Config/Targets.def
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*===- llvm/Config/Targets.def - LLVM Target Architectures ------*- C++ -*-===*\
|
||||
|* *|
|
||||
|* The LLVM Compiler Infrastructure *|
|
||||
|* *|
|
||||
|* This file is distributed under the University of Illinois Open Source *|
|
||||
|* License. See LICENSE.TXT for details. *|
|
||||
|* *|
|
||||
|*===----------------------------------------------------------------------===*|
|
||||
|* *|
|
||||
|* This file enumerates all of the target architectures supported by *|
|
||||
|* this build of LLVM. Clients of this file should define the *|
|
||||
|* LLVM_TARGET macro to be a function-like macro with a single *|
|
||||
|* parameter (the name of the target); including this file will then *|
|
||||
|* enumerate all of the targets. *|
|
||||
|* *|
|
||||
|* The set of targets supported by LLVM is generated at configuration *|
|
||||
|* time, at which point this header is generated. Do not modify this *|
|
||||
|* header directly. *|
|
||||
|* *|
|
||||
\*===----------------------------------------------------------------------===*/
|
||||
|
||||
#ifndef LLVM_TARGET
|
||||
# error Please define the macro LLVM_TARGET(TargetName)
|
||||
#endif
|
||||
|
||||
LLVM_TARGET(X86)
|
||||
|
||||
|
||||
#undef LLVM_TARGET
|
548
llvm_build/include/llvm/Config/config.h
Normal file
548
llvm_build/include/llvm/Config/config.h
Normal file
|
@ -0,0 +1,548 @@
|
|||
/* include/llvm/Config/config.h.cmake corresponding to config.h.in. */
|
||||
|
||||
#ifndef CONFIG_H
|
||||
#define CONFIG_H
|
||||
|
||||
/* Exported configuration */
|
||||
#include "llvm/Config/llvm-config.h"
|
||||
|
||||
/* Patch version of the LLVM API */
|
||||
/* #undef LLVM_VERSION_PATCH */
|
||||
|
||||
/* Bug report URL. */
|
||||
#define BUG_REPORT_URL "http://llvm.org/bugs/"
|
||||
|
||||
/* Define if you want backtraces on crash */
|
||||
#define ENABLE_BACKTRACES
|
||||
|
||||
/* Define to enable crash overrides */
|
||||
#define ENABLE_CRASH_OVERRIDES
|
||||
|
||||
/* Define if position independent code is enabled */
|
||||
#define ENABLE_PIC
|
||||
|
||||
/* Define if timestamp information (e.g., __DATE__) is allowed */
|
||||
#define ENABLE_TIMESTAMPS 1
|
||||
|
||||
/* Define to 1 if you have the `arc4random' function. */
|
||||
/* #undef HAVE_DECL_ARC4RANDOM */
|
||||
|
||||
/* Define to 1 if you have the `backtrace' function. */
|
||||
/* #undef HAVE_BACKTRACE */
|
||||
|
||||
/* Define to 1 if you have the `bcopy' function. */
|
||||
#undef HAVE_BCOPY
|
||||
|
||||
/* Define to 1 if you have the `ceilf' function. */
|
||||
#define HAVE_CEILF 1
|
||||
|
||||
/* Define to 1 if you have the `closedir' function. */
|
||||
/* #undef HAVE_CLOSEDIR */
|
||||
|
||||
/* Define to 1 if you have the <cxxabi.h> header file. */
|
||||
/* #undef HAVE_CXXABI_H */
|
||||
|
||||
/* Define to 1 if you have the <CrashReporterClient.h> header file. */
|
||||
#undef HAVE_CRASHREPORTERCLIENT_H
|
||||
|
||||
/* can use __crashreporter_info__ */
|
||||
#undef HAVE_CRASHREPORTER_INFO
|
||||
|
||||
/* Define to 1 if you have the declaration of `strerror_s', and to 0 if you
|
||||
don't. */
|
||||
#define HAVE_DECL_STRERROR_S 1
|
||||
|
||||
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
|
||||
*/
|
||||
/* #undef HAVE_DIRENT_H */
|
||||
|
||||
/* Define if you have the GNU dld library. */
|
||||
#undef HAVE_DLD
|
||||
|
||||
/* Define to 1 if you have the `dlerror' function. */
|
||||
/* #undef HAVE_DLERROR */
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
/* #undef HAVE_DLFCN_H */
|
||||
|
||||
/* Define if dlopen() is available on this platform. */
|
||||
/* #undef HAVE_DLOPEN */
|
||||
|
||||
/* Define if you have the _dyld_func_lookup function. */
|
||||
#undef HAVE_DYLD
|
||||
|
||||
/* Define to 1 if you have the <errno.h> header file. */
|
||||
#define HAVE_ERRNO_H 1
|
||||
|
||||
/* Define to 1 if you have the <execinfo.h> header file. */
|
||||
/* #undef HAVE_EXECINFO_H */
|
||||
|
||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
||||
#define HAVE_FCNTL_H 1
|
||||
|
||||
/* Define to 1 if you have the <fenv.h> header file. */
|
||||
#define HAVE_FENV_H 1
|
||||
|
||||
/* Define if libffi is available on this platform. */
|
||||
/* #undef HAVE_FFI_CALL */
|
||||
|
||||
/* Define to 1 if you have the <ffi/ffi.h> header file. */
|
||||
/* #undef HAVE_FFI_FFI_H */
|
||||
|
||||
/* Define to 1 if you have the <ffi.h> header file. */
|
||||
/* #undef HAVE_FFI_H */
|
||||
|
||||
/* Set to 1 if the finite function is found in <ieeefp.h> */
|
||||
/* #undef HAVE_FINITE_IN_IEEEFP_H */
|
||||
|
||||
/* Define to 1 if you have the `floorf' function. */
|
||||
#define HAVE_FLOORF 1
|
||||
|
||||
/* Define to 1 if you have the `log' function. */
|
||||
#define HAVE_LOG 1
|
||||
|
||||
/* Define to 1 if you have the `log2' function. */
|
||||
#define HAVE_LOG2 1
|
||||
|
||||
/* Define to 1 if you have the `log10' function. */
|
||||
#define HAVE_LOG10 1
|
||||
|
||||
/* Define to 1 if you have the `exp' function. */
|
||||
#define HAVE_EXP 1
|
||||
|
||||
/* Define to 1 if you have the `exp2' function. */
|
||||
#define HAVE_EXP2 1
|
||||
|
||||
/* Define to 1 if you have the `exp10' function. */
|
||||
/* #undef HAVE_EXP10 */
|
||||
|
||||
/* Define to 1 if you have the `fmodf' function. */
|
||||
#define HAVE_FMODF 1
|
||||
|
||||
/* Define to 1 if you have the `futimes' function. */
|
||||
/* #undef HAVE_FUTIMES */
|
||||
|
||||
/* Define to 1 if you have the `futimens' function */
|
||||
/* #undef HAVE_FUTIMENS */
|
||||
|
||||
/* Define to 1 if you have the `getcwd' function. */
|
||||
/* #undef HAVE_GETCWD */
|
||||
|
||||
/* Define to 1 if you have the `getpagesize' function. */
|
||||
/* #undef HAVE_GETPAGESIZE */
|
||||
|
||||
/* Define to 1 if you have the `getrlimit' function. */
|
||||
/* #undef HAVE_GETRLIMIT */
|
||||
|
||||
/* Define to 1 if you have the `getrusage' function. */
|
||||
/* #undef HAVE_GETRUSAGE */
|
||||
|
||||
/* Define to 1 if you have the `gettimeofday' function. */
|
||||
/* #undef HAVE_GETTIMEOFDAY */
|
||||
|
||||
/* Define to 1 if the system has the type `int64_t'. */
|
||||
#define HAVE_INT64_T 1
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#define HAVE_INTTYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the `isatty' function. */
|
||||
/* #undef HAVE_ISATTY */
|
||||
|
||||
/* Set to 1 if the isinf function is found in <cmath> */
|
||||
/* #undef HAVE_ISINF_IN_CMATH */
|
||||
|
||||
/* Set to 1 if the isinf function is found in <math.h> */
|
||||
#define HAVE_ISINF_IN_MATH_H 1
|
||||
|
||||
/* Set to 1 if the isnan function is found in <cmath> */
|
||||
/* #undef HAVE_ISNAN_IN_CMATH */
|
||||
|
||||
/* Set to 1 if the isnan function is found in <math.h> */
|
||||
#define HAVE_ISNAN_IN_MATH_H 1
|
||||
|
||||
/* Define if you have the libdl library or equivalent. */
|
||||
/* #undef HAVE_LIBDL */
|
||||
|
||||
/* Define to 1 if you have the `imagehlp' library (-limagehlp). */
|
||||
/* #undef HAVE_LIBIMAGEHLP */
|
||||
|
||||
/* Define to 1 if you have the `m' library (-lm). */
|
||||
#undef HAVE_LIBM
|
||||
|
||||
/* Define to 1 if you have the `psapi' library (-lpsapi). */
|
||||
/* #undef HAVE_LIBPSAPI */
|
||||
|
||||
/* Define to 1 if you have the `pthread' library (-lpthread). */
|
||||
/* #undef HAVE_LIBPTHREAD */
|
||||
|
||||
/* Define to 1 if you have the `shell32' library (-lshell32). */
|
||||
/* #undef HAVE_LIBSHELL32 */
|
||||
|
||||
/* Define to 1 if you have the 'z' library (-lz). */
|
||||
/* #undef HAVE_LIBZ */
|
||||
|
||||
/* Define to 1 if you have the 'edit' library (-ledit). */
|
||||
/* #undef HAVE_LIBEDIT */
|
||||
|
||||
/* Define to 1 if you have the <limits.h> header file. */
|
||||
#define HAVE_LIMITS_H 1
|
||||
|
||||
/* Define if you can use -rdynamic. */
|
||||
#define HAVE_LINK_EXPORT_DYNAMIC 1
|
||||
|
||||
/* Define if you can use -Wl,-R. to pass -R. to the linker, in order to add
|
||||
the current directory to the dynamic linker search path. */
|
||||
#undef HAVE_LINK_R
|
||||
|
||||
/* Define to 1 if you have the `longjmp' function. */
|
||||
/* #undef HAVE_LONGJMP */
|
||||
|
||||
/* Define to 1 if you have the <mach/mach.h> header file. */
|
||||
/* #undef HAVE_MACH_MACH_H */
|
||||
|
||||
/* Define to 1 if you have the <mach-o/dyld.h> header file. */
|
||||
/* #undef HAVE_MACH_O_DYLD_H */
|
||||
|
||||
/* Define if mallinfo() is available on this platform. */
|
||||
/* #undef HAVE_MALLINFO */
|
||||
|
||||
/* Define to 1 if you have the <malloc.h> header file. */
|
||||
#define HAVE_MALLOC_H 1
|
||||
|
||||
/* Define to 1 if you have the <malloc/malloc.h> header file. */
|
||||
/* #undef HAVE_MALLOC_MALLOC_H */
|
||||
|
||||
/* Define to 1 if you have the `malloc_zone_statistics' function. */
|
||||
/* #undef HAVE_MALLOC_ZONE_STATISTICS */
|
||||
|
||||
/* Define to 1 if you have the `mkdtemp' function. */
|
||||
/* #undef HAVE_MKDTEMP */
|
||||
|
||||
/* Define to 1 if you have the `mkstemp' function. */
|
||||
/* #undef HAVE_MKSTEMP */
|
||||
|
||||
/* Define to 1 if you have the `mktemp' function. */
|
||||
/* #undef HAVE_MKTEMP */
|
||||
|
||||
/* Define to 1 if you have a working `mmap' system call. */
|
||||
#undef HAVE_MMAP
|
||||
|
||||
/* Define if mmap() uses MAP_ANONYMOUS to map anonymous pages, or undefine if
|
||||
it uses MAP_ANON */
|
||||
#undef HAVE_MMAP_ANONYMOUS
|
||||
|
||||
/* Define if mmap() can map files into memory */
|
||||
#undef HAVE_MMAP_FILE
|
||||
|
||||
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
||||
/* #undef HAVE_NDIR_H */
|
||||
|
||||
/* Define to 1 if you have the `nearbyintf' function. */
|
||||
#define HAVE_NEARBYINTF 1
|
||||
|
||||
/* Define to 1 if you have the `opendir' function. */
|
||||
/* #undef HAVE_OPENDIR */
|
||||
|
||||
/* Define to 1 if you have the `posix_spawn' function. */
|
||||
/* #undef HAVE_POSIX_SPAWN */
|
||||
|
||||
/* Define to 1 if you have the `powf' function. */
|
||||
/* #undef HAVE_POWF */
|
||||
|
||||
/* Define to 1 if you have the `pread' function. */
|
||||
/* #undef HAVE_PREAD */
|
||||
|
||||
/* Define if libtool can extract symbol lists from object files. */
|
||||
#undef HAVE_PRELOADED_SYMBOLS
|
||||
|
||||
/* Define to have the %a format string */
|
||||
#undef HAVE_PRINTF_A
|
||||
|
||||
/* Have pthread_getspecific */
|
||||
/* #undef HAVE_PTHREAD_GETSPECIFIC */
|
||||
|
||||
/* Define to 1 if you have the <pthread.h> header file. */
|
||||
/* #undef HAVE_PTHREAD_H */
|
||||
|
||||
/* Have pthread_mutex_lock */
|
||||
/* #undef HAVE_PTHREAD_MUTEX_LOCK */
|
||||
|
||||
/* Have pthread_rwlock_init */
|
||||
/* #undef HAVE_PTHREAD_RWLOCK_INIT */
|
||||
|
||||
/* Define to 1 if srand48/lrand48/drand48 exist in <stdlib.h> */
|
||||
/* #undef HAVE_RAND48 */
|
||||
|
||||
/* Define to 1 if you have the `readdir' function. */
|
||||
/* #undef HAVE_READDIR */
|
||||
|
||||
/* Define to 1 if you have the `realpath' function. */
|
||||
/* #undef HAVE_REALPATH */
|
||||
|
||||
/* Define to 1 if you have the `rintf' function. */
|
||||
#undef HAVE_RINTF
|
||||
|
||||
/* Define to 1 if you have the `round' function. */
|
||||
/* #undef HAVE_ROUND */
|
||||
|
||||
/* Define to 1 if you have the `roundf' function. */
|
||||
#undef HAVE_ROUNDF
|
||||
|
||||
/* Define to 1 if you have the `sbrk' function. */
|
||||
/* #undef HAVE_SBRK */
|
||||
|
||||
/* Define to 1 if you have the `setenv' function. */
|
||||
/* #undef HAVE_SETENV */
|
||||
|
||||
/* Define to 1 if you have the `setjmp' function. */
|
||||
/* #undef HAVE_SETJMP */
|
||||
|
||||
/* Define to 1 if you have the `setrlimit' function. */
|
||||
/* #undef HAVE_SETRLIMIT */
|
||||
|
||||
/* Define if you have the shl_load function. */
|
||||
#undef HAVE_SHL_LOAD
|
||||
|
||||
/* Define to 1 if you have the `siglongjmp' function. */
|
||||
/* #undef HAVE_SIGLONGJMP */
|
||||
|
||||
/* Define to 1 if you have the <signal.h> header file. */
|
||||
#define HAVE_SIGNAL_H 1
|
||||
|
||||
/* Define to 1 if you have the `sigsetjmp' function. */
|
||||
/* #undef HAVE_SIGSETJMP */
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#define HAVE_STDINT_H 1
|
||||
|
||||
/* Set to 1 if the std::isinf function is found in <cmath> */
|
||||
#undef HAVE_STD_ISINF_IN_CMATH
|
||||
|
||||
/* Set to 1 if the std::isnan function is found in <cmath> */
|
||||
#undef HAVE_STD_ISNAN_IN_CMATH
|
||||
|
||||
/* Define to 1 if you have the `strdup' function. */
|
||||
/* #undef HAVE_STRDUP */
|
||||
|
||||
/* Define to 1 if you have the `strerror' function. */
|
||||
#define HAVE_STRERROR 1
|
||||
|
||||
/* Define to 1 if you have the `strerror_r' function. */
|
||||
/* #undef HAVE_STRERROR_R */
|
||||
|
||||
/* Define to 1 if you have the `strtof' function. */
|
||||
/* #undef HAVE_STRTOF */
|
||||
|
||||
/* Define to 1 if you have the `strtoll' function. */
|
||||
#define HAVE_STRTOLL 1
|
||||
|
||||
/* Define to 1 if you have the `strtoq' function. */
|
||||
/* #undef HAVE_STRTOQ */
|
||||
|
||||
/* Define to 1 if you have the `sysconf' function. */
|
||||
#undef HAVE_SYSCONF
|
||||
|
||||
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
|
||||
*/
|
||||
/* #undef HAVE_SYS_DIR_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
||||
/* #undef HAVE_SYS_IOCTL_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/mman.h> header file. */
|
||||
/* #undef HAVE_SYS_MMAN_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
|
||||
*/
|
||||
/* #undef HAVE_SYS_NDIR_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||
/* #undef HAVE_SYS_PARAM_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||
/* #undef HAVE_SYS_RESOURCE_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#define HAVE_SYS_STAT_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/time.h> header file. */
|
||||
/* #undef HAVE_SYS_TIME_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
/* #undef HAVE_SYS_TYPES_H */
|
||||
|
||||
/* Define to 1 if you have the <sys/uio.h> header file. */
|
||||
/* #undef HAVE_SYS_UIO_H */
|
||||
|
||||
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
|
||||
/* #undef HAVE_SYS_WAIT_H */
|
||||
|
||||
/* Define if the setupterm() function is supported this platform. */
|
||||
/* #undef HAVE_TERMINFO */
|
||||
|
||||
/* Define to 1 if you have the <termios.h> header file. */
|
||||
/* #undef HAVE_TERMIOS_H */
|
||||
|
||||
/* Define to 1 if the system has the type `uint64_t'. */
|
||||
#define HAVE_UINT64_T 1
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
/* #undef HAVE_UNISTD_H */
|
||||
|
||||
/* Define to 1 if you have the <utime.h> header file. */
|
||||
/* #undef HAVE_UTIME_H */
|
||||
|
||||
/* Define to 1 if the system has the type `u_int64_t'. */
|
||||
/* #undef HAVE_U_INT64_T */
|
||||
|
||||
/* Define to 1 if you have the <valgrind/valgrind.h> header file. */
|
||||
/* #undef HAVE_VALGRIND_VALGRIND_H */
|
||||
|
||||
/* Define to 1 if you have the `writev' function. */
|
||||
/* #undef HAVE_WRITEV */
|
||||
|
||||
/* Define to 1 if you have the <zlib.h> header file. */
|
||||
/* #undef HAVE_ZLIB_H */
|
||||
|
||||
/* Have host's _alloca */
|
||||
/* #undef HAVE__ALLOCA */
|
||||
|
||||
/* Have host's __alloca */
|
||||
/* #undef HAVE___ALLOCA */
|
||||
|
||||
/* Have host's __ashldi3 */
|
||||
/* #undef HAVE___ASHLDI3 */
|
||||
|
||||
/* Have host's __ashrdi3 */
|
||||
/* #undef HAVE___ASHRDI3 */
|
||||
|
||||
/* Have host's __chkstk */
|
||||
#define HAVE___CHKSTK 1
|
||||
|
||||
/* Have host's __cmpdi2 */
|
||||
/* #undef HAVE___CMPDI2 */
|
||||
|
||||
/* Have host's __divdi3 */
|
||||
/* #undef HAVE___DIVDI3 */
|
||||
|
||||
/* Define to 1 if you have the `__dso_handle' function. */
|
||||
#undef HAVE___DSO_HANDLE
|
||||
|
||||
/* Have host's __fixdfdi */
|
||||
/* #undef HAVE___FIXDFDI */
|
||||
|
||||
/* Have host's __fixsfdi */
|
||||
/* #undef HAVE___FIXSFDI */
|
||||
|
||||
/* Have host's __floatdidf */
|
||||
/* #undef HAVE___FLOATDIDF */
|
||||
|
||||
/* Have host's __lshrdi3 */
|
||||
/* #undef HAVE___LSHRDI3 */
|
||||
|
||||
/* Have host's __main */
|
||||
/* #undef HAVE___MAIN */
|
||||
|
||||
/* Have host's __moddi3 */
|
||||
/* #undef HAVE___MODDI3 */
|
||||
|
||||
/* Have host's __udivdi3 */
|
||||
/* #undef HAVE___UDIVDI3 */
|
||||
|
||||
/* Have host's __umoddi3 */
|
||||
/* #undef HAVE___UMODDI3 */
|
||||
|
||||
/* Have host's ___chkstk */
|
||||
/* #undef HAVE____CHKSTK */
|
||||
|
||||
/* Linker version detected at compile time. */
|
||||
#undef HOST_LINK_VERSION
|
||||
|
||||
/* Define if we link Polly to the tools */
|
||||
/* #undef LINK_POLLY_INTO_TOOLS */
|
||||
|
||||
/* Define if zlib compression is available */
|
||||
#define LLVM_ENABLE_ZLIB 0
|
||||
|
||||
/* Define if the OS needs help to load dependent libraries for dlopen(). */
|
||||
/* #undef LTDL_DLOPEN_DEPLIBS */
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
#undef LTDL_OBJDIR
|
||||
|
||||
/* Define to the extension used for shared libraries, say, ".so". */
|
||||
#define LTDL_SHLIB_EXT ".dll"
|
||||
|
||||
/* Define to the system default library search path. */
|
||||
/* #undef LTDL_SYSSEARCHPATH */
|
||||
|
||||
/* Define if /dev/zero should be used when mapping RWX memory, or undefine if
|
||||
its not necessary */
|
||||
#undef NEED_DEV_ZERO_FOR_MMAP
|
||||
|
||||
/* Define if dlsym() requires a leading underscore in symbol names. */
|
||||
#undef NEED_USCORE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#define PACKAGE_BUGREPORT "http://llvm.org/bugs/"
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#define PACKAGE_NAME "LLVM"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "LLVM 3.5.0svn"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "3.5.0svn"
|
||||
|
||||
/* Define as the return type of signal handlers (`int' or `void'). */
|
||||
#define RETSIGTYPE void
|
||||
|
||||
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
|
||||
#undef STAT_MACROS_BROKEN
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
|
||||
#undef TIME_WITH_SYS_TIME
|
||||
|
||||
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
|
||||
#undef TM_IN_SYS_TIME
|
||||
|
||||
/* Type of 1st arg on ELM Callback */
|
||||
#define WIN32_ELMCB_PCSTR PCSTR
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
#undef const
|
||||
|
||||
/* Define to `int' if <sys/types.h> does not define. */
|
||||
#undef pid_t
|
||||
|
||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||
#undef size_t
|
||||
|
||||
/* Define to a function replacing strtoll */
|
||||
/* #undef strtoll */
|
||||
|
||||
/* Define to a function implementing strtoull */
|
||||
/* #undef strtoull */
|
||||
|
||||
/* Define to a function implementing stricmp */
|
||||
#define stricmp _stricmp
|
||||
|
||||
/* Define to a function implementing strdup */
|
||||
#define strdup _strdup
|
||||
|
||||
/* Define to 1 if you have the `_chsize_s' function. */
|
||||
#define HAVE__CHSIZE_S 1
|
||||
|
||||
/* Maximum path length */
|
||||
#define MAXPATHLEN 160
|
||||
|
||||
#endif
|
98
llvm_build/include/llvm/Config/llvm-config.h
Normal file
98
llvm_build/include/llvm/Config/llvm-config.h
Normal file
|
@ -0,0 +1,98 @@
|
|||
/*===------- llvm/Config/llvm-config.h - llvm configuration -------*- C -*-===*/
|
||||
/* */
|
||||
/* The LLVM Compiler Infrastructure */
|
||||
/* */
|
||||
/* This file is distributed under the University of Illinois Open Source */
|
||||
/* License. See LICENSE.TXT for details. */
|
||||
/* */
|
||||
/*===----------------------------------------------------------------------===*/
|
||||
|
||||
/* This file enumerates variables from the LLVM configuration so that they
|
||||
can be in exported headers and won't override package specific directives.
|
||||
This is a C header that can be included in the llvm-c headers. */
|
||||
|
||||
#ifndef LLVM_CONFIG_H
|
||||
#define LLVM_CONFIG_H
|
||||
|
||||
/* Installation directory for binary executables */
|
||||
/* #undef LLVM_BINDIR */
|
||||
|
||||
/* Time at which LLVM was configured */
|
||||
/* #undef LLVM_CONFIGTIME */
|
||||
|
||||
/* Installation directory for data files */
|
||||
/* #undef LLVM_DATADIR */
|
||||
|
||||
/* Target triple LLVM will generate code for by default */
|
||||
#define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-pc-win32"
|
||||
|
||||
/* Installation directory for documentation */
|
||||
/* #undef LLVM_DOCSDIR */
|
||||
|
||||
/* Define if threads enabled */
|
||||
#define LLVM_ENABLE_THREADS 1
|
||||
|
||||
/* Installation directory for config files */
|
||||
/* #undef LLVM_ETCDIR */
|
||||
|
||||
/* Has gcc/MSVC atomic intrinsics */
|
||||
#define LLVM_HAS_ATOMICS 1
|
||||
|
||||
/* Host triple LLVM will be executed on */
|
||||
#define LLVM_HOST_TRIPLE "x86_64-pc-win32"
|
||||
|
||||
/* Installation directory for include files */
|
||||
/* #undef LLVM_INCLUDEDIR */
|
||||
|
||||
/* Installation directory for .info files */
|
||||
/* #undef LLVM_INFODIR */
|
||||
|
||||
/* Installation directory for man pages */
|
||||
/* #undef LLVM_MANDIR */
|
||||
|
||||
/* LLVM architecture name for the native architecture, if available */
|
||||
#define LLVM_NATIVE_ARCH X86
|
||||
|
||||
/* LLVM name for the native AsmParser init function, if available */
|
||||
#define LLVM_NATIVE_ASMPARSER LLVMInitializeX86AsmParser
|
||||
|
||||
/* LLVM name for the native AsmPrinter init function, if available */
|
||||
#define LLVM_NATIVE_ASMPRINTER LLVMInitializeX86AsmPrinter
|
||||
|
||||
/* LLVM name for the native Disassembler init function, if available */
|
||||
#define LLVM_NATIVE_DISASSEMBLER LLVMInitializeX86Disassembler
|
||||
|
||||
/* LLVM name for the native Target init function, if available */
|
||||
#define LLVM_NATIVE_TARGET LLVMInitializeX86Target
|
||||
|
||||
/* LLVM name for the native TargetInfo init function, if available */
|
||||
#define LLVM_NATIVE_TARGETINFO LLVMInitializeX86TargetInfo
|
||||
|
||||
/* LLVM name for the native target MC init function, if available */
|
||||
#define LLVM_NATIVE_TARGETMC LLVMInitializeX86TargetMC
|
||||
|
||||
/* Define if this is Unixish platform */
|
||||
/* #undef LLVM_ON_UNIX */
|
||||
|
||||
/* Define if this is Win32ish platform */
|
||||
#define LLVM_ON_WIN32 1
|
||||
|
||||
/* Installation prefix directory */
|
||||
#define LLVM_PREFIX "C:/Program Files/LLVM"
|
||||
|
||||
/* Define if we have the Intel JIT API runtime support library */
|
||||
/* #undef LLVM_USE_INTEL_JITEVENTS */
|
||||
|
||||
/* Define if we have the oprofile JIT-support library */
|
||||
/* #undef LLVM_USE_OPROFILE */
|
||||
|
||||
/* Major version of the LLVM API */
|
||||
#define LLVM_VERSION_MAJOR 3
|
||||
|
||||
/* Minor version of the LLVM API */
|
||||
#define LLVM_VERSION_MINOR 5
|
||||
|
||||
/* Define if we link Polly to the tools */
|
||||
/* #undef LINK_POLLY_INTO_TOOLS */
|
||||
|
||||
#endif
|
127
llvm_build/include/llvm/INSTALL.vcxproj
Normal file
127
llvm_build/include/llvm/INSTALL.vcxproj
Normal file
|
@ -0,0 +1,127 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGUID>{D2E52B9D-6550-43F1-9825-9C62C06B11DA}</ProjectGUID>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<Platform>x64</Platform>
|
||||
<ProjectName>INSTALL</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType></ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType></ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<PostBuildEvent>
|
||||
<Message></Message>
|
||||
<Command>setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<PostBuildEvent>
|
||||
<Message></Message>
|
||||
<Command>setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\CMakeFiles\94ee7c1d81f4e64670e0a21e0c3a3ecf\INSTALL_force.rule">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> </Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
cd .
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/94ee7c1d81f4e64670e0a21e0c3a3ecf/INSTALL_force.rule;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\CMakeFiles\INSTALL_force</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> </Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
cd .
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/94ee7c1d81f4e64670e0a21e0c3a3ecf/INSTALL_force.rule;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\CMakeFiles\INSTALL_force</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="D:/Projects/rpcs3/llvm_build/ALL_BUILD.vcxproj">
|
||||
<Project>681ACAC2-256D-48A1-BCAD-BD607D22BDB4</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
||||
</ImportGroup>
|
||||
</Project>
|
13
llvm_build/include/llvm/INSTALL.vcxproj.filters
Normal file
13
llvm_build/include/llvm/INSTALL.vcxproj.filters
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\CMakeFiles\94ee7c1d81f4e64670e0a21e0c3a3ecf\INSTALL_force.rule">
|
||||
<Filter>CMake Rules</Filter>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="CMake Rules">
|
||||
<UniqueIdentifier>{4BF339D9-6A3E-40FA-8E07-6D1290466722}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
</Project>
|
1
llvm_build/include/llvm/IR/CMakeFiles/generate.stamp
Normal file
1
llvm_build/include/llvm/IR/CMakeFiles/generate.stamp
Normal file
|
@ -0,0 +1 @@
|
|||
# CMake generation timestamp file for this directory.
|
|
@ -0,0 +1,2 @@
|
|||
# CMake generation dependency list for this directory.
|
||||
D:/Projects/rpcs3/llvm/include/llvm/IR/CMakeLists.txt
|
127
llvm_build/include/llvm/IR/INSTALL.vcxproj
Normal file
127
llvm_build/include/llvm/IR/INSTALL.vcxproj
Normal file
|
@ -0,0 +1,127 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGUID>{D2E52B9D-6550-43F1-9825-9C62C06B11DA}</ProjectGUID>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<Platform>x64</Platform>
|
||||
<ProjectName>INSTALL</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType></ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType></ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm\IR;D:\Projects\rpcs3\llvm\include\llvm\IR;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<PostBuildEvent>
|
||||
<Message></Message>
|
||||
<Command>setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm\IR;D:\Projects\rpcs3\llvm\include\llvm\IR;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<PostBuildEvent>
|
||||
<Message></Message>
|
||||
<Command>setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\6e83b8fec972a7f2fb35581ef9f10557\INSTALL_force.rule">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> </Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
cd .
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/6e83b8fec972a7f2fb35581ef9f10557/INSTALL_force.rule;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\INSTALL_force</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> </Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
cd .
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/6e83b8fec972a7f2fb35581ef9f10557/INSTALL_force.rule;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\INSTALL_force</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="D:/Projects/rpcs3/llvm_build/ALL_BUILD.vcxproj">
|
||||
<Project>681ACAC2-256D-48A1-BCAD-BD607D22BDB4</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
||||
</ImportGroup>
|
||||
</Project>
|
13
llvm_build/include/llvm/IR/INSTALL.vcxproj.filters
Normal file
13
llvm_build/include/llvm/IR/INSTALL.vcxproj.filters
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\6e83b8fec972a7f2fb35581ef9f10557\INSTALL_force.rule">
|
||||
<Filter>CMake Rules</Filter>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="CMake Rules">
|
||||
<UniqueIdentifier>{4BF339D9-6A3E-40FA-8E07-6D1290466722}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
</Project>
|
135
llvm_build/include/llvm/IR/PACKAGE.vcxproj
Normal file
135
llvm_build/include/llvm/IR/PACKAGE.vcxproj
Normal file
|
@ -0,0 +1,135 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGUID>{924CDF46-DBFE-4464-B179-3E3DD376B4AA}</ProjectGUID>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<Platform>x64</Platform>
|
||||
<ProjectName>PACKAGE</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType></ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType></ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm\IR;D:\Projects\rpcs3\llvm\include\llvm\IR;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<PostBuildEvent>
|
||||
<Message></Message>
|
||||
<Command>setlocal
|
||||
cd D:\Projects\rpcs3\llvm_build
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
D:
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
"C:\Program Files (x86)\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm\IR;D:\Projects\rpcs3\llvm\include\llvm\IR;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<PostBuildEvent>
|
||||
<Message></Message>
|
||||
<Command>setlocal
|
||||
cd D:\Projects\rpcs3\llvm_build
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
D:
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
"C:\Program Files (x86)\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\6e83b8fec972a7f2fb35581ef9f10557\PACKAGE_force.rule">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> </Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
cd .
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/6e83b8fec972a7f2fb35581ef9f10557/PACKAGE_force.rule;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\PACKAGE_force</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> </Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
cd .
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/6e83b8fec972a7f2fb35581ef9f10557/PACKAGE_force.rule;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\PACKAGE_force</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="D:/Projects/rpcs3/llvm_build/ALL_BUILD.vcxproj">
|
||||
<Project>681ACAC2-256D-48A1-BCAD-BD607D22BDB4</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
||||
</ImportGroup>
|
||||
</Project>
|
13
llvm_build/include/llvm/IR/PACKAGE.vcxproj.filters
Normal file
13
llvm_build/include/llvm/IR/PACKAGE.vcxproj.filters
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\6e83b8fec972a7f2fb35581ef9f10557\PACKAGE_force.rule">
|
||||
<Filter>CMake Rules</Filter>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="CMake Rules">
|
||||
<UniqueIdentifier>{4BF339D9-6A3E-40FA-8E07-6D1290466722}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
</Project>
|
29
llvm_build/include/llvm/IR/cmake_install.cmake
Normal file
29
llvm_build/include/llvm/IR/cmake_install.cmake
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Install script for directory: D:/Projects/rpcs3/llvm/include/llvm/IR
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "C:/Program Files/LLVM")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "Release")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
195
llvm_build/include/llvm/IR/intrinsics_gen.vcxproj
Normal file
195
llvm_build/include/llvm/IR/intrinsics_gen.vcxproj
Normal file
|
@ -0,0 +1,195 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGUID>{287EED9A-FBDD-4CB8-85D8-39AEB6245704}</ProjectGUID>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<Platform>x64</Platform>
|
||||
<ProjectName>intrinsics_gen</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Utility</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm\IR;D:\Projects\rpcs3\llvm\include\llvm\IR;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm\IR;D:\Projects\rpcs3\llvm\include\llvm\IR;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="D:\Projects\rpcs3\llvm\include\llvm\IR\CMakeLists.txt">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Building Custom Rule D:/Projects/rpcs3/llvm/include/llvm/IR/CMakeLists.txt</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -HD:/Projects/rpcs3/llvm -BD:/Projects/rpcs3/llvm_build --check-stamp-file D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\generate.stamp
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm/include/llvm/IR/CMakeLists.txt;D:\Projects\rpcs3\llvm\include\llvm\IR\CMakeLists.txt;D:\Projects\rpcs3\llvm\include\llvm\IR\CMakeLists.txt;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\generate.stamp</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Building Custom Rule D:/Projects/rpcs3/llvm/include/llvm/IR/CMakeLists.txt</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -HD:/Projects/rpcs3/llvm -BD:/Projects/rpcs3/llvm_build --check-stamp-file D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\generate.stamp
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm/include/llvm/IR/CMakeLists.txt;D:\Projects\rpcs3\llvm\include\llvm\IR\CMakeLists.txt;D:\Projects\rpcs3\llvm\include\llvm\IR\CMakeLists.txt;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\generate.stamp</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\b0cc773091a3d13dce2ee987be46bc73\Intrinsics.gen.tmp.rule">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Building Intrinsics.gen...</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
..\..\..\Debug\bin\llvm-tblgen.exe -gen-intrinsic -I D:/Projects/rpcs3/llvm/include/llvm/IR -I D:/Projects/rpcs3/llvm/lib/Target -I D:/Projects/rpcs3/llvm/include D:/Projects/rpcs3/llvm/include/llvm/IR/Intrinsics.td -o D:/Projects/rpcs3/llvm_build/include/llvm/IR/Intrinsics.gen.tmp
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/b0cc773091a3d13dce2ee987be46bc73/Intrinsics.gen.tmp.rule;D:\Projects\rpcs3\llvm_build\Debug\bin\llvm-tblgen.exe;D:\Projects\rpcs3\llvm\include\llvm\IR\Intrinsics.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsAArch64.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsARM.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsHexagon.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsMips.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsNVVM.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsPowerPC.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsR600.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsX86.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsXCore.td;D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ValueTypes.td;D:\Projects\rpcs3\llvm\include\llvm\IR\Intrinsics.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsAArch64.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsARM.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsHexagon.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsMips.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsNVVM.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsPowerPC.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsR600.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsX86.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsXCore.td;D:\Projects\rpcs3\llvm\include\llvm\Option\OptParser.td;D:\Projects\rpcs3\llvm\include\llvm\Target\Target.td;D:\Projects\rpcs3\llvm\include\llvm\Target\TargetCallingConv.td;D:\Projects\rpcs3\llvm\include\llvm\Target\TargetItinerary.td;D:\Projects\rpcs3\llvm\include\llvm\Target\TargetSchedule.td;D:\Projects\rpcs3\llvm\include\llvm\Target\TargetSelectionDAG.td;D:\Projects\rpcs3\llvm\include\llvm\IR\Intrinsics.td;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\Intrinsics.gen.tmp</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Building Intrinsics.gen...</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
..\..\..\Release\bin\llvm-tblgen.exe -gen-intrinsic -I D:/Projects/rpcs3/llvm/include/llvm/IR -I D:/Projects/rpcs3/llvm/lib/Target -I D:/Projects/rpcs3/llvm/include D:/Projects/rpcs3/llvm/include/llvm/IR/Intrinsics.td -o D:/Projects/rpcs3/llvm_build/include/llvm/IR/Intrinsics.gen.tmp
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/b0cc773091a3d13dce2ee987be46bc73/Intrinsics.gen.tmp.rule;D:\Projects\rpcs3\llvm_build\Release\bin\llvm-tblgen.exe;D:\Projects\rpcs3\llvm\include\llvm\IR\Intrinsics.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsAArch64.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsARM.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsHexagon.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsMips.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsNVVM.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsPowerPC.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsR600.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsX86.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsXCore.td;D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ValueTypes.td;D:\Projects\rpcs3\llvm\include\llvm\IR\Intrinsics.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsAArch64.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsARM.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsHexagon.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsMips.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsNVVM.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsPowerPC.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsR600.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsX86.td;D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicsXCore.td;D:\Projects\rpcs3\llvm\include\llvm\Option\OptParser.td;D:\Projects\rpcs3\llvm\include\llvm\Target\Target.td;D:\Projects\rpcs3\llvm\include\llvm\Target\TargetCallingConv.td;D:\Projects\rpcs3\llvm\include\llvm\Target\TargetItinerary.td;D:\Projects\rpcs3\llvm\include\llvm\Target\TargetSchedule.td;D:\Projects\rpcs3\llvm\include\llvm\Target\TargetSelectionDAG.td;D:\Projects\rpcs3\llvm\include\llvm\IR\Intrinsics.td;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\Intrinsics.gen.tmp</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\b0cc773091a3d13dce2ee987be46bc73\Intrinsics.gen.rule">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Updating Intrinsics.gen...</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E copy_if_different D:/Projects/rpcs3/llvm_build/include/llvm/IR/Intrinsics.gen.tmp D:/Projects/rpcs3/llvm_build/include/llvm/IR/Intrinsics.gen
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/b0cc773091a3d13dce2ee987be46bc73/Intrinsics.gen.rule;D:\Projects\rpcs3\llvm_build\include\llvm\IR\Intrinsics.gen.tmp;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\Intrinsics.gen</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Updating Intrinsics.gen...</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E copy_if_different D:/Projects/rpcs3/llvm_build/include/llvm/IR/Intrinsics.gen.tmp D:/Projects/rpcs3/llvm_build/include/llvm/IR/Intrinsics.gen
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/b0cc773091a3d13dce2ee987be46bc73/Intrinsics.gen.rule;D:\Projects\rpcs3\llvm_build\include\llvm\IR\Intrinsics.gen.tmp;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\Intrinsics.gen</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\6e83b8fec972a7f2fb35581ef9f10557\intrinsics_gen.rule">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"></Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/6e83b8fec972a7f2fb35581ef9f10557/intrinsics_gen.rule;D:\Projects\rpcs3\llvm_build\include\llvm\IR\Intrinsics.gen;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\intrinsics_gen</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'"></Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/6e83b8fec972a7f2fb35581ef9f10557/intrinsics_gen.rule;D:\Projects\rpcs3\llvm_build\include\llvm\IR\Intrinsics.gen;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\IR\CMakeFiles\intrinsics_gen</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="CMakeFiles\intrinsics_gen" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="D:/Projects/rpcs3/llvm_build/ZERO_CHECK.vcxproj">
|
||||
<Project>1E9A56BB-21C5-418B-B623-AD2B3F153307</Project>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="D:/Projects/rpcs3/llvm_build/utils/TableGen/llvm-tblgen.vcxproj">
|
||||
<Project>8B29688C-5D8C-412E-85F5-012FBF12B1DE</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
||||
</ImportGroup>
|
||||
</Project>
|
23
llvm_build/include/llvm/IR/intrinsics_gen.vcxproj.filters
Normal file
23
llvm_build/include/llvm/IR/intrinsics_gen.vcxproj.filters
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="D:\Projects\rpcs3\llvm\include\llvm\IR\CMakeLists.txt" />
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\b0cc773091a3d13dce2ee987be46bc73\Intrinsics.gen.tmp.rule">
|
||||
<Filter>CMake Rules</Filter>
|
||||
</CustomBuild>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\b0cc773091a3d13dce2ee987be46bc73\Intrinsics.gen.rule">
|
||||
<Filter>CMake Rules</Filter>
|
||||
</CustomBuild>
|
||||
<CustomBuild Include="..\..\..\CMakeFiles\6e83b8fec972a7f2fb35581ef9f10557\intrinsics_gen.rule">
|
||||
<Filter>CMake Rules</Filter>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="CMakeFiles\intrinsics_gen" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="CMake Rules">
|
||||
<UniqueIdentifier>{4BF339D9-6A3E-40FA-8E07-6D1290466722}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
</Project>
|
135
llvm_build/include/llvm/PACKAGE.vcxproj
Normal file
135
llvm_build/include/llvm/PACKAGE.vcxproj
Normal file
|
@ -0,0 +1,135 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGUID>{924CDF46-DBFE-4464-B179-3E3DD376B4AA}</ProjectGUID>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<Platform>x64</Platform>
|
||||
<ProjectName>PACKAGE</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType></ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType></ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<PostBuildEvent>
|
||||
<Message></Message>
|
||||
<Command>setlocal
|
||||
cd D:\Projects\rpcs3\llvm_build
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
D:
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
"C:\Program Files (x86)\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<PostBuildEvent>
|
||||
<Message></Message>
|
||||
<Command>setlocal
|
||||
cd D:\Projects\rpcs3\llvm_build
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
D:
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
"C:\Program Files (x86)\CMake\bin\cpack.exe" -C $(Configuration) --config ./CPackConfig.cmake
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\CMakeFiles\94ee7c1d81f4e64670e0a21e0c3a3ecf\PACKAGE_force.rule">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> </Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
cd .
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/94ee7c1d81f4e64670e0a21e0c3a3ecf/PACKAGE_force.rule;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\CMakeFiles\PACKAGE_force</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> </Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
cd .
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm_build/CMakeFiles/94ee7c1d81f4e64670e0a21e0c3a3ecf/PACKAGE_force.rule;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\CMakeFiles\PACKAGE_force</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="D:/Projects/rpcs3/llvm_build/ALL_BUILD.vcxproj">
|
||||
<Project>681ACAC2-256D-48A1-BCAD-BD607D22BDB4</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
||||
</ImportGroup>
|
||||
</Project>
|
13
llvm_build/include/llvm/PACKAGE.vcxproj.filters
Normal file
13
llvm_build/include/llvm/PACKAGE.vcxproj.filters
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="..\..\CMakeFiles\94ee7c1d81f4e64670e0a21e0c3a3ecf\PACKAGE_force.rule">
|
||||
<Filter>CMake Rules</Filter>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="CMake Rules">
|
||||
<UniqueIdentifier>{4BF339D9-6A3E-40FA-8E07-6D1290466722}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
</Project>
|
129
llvm_build/include/llvm/Support/DataTypes.h
Normal file
129
llvm_build/include/llvm/Support/DataTypes.h
Normal file
|
@ -0,0 +1,129 @@
|
|||
/*===-- include/Support/DataTypes.h - Define fixed size types -----*- C -*-===*\
|
||||
|* *|
|
||||
|* The LLVM Compiler Infrastructure *|
|
||||
|* *|
|
||||
|* This file is distributed under the University of Illinois Open Source *|
|
||||
|* License. See LICENSE.TXT for details. *|
|
||||
|* *|
|
||||
|*===----------------------------------------------------------------------===*|
|
||||
|* *|
|
||||
|* This file contains definitions to figure out the size of _HOST_ data types.*|
|
||||
|* This file is important because different host OS's define different macros,*|
|
||||
|* which makes portability tough. This file exports the following *|
|
||||
|* definitions: *|
|
||||
|* *|
|
||||
|* [u]int(32|64)_t : typedefs for signed and unsigned 32/64 bit system types*|
|
||||
|* [U]INT(8|16|32|64)_(MIN|MAX) : Constants for the min and max values. *|
|
||||
|* *|
|
||||
|* No library is required when using these functions. *|
|
||||
|* *|
|
||||
|*===----------------------------------------------------------------------===*/
|
||||
|
||||
/* Please leave this file C-compatible. */
|
||||
|
||||
/* Please keep this file in sync with DataTypes.h.in */
|
||||
|
||||
#ifndef SUPPORT_DATATYPES_H
|
||||
#define SUPPORT_DATATYPES_H
|
||||
|
||||
#define HAVE_INTTYPES_H 1
|
||||
#define HAVE_STDINT_H 1
|
||||
#define HAVE_UINT64_T 1
|
||||
/* #undef HAVE_U_INT64_T */
|
||||
|
||||
#ifdef __cplusplus
|
||||
#include <cmath>
|
||||
#else
|
||||
#include <math.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_INTTYPES_H
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
#else
|
||||
#error "Compiler must provide an implementation of stdint.h"
|
||||
#endif
|
||||
|
||||
#ifndef _MSC_VER
|
||||
|
||||
/* Note that this header's correct operation depends on __STDC_LIMIT_MACROS
|
||||
being defined. We would define it here, but in order to prevent Bad Things
|
||||
happening when system headers or C++ STL headers include stdint.h before we
|
||||
define it here, we define it on the g++ command line (in Makefile.rules). */
|
||||
#if !defined(__STDC_LIMIT_MACROS)
|
||||
# error "Must #define __STDC_LIMIT_MACROS before #including Support/DataTypes.h"
|
||||
#endif
|
||||
|
||||
#if !defined(__STDC_CONSTANT_MACROS)
|
||||
# error "Must #define __STDC_CONSTANT_MACROS before " \
|
||||
"#including Support/DataTypes.h"
|
||||
#endif
|
||||
|
||||
/* Note that <inttypes.h> includes <stdint.h>, if this is a C99 system. */
|
||||
#include <sys/types.h>
|
||||
|
||||
#ifdef _AIX
|
||||
#include "llvm/Support/AIXDataTypesFix.h"
|
||||
#endif
|
||||
|
||||
/* Handle incorrect definition of uint64_t as u_int64_t */
|
||||
#ifndef HAVE_UINT64_T
|
||||
#ifdef HAVE_U_INT64_T
|
||||
typedef u_int64_t uint64_t;
|
||||
#else
|
||||
# error "Don't have a definition for uint64_t on this platform"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#else /* _MSC_VER */
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <sys/types.h>
|
||||
#ifdef __cplusplus
|
||||
#include <cmath>
|
||||
#else
|
||||
#include <math.h>
|
||||
#endif
|
||||
|
||||
#if defined(_WIN64)
|
||||
typedef signed __int64 ssize_t;
|
||||
#else
|
||||
typedef signed int ssize_t;
|
||||
#endif /* _WIN64 */
|
||||
|
||||
#ifndef HAVE_INTTYPES_H
|
||||
#define PRId64 "I64d"
|
||||
#define PRIi64 "I64i"
|
||||
#define PRIo64 "I64o"
|
||||
#define PRIu64 "I64u"
|
||||
#define PRIx64 "I64x"
|
||||
#define PRIX64 "I64X"
|
||||
#endif /* HAVE_INTTYPES_H */
|
||||
|
||||
#endif /* _MSC_VER */
|
||||
|
||||
/* Set defaults for constants which we cannot find. */
|
||||
#if !defined(INT64_MAX)
|
||||
# define INT64_MAX 9223372036854775807LL
|
||||
#endif
|
||||
#if !defined(INT64_MIN)
|
||||
# define INT64_MIN ((-INT64_MAX)-1)
|
||||
#endif
|
||||
#if !defined(UINT64_MAX)
|
||||
# define UINT64_MAX 0xffffffffffffffffULL
|
||||
#endif
|
||||
|
||||
#if __GNUC__ > 3
|
||||
#define END_WITH_NULL __attribute__((sentinel))
|
||||
#else
|
||||
#define END_WITH_NULL
|
||||
#endif
|
||||
|
||||
#ifndef HUGE_VALF
|
||||
#define HUGE_VALF (float)HUGE_VAL
|
||||
#endif
|
||||
|
||||
#endif /* SUPPORT_DATATYPES_H */
|
35
llvm_build/include/llvm/cmake_install.cmake
Normal file
35
llvm_build/include/llvm/cmake_install.cmake
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Install script for directory: D:/Projects/rpcs3/llvm/include/llvm
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "C:/Program Files/LLVM")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "Release")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||
# Include the install script for each subdirectory.
|
||||
include("D:/Projects/rpcs3/llvm_build/include/llvm/IR/cmake_install.cmake")
|
||||
|
||||
endif()
|
||||
|
721
llvm_build/include/llvm/llvm_headers_do_not_build.vcxproj
Normal file
721
llvm_build/include/llvm/llvm_headers_do_not_build.vcxproj
Normal file
|
@ -0,0 +1,721 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGUID>{0E01F742-9369-42B0-A2B4-01730D778630}</ProjectGUID>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<Platform>x64</Platform>
|
||||
<ProjectName>llvm_headers_do_not_build</ProjectName>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseOfMfc>false</UseOfMfc>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
<PlatformToolset>v120</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\lib\Debug\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">llvm_headers_do_not_build.dir\Debug\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">llvm_headers_do_not_build</TargetName>
|
||||
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.lib</TargetExt>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\lib\Release\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">llvm_headers_do_not_build.dir\Release\</IntDir>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">llvm_headers_do_not_build</TargetName>
|
||||
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'">.lib</TargetExt>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions> -w14062 %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AssemblerListingLocation>Debug/</AssemblerListingLocation>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<CompileAs>CompileAsCpp</CompileAs>
|
||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4146;4180;4244;4267;4291;4345;4351;4355;4503;4624;4722;4800</DisableSpecificWarnings>
|
||||
<ExceptionHandling>
|
||||
</ExceptionHandling>
|
||||
<InlineFunctionExpansion>Disabled</InlineFunctionExpansion>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<TreatSpecificWarningsAsErrors>4238</TreatSpecificWarningsAsErrors>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;_SCL_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;__STDC_CONSTANT_MACROS;__STDC_FORMAT_MACROS;__STDC_LIMIT_MACROS;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ObjectFileName>$(IntDir)</ObjectFileName>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;_SCL_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;__STDC_CONSTANT_MACROS;__STDC_FORMAT_MACROS;__STDC_LIMIT_MACROS;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<AdditionalOptions> -w14062 %(AdditionalOptions)</AdditionalOptions>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AssemblerListingLocation>Release/</AssemblerListingLocation>
|
||||
<CompileAs>CompileAsCpp</CompileAs>
|
||||
<DisableSpecificWarnings>4146;4180;4244;4267;4291;4345;4351;4355;4503;4624;4722;4800</DisableSpecificWarnings>
|
||||
<ExceptionHandling>
|
||||
</ExceptionHandling>
|
||||
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<TreatSpecificWarningsAsErrors>4238</TreatSpecificWarningsAsErrors>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat></DebugInformationFormat>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;_SCL_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;__STDC_CONSTANT_MACROS;__STDC_FORMAT_MACROS;__STDC_LIMIT_MACROS;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ObjectFileName>$(IntDir)</ObjectFileName>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;_SCL_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;__STDC_CONSTANT_MACROS;__STDC_FORMAT_MACROS;__STDC_LIMIT_MACROS;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Midl>
|
||||
<AdditionalIncludeDirectories>D:\Projects\rpcs3\llvm_build\include\llvm;D:\Projects\rpcs3\llvm\include\llvm;D:\Projects\rpcs3\llvm_build\include;D:\Projects\rpcs3\llvm\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<OutputDirectory>$(IntDir)</OutputDirectory>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="D:\Projects\rpcs3\llvm\include\llvm\CMakeLists.txt">
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Building Custom Rule D:/Projects/rpcs3/llvm/include/llvm/CMakeLists.txt</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -HD:/Projects/rpcs3/llvm -BD:/Projects/rpcs3/llvm_build --check-stamp-file D:\Projects\rpcs3\llvm_build\include\llvm\CMakeFiles\generate.stamp
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:/Projects/rpcs3/llvm/include/llvm/CMakeLists.txt;D:\Projects\rpcs3\llvm\include\llvm\CMakeLists.txt;D:\Projects\rpcs3\llvm\include\llvm\module.modulemap.build;D:\Projects\rpcs3\llvm\include\llvm\CMakeLists.txt;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\CMakeFiles\generate.stamp</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Building Custom Rule D:/Projects/rpcs3/llvm/include/llvm/CMakeLists.txt</Message>
|
||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
||||
"C:\Program Files (x86)\CMake\bin\cmake.exe" -HD:/Projects/rpcs3/llvm -BD:/Projects/rpcs3/llvm_build --check-stamp-file D:\Projects\rpcs3\llvm_build\include\llvm\CMakeFiles\generate.stamp
|
||||
if %errorlevel% neq 0 goto :cmEnd
|
||||
:cmEnd
|
||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
||||
:cmErrorLevel
|
||||
exit /b %1
|
||||
:cmDone
|
||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:/Projects/rpcs3/llvm/include/llvm/CMakeLists.txt;D:\Projects\rpcs3\llvm\include\llvm\CMakeLists.txt;D:\Projects\rpcs3\llvm\include\llvm\module.modulemap.build;D:\Projects\rpcs3\llvm\include\llvm\CMakeLists.txt;%(AdditionalInputs)</AdditionalInputs>
|
||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\Projects\rpcs3\llvm_build\include\llvm\CMakeFiles\generate.stamp</Outputs>
|
||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\APFloat.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\APInt.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\APSInt.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\ArrayRef.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\BitVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\DAGDeltaAlgorithm.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\DeltaAlgorithm.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\DenseMap.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\DenseMapInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\DenseSet.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\DepthFirstIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\edit_distance.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\EquivalenceClasses.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\FoldingSet.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\GraphTraits.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\Hashing.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\ilist.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\ilist_node.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\ImmutableList.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\ImmutableMap.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\ImmutableSet.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\IndexedMap.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\IntEqClasses.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\IntervalMap.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\IntrusiveRefCntPtr.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\iterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\iterator_range.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\MapVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\None.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\Optional.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\PackedVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\PointerIntPair.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\PointerUnion.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\PostOrderIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\PriorityQueue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SCCIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\ScopedHashTable.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SetOperations.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SetVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SmallBitVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SmallPtrSet.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SmallSet.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SmallString.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SmallVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SparseBitVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SparseMultiSet.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\SparseSet.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\Statistic.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\STLExtras.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\StringExtras.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\StringMap.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\StringRef.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\StringSet.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\StringSwitch.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\TinyPtrVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\Triple.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\Twine.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\UniqueVector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ADT\VariadicFunction.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\AliasAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\AliasSetTracker.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\BlockFrequencyInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\BlockFrequencyInfoImpl.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\BranchProbabilityInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\CallGraph.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\CallGraphSCCPass.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\CallPrinter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\CaptureTracking.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\CFG.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\CFGPrinter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\CGSCCPassManager.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\CodeMetrics.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\ConstantFolding.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\ConstantsScanner.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\DependenceAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\DominanceFrontier.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\DominanceFrontierImpl.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\DomPrinter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\DOTGraphTraitsPass.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\FindUsedTypes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\InlineCost.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\InstructionSimplify.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\Interval.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\IntervalIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\IntervalPartition.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\IVUsers.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\JumpInstrTableInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\LazyCallGraph.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\LazyValueInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\LibCallAliasAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\LibCallSemantics.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\Lint.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\Loads.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\LoopInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\LoopInfoImpl.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\LoopIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\LoopPass.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\MemoryBuiltins.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\MemoryDependenceAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\Passes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\PHITransAddr.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\PostDominators.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\PtrUseVisitor.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\RegionInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\RegionInfoImpl.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\RegionIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\RegionPass.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\RegionPrinter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\ScalarEvolution.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\ScalarEvolutionExpander.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\ScalarEvolutionExpressions.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\ScalarEvolutionNormalization.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\SparsePropagation.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\TargetFolder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\TargetTransformInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\Trace.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Analysis\ValueTracking.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\AsmParser\Parser.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Bitcode\BitCodes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Bitcode\BitcodeWriterPass.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Bitcode\BitstreamReader.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Bitcode\BitstreamWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Bitcode\LLVMBitCodes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Bitcode\ReaderWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\Analysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\AsmPrinter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\CalcSpillWeights.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\CallingConvLower.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\CommandFlags.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\DAGCombine.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\DFAPacketizer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\EdgeBundles.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\FastISel.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\FunctionLoweringInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\GCMetadata.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\GCMetadataPrinter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\GCs.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\GCStrategy.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\IntrinsicLowering.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ISDOpcodes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\JITCodeEmitter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\JumpInstrTables.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LatencyPriorityQueue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LexicalScopes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LinkAllAsmWriterComponents.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LinkAllCodegenComponents.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LiveInterval.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LiveIntervalAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LiveIntervalUnion.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LivePhysRegs.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LiveRangeEdit.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LiveRegMatrix.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LiveStackAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\LiveVariables.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineBasicBlock.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineBlockFrequencyInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineBranchProbabilityInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineCodeEmitter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineCodeInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineConstantPool.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineDominanceFrontier.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineDominators.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineFrameInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineFunction.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineFunctionAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineFunctionPass.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineInstr.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineInstrBuilder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineInstrBundle.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineJumpTableInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineLoopInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineMemOperand.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineModuleInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineModuleInfoImpls.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineOperand.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachinePassRegistry.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachinePostDominators.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineRegionInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineRegisterInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineRelocation.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineScheduler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineSSAUpdater.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineTraceMetrics.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachineValueType.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\MachORelocation.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\Passes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\PBQP\CostAllocator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\PBQP\Graph.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\PBQP\Math.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\PBQP\ReductionRules.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\PBQP\RegAllocSolver.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\PBQP\Solution.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\PseudoSourceValue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\RegAllocPBQP.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\RegAllocRegistry.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\RegisterClassInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\RegisterPressure.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\RegisterScavenging.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ResourcePriorityQueue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\RuntimeLibcalls.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ScheduleDAG.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ScheduleDAGInstrs.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ScheduleDFS.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ScheduleHazardRecognizer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\SchedulerRegistry.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ScoreboardHazardRecognizer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\SelectionDAG.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\SelectionDAGISel.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\SelectionDAGNodes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\SlotIndexes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\StackMapLivenessAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\StackMaps.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\StackProtector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\TargetLoweringObjectFileImpl.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\TargetSchedule.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\ValueTypes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\CodeGen\VirtRegMap.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\DebugInfo\DIContext.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\DebugInfo\DWARFFormValue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\ExecutionEngine.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\GenericValue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\Interpreter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\JIT.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\JITEventListener.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\JITMemoryManager.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\MCJIT.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\ObjectBuffer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\ObjectCache.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\ObjectImage.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\OProfileWrapper.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\RTDyldMemoryManager.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\RuntimeDyld.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\RuntimeDyldChecker.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ExecutionEngine\SectionMemoryManager.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\InitializePasses.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Argument.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\AssemblyAnnotationWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Attributes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\AutoUpgrade.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\BasicBlock.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\CallingConv.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\CallSite.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\CFG.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Comdat.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Constant.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\ConstantFolder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\ConstantRange.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Constants.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\DataLayout.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\DebugInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\DebugLoc.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\DerivedTypes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\DiagnosticInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\DiagnosticPrinter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\DIBuilder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Dominators.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Function.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\GetElementPtrTypeIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\GlobalAlias.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\GlobalObject.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\GlobalValue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\GlobalVariable.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\GVMaterializer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\InlineAsm.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\InstIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\InstrTypes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Instruction.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Instructions.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\InstVisitor.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\IntrinsicInst.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Intrinsics.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\IRBuilder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\IRPrintingPasses.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\LeakDetector.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\LegacyPassManager.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\LegacyPassManagers.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\LegacyPassNameParser.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\LLVMContext.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Mangler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\MDBuilder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Metadata.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Module.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\NoFolder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\OperandTraits.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Operator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\PassManager.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\PatternMatch.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\PredIteratorCache.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\SymbolTableListTraits.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Type.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\TypeBuilder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\TypeFinder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Use.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\User.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Value.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\ValueHandle.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\ValueMap.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\ValueSymbolTable.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IR\Verifier.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\IRReader\IRReader.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\LineEditor\LineEditor.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\LinkAllIR.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\LinkAllPasses.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Linker\Linker.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\LTO\LTOCodeGenerator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\LTO\LTOModule.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\ConstantPools.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MachineLocation.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAnalysis\MCAtom.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAnalysis\MCFunction.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAnalysis\MCModule.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAnalysis\MCModuleYAML.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAsmBackend.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAsmInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAsmInfoCOFF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAsmInfoDarwin.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAsmInfoELF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAsmLayout.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCAssembler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCCodeEmitter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCCodeGenInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCContext.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCDirectives.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCDisassembler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCDwarf.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCELF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCELFObjectWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCELFStreamer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCELFSymbolFlags.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCExpr.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCExternalSymbolizer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCFixedLenDisassembler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCFixup.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCFixupKindInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCInst.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCInstBuilder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCInstPrinter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCInstrAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCInstrDesc.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCInstrInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCInstrItineraries.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCLabel.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCLinkerOptimizationHint.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCMachObjectWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCMachOSymbolFlags.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCObjectDisassembler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCObjectFileInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCObjectStreamer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCObjectSymbolizer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCObjectWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCParser\AsmCond.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCParser\AsmLexer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCParser\MCAsmLexer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCParser\MCAsmParser.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCParser\MCAsmParserExtension.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCParser\MCParsedAsmOperand.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCRegisterInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCRelocationInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCSchedule.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCSection.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCSectionCOFF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCSectionELF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCSectionMachO.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCStreamer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCSubtargetInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCSymbol.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCSymbolizer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCTargetAsmParser.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCTargetOptions.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCTargetOptionsCommandFlags.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCValue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCWin64EH.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCWinCOFFObjectWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCWinCOFFStreamer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\MCWinEH.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\SectionKind.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\StringTableBuilder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\SubtargetFeature.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\MC\YAML.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\Archive.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\Binary.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\COFF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\COFFYAML.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\ELF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\ELFObjectFile.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\ELFTypes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\ELFYAML.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\Error.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\IRObjectFile.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\MachO.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\MachOUniversal.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\ObjectFile.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\RelocVisitor.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Object\SymbolicFile.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Option\Arg.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Option\ArgList.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Option\Option.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Option\OptSpecifier.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Option\OptTable.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Pass.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\PassAnalysisSupport.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\PassInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\PassManager.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\PassRegistry.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\PassSupport.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ProfileData\InstrProf.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ProfileData\InstrProfReader.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\ProfileData\InstrProfWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\AIXDataTypesFix.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\AlignOf.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Allocator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ARMBuildAttributes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ARMEHABI.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ARMWinEH.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ArrayRecycler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Atomic.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\BlockFrequency.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\BranchProbability.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Capacity.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Casting.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\CBindingWrapping.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\circular_raw_ostream.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\CodeGen.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\COFF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\CommandLine.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Compiler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Compression.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ConvertUTF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\CrashRecoveryContext.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\DataExtractor.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\DataStream.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Debug.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\DOTGraphTraits.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Dwarf.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\DynamicLibrary.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ELF.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Endian.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\EndianStream.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Errc.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Errno.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ErrorHandling.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ErrorOr.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\FileOutputBuffer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\FileSystem.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\FileUtilities.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Format.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\FormattedStream.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\GCOV.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\GenericDomTree.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\GenericDomTreeConstruction.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\GraphWriter.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Host.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\IncludeFile.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\LEB128.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\LineIterator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Locale.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\LockFileManager.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\MachO.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ManagedStatic.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\MathExtras.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\MD5.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Memory.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\MemoryBuffer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\MemoryObject.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Mutex.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\MutexGuard.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\OnDiskHashTable.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\OutputBuffer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Path.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\PluginLoader.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\PointerLikeTypeTraits.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\PrettyStackTrace.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Process.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Program.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\RandomNumberGenerator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\raw_ostream.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\raw_os_ostream.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Recycler.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\RecyclingAllocator.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Regex.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Registry.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\RegistryParser.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\RWMutex.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\SaveAndRestore.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ScaledNumber.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Signals.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\SMLoc.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Solaris.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\SourceMgr.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\SpecialCaseList.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\StreamableMemoryObject.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\StringPool.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\StringRefMemoryObject.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\SwapByteOrder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\SystemUtils.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\TargetRegistry.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\TargetSelect.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Threading.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ThreadLocal.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Timer.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\TimeValue.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\ToolOutputFile.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\type_traits.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Unicode.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\UnicodeCharRanges.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Valgrind.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Watchdog.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\Win64EH.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\WindowsError.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\YAMLParser.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Support\YAMLTraits.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\TableGen\Error.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\TableGen\Main.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\TableGen\Record.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\TableGen\SetTheory.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\TableGen\StringMatcher.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\TableGen\StringToOffsetTable.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\TableGen\TableGenBackend.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\CostTable.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetCallingConv.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetFrameLowering.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetInstrInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetIntrinsicInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetJITInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetLibraryInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetLowering.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetLoweringObjectFile.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetMachine.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetOpcodes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetOptions.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetRegisterInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetSelectionDAGInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Target\TargetSubtargetInfo.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Instrumentation.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\IPO\InlinerPass.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\IPO\PassManagerBuilder.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\IPO.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\ObjCARC.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Scalar.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\ASanStackFrameLayout.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\BasicBlockUtils.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\BuildLibCalls.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\BypassSlowDivision.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\Cloning.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\CmpInstAnalysis.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\CodeExtractor.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\CtorUtils.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\GlobalStatus.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\IntegerDivision.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\Local.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\LoopUtils.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\ModuleUtils.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\PromoteMemToReg.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\SimplifyIndVar.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\SimplifyLibCalls.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\SSAUpdater.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\SSAUpdaterImpl.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\UnifyFunctionExitNodes.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\UnrollLoop.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\ValueMapper.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Utils\VectorUtils.h" />
|
||||
<ClInclude Include="D:\Projects\rpcs3\llvm\include\llvm\Transforms\Vectorize.h" />
|
||||
<ClCompile Include="D:\Projects\rpcs3\llvm\lib\Transforms\Hello\Hello.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="D:/Projects/rpcs3/llvm_build/ZERO_CHECK.vcxproj">
|
||||
<Project>1E9A56BB-21C5-418B-B623-AD2B3F153307</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
||||
</ImportGroup>
|
||||
</Project>
|
1707
llvm_build/include/llvm/llvm_headers_do_not_build.vcxproj.filters
Normal file
1707
llvm_build/include/llvm/llvm_headers_do_not_build.vcxproj.filters
Normal file
File diff suppressed because it is too large
Load diff
5
llvm_build/include/llvm/module.modulemap
Normal file
5
llvm_build/include/llvm/module.modulemap
Normal file
|
@ -0,0 +1,5 @@
|
|||
// This is copied into the build area for a $src != $build compilation.
|
||||
module LLVM_Support_DataTypes {
|
||||
header "Support/DataTypes.h"
|
||||
export *
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue