| /src/external/gpl3/gcc/dist/gcc/ |
| gimple-builder.cc | 52 build_assign (enum tree_code code, tree op1, int val, tree lhs) function 61 build_assign (enum tree_code code, gimple *g, int val, tree lhs ) function 63 return build_assign (code, gimple_assign_lhs (g), val, lhs); 76 build_assign (enum tree_code code, tree op1, tree op2, tree lhs) function 84 build_assign (enum tree_code code, gimple *op1, tree op2, tree lhs) function 86 return build_assign (code, gimple_assign_lhs (op1), op2, lhs); 90 build_assign (enum tree_code code, tree op1, gimple *op2, tree lhs) function 92 return build_assign (code, op1, gimple_assign_lhs (op2), lhs); 96 build_assign (enum tree_code code, gimple *op1, gimple *op2, tree lhs) function 98 return build_assign (code, gimple_assign_lhs (op1), gimple_assign_lhs (op2) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gimple-builder.cc | 52 build_assign (enum tree_code code, tree op1, int val, tree lhs) function 61 build_assign (enum tree_code code, gimple *g, int val, tree lhs ) function 63 return build_assign (code, gimple_assign_lhs (g), val, lhs); 76 build_assign (enum tree_code code, tree op1, tree op2, tree lhs) function 84 build_assign (enum tree_code code, gimple *op1, tree op2, tree lhs) function 86 return build_assign (code, gimple_assign_lhs (op1), op2, lhs); 90 build_assign (enum tree_code code, tree op1, gimple *op2, tree lhs) function 92 return build_assign (code, op1, gimple_assign_lhs (op2), lhs); 96 build_assign (enum tree_code code, gimple *op1, gimple *op2, tree lhs) function 98 return build_assign (code, gimple_assign_lhs (op1), gimple_assign_lhs (op2) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| d-codegen.cc | 1080 add_stmt (build_assign (INIT_EXPR, result, init)); 1091 add_stmt (build_assign (INIT_EXPR, t, length)); 1095 add_stmt (build_assign (INIT_EXPR, t, d_convert (ptrtype, t1))); 1099 add_stmt (build_assign (INIT_EXPR, t, d_convert (ptrtype, t2))); 1332 build_assign (tree_code code, tree lhs, tree rhs) function 1364 result = build_assign (code, lhs, TARGET_EXPR_SLOT (rhs)); 1369 TARGET_EXPR_INITIAL (rhs) = build_assign (code, lhs, 1389 return build_assign (MODIFY_EXPR, lhs, rhs); 1527 /* Same as build_assign, the DECL_RESULT assignment replaces the temporary 1733 add_stmt (build_assign (INIT_EXPR, t, length)) [all...] |