Mercurial > hg > octave-nkf
view src/OPERATORS/op-int-conv.cc @ 12583:bb29b58e650c release-3-4-x
abandon release-3-4-x branch in favor of workflow using stable and default branches and merging stable to default periodically
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 08 Apr 2011 09:06:04 -0400 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
line wrap: on
line source
/* Copyright (C) 2004-2011 John W. Eaton This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, see <http://www.gnu.org/licenses/>. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include "gripes.h" #include "oct-obj.h" #include "ov.h" #include "ov-int8.h" #include "ov-int16.h" #include "ov-int32.h" #include "ov-int64.h" #include "ov-uint8.h" #include "ov-uint16.h" #include "ov-uint32.h" #include "ov-uint64.h" #include "ov-range.h" #include "ov-bool.h" #include "ov-bool-mat.h" #include "ov-scalar.h" #include "ov-float.h" #include "ov-re-mat.h" #include "ov-flt-re-mat.h" #include "ov-str-mat.h" #include "ov-typeinfo.h" #include "ops.h" #define DEFINTCONVFN(name, tfrom, tto) \ CONVDECL (name) \ { \ CAST_CONV_ARG (const octave_ ## tfrom&); \ \ octave_ ## tto ## _matrix v2 = v.tto ## _array_value (); \ return new octave_ ## tto ## _matrix (v2); \ } // conversion ops DEFINTCONVFN (scalar_to_int8, scalar, int8) DEFINTCONVFN (scalar_to_int16, scalar, int16) DEFINTCONVFN (scalar_to_int32, scalar, int32) DEFINTCONVFN (scalar_to_int64, scalar, int64) DEFINTCONVFN (scalar_to_uint8, scalar, uint8) DEFINTCONVFN (scalar_to_uint16, scalar, uint16) DEFINTCONVFN (scalar_to_uint32, scalar, uint32) DEFINTCONVFN (scalar_to_uint64, scalar, uint64) DEFINTCONVFN (matrix_to_int8, matrix, int8) DEFINTCONVFN (matrix_to_int16, matrix, int16) DEFINTCONVFN (matrix_to_int32, matrix, int32) DEFINTCONVFN (matrix_to_int64, matrix, int64) DEFINTCONVFN (matrix_to_uint8, matrix, uint8) DEFINTCONVFN (matrix_to_uint16, matrix, uint16) DEFINTCONVFN (matrix_to_uint32, matrix, uint32) DEFINTCONVFN (matrix_to_uint64, matrix, uint64) DEFINTCONVFN (float_scalar_to_int8, float_scalar, int8) DEFINTCONVFN (float_scalar_to_int16, float_scalar, int16) DEFINTCONVFN (float_scalar_to_int32, float_scalar, int32) DEFINTCONVFN (float_scalar_to_int64, float_scalar, int64) DEFINTCONVFN (float_scalar_to_uint8, float_scalar, uint8) DEFINTCONVFN (float_scalar_to_uint16, float_scalar, uint16) DEFINTCONVFN (float_scalar_to_uint32, float_scalar, uint32) DEFINTCONVFN (float_scalar_to_uint64, float_scalar, uint64) DEFINTCONVFN (float_matrix_to_int8, float_matrix, int8) DEFINTCONVFN (float_matrix_to_int16, float_matrix, int16) DEFINTCONVFN (float_matrix_to_int32, float_matrix, int32) DEFINTCONVFN (float_matrix_to_int64, float_matrix, int64) DEFINTCONVFN (float_matrix_to_uint8, float_matrix, uint8) DEFINTCONVFN (float_matrix_to_uint16, float_matrix, uint16) DEFINTCONVFN (float_matrix_to_uint32, float_matrix, uint32) DEFINTCONVFN (float_matrix_to_uint64, float_matrix, uint64) DEFCONVFN (bool_to_int8, bool, int8) DEFCONVFN (bool_to_int16, bool, int16) DEFCONVFN (bool_to_int32, bool, int32) DEFCONVFN (bool_to_int64, bool, int64) DEFCONVFN (bool_to_uint8, bool, uint8) DEFCONVFN (bool_to_uint16, bool, uint16) DEFCONVFN (bool_to_uint32, bool, uint32) DEFCONVFN (bool_to_uint64, bool, uint64) DEFCONVFN (bool_matrix_to_int8, bool_matrix, int8) DEFCONVFN (bool_matrix_to_int16, bool_matrix, int16) DEFCONVFN (bool_matrix_to_int32, bool_matrix, int32) DEFCONVFN (bool_matrix_to_int64, bool_matrix, int64) DEFCONVFN (bool_matrix_to_uint8, bool_matrix, uint8) DEFCONVFN (bool_matrix_to_uint16, bool_matrix, uint16) DEFCONVFN (bool_matrix_to_uint32, bool_matrix, uint32) DEFCONVFN (bool_matrix_to_uint64, bool_matrix, uint64) DEFSTRINTCONVFN (char_matrix_sq_str_to_int8, int8) DEFSTRINTCONVFN (char_matrix_sq_str_to_int16, int16) DEFSTRINTCONVFN (char_matrix_sq_str_to_int32, int32) DEFSTRINTCONVFN (char_matrix_sq_str_to_int64, int64) DEFSTRINTCONVFN (char_matrix_sq_str_to_uint8, uint8) DEFSTRINTCONVFN (char_matrix_sq_str_to_uint16, uint16) DEFSTRINTCONVFN (char_matrix_sq_str_to_uint32, uint32) DEFSTRINTCONVFN (char_matrix_sq_str_to_uint64, uint64) DEFSTRINTCONVFN (char_matrix_dq_str_to_int8, int8) DEFSTRINTCONVFN (char_matrix_dq_str_to_int16, int16) DEFSTRINTCONVFN (char_matrix_dq_str_to_int32, int32) DEFSTRINTCONVFN (char_matrix_dq_str_to_int64, int64) DEFSTRINTCONVFN (char_matrix_dq_str_to_uint8, uint8) DEFSTRINTCONVFN (char_matrix_dq_str_to_uint16, uint16) DEFSTRINTCONVFN (char_matrix_dq_str_to_uint32, uint32) DEFSTRINTCONVFN (char_matrix_dq_str_to_uint64, uint64) DEFINTCONVFN (range_to_int8, range, int8) DEFINTCONVFN (range_to_int16, range, int16) DEFINTCONVFN (range_to_int32, range, int32) DEFINTCONVFN (range_to_int64, range, int64) DEFINTCONVFN (range_to_uint8, range, uint8) DEFINTCONVFN (range_to_uint16, range, uint16) DEFINTCONVFN (range_to_uint32, range, uint32) DEFINTCONVFN (range_to_uint64, range, uint64) #define INT_CONV_FUNCTIONS(tfrom) \ DEFCONVFN2 (tfrom ## _scalar_to_int8, tfrom, scalar, int8) \ DEFCONVFN2 (tfrom ## _scalar_to_int16, tfrom, scalar, int16) \ DEFCONVFN2 (tfrom ## _scalar_to_int32, tfrom, scalar, int32) \ DEFCONVFN2 (tfrom ## _scalar_to_int64, tfrom, scalar, int64) \ \ DEFCONVFN2 (tfrom ## _scalar_to_uint8, tfrom, scalar, uint8) \ DEFCONVFN2 (tfrom ## _scalar_to_uint16, tfrom, scalar, uint16) \ DEFCONVFN2 (tfrom ## _scalar_to_uint32, tfrom, scalar, uint32) \ DEFCONVFN2 (tfrom ## _scalar_to_uint64, tfrom, scalar, uint64) \ \ DEFCONVFN2 (tfrom ## _matrix_to_int8, tfrom, matrix, int8) \ DEFCONVFN2 (tfrom ## _matrix_to_int16, tfrom, matrix, int16) \ DEFCONVFN2 (tfrom ## _matrix_to_int32, tfrom, matrix, int32) \ DEFCONVFN2 (tfrom ## _matrix_to_int64, tfrom, matrix, int64) \ \ DEFCONVFN2 (tfrom ## _matrix_to_uint8, tfrom, matrix, uint8) \ DEFCONVFN2 (tfrom ## _matrix_to_uint16, tfrom, matrix, uint16) \ DEFCONVFN2 (tfrom ## _matrix_to_uint32, tfrom, matrix, uint32) \ DEFCONVFN2 (tfrom ## _matrix_to_uint64, tfrom, matrix, uint64) INT_CONV_FUNCTIONS (int8) INT_CONV_FUNCTIONS (int16) INT_CONV_FUNCTIONS (int32) INT_CONV_FUNCTIONS (int64) INT_CONV_FUNCTIONS (uint8) INT_CONV_FUNCTIONS (uint16) INT_CONV_FUNCTIONS (uint32) INT_CONV_FUNCTIONS (uint64) #define INSTALL_INT_CONV_FUNCTIONS(tfrom) \ INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int8_matrix, tfrom ## _scalar_to_int8) \ INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int16_matrix, tfrom ## _scalar_to_int16) \ INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int32_matrix, tfrom ## _scalar_to_int32) \ INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int64_matrix, tfrom ## _scalar_to_int64) \ \ INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint8_matrix, tfrom ## _scalar_to_uint8) \ INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint16_matrix, tfrom ## _scalar_to_uint16) \ INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint32_matrix, tfrom ## _scalar_to_uint32) \ INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint64_matrix, tfrom ## _scalar_to_uint64) \ \ INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int8_matrix, tfrom ## _matrix_to_int8) \ INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int16_matrix, tfrom ## _matrix_to_int16) \ INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int32_matrix, tfrom ## _matrix_to_int32) \ INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int64_matrix, tfrom ## _matrix_to_int64) \ \ INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint8_matrix, tfrom ## _matrix_to_uint8) \ INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint16_matrix, tfrom ## _matrix_to_uint16) \ INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint32_matrix, tfrom ## _matrix_to_uint32) \ INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint64_matrix, tfrom ## _matrix_to_uint64) #define INSTALL_CONVOPS(tfrom) \ INSTALL_CONVOP (octave_ ## tfrom, octave_int8_matrix, tfrom ## _to_int8) \ INSTALL_CONVOP (octave_ ## tfrom, octave_int16_matrix, tfrom ## _to_int16) \ INSTALL_CONVOP (octave_ ## tfrom, octave_int32_matrix, tfrom ## _to_int32) \ INSTALL_CONVOP (octave_ ## tfrom, octave_int64_matrix, tfrom ## _to_int64) \ \ INSTALL_CONVOP (octave_ ## tfrom, octave_uint8_matrix, tfrom ## _to_uint8) \ INSTALL_CONVOP (octave_ ## tfrom, octave_uint16_matrix, tfrom ## _to_uint16) \ INSTALL_CONVOP (octave_ ## tfrom, octave_uint32_matrix, tfrom ## _to_uint32) \ INSTALL_CONVOP (octave_ ## tfrom, octave_uint64_matrix, tfrom ## _to_uint64) void install_int_conv_ops (void) { INSTALL_CONVOPS (scalar) INSTALL_CONVOPS (matrix) INSTALL_CONVOPS (float_scalar) INSTALL_CONVOPS (float_matrix) INSTALL_CONVOPS (bool) INSTALL_CONVOPS (bool_matrix) INSTALL_CONVOPS (range) INSTALL_CONVOPS (char_matrix_sq_str) INSTALL_CONVOPS (char_matrix_dq_str) INSTALL_INT_CONV_FUNCTIONS (int8) INSTALL_INT_CONV_FUNCTIONS (int16) INSTALL_INT_CONV_FUNCTIONS (int32) INSTALL_INT_CONV_FUNCTIONS (int64) INSTALL_INT_CONV_FUNCTIONS (uint8) INSTALL_INT_CONV_FUNCTIONS (uint16) INSTALL_INT_CONV_FUNCTIONS (uint32) INSTALL_INT_CONV_FUNCTIONS (uint64) }