• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2015 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  */
16 
17 public class Main {
Main()18   public Main() {
19   }
20 
testSimpleVReg(int a, float f, short s, boolean z, byte b, char c)21   int testSimpleVReg(int a, float f, short s, boolean z, byte b, char c) {
22     int e = doCall();
23     int g = doNativeCall();
24     return e + g;
25   }
26 
testPairVReg(long a, long b, long c, double e)27   long testPairVReg(long a, long b, long c, double e) {
28     long f = doCall();
29     long g = doNativeCall();
30     return f + g;
31   }
32 
doNativeCall()33   native int doNativeCall();
34 
doCall()35   int doCall() {
36     return 42;
37   }
38 
main(String[] args)39   public static void main(String[] args) {
40     System.loadLibrary(args[0]);
41     Main rm = new Main();
42     if (rm.testSimpleVReg(1, 1.0f, (short)2, true, (byte)3, 'c') != 43) {
43       throw new Error("Expected 43");
44     }
45 
46     if (rm.testPairVReg(Long.MIN_VALUE, Long.MAX_VALUE, 0, 2.0) != 44) {
47       throw new Error("Expected 44");
48     }
49   }
50 }
51