| /src/external/gpl3/gcc/dist/gcc/ |
| tree-dfa.cc | 548 poly_offset_int lbound = wi::to_poly_offset (low_bound); local 553 && known_lt (lbound, omax)) 556 rmaxsize = (omax - lbound + 1) 572 && known_le (lbound, omin)) 575 = wi::sext (omin - lbound,
|
| tree-ssa-loop-im.cc | 1422 tree lbound = TREE_OPERAND (ref, 2); local 1428 max_loop = outermost_invariant_loop (lbound, loop); 1479 tree lbound = TREE_OPERAND (ref, 2); local 1482 force_move_till_op (lbound, fmt_data->orig_loop, fmt_data->loop);
|
| tree-ssa-loop-niter.cc | 562 bool lbound = false; local 648 lbound = true; 690 if (lbound)
|
| tree-ssa-loop-ivopts.cc | 2040 tree step, iv_base, iv_step, lbound, off; local 2063 lbound = array_ref_low_bound (base); 2066 || !expr_invariant_in_loop_p (loop, lbound))
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-dfa.cc | 556 poly_offset_int lbound = wi::to_poly_offset (low_bound); local 560 if (known_lt (lbound, omax)) 563 rmaxsize = (omax - lbound + 1) 578 if (known_le (lbound, omin)) 581 = wi::sext (omin - lbound,
|
| tree-ssa-loop-im.cc | 1374 tree lbound = TREE_OPERAND (ref, 2); local 1380 max_loop = outermost_invariant_loop (lbound, loop); 1431 tree lbound = TREE_OPERAND (ref, 2); local 1434 force_move_till_op (lbound, fmt_data->orig_loop, fmt_data->loop);
|
| tree-ssa-loop-niter.cc | 565 bool lbound = false; local 651 lbound = true; 693 if (lbound)
|
| tree-ssa-loop-ivopts.cc | 2035 tree step, iv_base, iv_step, lbound, off; local 2058 lbound = array_ref_low_bound (base); 2061 || !expr_invariant_in_loop_p (loop, lbound))
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| f-lang.c | 124 error (_("LBOUND can only be applied to arrays")); 197 error (_("LBOUND dimension must be from 1 to %d"), ndimensions); 629 LONGEST lbound, ubound; local 632 if (!get_discrete_bounds (range, &lbound, &ubound)) 635 LONGEST dim_size = (ubound - lbound + 1); 745 LONGEST lbound, ubound; local 747 if (!get_discrete_bounds (val_type->index_type (), &lbound, &ubound)) 750 LONGEST dim_size = (ubound - lbound + 1); 1586 error (_("LBOUND second argument should be an integer")); 1610 error (_("LBOUND second argument should be an integer")) [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| f-lang.c | 124 error (_("LBOUND can only be applied to arrays")); 197 error (_("LBOUND dimension must be from 1 to %d"), ndimensions); 629 LONGEST lbound, ubound; local 632 if (!get_discrete_bounds (range, &lbound, &ubound)) 635 LONGEST dim_size = (ubound - lbound + 1); 745 LONGEST lbound, ubound; local 747 if (!get_discrete_bounds (val_type->index_type (), &lbound, &ubound)) 750 LONGEST dim_size = (ubound - lbound + 1); 1586 error (_("LBOUND second argument should be an integer")); 1610 error (_("LBOUND second argument should be an integer")) [all...] |
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| trans-types.cc | 1331 index lbound; 1427 tree lbound[GFC_MAX_DIMENSIONS]; 1441 lbound[n] = NULL_TREE; 1449 lbound[n] = gfc_index_one_node; 1451 lbound[n] = gfc_conv_array_bound (as->lower[n]); 1458 lbound[n] = gfc_index_one_node; 1460 lbound[n] = gfc_conv_array_bound (as->lower[n]); 1474 corank, lbound, ubound, 0, akind, 1496 /* Consists of the stride, lbound and ubound members. */ 1503 get_identifier ("lbound"), 1421 tree lbound[GFC_MAX_DIMENSIONS]; local [all...] |
| trans.h | 1019 tree lbound[GFC_MAX_DIMENSIONS]; variable 1089 (TYPE_LANG_SPECIFIC(node)->lbound[dim])
|
| frontend-passes.cc | 3878 index * stride + lbound(e, dim). */ 3887 gfc_expr *lbound, *nindex; local 3913 lbound = gfc_copy_expr (ar->start[i]); 3914 if (lbound->ts.kind != gfc_index_integer_kind) 3920 gfc_convert_type (lbound, &ts, 2); 3946 is the lbound of a full ref. */ 3988 lbound = get_array_inq_function (GFC_ISYM_LBOUND, lbound_e, 3996 ar->start[i] = get_operand (INTRINSIC_PLUS, nindex, lbound); 4103 c(i * stride(c,1) + lbound(c,1), j * stride(c,2) + lbound(c,2)) [all...] |
| trans-decl.cc | 1058 GFC_TYPE_ARRAY_LBOUND (type, dim) = create_index_var ("lbound", nest); 1081 GFC_TYPE_ARRAY_LBOUND (type, dim) = create_index_var ("lbound", nest); 1153 tree lbound, ubound; local 1154 lbound = GFC_TYPE_ARRAY_LBOUND (type, dim); 1156 rtype = build_range_type (gfc_array_index_type, lbound, ubound); 1161 the artificial lbound.N or ubound.N DECL_NAME doesn't 1163 if (lbound 1164 && VAR_P (lbound) 1165 && DECL_ARTIFICIAL (lbound) 1166 && DECL_IGNORED_P (lbound)) [all...] |
| trans-stmt.cc | 924 tree desc, tmp, extent, lbound, ubound; local 948 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]); 950 TREE_TYPE (lbound), argse.expr, lbound); 958 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL); 1122 tree desc, tmp, extent, lbound, ubound; local 1146 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]); 1148 TREE_TYPE (lbound), argse.expr, lbound); 1156 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL) [all...] |
| trans-array.cc | 567 /* Modify a descriptor such that the lbound of a given dimension is the value 574 tree offs, ubound, lbound, stride; local 580 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[dim]); 586 new_lbound, lbound); 589 updating the lbound, as they depend on the lbound expression! */ 599 /* Finally set lbound to value we want. */ 1631 delta = ubound[n] + 1 - lbound[n]; 4637 (either lower or upper bound according to LBOUND). */ 4641 tree desc, int dim, bool lbound, bool deferred 4888 tree lbound, ubound; local 5856 tree lbound; local 6747 tree lbound; local 6794 tree lbound; local 7115 tree lbound; local 8507 tree lbound = gfc_conv_descriptor_lbound_get (desc, dim); local 10748 tree lbound; local 10972 tree lbound; local [all...] |
| trans-expr.cc | 2479 tree lbound, ubound, extent, tmp, img_idx; local 2502 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]); 2504 TREE_TYPE (lbound), se.expr, lbound); 2512 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL); 2523 lbound = GFC_TYPE_ARRAY_LBOUND (TREE_TYPE (desc), i); 2525 TREE_TYPE (lbound), se.expr, lbound); 2534 TREE_TYPE (ubound), ubound, lbound); 4819 /* TODO These implementations of lbound and ubound do not limit i 9141 tree lbound; local 10755 tree lbound, ubound; local 11383 tree lbound; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| trans-types.cc | 1319 index lbound; 1415 tree lbound[GFC_MAX_DIMENSIONS]; 1429 lbound[n] = NULL_TREE; 1437 lbound[n] = gfc_index_one_node; 1439 lbound[n] = gfc_conv_array_bound (as->lower[n]); 1446 lbound[n] = gfc_index_one_node; 1448 lbound[n] = gfc_conv_array_bound (as->lower[n]); 1462 corank, lbound, ubound, 0, akind, 1484 /* Consists of the stride, lbound and ubound members. */ 1491 get_identifier ("lbound"), 1409 tree lbound[GFC_MAX_DIMENSIONS]; local [all...] |
| trans.h | 999 tree lbound[GFC_MAX_DIMENSIONS]; variable 1069 (TYPE_LANG_SPECIFIC(node)->lbound[dim])
|
| frontend-passes.cc | 3863 index * stride + lbound(e, dim). */ 3872 gfc_expr *lbound, *nindex; local 3898 lbound = gfc_copy_expr (ar->start[i]); 3899 if (lbound->ts.kind != gfc_index_integer_kind) 3905 gfc_convert_type (lbound, &ts, 2); 3931 is the lbound of a full ref. */ 3973 lbound = get_array_inq_function (GFC_ISYM_LBOUND, lbound_e, 3981 ar->start[i] = get_operand (INTRINSIC_PLUS, nindex, lbound); 4088 c(i * stride(c,1) + lbound(c,1), j * stride(c,2) + lbound(c,2)) [all...] |
| trans-decl.cc | 1053 GFC_TYPE_ARRAY_LBOUND (type, dim) = create_index_var ("lbound", nest); 1076 GFC_TYPE_ARRAY_LBOUND (type, dim) = create_index_var ("lbound", nest); 1148 tree lbound, ubound; local 1149 lbound = GFC_TYPE_ARRAY_LBOUND (type, dim); 1151 rtype = build_range_type (gfc_array_index_type, lbound, ubound); 1156 the artificial lbound.N or ubound.N DECL_NAME doesn't 1158 if (lbound 1159 && VAR_P (lbound) 1160 && DECL_ARTIFICIAL (lbound) 1161 && DECL_IGNORED_P (lbound)) [all...] |
| trans-stmt.cc | 920 tree desc, tmp, extent, lbound, ubound; local 944 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]); 946 TREE_TYPE (lbound), argse.expr, lbound); 954 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL); 1118 tree desc, tmp, extent, lbound, ubound; local 1142 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]); 1144 TREE_TYPE (lbound), argse.expr, lbound); 1152 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL) [all...] |
| trans-array.cc | 549 /* Modify a descriptor such that the lbound of a given dimension is the value 556 tree offs, ubound, lbound, stride; local 562 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[dim]); 568 new_lbound, lbound); 571 updating the lbound, as they depend on the lbound expression! */ 581 /* Finally set lbound to value we want. */ 1622 delta = ubound[n] + 1 - lbound[n]; 4456 (either lower or upper bound according to LBOUND). */ 4460 tree desc, int dim, bool lbound, bool deferred 4707 tree lbound, ubound; local 5647 tree lbound; local 6480 tree lbound; local 6521 tree lbound; local 6813 tree lbound; local 8166 tree lbound = gfc_conv_descriptor_lbound_get (desc, dim); local 10328 tree lbound; local 10554 tree lbound; local [all...] |
| trans-expr.cc | 2399 tree lbound, ubound, extent, tmp, img_idx; local 2422 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]); 2424 TREE_TYPE (lbound), se.expr, lbound); 2432 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL); 2443 lbound = GFC_TYPE_ARRAY_LBOUND (TREE_TYPE (desc), i); 2445 TREE_TYPE (lbound), se.expr, lbound); 2454 TREE_TYPE (ubound), ubound, lbound); 4717 /* TODO These implementations of lbound and ubound do not limit i 8681 tree lbound; local 10210 tree lbound, ubound; local 10827 tree lbound; local [all...] |
| trans-intrinsic.cc | 1100 tree lbound, ubound, tmp; local 1156 lbound = gfc_conv_descriptor_lbound_get (vector, gfc_rank_cst[0]); 1158 nvec = gfc_conv_array_extent_dim (lbound, ubound, NULL); 2367 lbound, ubound, extent, ml; local 2495 lbound = gfc_conv_descriptor_lbound_get (desc, 2498 lbound = fold_convert (type, lbound); 2499 tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp, lbound); 2536 lbound = gfc_conv_descriptor_lbound_get (desc, loop_var); 2538 extent = gfc_conv_array_extent_dim (lbound, ubound, NULL) 2673 tree num_images, cond, coindex, type, lbound, ubound, desc, subdesc, local 2938 tree lbound; local 12087 tree desc, tmp, extent, lbound, ubound; local [all...] |