#ifndef V8_OBJECTS_COMPILATION_CACHE_TABLE_INL_H_
#define V8_OBJECTS_COMPILATION_CACHE_TABLE_INL_H_
#include "src/objects/compilation-cache-table.h"
#include <optional>
#include "src/objects/name-inl.h"
#include "src/objects/script-inl.h"
#include "src/objects/shared-function-info.h"
#include "src/objects/smi.h"
#include "src/objects/string.h"
#include "src/objects/object-macros.h"
namespace v8::internal {
Tagged<Object> CompilationCacheTable::PrimaryValueAt(InternalIndex entry) {
return get(EntryToIndex(entry) + 1);
}
void CompilationCacheTable::SetPrimaryValueAt(InternalIndex entry,
Tagged<Object> value,
WriteBarrierMode mode) {
set(EntryToIndex(entry) + 1, value, mode);
}
Tagged<UnionOf<TheHole, WeakFixedArray>>
CompilationCacheTable::EvalJSFunctionsValueAt(InternalIndex entry) {
static_assert(CompilationCacheShape::kEntrySize == 3);
return Cast<UnionOf<TheHole, WeakFixedArray>>(get(EntryToIndex(entry) + 2));
}
void CompilationCacheTable::SetEvalJSFunctionsValueAt(
InternalIndex entry, Tagged<UnionOf<TheHole, WeakFixedArray>> value,
WriteBarrierMode mode) {
set(EntryToIndex(entry) + 2, value, mode);
}
class ScriptCacheKey : public HashTableKey {
public:
enum Index {
kHash,
kWeakScript,
kEnd,
};
ScriptCacheKey(Handle<String> source, const ScriptDetails* script_details,
Isolate* isolate);
ScriptCacheKey(Handle<String> source, MaybeHandle<Object> name,
int line_offset, int column_offset,
v8::ScriptOriginOptions origin_options,
MaybeHandle<Object> host_defined_options,
MaybeHandle<FixedArray> maybe_wrapped_arguments,
Isolate* isolate);
bool IsMatch(Tagged<Object> other) override;
bool MatchesScript(Tagged<Script> script);
DirectHandle<Object> AsHandle(Isolate* isolate,
DirectHandle<SharedFunctionInfo> shared);
static std::optional<Tagged<String>> SourceFromObject(Tagged<Object> obj) {
DisallowGarbageCollection no_gc;
DCHECK(IsWeakFixedArray(obj));
Tagged<WeakFixedArray> array = Cast<WeakFixedArray>(obj);
DCHECK_EQ(array->length(), kEnd);
Tagged<MaybeObject> maybe_script = array->get(kWeakScript);
if (Tagged<HeapObject> script; maybe_script.GetHeapObjectIfWeak(&script)) {
Tagged<PrimitiveHeapObject> source_or_undefined =
Cast<Script>(script)->source();
return Cast<String>(source_or_undefined);
}
DCHECK(maybe_script.IsCleared());
return {};
}
private:
Handle<String> source_;
MaybeHandle<Object> name_;
int line_offset_;
int column_offset_;
v8::ScriptOriginOptions origin_options_;
MaybeHandle<Object> host_defined_options_;
MaybeHandle<FixedArray> wrapped_arguments_;
Isolate* isolate_;
};
uint32_t CompilationCacheShape::RegExpHash(Tagged<String> string,
Tagged<Smi> flags) {
return string->EnsureHash() + flags.value();
}
uint32_t CompilationCacheShape::EvalHash(Tagged<String> source,
Tagged<SharedFunctionInfo> shared,
LanguageMode language_mode,
int position) {
uint32_t hash = source->EnsureHash();
if (shared->HasSourceCode()) {
Tagged<Script> script(Cast<Script>(shared->script()));
hash ^= Cast<String>(script->source())->EnsureHash();
}
static_assert(LanguageModeSize == 2);
if (is_strict(language_mode)) hash ^= 0x8000;
hash += position;
return hash;
}
uint32_t CompilationCacheShape::HashForObject(ReadOnlyRoots roots,
Tagged<Object> object) {
if (IsNumber(object))
return static_cast<uint32_t>(Object::NumberValue(object));
if (IsSharedFunctionInfo(object)) {
return Cast<SharedFunctionInfo>(object)->Hash();
}
if (IsWeakFixedArray(object)) {
return static_cast<uint32_t>(Smi::ToInt(
Cast<WeakFixedArray>(object)->get(ScriptCacheKey::kHash).ToSmi()));
}
if (IsRegExpDataWrapper(object)) {
Tagged<RegExpDataWrapper> re_wrapper = Cast<RegExpDataWrapper>(object);
Isolate* isolate = Isolate::Current();
Tagged<RegExpData> data = re_wrapper->data(isolate);
return RegExpHash(data->source(), Smi::FromInt(data->flags()));
}
Tagged<FixedArray> val = Cast<FixedArray>(object);
DCHECK_EQ(val->map(), roots.fixed_cow_array_map());
DCHECK_EQ(4, val->length());
Tagged<String> source = Cast<String>(val->get(1));
int language_unchecked = Smi::ToInt(val->get(2));
DCHECK(is_valid_language_mode(language_unchecked));
LanguageMode language_mode = static_cast<LanguageMode>(language_unchecked);
int position = Smi::ToInt(val->get(3));
Tagged<Object> shared = val->get(0);
return EvalHash(source, Cast<SharedFunctionInfo>(shared), language_mode,
position);
}
InfoCellPair::InfoCellPair(Isolate* isolate, Tagged<SharedFunctionInfo> shared,
Tagged<JSFunction> js_function)
: is_compiled_scope_(!shared.is_null() ? shared->is_compiled_scope(isolate)
: IsCompiledScope()),
shared_(shared),
js_function_(js_function) {}
}
#include "src/objects/object-macros-undef.h"
#endif