| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| trans-openmp.cc | 4507 if (clauses->thread_limit) 4509 tree thread_limit; local 4512 gfc_conv_expr (&se, clauses->thread_limit); 4514 thread_limit = gfc_evaluate_now (se.expr, block); 4518 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = thread_limit; 6831 clausesa[GFC_OMP_SPLIT_TARGET].thread_limit 6832 = code->ext.omp_clauses->thread_limit; 6853 clausesa[GFC_OMP_SPLIT_TEAMS].thread_limit 6854 = code->ext.omp_clauses->thread_limit; 7703 || clausesa[GFC_OMP_SPLIT_TEAMS].thread_limit)) [all...] |
| gfortran.h | 1568 struct gfc_expr *thread_limit; member in struct:gfc_omp_clauses
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| trans-openmp.cc | 4019 if (clauses->thread_limit) 4021 tree thread_limit; local 4024 gfc_conv_expr (&se, clauses->thread_limit); 4026 thread_limit = gfc_evaluate_now (se.expr, block); 4030 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = thread_limit; 6079 clausesa[GFC_OMP_SPLIT_TARGET].thread_limit 6080 = code->ext.omp_clauses->thread_limit; 6099 clausesa[GFC_OMP_SPLIT_TEAMS].thread_limit 6100 = code->ext.omp_clauses->thread_limit; 6939 || clausesa[GFC_OMP_SPLIT_TEAMS].thread_limit)) [all...] |
| gfortran.h | 1514 struct gfc_expr *thread_limit; member in struct:gfc_omp_clauses
|
| /src/external/gpl3/gcc/dist/gcc/ |
| omp-expand.cc | 947 tree thread_limit = omp_find_clause (clauses, OMP_CLAUSE_THREAD_LIMIT); local 948 if (thread_limit == NULL_TREE) 949 thread_limit = build_int_cst (unsigned_type_node, 0); 952 thread_limit = OMP_CLAUSE_THREAD_LIMIT_EXPR (thread_limit); 953 thread_limit = fold_convert (unsigned_type_node, thread_limit); 970 args->quick_push (thread_limit);
|
| gimplify.cc | 16756 /* Try to determine if the num_teams and/or thread_limit expressions 16764 Add NUM_TEAMS and THREAD_LIMIT clauses to the OMP_CLAUSES of 16771 and 0 for thread_limit (only one team is involved, and the thread 16781 tree thread_limit = integer_zero_node; 16827 p = &thread_limit; 16859 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = thread_limit; 16778 tree thread_limit = integer_zero_node; local
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| omp-expand.cc | 944 tree thread_limit = omp_find_clause (clauses, OMP_CLAUSE_THREAD_LIMIT); local 945 if (thread_limit == NULL_TREE) 946 thread_limit = build_int_cst (unsigned_type_node, 0); 949 thread_limit = OMP_CLAUSE_THREAD_LIMIT_EXPR (thread_limit); 950 thread_limit = fold_convert (unsigned_type_node, thread_limit); 967 args->quick_push (thread_limit);
|
| gimplify.cc | 13977 /* Try to determine if the num_teams and/or thread_limit expressions 13985 Add NUM_TEAMS and THREAD_LIMIT clauses to the OMP_CLAUSES of 13991 and 0 for thread_limit (only one team is involved, and the thread 14001 tree thread_limit = integer_zero_node; 14047 p = &thread_limit; 14079 OMP_CLAUSE_THREAD_LIMIT_EXPR (c) = thread_limit; 13998 tree thread_limit = integer_zero_node; local
|