Home | History | Annotate | Download | only in util
      1 /* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
      2 
      3 Licensed under the Apache License, Version 2.0 (the "License");
      4 you may not use this file except in compliance with the License.
      5 You may obtain a copy of the License at
      6 
      7     http://www.apache.org/licenses/LICENSE-2.0
      8 
      9 Unless required by applicable law or agreed to in writing, software
     10 distributed under the License is distributed on an "AS IS" BASIS,
     11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 See the License for the specific language governing permissions and
     13 limitations under the License.
     14 ==============================================================================*/
     15 
     16 #ifndef TENSORFLOW_CORE_UTIL_OVERFLOW_H_
     17 #define TENSORFLOW_CORE_UTIL_OVERFLOW_H_
     18 
     19 #include "tensorflow/core/platform/logging.h"
     20 #include "tensorflow/core/platform/macros.h"
     21 #include "tensorflow/core/platform/types.h"
     22 
     23 namespace tensorflow {
     24 
     25 // Multiply two nonnegative int64's, returning negative for overflow
     26 inline int64 MultiplyWithoutOverflow(const int64 x, const int64 y) {
     27   // Multiply in uint64 rather than int64 since signed overflow is undefined.
     28   // Negative values will wrap around to large unsigned values in the casts
     29   // (see section 4.7 [conv.integral] of the C++14 standard).
     30   const uint64 ux = x;
     31   const uint64 uy = y;
     32   const uint64 uxy = ux * uy;
     33 
     34   // Check if we overflow uint64, using a cheap check if both inputs are small
     35   if (TF_PREDICT_FALSE((ux | uy) >> 32 != 0)) {
     36     // Ensure nonnegativity.  Note that negative numbers will appear "large"
     37     // to the unsigned comparisons above.
     38     CHECK(x >= 0 && y >= 0);
     39 
     40     // Otherwise, detect overflow using a division
     41     if (ux != 0 && uxy / ux != uy) return -1;
     42   }
     43 
     44   // Cast back to signed.  Any negative value will signal an error.
     45   return static_cast<int64>(uxy);
     46 }
     47 
     48 }  // namespace tensorflow
     49 
     50 #endif  // TENSORFLOW_CORE_UTIL_OVERFLOW_H_
     51