blob: c0da8327ac1dd314de0e737e9700f8dfa67806e8 [file] [log] [blame]
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Andy McFadden734155e2009-07-16 18:11:22 -070016
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080017/*
18 * Common defines for all Dalvik code.
19 */
20#ifndef _DALVIK_COMMON
21#define _DALVIK_COMMON
22
23#ifndef LOG_TAG
24# define LOG_TAG "dalvikvm"
25#endif
26
Carl Shapiroae188c62011-04-08 13:11:58 -070027#include <stdbool.h>
28#include <stdint.h>
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080029#include <stdio.h>
30#include <assert.h>
Carl Shapiroae188c62011-04-08 13:11:58 -070031#include "utils/Log.h"
32
Brian Carlstrom38e191b2011-05-05 15:26:41 -070033#if defined(HAVE_ENDIAN_H)
34# include <endian.h>
35#else /*not HAVE_ENDIAN_H*/
36# define __BIG_ENDIAN 4321
37# define __LITTLE_ENDIAN 1234
38# if defined(HAVE_LITTLE_ENDIAN)
39# define __BYTE_ORDER __LITTLE_ENDIAN
40# else
41# define __BYTE_ORDER __BIG_ENDIAN
42# endif
43#endif /*not HAVE_ENDIAN_H*/
44
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080045#if !defined(NDEBUG) && defined(WITH_DALVIK_ASSERT)
46# undef assert
47# define assert(x) \
Andy McFadden734155e2009-07-16 18:11:22 -070048 ((x) ? ((void)0) : (LOGE("ASSERT FAILED (%s:%d): %s\n", \
Carl Shapiro4a1ef7d2010-12-01 19:51:36 -080049 __FILE__, __LINE__, #x), *(int*)39=39, (void)0) )
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080050#endif
51
Carl Shapiro99fc4562010-07-09 17:35:15 -070052#define MIN(x,y) (((x) < (y)) ? (x) : (y))
53#define MAX(x,y) (((x) > (y)) ? (x) : (y))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080054
Carl Shapiroa20a9922010-07-29 21:22:12 -070055#define LIKELY(exp) (__builtin_expect((exp) != 0, true))
56#define UNLIKELY(exp) (__builtin_expect((exp) != 0, false))
57
Carl Shapirocc3f8b42011-02-08 20:10:56 -080058#define ALIGN_UP(x, n) (((size_t)(x) + (n) - 1) & ~((n) - 1))
59#define ALIGN_DOWN(x, n) ((size_t)(x) & -(n))
60#define ALIGN_UP_TO_PAGE_SIZE(p) ALIGN_UP(p, SYSTEM_PAGE_SIZE)
61#define ALIGN_DOWN_TO_PAGE_SIZE(p) ALIGN_DOWN(p, SYSTEM_PAGE_SIZE)
62
Carl Shapiro67f9be72011-02-08 19:54:55 -080063#define CLZ(x) __builtin_clz(x)
64
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080065/*
66 * If "very verbose" logging is enabled, make it equivalent to LOGV.
67 * Otherwise, make it disappear.
68 *
69 * Define this above the #include "Dalvik.h" to enable for only a
70 * single file.
71 */
72/* #define VERY_VERBOSE_LOG */
73#if defined(VERY_VERBOSE_LOG)
74# define LOGVV LOGV
75# define IF_LOGVV() IF_LOGV()
76#else
77# define LOGVV(...) ((void)0)
78# define IF_LOGVV() if (false)
79#endif
80
81
82/*
83 * These match the definitions in the VM specification.
84 */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080085typedef uint8_t u1;
86typedef uint16_t u2;
87typedef uint32_t u4;
88typedef uint64_t u8;
89typedef int8_t s1;
90typedef int16_t s2;
91typedef int32_t s4;
92typedef int64_t s8;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080093
94/*
95 * Storage for primitive types and object references.
96 *
97 * Some parts of the code (notably object field access) assume that values
98 * are "left aligned", i.e. given "JValue jv", "jv.i" and "*((s4*)&jv)"
99 * yield the same result. This seems to be guaranteed by gcc on big- and
100 * little-endian systems.
101 */
Carl Shapiro92a3b692011-04-29 19:19:46 -0700102struct Object;
103
104union JValue {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800105 u1 z;
106 s1 b;
107 u2 c;
108 s2 s;
109 s4 i;
110 s8 j;
111 float f;
112 double d;
Carl Shapiro92a3b692011-04-29 19:19:46 -0700113 Object* l;
114};
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800115
Carl Shapiro7cc095f2011-05-02 20:01:42 -0700116#define OFFSETOF_MEMBER(t, f) \
117 (reinterpret_cast<char*>( \
118 &reinterpret_cast<t*>(16)->f) - \
119 reinterpret_cast<char*>(16))
120
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800121#define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
122
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800123#endif /*_DALVIK_COMMON*/