2017-04-25 13:32:18 +00:00
|
|
|
// Copyright 2017 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/visitors.h"
|
|
|
|
|
2017-10-13 13:24:26 +00:00
|
|
|
#include "src/objects/code.h"
|
2017-10-13 07:42:11 +00:00
|
|
|
|
2017-04-25 13:32:18 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
#define DECLARE_TAG(ignore1, name, ignore2) name,
|
|
|
|
const char* const
|
|
|
|
VisitorSynchronization::kTags[VisitorSynchronization::kNumberOfSyncTags] = {
|
|
|
|
ROOT_ID_LIST(DECLARE_TAG)};
|
|
|
|
#undef DECLARE_TAG
|
|
|
|
|
|
|
|
#define DECLARE_TAG(ignore1, ignore2, name) name,
|
|
|
|
const char* const VisitorSynchronization::kTagNames
|
|
|
|
[VisitorSynchronization::kNumberOfSyncTags] = {ROOT_ID_LIST(DECLARE_TAG)};
|
|
|
|
#undef DECLARE_TAG
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|