HomeSort by relevance Sort by last modified time
    Searched full:polly (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/test/CodeGen/Hexagon/
hwloop-lt1.ll 11 br label %polly.loop_body
13 polly.loop_after: ; preds = %polly.loop_body
16 polly.loop_body: ; preds = %entry, %polly.loop_body
17 %polly.loopiv16 = phi i32 [ 0, %entry ], [ %polly.next_loopiv, %polly.loop_body ]
18 %polly.next_loopiv = add i32 %polly.loopiv16,
    [all...]
  /external/llvm/tools/
CMakeLists.txt 3 # Build polly before the tools: the tools link against polly when
6 add_llvm_external_project(polly)
8 list(APPEND LLVM_IMPLICIT_PROJECT_IGNORE "${LLVM_MAIN_SRC_DIR}/tools/polly")
Makefile 63 PARALLEL_DIRS += polly
  /external/llvm/tools/bugpoint/
CMakeLists.txt 37 target_link_libraries(bugpoint Polly)
bugpoint.cpp 113 namespace polly { namespace
140 polly::initializePollyPasses(Registry);
  /external/llvm/tools/opt/
CMakeLists.txt 37 target_link_libraries(opt Polly)
opt.cpp 319 namespace polly { namespace
361 polly::initializePollyPasses(Registry);
  /ndk/build/tools/
build-llvm.sh 47 POLLY=no
48 do_polly_option () { POLLY=yes; }
49 register_option "--with-polly" do_polly_option "Enable Polyhedral optimizations for LLVM"
88 if [ -e "$SRC_DIR/$TOOLCHAIN/llvm/tools/polly" -a ! -h "$SRC_DIR/$TOOLCHAIN/llvm/tools/polly" ] ; then
89 echo "ERROR: polly, if exist, needs to be a symbolic link: $SRC_DIR/$TOOLCHAIN/llvm/tools/polly"
169 CXXFLAGS="$CXXFLAGS $CFLAGS_FOR_BUILD $HOST_CFLAGS" # polly doesn't look at CFLAGS !
176 # Disable polly for now
177 POLLY=n
    [all...]
download-toolchain-sources.sh 230 # 3. Move tools/polly up to be a sibling of llvm and clang. Script build-llvm.sh
231 # will only create symbolic link when --with-polly is specified.
238 test -d tools/polly && mv tools/polly ..)
243 # In polly/utils/cloog_src, touch Makefile.in, aclocal.m4, and configure to
245 (test -d "$TMPDIR/llvm-$LLVM_VERSION/polly" && \
246 cd "$TMPDIR/llvm-$LLVM_VERSION/polly" && \
build-device-llvm.sh 215 --disable-polly \
build-host-prebuilts.sh 351 POLLY_FLAGS="--with-polly"
  /external/llvm/test/
Makefile 73 ifeq ($(shell test -f $(PROJ_OBJ_DIR)/../tools/polly/Makefile && echo OK), OK)
74 LIT_ALL_TESTSUITES += $(PROJ_OBJ_DIR)/../tools/polly/test
76 # Force creation of Polly's lit.site.cfg.
77 polly-tools-site-cfg: FORCE
78 $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/polly/test lit.site.cfg
79 extra-site-cfgs:: polly-tools-site-cfg
  /external/clang/tools/driver/
CMakeLists.txt 116 target_link_libraries(clang Polly)
cc1_main.cpp 61 namespace polly { namespace
79 polly::initializePollyPasses(Registry);
  /external/llvm/
.gitignore 48 # Polly, which is tracked independently.
49 tools/polly
CMakeLists.txt 253 option(WITH_POLLY "Build LLVM with Polly" ON)
254 option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF)
527 if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt)
CODE_OWNERS.TXT 59 D: Polly
Makefile.config.in 403 # Was polly found in tools/polly?
Makefile 128 --disable-polly $$configure_opts; \
  /external/llvm/include/llvm/Config/
llvm-config.h.cmake 95 /* Define if we link Polly to the tools */
config.h.cmake 465 /* Define if we link Polly to the tools */
  /external/llvm/utils/release/
export.sh 17 projects="llvm cfe dragonegg test-suite compiler-rt libcxx clang-tools-extra polly lldb"
tag.sh 20 projects="llvm cfe dragonegg test-suite compiler-rt libcxx clang-tools-extra polly lldb lld"
  /external/llvm/docs/
CMake.rst 266 **LLVM_EXTERNAL_{CLANG,LLD,POLLY}_SOURCE_DIR**:PATH
267 Path to ``{Clang,lld,Polly}``\'s source directory. Defaults to
268 ``tools/{clang,lld,polly}``. ``{Clang,lld,Polly}`` will not be built when it
  /external/llvm/autoconf/
configure.ac 182 dnl Disable the build of polly, even if it is checked out into tools/polly.
183 AC_ARG_ENABLE(polly,
184 AS_HELP_STRING([--enable-polly],
185 [Use polly if available (default is YES)]),,
191 *) AC_MSG_ERROR([Invalid setting for --enable-polly. Use "yes" or "no"]) ;;
195 dnl Check if polly is checked out into tools/polly and configure it if
197 if (test -d ${srcdir}/tools/polly) && (test $ENABLE_POLLY -eq 1) ; then
199 AC_CONFIG_SUBDIRS([tools/polly])
    [all...]

Completed in 1377 milliseconds

1 2