From 7940e44f4517de5e2634a7e07d58d0fb26160513 Mon Sep 17 00:00:00 2001 From: Brian Carlstrom Date: Fri, 12 Jul 2013 13:46:57 -0700 Subject: Create separate Android.mk for main build targets The runtime, compiler, dex2oat, and oatdump now are in seperate trees to prevent dependency creep. They can now be individually built without rebuilding the rest of the art projects. dalvikvm and jdwpspy were already this way. Builds in the art directory should behave as before, building everything including tests. Change-Id: Ic6b1151e5ed0f823c3dd301afd2b13eb2d8feb81 --- runtime/dex_instruction-inl.h | 322 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 322 insertions(+) create mode 100644 runtime/dex_instruction-inl.h (limited to 'runtime/dex_instruction-inl.h') diff --git a/runtime/dex_instruction-inl.h b/runtime/dex_instruction-inl.h new file mode 100644 index 0000000000..b426e66a1c --- /dev/null +++ b/runtime/dex_instruction-inl.h @@ -0,0 +1,322 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef ART_SRC_DEX_INSTRUCTION_INL_H_ +#define ART_SRC_DEX_INSTRUCTION_INL_H_ + +#include "dex_instruction.h" + +namespace art { + +//------------------------------------------------------------------------------ +// VRegA +//------------------------------------------------------------------------------ +inline int8_t Instruction::VRegA_10t() const { + DCHECK_EQ(FormatOf(Opcode()), k10t); + return static_cast(InstAA()); +} + +inline uint8_t Instruction::VRegA_10x() const { + DCHECK_EQ(FormatOf(Opcode()), k10x); + return InstAA(); +} + +inline uint4_t Instruction::VRegA_11n() const { + DCHECK_EQ(FormatOf(Opcode()), k11n); + return InstA(); +} + +inline uint8_t Instruction::VRegA_11x() const { + DCHECK_EQ(FormatOf(Opcode()), k11x); + return InstAA(); +} + +inline uint4_t Instruction::VRegA_12x() const { + DCHECK_EQ(FormatOf(Opcode()), k12x); + return InstA(); +} + +inline int16_t Instruction::VRegA_20t() const { + DCHECK_EQ(FormatOf(Opcode()), k20t); + return static_cast(Fetch16(1)); +} + +inline uint8_t Instruction::VRegA_21c() const { + DCHECK_EQ(FormatOf(Opcode()), k21c); + return InstAA(); +} + +inline uint8_t Instruction::VRegA_21h() const { + DCHECK_EQ(FormatOf(Opcode()), k21h); + return InstAA(); +} + +inline uint8_t Instruction::VRegA_21s() const { + DCHECK_EQ(FormatOf(Opcode()), k21s); + return InstAA(); +} + +inline uint8_t Instruction::VRegA_21t() const { + DCHECK_EQ(FormatOf(Opcode()), k21t); + return InstAA(); +} + +inline uint8_t Instruction::VRegA_22b() const { + DCHECK_EQ(FormatOf(Opcode()), k22b); + return InstAA(); +} + +inline uint4_t Instruction::VRegA_22c() const { + DCHECK_EQ(FormatOf(Opcode()), k22c); + return InstA(); +} + +inline uint4_t Instruction::VRegA_22s() const { + DCHECK_EQ(FormatOf(Opcode()), k22s); + return InstA(); +} + +inline uint4_t Instruction::VRegA_22t() const { + DCHECK_EQ(FormatOf(Opcode()), k22t); + return InstA(); +} + +inline uint8_t Instruction::VRegA_22x() const { + DCHECK_EQ(FormatOf(Opcode()), k22x); + return InstAA(); +} + +inline uint8_t Instruction::VRegA_23x() const { + DCHECK_EQ(FormatOf(Opcode()), k23x); + return InstAA(); +} + +inline int32_t Instruction::VRegA_30t() const { + DCHECK_EQ(FormatOf(Opcode()), k30t); + return static_cast(Fetch32(1)); +} + +inline uint8_t Instruction::VRegA_31c() const { + DCHECK_EQ(FormatOf(Opcode()), k31c); + return InstAA(); +} + +inline uint8_t Instruction::VRegA_31i() const { + DCHECK_EQ(FormatOf(Opcode()), k31i); + return InstAA(); +} + +inline uint8_t Instruction::VRegA_31t() const { + DCHECK_EQ(FormatOf(Opcode()), k31t); + return InstAA(); +} + +inline uint16_t Instruction::VRegA_32x() const { + DCHECK_EQ(FormatOf(Opcode()), k32x); + return Fetch16(1); +} + +inline uint4_t Instruction::VRegA_35c() const { + DCHECK_EQ(FormatOf(Opcode()), k35c); + return InstB(); // This is labeled A in the spec. +} + +inline uint8_t Instruction::VRegA_3rc() const { + DCHECK_EQ(FormatOf(Opcode()), k3rc); + return InstAA(); +} + +inline uint8_t Instruction::VRegA_51l() const { + DCHECK_EQ(FormatOf(Opcode()), k51l); + return InstAA(); +} + +//------------------------------------------------------------------------------ +// VRegB +//------------------------------------------------------------------------------ +inline int4_t Instruction::VRegB_11n() const { + DCHECK_EQ(FormatOf(Opcode()), k11n); + return static_cast((InstB() << 28) >> 28); +} + +inline uint4_t Instruction::VRegB_12x() const { + DCHECK_EQ(FormatOf(Opcode()), k12x); + return InstB(); +} + +inline uint16_t Instruction::VRegB_21c() const { + DCHECK_EQ(FormatOf(Opcode()), k21c); + return Fetch16(1); +} + +inline uint16_t Instruction::VRegB_21h() const { + DCHECK_EQ(FormatOf(Opcode()), k21h); + return Fetch16(1); +} + +inline int16_t Instruction::VRegB_21s() const { + DCHECK_EQ(FormatOf(Opcode()), k21s); + return static_cast(Fetch16(1)); +} + +inline int16_t Instruction::VRegB_21t() const { + DCHECK_EQ(FormatOf(Opcode()), k21t); + return static_cast(Fetch16(1)); +} + +inline uint8_t Instruction::VRegB_22b() const { + DCHECK_EQ(FormatOf(Opcode()), k22b); + return static_cast(Fetch16(1) & 0xff); +} + +inline uint4_t Instruction::VRegB_22c() const { + DCHECK_EQ(FormatOf(Opcode()), k22c); + return InstB(); +} + +inline uint4_t Instruction::VRegB_22s() const { + DCHECK_EQ(FormatOf(Opcode()), k22s); + return InstB(); +} + +inline uint4_t Instruction::VRegB_22t() const { + DCHECK_EQ(FormatOf(Opcode()), k22t); + return InstB(); +} + +inline uint16_t Instruction::VRegB_22x() const { + DCHECK_EQ(FormatOf(Opcode()), k22x); + return Fetch16(1); +} + +inline uint8_t Instruction::VRegB_23x() const { + DCHECK_EQ(FormatOf(Opcode()), k23x); + return static_cast(Fetch16(1) & 0xff); +} + +inline uint32_t Instruction::VRegB_31c() const { + DCHECK_EQ(FormatOf(Opcode()), k31c); + return Fetch32(1); +} + +inline int32_t Instruction::VRegB_31i() const { + DCHECK_EQ(FormatOf(Opcode()), k31i); + return static_cast(Fetch32(1)); +} + +inline int32_t Instruction::VRegB_31t() const { + DCHECK_EQ(FormatOf(Opcode()), k31t); + return static_cast(Fetch32(1)); +} + +inline uint16_t Instruction::VRegB_32x() const { + DCHECK_EQ(FormatOf(Opcode()), k32x); + return Fetch16(2); +} + +inline uint16_t Instruction::VRegB_35c() const { + DCHECK_EQ(FormatOf(Opcode()), k35c); + return Fetch16(1); +} + +inline uint16_t Instruction::VRegB_3rc() const { + DCHECK_EQ(FormatOf(Opcode()), k3rc); + return Fetch16(1); +} + +inline uint64_t Instruction::VRegB_51l() const { + DCHECK_EQ(FormatOf(Opcode()), k51l); + uint64_t vB_wide = Fetch32(1) | ((uint64_t) Fetch32(3) << 32); + return vB_wide; +} + +//------------------------------------------------------------------------------ +// VRegC +//------------------------------------------------------------------------------ +inline int8_t Instruction::VRegC_22b() const { + DCHECK_EQ(FormatOf(Opcode()), k22b); + return static_cast(Fetch16(1) >> 8); +} + +inline uint16_t Instruction::VRegC_22c() const { + DCHECK_EQ(FormatOf(Opcode()), k22c); + return Fetch16(1); +} + +inline int16_t Instruction::VRegC_22s() const { + DCHECK_EQ(FormatOf(Opcode()), k22s); + return static_cast(Fetch16(1)); +} + +inline int16_t Instruction::VRegC_22t() const { + DCHECK_EQ(FormatOf(Opcode()), k22t); + return static_cast(Fetch16(1)); +} + +inline uint8_t Instruction::VRegC_23x() const { + DCHECK_EQ(FormatOf(Opcode()), k23x); + return static_cast(Fetch16(1) >> 8); +} + +inline uint4_t Instruction::VRegC_35c() const { + DCHECK_EQ(FormatOf(Opcode()), k35c); + return static_cast(Fetch16(2) & 0x0f); +} + +inline uint16_t Instruction::VRegC_3rc() const { + DCHECK_EQ(FormatOf(Opcode()), k3rc); + return Fetch16(2); +} + +inline void Instruction::GetArgs(uint32_t arg[5]) const { + DCHECK_EQ(FormatOf(Opcode()), k35c); + + /* + * Note that the fields mentioned in the spec don't appear in + * their "usual" positions here compared to most formats. This + * was done so that the field names for the argument count and + * reference index match between this format and the corresponding + * range formats (3rc and friends). + * + * Bottom line: The argument count is always in vA, and the + * method constant (or equivalent) is always in vB. + */ + uint16_t regList = Fetch16(2); + uint4_t count = InstB(); // This is labeled A in the spec. + + /* + * Copy the argument registers into the arg[] array, and + * also copy the first argument (if any) into vC. (The + * DecodedInstruction structure doesn't have separate + * fields for {vD, vE, vF, vG}, so there's no need to make + * copies of those.) Note that cases 5..2 fall through. + */ + switch (count) { + case 5: arg[4] = InstA(); + case 4: arg[3] = (regList >> 12) & 0x0f; + case 3: arg[2] = (regList >> 8) & 0x0f; + case 2: arg[1] = (regList >> 4) & 0x0f; + case 1: arg[0] = regList & 0x0f; break; + case 0: break; // Valid, but no need to do anything. + default: + LOG(ERROR) << "Invalid arg count in 35c (" << count << ")"; + return; + } +} + +} // namespace art + +#endif // ART_SRC_DEX_INSTRUCTION_INL_H_ -- cgit v1.2.3