Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/vm/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 1 kB image not shown  

Quelle  PropertyKey.h

  Sprache: C
 

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#ifndef vm_PropertyKey_h
#define vm_PropertyKey_h

#include "mozilla/HashFunctions.h"  // mozilla::HashGeneric

#include "NamespaceImports.h"  // js::PropertyKey

#include "js/HashTable.h"   // js::DefaultHasher
#include "js/Id.h"          // JS::PropertyKey
#include "vm/StringType.h"  // JSAtom::hash
#include "vm/SymbolType.h"  // JS::Symbol::hash

namespace js {

static MOZ_ALWAYS_INLINE HashNumber HashPropertyKey(PropertyKey key) {
  // HashGeneric alone would work, but bits of atom and symbol addresses
  // could then be recovered from the hash code. See bug 1330769.
  if (MOZ_LIKELY(key.isAtom())) {
    return key.toAtom()->hash();
  }
  if (key.isSymbol()) {
    return key.toSymbol()->hash();
  }
  return mozilla::HashGeneric(key.asRawBits());
}

// Like HashPropertyKey but optimized for callers that only use atom or symbol
// keys.
static MOZ_ALWAYS_INLINE HashNumber
HashAtomOrSymbolPropertyKey(PropertyKey key) {
  if (MOZ_LIKELY(key.isAtom())) {
    return key.toAtom()->hash();
  }
  return key.toSymbol()->hash();
}

// Like HashPropertyKey but safe to call off-thread.
static MOZ_ALWAYS_INLINE HashNumber HashPropertyKeyThreadSafe(PropertyKey key) {
  if (MOZ_LIKELY(key.isAtom())) {
    return key.toAtom()->asOffThreadAtom().hash();
  }
  if (key.isSymbol()) {
    return key.toSymbol()->hash();
  }
  return mozilla::HashGeneric(key.asRawBits());
}

}  // namespace js

namespace mozilla {

template <>
struct DefaultHasher<JS::PropertyKey> {
  using Lookup = JS::PropertyKey;
  static HashNumber hash(JS::PropertyKey key) {
    return js::HashPropertyKey(key);
  }
  static bool match(JS::PropertyKey key1, JS::PropertyKey key2) {
    return key1 == key2;
  }
};

}  // namespace mozilla

#endif /* vm_PropertyKey_h */

Messung V0.5 in Prozent
C=91 H=100 G=95

¤ Dauer der Verarbeitung: 0.4 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.