search for: myanalysi

Displaying 14 results from an estimated 14 matches for "myanalysi".

Did you mean: myanalysis
2009 Feb 27
2
[LLVMdev] AnalysisUsage & Call Graph SCC Pass Manager
Hello, I have the following sequence of passes (using --debug-pass=Structure): ... ModulePass Manager FunctionPass Manager Preliminary module verification Dominator Tree Construction Module Verifier MyModulePass0 MyAnalysis Basic CallGraph Construction MyModulePass1 MyAnalysis MyModulePass2 Basic CallGraph Construction Call Graph SCC Pass Manager MyCallGraphSCCPass MyModulePass3 ... I have the following analysis usages: MyModulePass0 does not require anything and does not prese...
2011 Nov 15
2
[LLVMdev] Pass options to the linker
Hi all, I'm trying to use the PPL (Parma Polyhedra Library, bugseng.com/products/ppl) in one of my LLVM passes getting the error: > Error opening > '/home/jorge/SvnReps/Systems/llvm/build/Debug+Asserts/lib/MyAnalysis.so': > /home/jorge/SvnReps/Systems/llvm/build/Debug+Asserts/lib/MyAnalysis.so: > undefined symbol: _ZNK23Parma_Polyhedra_Library13PIP_Tree_Node2OKEv > -load request ignored. Let me explain how I get to this point. To make simpler my explanation I took the "Hello World" pas...
2011 Nov 15
0
[LLVMdev] Pass options to the linker
Hi Jorge, > I'm trying to use the PPL (Parma Polyhedra Library, > bugseng.com/products/ppl) in one of my LLVM passes getting the error: > >> Error opening >> '/home/jorge/SvnReps/Systems/llvm/build/Debug+Asserts/lib/MyAnalysis.so': >> /home/jorge/SvnReps/Systems/llvm/build/Debug+Asserts/lib/MyAnalysis.so: >> undefined symbol: _ZNK23Parma_Polyhedra_Library13PIP_Tree_Node2OKEv >> -load request ignored. was MyAnalysis.so linked with the PPL library? Run ldd MyAnalysis.so to see what it was linked...
2011 Nov 15
1
[LLVMdev] Pass options to the linker
...Hi Jorge, >> >> > I'm trying to use the PPL (Parma Polyhedra Library, >> > bugseng.com/products/ppl) in one of my LLVM passes getting the error: >> > >> >> Error opening >> >> '/home/jorge/SvnReps/Systems/llvm/build/Debug+Asserts/lib/MyAnalysis.so': >> >> /home/jorge/SvnReps/Systems/llvm/build/Debug+Asserts/lib/MyAnalysis.so: >> >> undefined symbol: _ZNK23Parma_Polyhedra_Library13PIP_Tree_Node2OKEv >> >> -load request ignored. >> >> was MyAnalysis.so linked with the PPL library? Run &...
2011 Aug 22
1
[LLVMdev] Infinite loop when adding a new analysis pass
...following: virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesCFG(); AU.addRequired<DominatorTree>(); AU.addRequired<LoopInfo>(); AU.addRequiredID(LoopSimplifyID); AU.addRequired<AliasAnalysis>(); AU.addRequired<MyAnalysis>(); // Add this AU.addPreserved<AliasAnalysis>(); AU.addPreserved("scalar-evolution"); AU.addPreservedID(LoopSimplifyID); } char LICM::ID = 0; INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", f...
2009 Mar 03
0
[LLVMdev] AnalysisUsage & Call Graph SCC Pass Manager
...Hello, > > I have the following sequence of passes (using --debug- > pass=Structure): > > ... > ModulePass Manager > FunctionPass Manager > Preliminary module verification > Dominator Tree Construction > Module Verifier > MyModulePass0 > MyAnalysis > Basic CallGraph Construction > MyModulePass1 > MyAnalysis > MyModulePass2 > Basic CallGraph Construction > Call Graph SCC Pass Manager > MyCallGraphSCCPass > MyModulePass3 > ... > > I have the following analysis usages: > > MyMo...
2010 Sep 22
1
problem opening pdf device on Windows 7
I can not open PDf device. Acrobat is closed. I have checked archives but could not find a solution. What should I do? > cont.cdfplot("myanalysis.pdf", myanalysis$CDF, ylbl.r="Stream Length (km)") Error in pdf(file = pdffile, width = width, height = height) : unable to start device pdf In addition: Warning message: In pdf(file = pdffile, width = width, height = height) : cannot open 'pdf' file argument 'myana...
2004 Mar 19
2
Beginners question
...it just won't make sense to me. Running my analysis by hand on command line is fine and works but because of the repetitive nature of the job I would like to code a function for it. My problem: I would like to read in data from a file in my current working dir. so my code would look like: myanalysis <- function(sample, samplenr){ sample.samplenr <- read.geodata("sample.samplenr", arg, arg etc.) sample.samplenr.results <- someanalysis(sample.samplenr) } problem is that charater values aren't interpretated as they should. Any tips and tricks? This should be fairly simpl...
2011 Dec 12
2
Automated Regressions
Hello R-Experts, I've got a question, concerning the automation of a number of regressions (lm) with the help of a loop (for i in ....). The situation is as follows (the code follows after that): I have my data in an access database. I have historical data for 2000 parts, for each of this parts I want to do a regression analysis, so I need to do 2000 regressions (just for one country, there
2009 Jul 04
2
[LLVMdev] Pool Allocation Segfaulting with opt
...vm::Module&) + 270 Segmentation fault I'm using the latest SVN checkouts for both LLVM and llvm-poolalloc. Should I perhaps use the 2.5 branch of LLVM instead? Oh, also, what's the name of the DSA pass that pool allocation runs? I'd like to structure my passes to go "DSA-MyAnalysis-PoolAllocation-MyTransform". Thanks, --Patrick
2009 Jul 06
0
[LLVMdev] Pool Allocation Segfaulting with opt
...on fault > > I'm using the latest SVN checkouts for both LLVM and llvm-poolalloc. > Should I perhaps use the 2.5 branch of LLVM instead? > > Oh, also, what's the name of the DSA pass that pool allocation runs? > I'd like to structure my passes to go > "DSA-MyAnalysis-PoolAllocation-MyTransform". > You can use the -debug-pass=Arguments option to opt to print out which DSA passes it is using. -- John T. > Thanks, > --Patrick > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu...
2016 Mar 30
1
[cfe-dev] [PATCH/DRAFT] Embed metadata into object file
> On Mar 30, 2016, at 6:47 AM, Christian Dietrich via cfe-dev <cfe-dev at lists.llvm.org> wrote: > > Hi, > > so this is my first contribution to LLVM/clang, so I hope I come close > to the required coding standards and guidelines. > > First, I will describe the scenario I want to solve: For a few days, the > clang plugin interface allows to execute the a plugin
2016 Apr 01
2
[cfe-dev] [PATCH/DRAFT] Embed metadata into object file
...gle strings. I think, furthermore, > that it would also be handy to materialize and retrieve more complex > metadata types to/from object files. For example, we could serialize > LLVM metadata trees into separate sections: > > !llvm.extra_sections = {!0} > !0 = !{!"clang.myanalysis", !1, !2} > !1 = !{ i32 15, i32 28, i32 142} > !2 = !{!"key", i32 10000, !"key2", i32 9999} > > I'm not sure whether this would be useful and reusable for others. So: > Do you think this would be useful for other developers as well? > > chris...
2016 Mar 30
2
[PATCH/DRAFT] Embed metadata into object file
Hi, so this is my first contribution to LLVM/clang, so I hope I come close to the required coding standards and guidelines. First, I will describe the scenario I want to solve: For a few days, the clang plugin interface allows to execute the a plugin just before the actual main action (e.g., compiling an translation unit). In my case, the plugin we're developing will analyze the AST and