Lines Matching refs:PPCGArray

2927   void setArrayBounds(gpu_array_info &PPCGArray, ScopArrayInfo *Array) {  in setArrayBounds()  argument
2930 if (PPCGArray.n_index > 0) { in setArrayBounds()
2931 if (isl_set_is_empty(PPCGArray.extent)) { in setArrayBounds()
2932 isl_set *Dom = isl_set_copy(PPCGArray.extent); in setArrayBounds()
2939 isl_set *Dom = isl_set_copy(PPCGArray.extent); in setArrayBounds()
2940 Dom = isl_set_project_out(Dom, isl_dim_set, 1, PPCGArray.n_index - 1); in setArrayBounds()
2954 for (unsigned i = 1; i < PPCGArray.n_index; ++i) { in setArrayBounds()
3008 isl_space *BoundsSpace = isl_set_get_space(PPCGArray.extent); in setArrayBounds()
3014 PPCGArray.bound = in setArrayBounds()
3016 assert(PPCGArray.bound && "PPCGArray.bound was not constructed correctly."); in setArrayBounds()
3032 gpu_array_info &PPCGArray = PPCGProg->array[i]; in createArrays() local
3034 PPCGArray.space = Array->getSpace().release(); in createArrays()
3035 PPCGArray.type = strdup(TypeName.c_str()); in createArrays()
3036 PPCGArray.size = DL->getTypeAllocSize(Array->getElementType()); in createArrays()
3037 PPCGArray.name = strdup(Array->getName().c_str()); in createArrays()
3038 PPCGArray.extent = nullptr; in createArrays()
3039 PPCGArray.n_index = Array->getNumberOfDimensions(); in createArrays()
3040 PPCGArray.extent = getExtent(Array).release(); in createArrays()
3041 PPCGArray.n_ref = 0; in createArrays()
3042 PPCGArray.refs = nullptr; in createArrays()
3043 PPCGArray.accessed = true; in createArrays()
3044 PPCGArray.read_only_scalar = in createArrays()
3046 PPCGArray.has_compound_element = false; in createArrays()
3047 PPCGArray.local = false; in createArrays()
3048 PPCGArray.declare_local = false; in createArrays()
3049 PPCGArray.global = false; in createArrays()
3050 PPCGArray.linearize = false; in createArrays()
3051 PPCGArray.dep_order = nullptr; in createArrays()
3052 PPCGArray.user = Array; in createArrays()
3054 PPCGArray.bound = nullptr; in createArrays()
3055 setArrayBounds(PPCGArray, Array); in createArrays()
3058 collect_references(PPCGProg, &PPCGArray); in createArrays()
3059 PPCGArray.only_fixed_element = only_fixed_element_accessed(&PPCGArray); in createArrays()