13ef787dbeca8a5fb1086949cda830dccee07bfbdBen Murdoch// Copyright 2012 the V8 project authors. All rights reserved.
2a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// Redistribution and use in source and binary forms, with or without
3a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// modification, are permitted provided that the following conditions are
4a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// met:
5a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//
6a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//     * Redistributions of source code must retain the above copyright
7a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//       notice, this list of conditions and the following disclaimer.
8a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//     * Redistributions in binary form must reproduce the above
9a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//       copyright notice, this list of conditions and the following
10a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//       disclaimer in the documentation and/or other materials provided
11a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//       with the distribution.
12a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//     * Neither the name of Google Inc. nor the names of its
13a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//       contributors may be used to endorse or promote products derived
14a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//       from this software without specific prior written permission.
15a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block//
16a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
28a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block// CPU specific code for x64 independent of OS goes here.
29a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
303ef787dbeca8a5fb1086949cda830dccee07bfbdBen Murdoch#if defined(__GNUC__) && !defined(__MINGW64__)
31d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block#include "third_party/valgrind/valgrind.h"
32d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block#endif
33d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block
34a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block#include "v8.h"
35a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
36f7060e27768c550ace7ec48ad8c093466db52dfaLeon Clarke#if defined(V8_TARGET_ARCH_X64)
37f7060e27768c550ace7ec48ad8c093466db52dfaLeon Clarke
38a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block#include "cpu.h"
39a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block#include "macro-assembler.h"
40a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
41a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Blocknamespace v8 {
42a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Blocknamespace internal {
43a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
443ef787dbeca8a5fb1086949cda830dccee07bfbdBen Murdochvoid CPU::SetUp() {
458b112d2025046f85ef7f6be087c6129c872ebad2Ben Murdoch  CpuFeatures::Probe();
468b112d2025046f85ef7f6be087c6129c872ebad2Ben Murdoch}
478b112d2025046f85ef7f6be087c6129c872ebad2Ben Murdoch
488b112d2025046f85ef7f6be087c6129c872ebad2Ben Murdoch
498b112d2025046f85ef7f6be087c6129c872ebad2Ben Murdochbool CPU::SupportsCrankshaft() {
508b112d2025046f85ef7f6be087c6129c872ebad2Ben Murdoch  return true;  // Yay!
51a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block}
52a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
53a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
54a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Blockvoid CPU::FlushICache(void* start, size_t size) {
55a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // No need to flush the instruction cache on Intel. On Intel instruction
56a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // cache flushing is only necessary when multiple cores running the same
57a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // code simultaneously. V8 (and JavaScript) is single threaded and when code
58a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // is patched on an intel CPU the core performing the patching will have its
59a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // own instruction cache updated automatically.
60a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
61a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // If flushing of the instruction cache becomes necessary Windows has the
62a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // API function FlushInstructionCache.
63d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block
64d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block  // By default, valgrind only checks the stack for writes that might need to
65d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block  // invalidate already cached translated code.  This leads to random
66d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block  // instability when code patches or moves are sometimes unnoticed.  One
67d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block  // solution is to run valgrind with --smc-check=all, but this comes at a big
68d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block  // performance cost.  We can notify valgrind to invalidate its cache.
69d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block#ifdef VALGRIND_DISCARD_TRANSLATIONS
703fb3ca8c7ca439d408449a395897395c0faae8d1Ben Murdoch  unsigned res = VALGRIND_DISCARD_TRANSLATIONS(start, size);
713fb3ca8c7ca439d408449a395897395c0faae8d1Ben Murdoch  USE(res);
72d0582a6c46733687d045e4188a1bcd0123c758a1Steve Block#endif
73a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block}
74a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
75a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
76a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Blockvoid CPU::DebugBreak() {
77a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block#ifdef _MSC_VER
78a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // To avoid Visual Studio runtime support the following code can be used
79a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // instead
80a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  // __asm { int 3 }
81a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  __debugbreak();
82a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block#else
83a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block  asm("int $3");
84a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block#endif
85a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block}
86a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block
87a7e24c173cf37484693b9abb38e494fa7bd7baebSteve Block} }  // namespace v8::internal
88f7060e27768c550ace7ec48ad8c093466db52dfaLeon Clarke
89f7060e27768c550ace7ec48ad8c093466db52dfaLeon Clarke#endif  // V8_TARGET_ARCH_X64
90