| Index: src/mips64/simulator-mips64.cc
|
| diff --git a/src/mips64/simulator-mips64.cc b/src/mips64/simulator-mips64.cc
|
| index 4a7fd7c10f27895bbdb7d13ba22dc7a0d8400f0b..ed3cf3563b66c84dd4476384df96d65c56035358 100644
|
| --- a/src/mips64/simulator-mips64.cc
|
| +++ b/src/mips64/simulator-mips64.cc
|
| @@ -519,7 +519,7 @@ void MipsDebugger::Debug() {
|
| reinterpret_cast<intptr_t>(cur), *cur, *cur);
|
| HeapObject* obj = reinterpret_cast<HeapObject*>(*cur);
|
| int64_t value = *cur;
|
| - Heap* current_heap = v8::internal::Isolate::Current()->heap();
|
| + Heap* current_heap = sim_->isolate_->heap();
|
| if (((value & 1) == 0) || current_heap->Contains(obj)) {
|
| PrintF(" (");
|
| if ((value & 1) == 0) {
|
| @@ -926,12 +926,12 @@ Simulator::~Simulator() { free(stack_); }
|
| // offset from the swi instruction so the simulator knows what to call.
|
| class Redirection {
|
| public:
|
| - Redirection(void* external_function, ExternalReference::Type type)
|
| + Redirection(Isolate* isolate, void* external_function,
|
| + ExternalReference::Type type)
|
| : external_function_(external_function),
|
| swi_instruction_(rtCallRedirInstr),
|
| type_(type),
|
| next_(NULL) {
|
| - Isolate* isolate = Isolate::Current();
|
| next_ = isolate->simulator_redirection();
|
| Simulator::current(isolate)->
|
| FlushICache(isolate->simulator_i_cache(),
|
| @@ -947,14 +947,13 @@ class Redirection {
|
| void* external_function() { return external_function_; }
|
| ExternalReference::Type type() { return type_; }
|
|
|
| - static Redirection* Get(void* external_function,
|
| + static Redirection* Get(Isolate* isolate, void* external_function,
|
| ExternalReference::Type type) {
|
| - Isolate* isolate = Isolate::Current();
|
| Redirection* current = isolate->simulator_redirection();
|
| for (; current != NULL; current = current->next_) {
|
| if (current->external_function_ == external_function) return current;
|
| }
|
| - return new Redirection(external_function, type);
|
| + return new Redirection(isolate, external_function, type);
|
| }
|
|
|
| static Redirection* FromSwiInstruction(Instruction* swi_instruction) {
|
| @@ -999,9 +998,10 @@ void Simulator::TearDown(HashMap* i_cache, Redirection* first) {
|
| }
|
|
|
|
|
| -void* Simulator::RedirectExternalReference(void* external_function,
|
| +void* Simulator::RedirectExternalReference(Isolate* isolate,
|
| + void* external_function,
|
| ExternalReference::Type type) {
|
| - Redirection* redirection = Redirection::Get(external_function, type);
|
| + Redirection* redirection = Redirection::Get(isolate, external_function, type);
|
| return redirection->address_of_swi_instruction();
|
| }
|
|
|
|
|