Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Side by Side Diff: src/s390/cpu-s390.cc

Issue 1725243004: S390: Initial impl of S390 asm, masm, code-stubs,... (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated BUILD.gn + cpu-s390.cc to addr @jochen's comments. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698