7588ed86de
Change-Id: Ief167b7ffc128105a03cc225ab750234c9a6a7a0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/169147 Commit-Queue: Alexander Markov <alexmarkov@google.com> Reviewed-by: Régis Crelier <regis@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com>
153 lines
4.3 KiB
C++
153 lines
4.3 KiB
C++
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_VM_COMPILER_COMPILER_STATE_H_
|
|
#define RUNTIME_VM_COMPILER_COMPILER_STATE_H_
|
|
|
|
#if defined(DART_PRECOMPILED_RUNTIME)
|
|
#error "AOT runtime should not use compiler sources (including header files)"
|
|
#endif // defined(DART_PRECOMPILED_RUNTIME)
|
|
|
|
#include "vm/compiler/api/deopt_id.h"
|
|
#include "vm/compiler/cha.h"
|
|
#include "vm/heap/safepoint.h"
|
|
#include "vm/thread.h"
|
|
|
|
namespace dart {
|
|
|
|
class Function;
|
|
class LocalScope;
|
|
class LocalVariable;
|
|
class SlotCache;
|
|
class Slot;
|
|
|
|
enum class CompilerTracing {
|
|
kOn,
|
|
kOff,
|
|
};
|
|
|
|
// Global compiler state attached to the thread.
|
|
class CompilerState : public ThreadStackResource {
|
|
public:
|
|
CompilerState(Thread* thread,
|
|
bool is_aot,
|
|
CompilerTracing tracing = CompilerTracing::kOn)
|
|
: ThreadStackResource(thread),
|
|
cha_(thread),
|
|
is_aot_(is_aot),
|
|
tracing_(tracing) {
|
|
previous_ = thread->SetCompilerState(this);
|
|
}
|
|
|
|
~CompilerState() {
|
|
ASSERT(&thread()->compiler_state() == this);
|
|
thread()->SetCompilerState(previous_);
|
|
}
|
|
|
|
CHA& cha() { return cha_; }
|
|
|
|
intptr_t deopt_id() const { return deopt_id_; }
|
|
void set_deopt_id(int value) {
|
|
ASSERT(value >= 0);
|
|
deopt_id_ = value;
|
|
}
|
|
|
|
intptr_t GetNextDeoptId() {
|
|
ASSERT(deopt_id_ != DeoptId::kNone);
|
|
const intptr_t id = deopt_id_;
|
|
deopt_id_ = DeoptId::Next(deopt_id_);
|
|
return id;
|
|
}
|
|
|
|
static CompilerState& Current() {
|
|
return Thread::Current()->compiler_state();
|
|
}
|
|
|
|
SlotCache* slot_cache() const { return slot_cache_; }
|
|
void set_slot_cache(SlotCache* cache) { slot_cache_ = cache; }
|
|
|
|
// Create a dummy list of local variables representing a context object
|
|
// with the given number of captured variables and given ID.
|
|
const ZoneGrowableArray<const Slot*>& GetDummyContextSlots(
|
|
intptr_t context_id,
|
|
intptr_t num_context_slots);
|
|
|
|
// Create a dummy LocalVariable that represents a captured local variable
|
|
// at the given index in the context with given ID.
|
|
//
|
|
// This function returns the same variable when it is called with the
|
|
// same index.
|
|
LocalVariable* GetDummyCapturedVariable(intptr_t context_id, intptr_t index);
|
|
|
|
bool is_aot() const { return is_aot_; }
|
|
|
|
bool should_trace() const { return tracing_ == CompilerTracing::kOn; }
|
|
|
|
static bool ShouldTrace() { return Current().should_trace(); }
|
|
|
|
static CompilerTracing ShouldTrace(const Function& func);
|
|
|
|
// Returns class Comparable<T> from dart:core.
|
|
const Class& ComparableClass();
|
|
|
|
private:
|
|
CHA cha_;
|
|
intptr_t deopt_id_ = 0;
|
|
|
|
// Cache for Slot objects created during compilation (see slot.h).
|
|
SlotCache* slot_cache_ = nullptr;
|
|
|
|
// Caches for dummy LocalVariables and context Slots.
|
|
ZoneGrowableArray<ZoneGrowableArray<const Slot*>*>* dummy_slots_ = nullptr;
|
|
ZoneGrowableArray<LocalVariable*>* dummy_captured_vars_ = nullptr;
|
|
|
|
const bool is_aot_;
|
|
|
|
const CompilerTracing tracing_;
|
|
|
|
// Lookup cache for various classes (to avoid polluting object store with
|
|
// compiler specific classes).
|
|
const Class* comparable_class_ = nullptr;
|
|
|
|
CompilerState* previous_;
|
|
};
|
|
|
|
class DeoptIdScope : public ThreadStackResource {
|
|
public:
|
|
DeoptIdScope(Thread* thread, intptr_t deopt_id)
|
|
: ThreadStackResource(thread),
|
|
prev_deopt_id_(thread->compiler_state().deopt_id()) {
|
|
thread->compiler_state().set_deopt_id(deopt_id);
|
|
}
|
|
|
|
~DeoptIdScope() { thread()->compiler_state().set_deopt_id(prev_deopt_id_); }
|
|
|
|
private:
|
|
const intptr_t prev_deopt_id_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DeoptIdScope);
|
|
};
|
|
|
|
/// Ensures that there were no deopt id allocations during the lifetime of this
|
|
/// object.
|
|
class AssertNoDeoptIdsAllocatedScope : public ThreadStackResource {
|
|
public:
|
|
explicit AssertNoDeoptIdsAllocatedScope(Thread* thread)
|
|
: ThreadStackResource(thread),
|
|
prev_deopt_id_(thread->compiler_state().deopt_id()) {}
|
|
|
|
~AssertNoDeoptIdsAllocatedScope() {
|
|
ASSERT(thread()->compiler_state().deopt_id() == prev_deopt_id_);
|
|
}
|
|
|
|
private:
|
|
const intptr_t prev_deopt_id_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AssertNoDeoptIdsAllocatedScope);
|
|
};
|
|
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_VM_COMPILER_COMPILER_STATE_H_
|