# HG changeset patch # User Roland Schatz # Date 1393005519 -3600 # Node ID d8ac61f399689633f21494660b70325e5b776b6f # Parent b3d6e51228678927f04acbaeb77cd778b6ddd8e9 Remove unused methods from Architecture. diff -r b3d6e5122867 -r d8ac61f39968 graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/Architecture.java --- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/Architecture.java Fri Feb 21 18:47:02 2014 +0100 +++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/Architecture.java Fri Feb 21 18:58:39 2014 +0100 @@ -172,31 +172,6 @@ } /** - * Determine the maximum vector length supported for vector operations on values of a given - * {@link Kind}. - * - * @param kind the kind of the individual vector elements - * @return the maximum supported vector size - */ - public int getMaxVectorLength(Kind kind) { - return 1; - } - - /** - * Get a natively supported vector length for breaking down some vector operation on a constant - * length vector. - * - * @param kind the kind of the individual vector elements - * @param maxLength the maximum length that should be returned - * @param arithmetic the arithmetic operation for which the vector size should be determined, or - * null if no arithmetic needs to be performed on the vector - * @return a supported vector size, but at most {@code maxLength} - */ - public int getSupportedVectorLength(Kind kind, int maxLength, Class arithmetic) { - return 1; - } - - /** * Gets the size in bytes of the specified kind for this target. * * @param kind the kind for which to get the size