| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| 11 // with the distribution. | 11 // with the distribution. |
| 12 // * Neither the name of Google Inc. nor the names of its | 12 // * Neither the name of Google Inc. nor the names of its |
| 13 // contributors may be used to endorse or promote products derived | 13 // contributors may be used to endorse or promote products derived |
| 14 // from this software without specific prior written permission. | 14 // from this software without specific prior written permission. |
| 15 // | 15 // |
| 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #ifndef V8_A64_CPU_A64_H_ | 28 #ifndef V8_ARM64_CPU_ARM64_H_ |
| 29 #define V8_A64_CPU_A64_H_ | 29 #define V8_ARM64_CPU_ARM64_H_ |
| 30 | 30 |
| 31 #include <stdio.h> | 31 #include <stdio.h> |
| 32 #include "serialize.h" | 32 #include "serialize.h" |
| 33 #include "cpu.h" | 33 #include "cpu.h" |
| 34 | 34 |
| 35 namespace v8 { | 35 namespace v8 { |
| 36 namespace internal { | 36 namespace internal { |
| 37 | 37 |
| 38 | 38 |
| 39 // CpuFeatures keeps track of which features are supported by the target CPU. | 39 // CpuFeatures keeps track of which features are supported by the target CPU. |
| 40 // Supported features must be enabled by a CpuFeatureScope before use. | 40 // Supported features must be enabled by a CpuFeatureScope before use. |
| 41 class CpuFeatures : public AllStatic { | 41 class CpuFeatures : public AllStatic { |
| 42 public: | 42 public: |
| 43 // Detect features of the target CPU. Set safe defaults if the serializer | 43 // Detect features of the target CPU. Set safe defaults if the serializer |
| 44 // is enabled (snapshots must be portable). | 44 // is enabled (snapshots must be portable). |
| 45 static void Probe(); | 45 static void Probe(); |
| 46 | 46 |
| 47 // Check whether a feature is supported by the target CPU. | 47 // Check whether a feature is supported by the target CPU. |
| 48 static bool IsSupported(CpuFeature f) { | 48 static bool IsSupported(CpuFeature f) { |
| 49 ASSERT(initialized_); | 49 ASSERT(initialized_); |
| 50 // There are no optional features for A64. | 50 // There are no optional features for ARM64. |
| 51 return false; | 51 return false; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 static bool IsFoundByRuntimeProbingOnly(CpuFeature f) { | 54 static bool IsFoundByRuntimeProbingOnly(CpuFeature f) { |
| 55 ASSERT(initialized_); | 55 ASSERT(initialized_); |
| 56 // There are no optional features for A64. | 56 // There are no optional features for ARM64. |
| 57 return false; | 57 return false; |
| 58 } | 58 } |
| 59 | 59 |
| 60 static bool IsSafeForSnapshot(CpuFeature f) { | 60 static bool IsSafeForSnapshot(CpuFeature f) { |
| 61 return (IsSupported(f) && | 61 return (IsSupported(f) && |
| 62 (!Serializer::enabled() || !IsFoundByRuntimeProbingOnly(f))); | 62 (!Serializer::enabled() || !IsFoundByRuntimeProbingOnly(f))); |
| 63 } | 63 } |
| 64 | 64 |
| 65 // I and D cache line size in bytes. | 65 // I and D cache line size in bytes. |
| 66 static unsigned dcache_line_size(); | 66 static unsigned dcache_line_size(); |
| 67 static unsigned icache_line_size(); | 67 static unsigned icache_line_size(); |
| 68 | 68 |
| 69 static unsigned supported_; | 69 static unsigned supported_; |
| 70 | 70 |
| 71 static bool VerifyCrossCompiling() { | 71 static bool VerifyCrossCompiling() { |
| 72 // There are no optional features for A64. | 72 // There are no optional features for ARM64. |
| 73 ASSERT(cross_compile_ == 0); | 73 ASSERT(cross_compile_ == 0); |
| 74 return true; | 74 return true; |
| 75 } | 75 } |
| 76 | 76 |
| 77 static bool VerifyCrossCompiling(CpuFeature f) { | 77 static bool VerifyCrossCompiling(CpuFeature f) { |
| 78 // There are no optional features for A64. | 78 // There are no optional features for ARM64. |
| 79 USE(f); | 79 USE(f); |
| 80 ASSERT(cross_compile_ == 0); | 80 ASSERT(cross_compile_ == 0); |
| 81 return true; | 81 return true; |
| 82 } | 82 } |
| 83 | 83 |
| 84 private: | 84 private: |
| 85 // Return the content of the cache type register. | 85 // Return the content of the cache type register. |
| 86 static uint32_t GetCacheType(); | 86 static uint32_t GetCacheType(); |
| 87 | 87 |
| 88 // I and D cache line size in bytes. | 88 // I and D cache line size in bytes. |
| 89 static unsigned icache_line_size_; | 89 static unsigned icache_line_size_; |
| 90 static unsigned dcache_line_size_; | 90 static unsigned dcache_line_size_; |
| 91 | 91 |
| 92 #ifdef DEBUG | 92 #ifdef DEBUG |
| 93 static bool initialized_; | 93 static bool initialized_; |
| 94 #endif | 94 #endif |
| 95 | 95 |
| 96 // This isn't used (and is always 0), but it is required by V8. | 96 // This isn't used (and is always 0), but it is required by V8. |
| 97 static unsigned found_by_runtime_probing_only_; | 97 static unsigned found_by_runtime_probing_only_; |
| 98 | 98 |
| 99 static unsigned cross_compile_; | 99 static unsigned cross_compile_; |
| 100 | 100 |
| 101 friend class PlatformFeatureScope; | 101 friend class PlatformFeatureScope; |
| 102 DISALLOW_COPY_AND_ASSIGN(CpuFeatures); | 102 DISALLOW_COPY_AND_ASSIGN(CpuFeatures); |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 } } // namespace v8::internal | 105 } } // namespace v8::internal |
| 106 | 106 |
| 107 #endif // V8_A64_CPU_A64_H_ | 107 #endif // V8_ARM64_CPU_ARM64_H_ |
| OLD | NEW |