search for: fulldependence

Displaying 5 results from an estimated 5 matches for "fulldependence".

2013 Aug 08
2
[LLVMdev] How to gather data dependences
...ions combination in function to check if they are > dependent on any others. > > Problem is that almost all (if not all) Instructions seems to be dependent > on others even if they write/read to/from different memory cells. > Also I'm getting Dependence (confused) object, not the FullDependence, > should i try to dynamically cast it to FullDependence, or is there a way > to determine which Dependence instance i got other way? > > Please help, I'm not an C++ nor LLVM programmer, but PHP-developer, > however i need it done asap. If you can help just a little, give me a hi...
2013 Aug 07
2
[LLVMdev] [Pass] How to gather data dependencies
.....) on every Instructions combination in function to check if they are dependent on any others. Problem is that almost all (if not all) Instructions seems to be dependent on others even if they write/read to/from different memory cells. Also I'm getting Dependence (confused) object, not the FullDependence, should i try to dynamically cast it to FullDependence, or is there a way to determine which Dependence instance i got other way? Please help, I'm not an C++ nor LLVM programmer, but PHP-developer, however i need it done asap. If you can help just a little, give me a hint, i'll be very...
2013 Aug 09
0
[LLVMdev] How to gather data dependences
...use several other passes in conjunction with DA. Try > something like > > opt -basicaa -mem2reg -simplifycfg -loop-simplify -loop-rotate > -simplifycfg -instcombine -indvars -da > > > Also, a confused dependences mean that the analysis wasn't able to prove > anything; a FullDependence means the analysis was able to prove some facts, > though it wasn't actually able to disprove the dependence. It's not > reasonable to cast a Dependence to a FullDependence. > > Preston > > Hi, I assume that DA is tool capable to give me an list of Dependencies in code or...
2013 Aug 08
0
[LLVMdev] [Pass] How to gather data dependencies
...ions combination in function to check if they are dependent on any > others. > > Problem is that almost all (if not all) Instructions seems to be dependent > on others even if they write/read to/from different memory cells. > Also I'm getting Dependence (confused) object, not the FullDependence, > should i try to dynamically cast it to FullDependence, or is there a way to > determine which Dependence instance i got other way? > > Please help, I'm not an C++ nor LLVM programmer, but PHP-developer, > however i need it done asap. If you can help just a little, give me a hi...
2013 Aug 09
2
[LLVMdev] How to gather data dependences
...#39; << **it << " anti dependence." << '\n'; > } > } else if( dep->isConfused() == false ) { > errs() << "# full dependence." << '\n'; > //if( FullDependence *FDep = cast<FullDependence>( dep ) ) { > // errs() << " full dep casted" << '\n'; > //} > } > } > > instructions.push_back(&*I); > } > } &g...