Displaying 1 result from an estimated 1 matches for "independentmemops".
Did you mean:
dependentmemops
2006 Dec 19
3
[LLVMdev] alias-aware scheduling
...int64_t StoreSize,
+ const Value *StoreAddrValue,
+ int StoreOffset) {
+ // The special behavior may be disabled 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...