blob: 101ddd1926d49d65537453d528d5ea778f4dc863 [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 McFadden65a54dc2011-01-27 17:01:54 -080016
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080017/*
18 * Inlined native functions.
19 */
Carl Shapiro375fb112011-06-14 20:31:24 -070020#ifndef DALVIK_INLINENATIVE_H_
21#define DALVIK_INLINENATIVE_H_
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080022
23/* startup/shutdown */
24bool dvmInlineNativeStartup(void);
25void dvmInlineNativeShutdown(void);
26
Elliott Hughesfe700262010-09-14 17:42:07 -070027Method* dvmFindInlinableMethod(const char* classDescriptor,
28 const char* methodName, const char* methodSignature);
29
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080030/*
31 * Basic 4-argument inline operation handler.
32 */
33typedef bool (*InlineOp4Func)(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
34 JValue* pResult);
35
36/*
37 * Table of inline operations.
38 *
39 * Try to keep this at a power-of-two size, so we don't have to multiply.
40 *
41 * TODO: might be to our advantage to generate a compact jump table on
42 * the heap at runtime (or just declare two static tables, one with full
43 * info and one with just function pointers). Especially useful if we decide
44 * to support other method call forms, e.g. /range. We can also just
45 * generate assembly code that knows how many args it needs and has the
46 * target address embedded.
47 */
Carl Shapirod862faa2011-04-27 23:00:01 -070048struct InlineOperation {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080049 InlineOp4Func func; /* MUST be first entry */
50 const char* classDescriptor;
51 const char* methodName;
52 const char* methodSignature;
Carl Shapirod862faa2011-04-27 23:00:01 -070053};
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080054
Elliott Hughes69ee8f62011-02-16 14:30:45 -080055/*
56 * Must be kept in sync w/ gDvmInlineOpsTable in InlineNative.c
57 *
58 * You should also add a test to libcore's IntrinsicTest.
59 */
Carl Shapirod862faa2011-04-27 23:00:01 -070060enum NativeInlineOps {
Bill Buzbee50a6bf22009-07-08 13:08:04 -070061 INLINE_EMPTYINLINEMETHOD = 0,
62 INLINE_STRING_CHARAT = 1,
63 INLINE_STRING_COMPARETO = 2,
64 INLINE_STRING_EQUALS = 3,
Elliott Hughes2bdbcb62010-04-12 14:29:37 -070065 INLINE_STRING_FASTINDEXOF_II = 4,
66 INLINE_STRING_IS_EMPTY = 5,
67 INLINE_STRING_LENGTH = 6,
68 INLINE_MATH_ABS_INT = 7,
69 INLINE_MATH_ABS_LONG = 8,
70 INLINE_MATH_ABS_FLOAT = 9,
71 INLINE_MATH_ABS_DOUBLE = 10,
72 INLINE_MATH_MIN_INT = 11,
73 INLINE_MATH_MAX_INT = 12,
74 INLINE_MATH_SQRT = 13,
75 INLINE_MATH_COS = 14,
76 INLINE_MATH_SIN = 15,
Elliott Hughese22bd842010-08-20 18:47:36 -070077 INLINE_FLOAT_TO_INT_BITS = 16,
78 INLINE_FLOAT_TO_RAW_INT_BITS = 17,
79 INLINE_INT_BITS_TO_FLOAT = 18,
80 INLINE_DOUBLE_TO_LONG_BITS = 19,
81 INLINE_DOUBLE_TO_RAW_LONG_BITS = 20,
82 INLINE_LONG_BITS_TO_DOUBLE = 21,
Carl Shapirod862faa2011-04-27 23:00:01 -070083};
Bill Buzbee50a6bf22009-07-08 13:08:04 -070084
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080085/*
86 * Get the inlineops table.
87 */
88const InlineOperation* dvmGetInlineOpsTable(void);
89int dvmGetInlineOpsTableLength(void);
90
91/*
92 * The table, exposed so we can access it with C inlines. Prefer access
93 * through dvmGetInlineOpsTable().
94 */
95extern const InlineOperation gDvmInlineOpsTable[];
96
97/*
98 * Perform the operation specified by "opIndex".
99 *
100 * We want the arguments to appear in the first 4 registers so they can
101 * be passed straight through to the handler function. Ideally on ARM
102 * they'll go into r0-r3 and stay there.
103 *
104 * Returns "true" if everything went normally, "false" if an exception
105 * was thrown.
106 */
107INLINE bool dvmPerformInlineOp4Std(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
108 JValue* pResult, int opIndex)
109{
110 return (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, pResult);
111}
112
113/*
114 * Like the "std" version, but will emit profiling info.
115 */
116bool dvmPerformInlineOp4Dbg(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
117 JValue* pResult, int opIndex);
118
buzbee9a3147c2011-03-02 15:43:48 -0800119/*
120 * Return method & populate the table on first use.
121 */
Carl Shapirod862faa2011-04-27 23:00:01 -0700122extern "C" Method* dvmResolveInlineNative(int opIndex);
buzbee9a3147c2011-03-02 15:43:48 -0800123
Carl Shapirodb0c9542011-04-12 19:14:06 -0700124/*
125 * The actual inline native definitions.
126 */
127bool javaLangString_charAt(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
128 JValue* pResult);
129
130bool javaLangString_compareTo(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
131 JValue* pResult);
132
133bool javaLangString_equals(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
134 JValue* pResult);
135
136bool javaLangString_length(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
137 JValue* pResult);
138
139bool javaLangString_isEmpty(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
140 JValue* pResult);
141
142bool javaLangString_fastIndexOf_II(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
143 JValue* pResult);
144
145bool javaLangMath_abs_int(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
146 JValue* pResult);
147
148bool javaLangMath_abs_long(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
149 JValue* pResult);
150
151bool javaLangMath_abs_float(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
152 JValue* pResult);
153
154bool javaLangMath_abs_double(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
155 JValue* pResult);
156
157bool javaLangMath_min_int(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
158 JValue* pResult);
159
160bool javaLangMath_max_int(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
161 JValue* pResult);
162
163bool javaLangMath_sqrt(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
164 JValue* pResult);
165
166bool javaLangMath_cos(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
167 JValue* pResult);
168
169bool javaLangMath_sin(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
170 JValue* pResult);
171
172bool javaLangFloat_floatToIntBits(u4 arg0, u4 arg1, u4 arg2, u4 arg,
173 JValue* pResult);
174
175bool javaLangFloat_floatToRawIntBits(u4 arg0, u4 arg1, u4 arg2, u4 arg,
176 JValue* pResult);
177
178bool javaLangFloat_intBitsToFloat(u4 arg0, u4 arg1, u4 arg2, u4 arg,
179 JValue* pResult);
180
181bool javaLangDouble_doubleToLongBits(u4 arg0, u4 arg1, u4 arg2, u4 arg,
182 JValue* pResult);
183
184bool javaLangDouble_longBitsToDouble(u4 arg0, u4 arg1, u4 arg2, u4 arg,
185 JValue* pResult);
186
187bool javaLangDouble_doubleToRawLongBits(u4 arg0, u4 arg1, u4 arg2,
188 u4 arg, JValue* pResult);
189
190bool javaLangDouble_longBitsToDouble(u4 arg0, u4 arg1, u4 arg2, u4 arg,
191 JValue* pResult);
192
Carl Shapiro375fb112011-06-14 20:31:24 -0700193#endif // DALVIK_INLINENATIVE_H_