8294618: Update openjdk.java.net => openjdk.org

Reviewed-by: mikael, iris, joehw, prr, ihse
This commit is contained in:
Joe Darcy 2022-10-05 16:48:09 +00:00
parent f531dae4a0
commit 536c9a512e
45 changed files with 128 additions and 128 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -225,7 +225,7 @@ abstract class AbstractMask<E> extends VectorMask<E> {
// For integral types, *all* lane bits will be set.
// The bits for -1.0 are like {0b10111*0000*}.
// FIXME: Use a conversion intrinsic for this operation.
// https://bugs.openjdk.java.net/browse/JDK-8225740
// https://bugs.openjdk.org/browse/JDK-8225740
return (AbstractVector<E>) zero.blend(mone, this);
}

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -114,7 +114,7 @@ abstract class AbstractShuffle<E> extends VectorShuffle<E> {
// are already clipped. At this point we convert
// them from internal ints (or bytes) into the ETYPE.
// FIXME: Use a conversion intrinsic for this operation.
// https://bugs.openjdk.java.net/browse/JDK-8225740
// https://bugs.openjdk.org/browse/JDK-8225740
return (AbstractVector<E>) vspecies().fromIntValues(toArray());
}

View file

@ -140,7 +140,7 @@ abstract class AbstractSpecies<E> extends jdk.internal.vm.vector.VectorSupport.V
return (Class<E>) laneType.elementType;
}
// FIXME: appeal to general method (see https://bugs.openjdk.java.net/browse/JDK-6176992)
// FIXME: appeal to general method (see https://bugs.openjdk.org/browse/JDK-6176992)
// replace usages of this method and remove
@ForceInline
@SuppressWarnings("unchecked")