| /* |
| * Copyright (C) 2015 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_SIMULATOR_CODE_SIMULATOR_ARM64_H_ |
| #define ART_SIMULATOR_CODE_SIMULATOR_ARM64_H_ |
| |
| #include "memory" |
| |
| #include "aarch64/disasm-aarch64.h" |
| #include "aarch64/macro-assembler-aarch64.h" |
| #include "aarch64/simulator-aarch64.h" |
| |
| #include "arch/instruction_set.h" |
| #include "code_simulator.h" |
| #include "entrypoints/quick/quick_entrypoints.h" |
| |
| namespace art { |
| namespace arm64 { |
| |
| class ARTSimulator; |
| |
| class BasicCodeSimulatorArm64 : public BasicCodeSimulator { |
| public: |
| virtual ~BasicCodeSimulatorArm64() {} |
| static BasicCodeSimulatorArm64* CreateBasicCodeSimulatorArm64(size_t stack_size); |
| |
| void RunFrom(intptr_t code_buffer) override; |
| |
| bool GetCReturnBool() const override; |
| int32_t GetCReturnInt32() const override; |
| int64_t GetCReturnInt64() const override; |
| |
| protected: |
| BasicCodeSimulatorArm64(); |
| void InitInstructionSimulator(size_t stack_size); |
| |
| std::unique_ptr<vixl::aarch64::Decoder> decoder_; |
| std::unique_ptr<vixl::aarch64::Simulator> instruction_simulator_; |
| |
| private: |
| virtual vixl::aarch64::Simulator* CreateNewInstructionSimulator( |
| vixl::aarch64::SimStack::Allocated&& stack); |
| |
| DISALLOW_COPY_AND_ASSIGN(BasicCodeSimulatorArm64); |
| }; |
| |
| #ifdef ART_USE_SIMULATOR |
| |
| class CodeSimulatorArm64 : public CodeSimulator, public BasicCodeSimulatorArm64 { |
| public: |
| static CodeSimulatorArm64* CreateCodeSimulatorArm64(size_t stack_size); |
| |
| void Invoke(ArtMethod* method, |
| uint32_t* args, |
| uint32_t args_size, |
| Thread* self, |
| JValue* result, |
| const char* shorty, |
| bool isStatic) override REQUIRES_SHARED(Locks::mutator_lock_); |
| |
| int64_t GetStackPointer() override; |
| uint8_t* GetStackBaseInternal() override; |
| uintptr_t GetPc() override; |
| |
| bool HandleNullPointer(int sig, siginfo_t* siginfo, void* context) override |
| NO_THREAD_SAFETY_ANALYSIS; |
| |
| private: |
| CodeSimulatorArm64(); |
| vixl::aarch64::Simulator* CreateNewInstructionSimulator( |
| vixl::aarch64::SimStack::Allocated&& stack) override; |
| |
| ARTSimulator* GetSimulator(); |
| |
| DISALLOW_COPY_AND_ASSIGN(CodeSimulatorArm64); |
| }; |
| |
| #endif |
| |
| } // namespace arm64 |
| } // namespace art |
| |
| #endif // ART_SIMULATOR_CODE_SIMULATOR_ARM64_H_ |