1 #!/bin/bash 2 # 3 # Copyright (C) 2017 The Android Open Source Project 4 # 5 # Licensed under the Apache License, Version 2.0 (the "License"); 6 # you may not use this file except in compliance with the License. 7 # You may obtain a copy of the License at 8 # 9 # http://www.apache.org/licenses/LICENSE-2.0 10 # 11 # Unless required by applicable law or agreed to in writing, software 12 # distributed under the License is distributed on an "AS IS" BASIS, 13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 # See the License for the specific language governing permissions and 15 # limitations under the License. 16 17 function oneop() 18 { 19 jasmin -d . op_"$1".j 20 } 21 22 oneop aaload 23 oneop aastore 24 oneop aastore2 # second aastore test 25 oneop astore 26 oneop astore_0 27 oneop astore_1 28 oneop astore_2 29 oneop astore_3 30 oneop baload 31 oneop bastore 32 oneop caload 33 oneop castore 34 oneop daload 35 oneop dastore 36 oneop dstore 37 oneop dstore_0 38 oneop dstore_1 39 oneop dstore_2 40 oneop dstore_3 41 oneop faload 42 oneop fastore 43 oneop fstore 44 oneop fstore_0 45 oneop fstore_1 46 oneop fstore_2 47 oneop fstore_3 48 oneop iaload 49 oneop iastore 50 oneop istore 51 oneop istore_0 52 oneop istore_1 53 oneop istore_2 54 oneop istore_3 55 oneop laload 56 oneop lastore 57 oneop lstore 58 oneop lstore_0 59 oneop lstore_1 60 oneop lstore_2 61 oneop lstore_3 62 oneop saload 63 oneop sastore 64