Chromium Code Reviews| Index: src/assembler.cc |
| diff --git a/src/assembler.cc b/src/assembler.cc |
| index aabc64ba5c71ba8ef6f5bcc1c991666c787d6ab7..e2e10248946577fba6c0663d0b9773e967e5b70f 100644 |
| --- a/src/assembler.cc |
| +++ b/src/assembler.cc |
| @@ -54,6 +54,7 @@ |
| #include "src/regexp/regexp-macro-assembler.h" |
| #include "src/regexp/regexp-stack.h" |
| #include "src/runtime/runtime.h" |
| +#include "src/simulator.h" // For flushing instruction cache. |
| #include "src/snapshot/serialize.h" |
| #include "src/token.h" |
| @@ -155,6 +156,31 @@ AssemblerBase::~AssemblerBase() { |
| } |
| +void AssemblerBase::FlushICache(Isolate* isolate, void* start, size_t size) { |
| + if (size == 0) return; |
| + if (CpuFeatures::IsSupported(COHERENT_CACHE)) return; |
| + |
| +#if defined(USE_SIMULATOR) |
| + Simulator::FlushICache(isolate->simulator_i_cache(), start, size); |
| +#else |
| + CpuFeatures::FlushICache(start, size); |
| +#endif // USE_SIMULATOR |
| +} |
| + |
| + |
| +void AssemblerBase::FlushICacheWithoutIsolate(void* start, size_t size) { |
| + // Ideally we would just call Isolate::Current() here. However, this flushes |
| + // out issues because we usually only need the isolate when in the simulator. |
|
Michael Lippautz
2015/09/11 11:10:09
I think this is unfortunate but apparently we alre
|
| + Isolate* isolate; |
| +#if defined(USE_SIMULATOR) |
| + isolate = Isolate::Current(); |
| +#else |
| + isolate = nullptr; |
| +#endif // USE_SIMULATOR |
| + FlushICache(isolate, start, size); |
| +} |
| + |
| + |
| // ----------------------------------------------------------------------------- |
| // Implementation of PredictableCodeSizeScope |
| @@ -1024,7 +1050,7 @@ ExternalReference ExternalReference:: |
| ExternalReference ExternalReference::flush_icache_function(Isolate* isolate) { |
| return ExternalReference( |
| - Redirect(isolate, FUNCTION_ADDR(CpuFeatures::FlushICache))); |
| + Redirect(isolate, FUNCTION_ADDR(Assembler::FlushICacheWithoutIsolate))); |
| } |