OSDN Git Service

am 4d7dd569: Handle the case of referent clearing during tracing.
[android-x86/dalvik.git] / dx / src / com / android / dx / dex / code / form / Form51l.java
1 /*
2  * Copyright (C) 2007 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 package com.android.dx.dex.code.form;
18
19 import com.android.dx.dex.code.CstInsn;
20 import com.android.dx.dex.code.DalvInsn;
21 import com.android.dx.dex.code.InsnFormat;
22 import com.android.dx.rop.code.RegisterSpecList;
23 import com.android.dx.rop.cst.Constant;
24 import com.android.dx.rop.cst.CstLiteral64;
25 import com.android.dx.rop.cst.CstLiteralBits;
26 import com.android.dx.util.AnnotatedOutput;
27
28 /**
29  * Instruction format {@code 51l}. See the instruction format spec
30  * for details.
31  */
32 public final class Form51l extends InsnFormat {
33     /** {@code non-null;} unique instance of this class */
34     public static final InsnFormat THE_ONE = new Form51l();
35
36     /**
37      * Constructs an instance. This class is not publicly
38      * instantiable. Use {@link #THE_ONE}.
39      */
40     private Form51l() {
41         // This space intentionally left blank.
42     }
43
44     /** {@inheritDoc} */
45     @Override
46     public String insnArgString(DalvInsn insn) {
47         RegisterSpecList regs = insn.getRegisters();
48         CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
49
50         return regs.get(0).regString() + ", " + literalBitsString(value);
51     }
52
53     /** {@inheritDoc} */
54     @Override
55     public String insnCommentString(DalvInsn insn, boolean noteIndices) {
56         CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant();
57         return literalBitsComment(value, 64);
58     }
59
60     /** {@inheritDoc} */
61     @Override
62     public int codeSize() {
63         return 5;
64     }
65
66     /** {@inheritDoc} */
67     @Override
68     public boolean isCompatible(DalvInsn insn) {
69         RegisterSpecList regs = insn.getRegisters();
70         if (!((insn instanceof CstInsn) &&
71               (regs.size() == 1) &&
72               unsignedFitsInByte(regs.get(0).getReg()))) {
73             return false;
74         }
75
76         CstInsn ci = (CstInsn) insn;
77         Constant cst = ci.getConstant();
78
79         return (cst instanceof CstLiteral64);
80     }
81
82     /** {@inheritDoc} */
83     @Override
84     public void writeTo(AnnotatedOutput out, DalvInsn insn) {
85         RegisterSpecList regs = insn.getRegisters();
86         long value =
87             ((CstLiteral64) ((CstInsn) insn).getConstant()).getLongBits();
88
89         write(out, opcodeUnit(insn, regs.get(0).getReg()), value);
90     }
91 }