1
1
openmpi/opal/util/convert.c

113 строки
3.0 KiB
C
Исходник Обычный вид История

In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2006 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
#include <stdio.h>
#include <stdlib.h>
#include "opal/util/convert.h"
#include "opal/constants.h"
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
#if SIZEOF_SIZE_T <= SIZEOF_INT
/*
* This is the [short] case where we can just cast and we're all good
*/
int opal_size2int(size_t in, int *out, bool want_check)
{
*out = (int)in;
return OPAL_SUCCESS;
}
#else
/*
* The rest of the file handles the case where
* sizeof(size_t)>sizeof(int).
*/
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
static bool init_done = false;
static unsigned int int_pos = 0;
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
static void opal_size2int_init(void);
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
static void warn(void);
int opal_size2int(size_t in, int *out, bool want_check)
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
{
int *pos = (int *) &in;
unsigned int i;
if (!init_done) {
opal_size2int_init();
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
}
*out = pos[int_pos];
if (want_check) {
/* Remember that size_t is unsigned, so we don't need to check
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
for when in < 0 (in which case the internal checks would be
slightly different) */
for (i = 0; i < (sizeof(in) / sizeof(*out)); ++i) {
if (i != int_pos) {
if (pos[i] != 0) {
warn();
return OPAL_ERR_NOT_IMPLEMENTED;
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
}
}
}
}
return OPAL_SUCCESS;
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
}
static void opal_size2int_init(void)
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
{
size_t bogus = 1;
int *i = (int *) &bogus;
for (int_pos = 0; int_pos < (sizeof(bogus) / sizeof(int)); ++int_pos) {
if (i[int_pos] == 1) {
break;
}
}
init_done = true;
}
static void warn(void)
{
#if OPAL_ENABLE_DEBUG
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
/* Developer builds */
fprintf(stderr, "WARNING: A size_t value was attempted to be cast to an int (sizeof(size_t) == %ld, sizeof(int) == %ld), but data was lost in the conversion. This should never happen (i.e., we should never try to convert a value that will be 'too big'). Since this is a developer build, I'm going to abort, and you can check the corefile. Enjoy.\n", (long) sizeof(size_t), (long) sizeof(int));
In comm.c, one of the few places where OMPI and ORTE interact, we have a clash of APIs -- MPI requires int's, but the ORTE DPS requires size_t's. Specifically, we need to orte_dps.unload(), which fills a size_t. We then need to PML send (i.e., MPI_Send) that value around. However, there's no such thing as MPI_SIZE_T as a datatype, and that would hose us in heterogeneous situations, anyway. So the compromise was to make ompi_sizet2int(), a function what does the [potenial] downcast. On 32 bit architectures, this is no big deal -- it's a simple assignment. On 64 bit architectures (or, more specifically, where sizeof(size_t) > sizeof(int)), it does the dowcast in a compiler-safe manner, and does a check to see if we truncated. If we truncated, in a developer build, we'll abort(). If this is not a developer build, print out a nasty warning. The rationale here is as followes: - this is a clash of the API's. There's unfortunately nothing that we can do about this at the moment. - hence, we have to do the downcast. - but we might as well be "safe" about it -- assuming that orte_dps.unload() never gives us back a value >sizeof(int) (which is a pretty safe assumption -- if we get that large of a value, we have other problems, or we're on fundamentally different types of hardware and I suspect a lot of the rest of the code base will have problems as well!), we should be able to downcast safely. - if there is a mistake in code somewhere such that: - we can't downcast safely (i.e., we legitmately have a size_t value that is too large for an int) - we truncate when the value should not have been that large the conversion function will detect this and print out an error. So we won't silently introduce any new errors into the code base -- they will be loud and obvious. - although comm.c is currently the only place where we need this, I suspect that there will be a small number of other places where similar situations occur. I intend to bring this right over to the trunk, so it was simpler to make this functionality be a subroutine so that we can use it elsewhere if/when necessary. Final note: src/attribute/attribute.c does something *similar* (downcasting when sizeof(void*) > sizeof(int), but is different enough that it would have been painful to make one unified interface. This does not rule it out for the future, however (especially if we find more places in the tree that need this kind of functionality). This commit was SVN r6246.
2005-07-01 01:30:18 +04:00
abort();
#else
static bool warned = false;
if (!warned) {
fprintf(stderr, "Open MPI WARNING: A bad cast (size_t->int) occurred.\n");
fprintf(stderr, "Please inform the Open MPI developers. This message will not repeat.\n");
fprintf(stderr, "Attempting to continue (no guarantees about correctness...\n");
warned = true;
}
#endif
}
#endif