Displaying 1 result from an estimated 1 matches for "pendingmemop".
2006 Dec 19
3
[LLVMdev] alias-aware scheduling
...bled by an option.
+ if (!SchedulerMemoryDisambiguation)
+ return getRoot();
+
+ std::vector<SDOperand> DependentMemOps, IndependentMemOps;
+
+ for (std::vector<SDOperand>::iterator I = PendingLoads.begin(),
+ E = PendingLoads.end(); I != E; ++I) {
+ SDOperand PendingMemOp = *I;
+
+ SDOperand OpPtr;
+ int64_t OpSize;
+ const Value *OpValue;
+ int OpOffset;
+ FindAliasInfo(PendingMemOp.Val, OpPtr, OpSize, OpValue, OpOffset);
+
+ if (isAlias(OpPtr, OpSize, OpValue, OpOffset,
+ StoreAddr, StoreSize, StoreAddrValue, StoreOff...