search for: constantsscann

Displaying 12 results from an estimated 12 matches for "constantsscann".

Did you mean: constantsscanner
2018 Jul 31
2
LLJVM make error
...Opts -lLLVMInstCombine -lLLVMTransformUtils -lLLVMBitWriter -lLLVMAnalysis -lLLVMProfileData -lLLVMObject -lLLVMMCParser -lLLVMMC -lLLVMBitReader -lLLVMCore -lLLVMBinaryFormat -lLLVMSupport -lLLVMDemangle -c main.cpp In file included from main.cpp:23:0: backend.h:29:44: fatal error: llvm/Analysis/ConstantsScanner.h: No such file or directory #include <llvm/Analysis/ConstantsScanner.h> ^ compilation terminated. make[1]: *** [main.o] Error 1 make[1]: Leaving directory `/home/rtiwari1/llvm_new/lljvm/backend' make: *** [all] Error 2 Any reincarnat...
2018 Aug 01
2
LLJVM make error
...LVMInstCombine -lLLVMTransformUtils -lLLVMBitWriter -lLLVMAnalysis -lLLVMProfileData -lLLVMObject -lLLVMMCParser -lLLVMMC -lLLVMBitReader -lLLVMCore -lLLVMBinaryFormat -lLLVMSupport -lLLVMDemangle -c main.cpp > In file included from main.cpp:23:0: > backend.h:29:44: fatal error: llvm/Analysis/ConstantsScanner.h: No such file or directory > #include <llvm/Analysis/ConstantsScanner.h> > ^ > compilation terminated. > make[1]: *** [main.o] Error 1 > make[1]: Leaving directory `/home/rtiwari1/llvm_new/lljvm/backend' > make: *** [all] E...
2016 Mar 27
0
is LLJVM alive?
...david's git https://github.com/davidar/lljvm as well as the slightly newer one https://github.com/hyc/lljvm. They don't seem to compile, once i run make in the root directory it give me the error : " *In file included from main.cpp:23:0:* *backend.h:29:44: fatal error: llvm/Analysis/ConstantsScanner.h: No such file or directory* * #include <llvm/Analysis/ConstantsScanner.h>* * ^* *compilation terminated.* *make[1]: *** [main.o] Error 1* *make[1]: Leaving directory `/home/a/llj/lljvm-llvm3.3/backend'* *make: *** [all] Error 2 *" any...
2006 Mar 03
1
[LLVMdev] printing constants
...cause the constants do not have names as the > > variables do( like temp12,temp131 etc.,). > > I'm not really sure what you want to do. If you're > trying to print out > all of the literal constants in instructions in a > function, you can use > the llvm/Analysis/ConstantsScanner.h interface to do > this. Something like > this: > > Function *F = ... > for (constant_iterator I = constant_begin(F), E = > constant_end(F); > I != E; ++I) > std::cerr << *I; > > Given code like: > > X = add int Y, 1 > Z...
2006 Mar 02
1
[LLVMdev] Re: LLVMdev Digest, Vol 21, Issue 2
hello everybody, here I have a question regarding printing of the constants( like 2 .63 etc.,) present in the instruction while iterating over the instructions within a basic block . I am able to print the vaiables but not the constants. Can you please tell me how to get the constants printed out while iterating over the instructions because the constants do not have names as the variables do(
2005 Apr 22
0
[LLVMdev] tabs
...them messes up alignment in many cases :( Index: examples/BFtoLLVM/BFtoLLVM.cpp Index: include/llvm/AbstractTypeUser.h Index: include/llvm/GlobalVariable.h Index: include/llvm/InstrTypes.h Index: include/llvm/IntrinsicInst.h Index: include/llvm/ADT/PostOrderIterator.h Index: include/llvm/Analysis/ConstantsScanner.h Index: include/llvm/Analysis/IntervalIterator.h Index: include/llvm/Analysis/Verifier.h Index: include/llvm/Assembly/Parser.h Index: include/llvm/Assembly/Writer.h Index: include/llvm/Bytecode/Reader.h Index: include/llvm/CodeGen/LiveVariables.h Index: include/llvm/CodeGen/MachineFunction.h Ind...
2007 Jul 05
2
[LLVMdev] PATCH (rest of code changes) "bytecode" --> "bitcode"
Here is the bulk of the sanitizing. My residual doubts center around the question whether we still do/want to support (un)compressed *byte*code in 2.0/2.1. I need a definitive word on this to proceed. My understanding is that bytecode is already gone, but there are still some functions/enums that really deal with *byte*code (instead of *bit*code). I did not touch those areas, so the attached
2004 Dec 03
0
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
...="..\..\include\llvm\Analysis\CallGraph.h"> > > </File> > > <File > > RelativePath="..\..\include\llvm\Analysis\CFGPrinter.h"> > > </File> > > <File > > RelativePath="..\..\include\llvm\Analysis\ConstantsScanner.h"> > > </File> > > <File > > RelativePath="..\..\include\llvm\Analysis\DataStructure\DataStructure.h"> > > </File> > > <File > > RelativePath="..\..\include\llvm\Analysis\Dominators.h"> &g...
2010 Oct 01
2
[LLVMdev] CMake "sudo make install" & headers
.../Analysis/CallGraph.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/CaptureTracking.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/CodeMetrics.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/ConstantFolding.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/ConstantsScanner.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/DOTGraphTraitsPass.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/DebugInfo.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/DomPrinter.h -- Installing: /usr/local/llvm-2.8/include/llvm/Analysis/DominatorInternals.h...
2010 Oct 01
0
[LLVMdev] CMake "sudo make install" & headers
On Thu, Sep 30, 2010 at 3:08 PM, Samuel Williams <space.ship.traveller at gmail.com> wrote: > Hi, > > I might just be doing something stupid, but when I do > > $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/llvm-2.8 -DCMAKE_BUILD_TYPE=Release .. > $ sudo make install > > I don't get the expected headers in >        /usr/local/llvm-2.8/include/llvm > > It is
2004 Dec 03
2
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
...<File > RelativePath="..\..\include\llvm\Analysis\CallGraph.h"> > </File> > <File > RelativePath="..\..\include\llvm\Analysis\CFGPrinter.h"> > </File> > <File > RelativePath="..\..\include\llvm\Analysis\ConstantsScanner.h"> > </File> > <File > RelativePath="..\..\include\llvm\Analysis\DataStructure\DataStructure.h"> > </File> > <File > RelativePath="..\..\include\llvm\Analysis\Dominators.h"> > </File> > &l...
2010 Sep 30
6
[LLVMdev] CMake "sudo make install" & headers
Hi, I might just be doing something stupid, but when I do $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/llvm-2.8 -DCMAKE_BUILD_TYPE=Release .. $ sudo make install I don't get the expected headers in /usr/local/llvm-2.8/include/llvm It is simply an empty directory. What am I doing wrong? This is on Mac OS X, CMake 2.8+ Kind regards, Samuel