Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/windows/native/common/jlong_md.h
32285 views
/*1* Copyright (c) 1997, 2002, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425#ifndef _WIN32_JLONG_MD_H_26#define _WIN32_JLONG_MD_H_2728/* Make sure ptrdiff_t is defined */29#include <stddef.h>3031#define jlong_high(a) ((jint)((a)>>32))32#define jlong_low(a) ((jint)(a))33#define jlong_add(a, b) ((a) + (b))34#define jlong_and(a, b) ((a) & (b))35#define jlong_div(a, b) ((a) / (b))36#define jlong_mul(a, b) ((a) * (b))37#define jlong_neg(a) (-(a))38#define jlong_not(a) (~(a))39#define jlong_or(a, b) ((a) | (b))40#define jlong_shl(a, n) ((a) << (n))41#define jlong_shr(a, n) ((a) >> (n))42#define jlong_sub(a, b) ((a) - (b))43#define jlong_xor(a, b) ((a) ^ (b))44#define jlong_rem(a,b) ((a) % (b))4546/* comparison operators */47#define jlong_ltz(ll) ((ll) < 0)48#define jlong_gez(ll) ((ll) >= 0)49#define jlong_gtz(ll) ((ll) > 0)50#define jlong_eqz(a) ((a) == 0)51#define jlong_eq(a, b) ((a) == (b))52#define jlong_ne(a,b) ((a) != (b))53#define jlong_ge(a,b) ((a) >= (b))54#define jlong_le(a,b) ((a) <= (b))55#define jlong_lt(a,b) ((a) < (b))56#define jlong_gt(a,b) ((a) > (b))5758#define jlong_zero ((jlong) 0)59#define jlong_one ((jlong) 1)60#define jlong_minus_one ((jlong) -1)6162/* For static variables initialized to zero */63#define jlong_zero_init ((jlong) 0)6465#ifdef _WIN6466#define jlong_to_ptr(a) ((void*)(a))67#define ptr_to_jlong(a) ((jlong)(a))68#else69/* Double casting to avoid warning messages looking for casting of */70/* smaller sizes into pointers */71#define jlong_to_ptr(a) ((void*)(int)(a))72#define ptr_to_jlong(a) ((jlong)(int)(a))73#endif7475#define jint_to_jlong(a) ((jlong)(a))76#define jlong_to_jint(a) ((jint)(a))7778/* Useful on machines where jlong and jdouble have different endianness. */79#define jlong_to_jdouble_bits(a)80#define jdouble_to_jlong_bits(a)8182#define jlong_to_int(a) ((int)(a))83#define int_to_jlong(a) ((jlong)(a))84#define jlong_to_uint(a) ((unsigned int)(a))85#define uint_to_jlong(a) ((jlong)(a))86#define jlong_to_ptrdiff(a) ((ptrdiff_t)(a))87#define ptrdiff_to_jlong(a) ((jlong)(a))88#define jlong_to_size(a) ((size_t)(a))89#define size_to_jlong(a) ((jlong)(a))90#define long_to_jlong(a) ((jlong)(a))9192#endif939495