search for: builddatagraph

Displaying 3 results from an estimated 3 matches for "builddatagraph".

2012 Jan 03
1
[LLVMdev] AliasAnalysis and memory dependency
...0x0069464a abort + 378 4 libc.so.6 0x0068bde8 __assert_fail + 248 5 opt 0x082b3063 6 opt 0x082b7cad llvm::AliasAnalysis::getModRefInfo(llvm::ImmutableCallSite, llvm::ImmutableCallSite) + 61 7 opt 0x082b22e4 8 parallel.so 0x04a5c7c6 parallel::buildDataGraph(llvm::Loop*) + 1542 9 parallel.so 0x04a54e24 parallel::runOnLoop(llvm::Loop*, llvm::LPPassManager&) + 452 10 opt 0x0831a124 llvm::LPPassManager::runOnFunction(llvm::Function&) + 1156 11 opt 0x084c3aa1 llvm::FPPassManager::runOnFunction(llvm::Function&) + 545...
2012 Jan 03
0
[LLVMdev] AliasAnalysis and memory dependency
Hi neda 8664, > I want to find memory dependency between CallInst instruction and other. So i > used the following code: > > > > / AliasAnalysis &AA=getAnalysis<AliasAnalysis>();/ > > /*if* (isa< StoreInst >(inst1)){ / > > // // /*if* (isa<CallInst>(inst2)) / /{/ > > / CallInst *call_inst2= dyn_cast<CallInst>(inst2); /
2012 Jan 03
2
[LLVMdev] AliasAnalysis and memory dependency
Hi all, I want to find memory dependency between CallInst instruction and other. So i used the following code: * AliasAnalysis &AA=getAnalysis<AliasAnalysis>();* * if(isa<StoreInst>(inst1)){* * ** **if(isa<CallInst>(inst2))**{* * CallInst *call_inst2= dyn_cast<CallInst>(inst2); * * if(AA.getModRefInfo(inst1,call_inst2)==mod)**{* *