search for: intrinsics_gen

Displaying 20 results from an estimated 43 matches for "intrinsics_gen".

2017 May 04
2
Problem with Polly build
...piler-RT and Polly together. >> >> I tried this configuration (I have lld, lldb, libcxx etc in my source >> tree as well). Neither "make LLVMPolly -j8" nor "make Polly -j8" >> resulted in an error on a clean build. >> >> Can you try "make intrinsics_gen" before building anything else? The >> should generate the missing "llvm/IR/Attributes.gen". >> >> You could also try "-DLLVM_POLLY_LINK_INTO_TOOLS=OFF". >> >> Michael > > Yes, my build proceeded after make intrinsics_gen. > > But o...
2017 May 01
2
Problem with Polly build
...gt; > I build LLVM, Clang, Clang extra tools, Compiler-RT and Polly together. I tried this configuration (I have lld, lldb, libcxx etc in my source tree as well). Neither "make LLVMPolly -j8" nor "make Polly -j8" resulted in an error on a clean build. Can you try "make intrinsics_gen" before building anything else? The should generate the missing "llvm/IR/Attributes.gen". You could also try "-DLLVM_POLLY_LINK_INTO_TOOLS=OFF". Michael
2013 Aug 29
2
[LLVMdev] [PATCH] cmake: BugpointPasses depends on intrinsics_gen
...eLists.txt index 05f190a..4bf57ce 100644 --- a/tools/bugpoint-passes/CMakeLists.txt +++ b/tools/bugpoint-passes/CMakeLists.txt @@ -6,4 +6,7 @@ add_llvm_loadable_module( BugpointPasses TestPasses.cpp ) -add_dependencies(BugpointPasses bugpoint) +add_dependencies(BugpointPasses + bugpoint + intrinsics_gen + ) -- 1.8.1.4
2013 Aug 29
0
[LLVMdev] [PATCH] cmake: BugpointPasses depends on intrinsics_gen
Johannes Obermayr <johannesobermayr at gmx.de> writes: > Fixes: > [ 0%] In file included from /home/abuild/rpmbuild/BUILD/llvm/include/llvm/IR/IntrinsicInst.h:30:0, > from /home/abuild/rpmbuild/BUILD/llvm/include/llvm/InstVisitor.h:16, > from /home/abuild/rpmbuild/BUILD/llvm/tools/bugpoint-passes/TestPasses.cpp:19: >
2017 Jul 20
3
FYI: Ninja-build user may use CMake-3.9
...686-mingw32-RA-on-linux Regardless of BUILD_SHARED_LIBS, compile units in add_executable() don't wait for preceding libraries, but targets by add_dependencies(). It doesn't break anything in llvm tree. Assume; add_executable(foo foo.cpp) target_link_libraries(foo LLVMCore) # depends on intrinsics_gen Compiling foo.cpp doesn't wait for LLVMCore, but intrinsics_gen. Linking foo waits for LLVMCore. I have been working for cutting dependencies to increase parallelism. For example, I introduced ENABLE_OBJLIB. See also, https://reviews.llvm.org/rL305635 Ninja with CMake-3.9 doesn't require p...
2017 Jul 20
2
FYI: Ninja-build user may use CMake-3.9
...BS, compile units in add_executable() don't >> wait for preceding libraries, >> but targets by add_dependencies(). >> >> It doesn't break anything in llvm tree. Assume; >> add_executable(foo foo.cpp) >> target_link_libraries(foo LLVMCore) # depends on intrinsics_gen >> Compiling foo.cpp doesn't wait for LLVMCore, but intrinsics_gen. >> Linking foo waits for LLVMCore. >> >> I have been working for cutting dependencies to increase parallelism. >> For example, I introduced ENABLE_OBJLIB. >> See also, https://reviews.llvm.or...
2017 Apr 30
1
Problem with Polly build
...ppeared ~ 2 days agor for first time. > > include/llvm/IR/Attributes.h:73:14: fatal error: > 'llvm/IR/Attributes.gen' file not found > #include "llvm/IR/Attributes.gen" > > It seems that dependencies on IR are not set properly. It might have been a result of intrinsics_gen being a dependency of Polly (the library), but not LLVMPolly (the loadable module) due to the introduction of the PollyCore intermediate library. It has been corrected in r301734. Michael
2020 Mar 27
2
We have a problem about pass.
...form/pass 3. Run make in llvm/build/lib However, the desired pass file was not created. There were no errors in the make process. Installed version is LLVM & clang 8.0.0, CMAKE 3.4.3. Here is the contents of CMakeLists.txt set in the pass: add_llvm_module ( Filter MODULE Filter.cpp DEPENDS intrinsics_gen PLUGIN_TOOL opt ) We are looking forward to hearing from you. Best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200327/0c4d499f/attachment-0001.html>
2017 Apr 28
3
Problem with Polly build
Hi! I encounter problem with Polly build (in-tree, libraries are linked statically). It appeared ~ 2 days agor for first time. include/llvm/IR/Attributes.h:73:14: fatal error: 'llvm/IR/Attributes.gen' file not found #include "llvm/IR/Attributes.gen" It seems that dependencies on IR are not set properly. Eugene.
2009 Nov 17
0
[LLVMdev] windows build
Just to clarify - I can build successfully except that the following files are always determined to be out of date by VC++ intrinsics_gen - Debug Win32 X86CodeGenTable_gen - Debug Win32 LLVMOxiliCodeGen - Debug Win32 I just need to start a debug build of llc to reproduce this issue and with cmake generated files. If no one else has this problem, then it might be my environment. Otherwise I can open a bug. thanks shrey On Tue, N...
2017 May 01
2
Problem with Polly build
.../llvm/IR/Attributes.h:73:14: fatal error: > >> 'llvm/IR/Attributes.gen' file not found > >> #include "llvm/IR/Attributes.gen" > >> > >> It seems that dependencies on IR are not set properly. > > > > It might have been a result of intrinsics_gen being a dependency of > > Polly (the library), but not LLVMPolly (the loadable module) due to > > the introduction of the PollyCore intermediate library. It has been > > corrected in r301734. > > > > Michael > > I updated to r301808 and problem is still there. &g...
2013 Feb 27
1
[LLVMdev] Compilation problem when addind a library
...bfuscation directory. This is my Makefile: LEVEL = ../../.. LIBRARYNAME = LLVMobfuscation LOADABLE_MODULE = 1 BUILD_ARCHIVE = 1 include $(LEVEL)/Makefile.common My CMakeListes.txt add_llvm_library(LLVMobfuscation Cgf.cpp CgfFunction.cpp Flattening.cpp ) add_dependencies(LLVMobfuscation intrinsics_gen) and my LLVMBuild.txt [component_0] type = Library name = Obfuscation parent = Transforms library_name = Obfuscation I added my directory and pass in the Transforms Makefile,LLVMBuild and CMakeLists, in the Transforms/IPO files and in the tools/opt files, but I still get this error: make[2]: En...
2010 Oct 01
0
[LLVMdev] CMake "sudo make install" & headers
...LUDE > ) > > install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/ > DESTINATION include > # FILES_MATCHING > PATTERN "*.def" > PATTERN "*.h" > PATTERN "*.gen" > PATTERN "*.inc" > # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def" > PATTERN "CMakeFiles" EXCLUDE > PATTERN ".svn" EXCLUDE > ) > > It seems like there is either a bug with FILES_MATCHING or an issue > with the way it is being used. It is clear that CMake is not behaving as it should in...
2009 Nov 17
2
[LLVMdev] windows build
Daniel Dunbar <daniel at zuster.org> writes: > There was a bug at some point where this would happen, I've forgotten > the details but it is buried in bugzilla somewhere. It has now been > fixed, but IIRC the issue would also be resolved if you did a full > make clean. The problem was in a particular situation where every > build would essentially invalidate the table gen
2010 Jul 22
2
[LLVMdev] Is there a guide to LLVM's components?
...rget\X86\X86CodeGenTable_gen.vcproj" ZERO_CHECK, ".\ZERO_CHECK.vcproj" bugpoint, "tools\bugpoint\bugpoint.vcproj" check, "test\check.vcproj" count, "utils\count\count.vcproj" intrinsics_gen, "include\llvm\intrinsics_gen.vcproj" llc, "tools\llc\llc.vcproj" lli, "tools\lli\lli.vcproj" llvm-ar, "tools\llvm-ar\llvm-ar.vcproj" llvm-as, "tools\llvm-as\llvm-as.vcproj"...
2010 Jul 21
1
[LLVMdev] Is there a guide to LLVM's components?
...rget\X86\X86CodeGenTable_gen.vcproj" ZERO_CHECK, ".\ZERO_CHECK.vcproj" bugpoint, "tools\bugpoint\bugpoint.vcproj" check, "test\check.vcproj" count, "utils\count\count.vcproj" intrinsics_gen, "include\llvm\intrinsics_gen.vcproj" llc, "tools\llc\llc.vcproj" lli, "tools\lli\lli.vcproj" llvm-ar, "tools\llvm-ar\llvm-ar.vcproj" llvm-as, "tools\llvm-as\llvm-as.vcproj"...
2018 Jul 10
2
custom LLVM Pass with options fails to load
...projects/cmake/llvm/6.0.0/lib/TestPass.so -testPass test.cpp Aborted in my cmakelists.txt I have the following: set(CMAKE_BUILD_TYPE Debug) set(LLVM_LINK_COMPONENTS Core # narrowed it down to this BinaryFormat Support Demangle ) add_llvm_loadable_module( TestPass TestPass.cpp DEPENDS intrinsics_gen PLUGIN_TOOL opt ) in my cpp I have this: #include "llvm/IR/Constants.h" #include "llvm/IR/Function.h" #include "llvm/IR/Module.h" #include "llvm/IR/PassManager.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Support/CommandLine.h&qu...
2015 Jul 11
2
[LLVMdev] JIT compilation 2-3 times slower in latest LLVM snapshot
On 11 July 2015 at 13:14, Caldarale, Charles R <Chuck.Caldarale at unisys.com> wrote: >> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] >> On Behalf Of Dibyendu Majumdar >> Subject: [LLVMdev] JIT compilation 2-3 times slower in latest LLVM snapshot > >> I updated my clone of the LLVM github mirror today and I am finding >> that
2018 Jul 12
2
custom LLVM Pass with options fails to load
...set(LLVM_LINK_COMPONENTS >> Core # narrowed it down to this >> BinaryFormat >> Support >> Demangle >> ) >> >> add_llvm_loadable_module( TestPass >> TestPass.cpp >> >> DEPENDS >> intrinsics_gen >> PLUGIN_TOOL >> opt >> ) >> >> in my cpp I have this: >> >> #include "llvm/IR/Constants.h" >> #include "llvm/IR/Function.h" >> #include "llvm/IR/Module.h" >> #include "llvm/IR/PassManage...
2009 Jun 28
0
[LLVMdev] The document fault in llvm doc. And a comiling error
...d:/svn/llvm/lib/System/Win32/ThreadLocal. inc, line 46 This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. make[2]: *** [include/llvm/Intrinsics.gen.tmp] Error 3 make[1]: *** [include/llvm/CMakeFiles/intrinsics_gen.dir/all] Error 2 make: *** [all] Error 2 -- 此致 礼 罗勇刚 Yonggang Luo -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090628/117fcea2/attachment.html>