search for: depv

Displaying 4 results from an estimated 4 matches for "depv".

Did you mean: dep
2008 Jul 28
2
[LLVMdev] Memory Dependence Analysis: getNonLocalDependency()
...for (DenseMap<BasicBlock*, Value*>::iterator B = depMap.begin(), E = depMap.end(); B != E; B++) { if (B->second == MemoryDependenceAnalysis::None || B->second == MemoryDependenceAnalysis::NonLocal) continue; Value* depV = B->second; if (isa<LoadInst>(depV)) { ... } } Thanks in advance for any pointers! - Prakash -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080728/daa0b6...
2003 Oct 28
1
stacking histograms
...00 -0.718000 13 -0.718000 -0.171000 21 -0.171000 0.376000 49 0.376000 0.923000 26 0.923000 2.017000 13 where the first column is the lower value for the bin, the second column the upper value for the bin and the last column is the frequency for that bin When I call the hist() function I get > depv <- scan('depv.txt') # a vector of observed values > > # the bin boundaries described above > breakvals <- read.table('bindata.txt') > > hist(depvt, breaks=breakvals$V1) > Error in hist.default(depvt, breaks = br$V1) : some `x' not counted; maybe...
2008 Jul 28
0
[LLVMdev] Memory Dependence Analysis: getNonLocalDependency()
...*, Value*>::iterator B = depMap.begin(), > E = depMap.end(); B != E; B++) > { > if (B->second == MemoryDependenceAnalysis::None || B- > >second == MemoryDependenceAnalysis::NonLocal) > continue; > Value* depV = B->second; > if (isa<LoadInst>(depV)) > { > ... > } > } > You might want a special case for None, since you may need to bail out if there is a path from entry to your instruction that does not contain a dependency. Otherwi...
2008 Jul 29
1
[LLVMdev] Memory Dependence Analysis: getNonLocalDependency()
...epMap.begin(), > > E = depMap.end(); B != E; B++) > > { > > if (B->second == MemoryDependenceAnalysis::None || B- > > >second == MemoryDependenceAnalysis::NonLocal) > > continue; > > Value* depV = B->second; > > if (isa<LoadInst>(depV)) > > { > > ... > > } > > } > > > > You might want a special case for None, since you may need to bail out > if there is a path from entry to your instruction that...