2011-04-29 14:27:02 +08:00
|
|
|
## Autogenerated by LLVM/Polly configuration.
|
|
|
|
# Do not edit!
|
|
|
|
config.llvm_src_root = "@LLVM_SOURCE_DIR@"
|
|
|
|
config.llvm_obj_root = "@LLVM_BINARY_DIR@"
|
|
|
|
config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
|
|
|
|
config.llvm_libs_dir = "@LLVM_LIBS_DIR@"
|
|
|
|
config.polly_obj_root = "@POLLY_BINARY_DIR@"
|
2012-03-16 22:34:20 +08:00
|
|
|
config.polly_lib_dir = "@POLLY_LIB_DIR@"
|
2011-04-29 14:27:02 +08:00
|
|
|
config.target_triple = "@TARGET_TRIPLE@"
|
2016-07-14 18:22:19 +08:00
|
|
|
config.enable_gpgpu_codegen = "@GPU_CODEGEN@"
|
2014-03-14 21:27:26 +08:00
|
|
|
config.link_polly_into_tools = "@LINK_POLLY_INTO_TOOLS@"
|
2011-04-29 14:27:02 +08:00
|
|
|
|
2012-03-29 21:10:10 +08:00
|
|
|
## Check the current platform with regex
|
|
|
|
import re
|
|
|
|
EAT_ERR_ON_X86 = ' '
|
|
|
|
if (re.match(r'^x86_64*', '@TARGET_TRIPLE@') == None) :
|
|
|
|
EAT_ERR_ON_X86 = '|| echo \"error is eaten\"'
|
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
# Support substitution of the tools and libs dirs with user parameters. This is
|
|
|
|
# used when we can't determine the tool dir at configuration time.
|
|
|
|
try:
|
2013-08-10 05:54:36 +08:00
|
|
|
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
|
|
|
config.llvm_libs_dir = config.llvm_libs_dir % lit_config.params
|
2015-07-25 04:33:22 +08:00
|
|
|
except KeyError:
|
|
|
|
e = sys.exc_info()[1]
|
2011-04-29 14:27:02 +08:00
|
|
|
key, = e.args
|
2013-08-10 05:54:36 +08:00
|
|
|
lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
|
2011-04-29 14:27:02 +08:00
|
|
|
|
2014-03-14 21:27:26 +08:00
|
|
|
if config.link_polly_into_tools == '' or \
|
|
|
|
config.link_polly_into_tools.lower() == '0' or \
|
|
|
|
config.link_polly_into_tools.lower() == 'n' or \
|
|
|
|
config.link_polly_into_tools.lower() == 'no' or \
|
|
|
|
config.link_polly_into_tools.lower() == 'off' or \
|
|
|
|
config.link_polly_into_tools.lower() == 'false' or \
|
|
|
|
config.link_polly_into_tools.lower() == 'notfound' or \
|
|
|
|
config.link_polly_into_tools.lower() == 'link_polly_into_tools-notfound':
|
2014-03-14 12:04:36 +08:00
|
|
|
config.substitutions.append(('%loadPolly', '-load '
|
2015-10-06 23:30:26 +08:00
|
|
|
+ config.polly_lib_dir + '/LLVMPolly@LLVM_SHLIBEXT@'
|
2015-10-07 00:10:29 +08:00
|
|
|
+ ' -polly-process-unprofitable '
|
2016-04-13 00:09:44 +08:00
|
|
|
+ ' -polly-remarks-minimal '
|
2015-10-06 23:30:26 +08:00
|
|
|
))
|
2014-03-14 12:04:36 +08:00
|
|
|
else:
|
2015-10-06 23:30:26 +08:00
|
|
|
config.substitutions.append(('%loadPolly', ''
|
2015-10-07 00:10:29 +08:00
|
|
|
+ ' -polly-process-unprofitable '
|
2016-04-13 00:09:44 +08:00
|
|
|
+ ' -polly-remarks-minimal '
|
2015-10-06 23:30:26 +08:00
|
|
|
))
|
2014-03-14 12:04:36 +08:00
|
|
|
|
2016-07-14 18:22:19 +08:00
|
|
|
if config.enable_gpgpu_codegen == 'TRUE' :
|
|
|
|
config.available_features.add('pollyacc')
|
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
# Let the main config do the real work.
|
2013-08-10 05:54:36 +08:00
|
|
|
lit_config.load_config(config, "@POLLY_SOURCE_DIR@/test/lit.cfg")
|