V8 API Reference, 7.2.502.16 (for Deno 0.2.4)
Main Page
Related Pages
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
c
d
g
i
k
n
p
r
s
t
Functions
Typedefs
Enumerations
Enumerator
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
a
c
d
e
h
k
l
n
o
s
Typedefs
Enumerations
+
Files
File List
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Pages
cpu-s390.cc
1
// Copyright 2015 the V8 project authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
// CPU specific code for s390 independent of OS goes here.
6
#include "src/v8.h"
7
8
#if V8_TARGET_ARCH_S390
9
#include "src/assembler.h"
10
11
namespace
v8
{
12
namespace
internal {
13
14
void
CpuFeatures::FlushICache(
void
* buffer,
size_t
size) {
15
// Given the strong memory model on z/Architecture, and the single
16
// thread nature of V8 and JavaScript, instruction cache flushing
17
// is not necessary. The architecture guarantees that if a core
18
// patches its own instruction cache, the updated instructions will be
19
// reflected automatically.
20
}
21
22
}
// namespace internal
23
}
// namespace v8
24
25
#endif // V8_TARGET_ARCH_S390
v8
Definition:
libplatform.h:13
v8
src
s390
cpu-s390.cc
Generated on Tue Dec 25 2018 14:39:47 by
1.8.14