xref: /aosp_15_r20/dalvik/dx/tests/105-verify-load-store-ops/build (revision 055d459012065f78d96b68be8421640240ddf631)
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
17function oneop()
18{
19    jasmin -d . op_"$1".j
20}
21
22oneop aaload
23oneop aastore
24oneop aastore2 # second aastore test
25oneop astore
26oneop astore_0
27oneop astore_1
28oneop astore_2
29oneop astore_3
30oneop baload
31oneop bastore
32oneop caload
33oneop castore
34oneop daload
35oneop dastore
36oneop dstore
37oneop dstore_0
38oneop dstore_1
39oneop dstore_2
40oneop dstore_3
41oneop faload
42oneop fastore
43oneop fstore
44oneop fstore_0
45oneop fstore_1
46oneop fstore_2
47oneop fstore_3
48oneop iaload
49oneop iastore
50oneop istore
51oneop istore_0
52oneop istore_1
53oneop istore_2
54oneop istore_3
55oneop laload
56oneop lastore
57oneop lstore
58oneop lstore_0
59oneop lstore_1
60oneop lstore_2
61oneop lstore_3
62oneop saload
63oneop sastore
64