v8  3.25.30(node0.11.13)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cpu-arm.cc
Go to the documentation of this file.
1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
27 
28 // CPU specific code for arm independent of OS goes here.
29 #ifdef __arm__
30 #ifdef __QNXNTO__
31 #include <sys/mman.h> // for cache flushing.
32 #undef MAP_TYPE
33 #else
34 #include <sys/syscall.h> // for cache flushing.
35 #endif
36 #endif
37 
38 #include "v8.h"
39 
40 #if V8_TARGET_ARCH_ARM
41 
42 #include "cpu.h"
43 #include "macro-assembler.h"
44 #include "simulator.h" // for cache flushing.
45 
46 namespace v8 {
47 namespace internal {
48 
49 void CPU::SetUp() {
51 }
52 
53 
54 bool CPU::SupportsCrankshaft() {
56 }
57 
58 
59 void CPU::FlushICache(void* start, size_t size) {
60  // Nothing to do flushing no instructions.
61  if (size == 0) {
62  return;
63  }
64 
65 #if defined(USE_SIMULATOR)
66  // Not generating ARM instructions for C-code. This means that we are
67  // building an ARM emulator based target. We should notify the simulator
68  // that the Icache was flushed.
69  // None of this code ends up in the snapshot so there are no issues
70  // around whether or not to generate the code when building snapshots.
71  Simulator::FlushICache(Isolate::Current()->simulator_i_cache(), start, size);
72 #elif V8_OS_QNX
73  msync(start, size, MS_SYNC | MS_INVALIDATE_ICACHE);
74 #else
75  // Ideally, we would call
76  // syscall(__ARM_NR_cacheflush, start,
77  // reinterpret_cast<intptr_t>(start) + size, 0);
78  // however, syscall(int, ...) is not supported on all platforms, especially
79  // not when using EABI, so we call the __ARM_NR_cacheflush syscall directly.
80 
81  register uint32_t beg asm("a1") = reinterpret_cast<uint32_t>(start);
82  register uint32_t end asm("a2") =
83  reinterpret_cast<uint32_t>(start) + size;
84  register uint32_t flg asm("a3") = 0;
85  #if defined (__arm__) && !defined(__thumb__)
86  // __arm__ may be defined in thumb mode.
87  register uint32_t scno asm("r7") = __ARM_NR_cacheflush;
88  asm volatile(
89  "svc 0x0"
90  : "=r" (beg)
91  : "0" (beg), "r" (end), "r" (flg), "r" (scno));
92  #else
93  // r7 is reserved by the EABI in thumb mode.
94  asm volatile(
95  "@ Enter ARM Mode \n\t"
96  "adr r3, 1f \n\t"
97  "bx r3 \n\t"
98  ".ALIGN 4 \n\t"
99  ".ARM \n"
100  "1: push {r7} \n\t"
101  "mov r7, %4 \n\t"
102  "svc 0x0 \n\t"
103  "pop {r7} \n\t"
104  "@ Enter THUMB Mode\n\t"
105  "adr r3, 2f+1 \n\t"
106  "bx r3 \n\t"
107  ".THUMB \n"
108  "2: \n\t"
109  : "=r" (beg)
110  : "0" (beg), "r" (end), "r" (flg), "r" (__ARM_NR_cacheflush)
111  : "r3");
112  #endif
113 #endif
114 }
115 
116 } } // namespace v8::internal
117 
118 #endif // V8_TARGET_ARCH_ARM
static bool IsSupported(CpuFeature f)
Definition: assembler-arm.h:68
enable upcoming ES6 features enable harmony block scoping enable harmony enable harmony proxies enable harmony generators enable harmony numeric enable harmony string enable harmony math functions harmony_scoping harmony_symbols harmony_collections harmony_iteration harmony_strings harmony_scoping harmony_maths tracks arrays with only smi values Optimize object size
Definition: flags.cc:211