Lines Matching defs:DepArray
1828 // DepArray = alloc(n x sizeof(kmp_depend_info);
1830 // DepArray[idx].base_addr = ptrtoint(&a);
1831 // DepArray[idx].len = 8;
1832 // DepArray[idx].flags = Dep.DepKind; /*(See OMPContants.h for DepKind)*/
1834 // DepArray[idx].base_addr = ...;
1841 Value *DepArray = nullptr;
1847 DepArray = Builder.CreateAlloca(DepArrayTy, nullptr, ".dep.arr.addr");
1851 Builder.CreateConstInBoundsGEP2_64(DepArrayTy, DepArray, 0, DepIdx);
1874 return DepArray;
2052 Value *DepArray = nullptr;
2059 DepArray = Builder.CreateAlloca(DepArrayTy, nullptr, ".dep.arr.addr");
2064 Builder.CreateConstInBoundsGEP2_64(DepArrayTy, DepArray, 0, P);
2127 {Ident, ThreadID, Builder.getInt32(Dependencies.size()), DepArray,
2152 DepArray, ConstantInt::get(Builder.getInt32Ty(), 0),
7330 Value *DepArray = emitTaskDependencies(*this, Dependencies);
7341 if (DepArray) {
7348 /*dep_list=*/DepArray,
7362 } else if (DepArray) {
7371 DepArray, ConstantInt::get(Builder.getInt32Ty(), 0),