BuilderInstruction22s.java revision e80efa670f1027fdf3882a298216a460199e38d0
15821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)/*
25821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * Copyright 2012, Google Inc.
35821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * All rights reserved.
45821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) *
55821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * Redistribution and use in source and binary forms, with or without
65821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * modification, are permitted provided that the following conditions are
72a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * met:
85821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) *
92a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *     * Redistributions of source code must retain the above copyright
102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * notice, this list of conditions and the following disclaimer.
112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *     * Redistributions in binary form must reproduce the above
122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * copyright notice, this list of conditions and the following disclaimer
135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * in the documentation and/or other materials provided with the
145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * distribution.
155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) *     * Neither the name of Google Inc. nor the names of its
165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * contributors may be used to endorse or promote products derived from
175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * this software without specific prior written permission.
185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) *
195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
212a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) */
315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)package org.jf.dexlib2.builder.instruction;
337dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)import org.jf.dexlib2.Format;
355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)import org.jf.dexlib2.Opcode;
365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)import org.jf.dexlib2.builder.BuilderInstruction;
375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)import org.jf.dexlib2.iface.instruction.formats.Instruction22s;
385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)import org.jf.dexlib2.util.Preconditions;
392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)import javax.annotation.Nonnull;
415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)public class BuilderInstruction22s extends BuilderInstruction implements Instruction22s {
435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    public static final Format FORMAT = Format.Format22s;
445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    protected final int registerA;
465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    protected final int registerB;
475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    protected final int literal;
485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    public BuilderInstruction22s(@Nonnull Opcode opcode,
505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)                                 int registerA,
515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)                                 int registerB,
525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)                                 int literal) {
535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)        super(opcode);
542a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)        this.registerA = Preconditions.checkNibbleRegister(registerA);
555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)        this.registerB = Preconditions.checkNibbleRegister(registerB);
565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)        this.literal = Preconditions.checkShortLiteral(literal);
575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    }
582a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    @Override public int getRegisterA() { return registerA; }
605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    @Override public int getRegisterB() { return registerB; }
61424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)    @Override public int getNarrowLiteral() { return literal; }
62424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)    @Override public long getWideLiteral() { return literal; }
63424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)
64424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)    @Override public Format getFormat() { return FORMAT; }
655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)}