This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
> ! /* Vectorizable, before pointer plus we would get a redundant cast
> ! (caused by ponter arithmetics), alias analysis fails to distinguish
> ! between the pointers. */
Who cares. /* Vectorizable. */ and that's it.
I wanted to explain why this was changed.
> ! /* Since the middle-end checks the type when doing a build2, we > ! need to build the tree in pieces.
Not so disgusting, but it would be nicer if you built a non-type-checking code (e.g. MIN_EXPR) and replaced the code, instead of replacing operand 0.
Actually tree codes could have difference sizes (or maybe in the future they can) which is why I did it this way.
Actually int_const_binop is faster and size_binop could cause an ICE.
Actually it is not that useless as there really cases where this can happen (try using mode with pointers on s390x) and it is not that obviously what happens there.
> ! = convert (sizetype, > size_diffop (size_zero_node, gnu_pos));
Use fold_convert instead.
This was already using convert. I did not change this
You ask me to remove whitespace changes
but ask me to change unrelated converts to fold_convert.
I will change this because I need to change it to be POINTER_PLUS_EXPR anyways:> /* If the use of the ADDR_EXPR must be a PLUS_EXPR, or else there > is nothing to do. */ > ! if (TREE_CODE (rhs) != POINTER_PLUS_EXPR) > return false;
If you can, please fix the English in this comment.
/* If the use of the ADDR_EXPR is not a POINTER_PLUS_EXPR, there
is nothing to do. */
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |