Lines Matching refs:NonContigInfo
7291 StructNonContiguousInfo NonContigInfo; member
7302 NonContigInfo.Dims.append(CurInfo.NonContigInfo.Dims.begin(), in append()
7303 CurInfo.NonContigInfo.Dims.end()); in append()
7304 NonContigInfo.Offsets.append(CurInfo.NonContigInfo.Offsets.begin(), in append()
7305 CurInfo.NonContigInfo.Offsets.end()); in append()
7306 NonContigInfo.Counts.append(CurInfo.NonContigInfo.Counts.begin(), in append()
7307 CurInfo.NonContigInfo.Counts.end()); in append()
7308 NonContigInfo.Strides.append(CurInfo.NonContigInfo.Strides.begin(), in append()
7309 CurInfo.NonContigInfo.Strides.end()); in append()
7842 bool IsNonContiguous = CombinedInfo.NonContigInfo.IsNonContiguous; in generateInfoForComponentList()
8040 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
8054 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
8066 CombinedInfo.NonContigInfo.Dims.push_back(IsNonContiguous ? DimSize in generateInfoForComponentList()
8332 CombinedInfo.NonContigInfo.Offsets.push_back(CurOffsets); in generateInfoForComponentList()
8333 CombinedInfo.NonContigInfo.Counts.push_back(CurCounts); in generateInfoForComponentList()
8334 CombinedInfo.NonContigInfo.Strides.push_back(CurStrides); in generateInfoForComponentList()
8721 CurInfo.NonContigInfo.IsNonContiguous = in generateAllInfoForClauses()
8784 CurInfo.NonContigInfo.Dims.push_back(0); in generateAllInfoForClauses()
9351 &NonContigInfo = CombinedInfo.NonContigInfo; in emitNonContiguousDescriptor() local
9376 for (unsigned I = 0, L = 0, E = NonContigInfo.Dims.size(); I < E; ++I) { in emitNonContiguousDescriptor()
9379 if (NonContigInfo.Dims[I] == 1) in emitNonContiguousDescriptor()
9381 llvm::APInt Size(/*numBits=*/32, NonContigInfo.Dims[I]); in emitNonContiguousDescriptor()
9385 for (unsigned II = 0, EE = NonContigInfo.Dims[I]; II < EE; ++II) { in emitNonContiguousDescriptor()
9392 CGF.EmitStoreOfScalar(NonContigInfo.Offsets[L][RevIdx], OffsetLVal); in emitNonContiguousDescriptor()
9396 CGF.EmitStoreOfScalar(NonContigInfo.Counts[L][RevIdx], CountLVal); in emitNonContiguousDescriptor()
9400 CGF.EmitStoreOfScalar(NonContigInfo.Strides[L][RevIdx], StrideLVal); in emitNonContiguousDescriptor()
9507 CGF.Int64Ty, CombinedInfo.NonContigInfo.Dims[I]); in emitOffloadingArrays()
9646 if (!IsNonContiguous || CombinedInfo.NonContigInfo.Offsets.empty() || in emitOffloadingArrays()