%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home2/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/v8/src/objects/
Upload File :
Create Path :
Current File : //home2/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/v8/src/objects/field-type.cc

// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/objects/field-type.h"

#include "src/handles/handles-inl.h"
#include "src/objects/map.h"
#include "src/objects/objects-inl.h"
#include "src/objects/smi.h"
#include "src/utils/ostreams.h"

namespace v8 {
namespace internal {

// static
Tagged<FieldType> FieldType::None() {
  return Tagged<FieldType>(Smi::FromInt(2).ptr());
}

// static
Tagged<FieldType> FieldType::Any() {
  return Tagged<FieldType>(Smi::FromInt(1).ptr());
}

// static
Handle<FieldType> FieldType::None(Isolate* isolate) {
  return handle(None(), isolate);
}

// static
Handle<FieldType> FieldType::Any(Isolate* isolate) {
  return handle(Any(), isolate);
}

// static
Tagged<FieldType> FieldType::Class(Tagged<Map> map) {
  return FieldType::cast(Tagged<Object>(map));
}

// static
Handle<FieldType> FieldType::Class(Handle<Map> map, Isolate* isolate) {
  return handle(Class(*map), isolate);
}

// static
Tagged<FieldType> FieldType::cast(Tagged<Object> object) {
  DCHECK(object == None() || object == Any() || IsMap(object));
  return Tagged<FieldType>(object.ptr());
}

// static
bool IsClass(Tagged<FieldType> obj) { return IsMap(obj); }

// static
Tagged<Map> FieldType::AsClass(Tagged<FieldType> type) {
  DCHECK(IsClass(type));
  return Map::cast(type);
}

// static
Handle<Map> FieldType::AsClass(Handle<FieldType> type) {
  DCHECK(IsClass(*type));
  return Handle<Map>::cast(type);
}

// static
bool FieldType::NowStable(Tagged<FieldType> type) {
  return !IsClass(type) || AsClass(type)->is_stable();
}

// static
bool FieldType::NowIs(Tagged<FieldType> type, Tagged<FieldType> other) {
  if (IsAny(other)) return true;
  if (IsNone(type)) return true;
  if (IsNone(other)) return false;
  if (IsAny(type)) return false;
  DCHECK(IsClass(type));
  DCHECK(IsClass(other));
  return type == other;
}

// static
bool FieldType::Equals(Tagged<FieldType> type, Tagged<FieldType> other) {
  if (IsAny(type) && IsAny(other)) return true;
  if (IsNone(type) && IsNone(other)) return true;
  if (IsClass(type) && IsClass(other)) {
    return type == other;
  }
  return false;
}

// static
bool FieldType::NowIs(Tagged<FieldType> type, Handle<FieldType> other) {
  return NowIs(type, *other);
}

// static
void FieldType::PrintTo(Tagged<FieldType> type, std::ostream& os) {
  if (IsAny(type)) {
    os << "Any";
  } else if (IsNone(type)) {
    os << "None";
  } else {
    DCHECK(IsClass(type));
    os << "Class(" << reinterpret_cast<void*>(AsClass(type).ptr()) << ")";
  }
}

// static
bool FieldType::NowContains(Tagged<FieldType> type, Tagged<Object> value) {
  if (type == Any()) return true;
  if (type == None()) return false;
  if (!IsHeapObject(value)) return false;
  return HeapObject::cast(value)->map() == Map::cast(type);
}

}  // namespace internal
}  // namespace v8

Zerion Mini Shell 1.0