// Copyright 2022 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. #ifndef V8_MAGLEV_MAGLEV_GRAPH_VERIFIER_H_ #define V8_MAGLEV_MAGLEV_GRAPH_VERIFIER_H_ #include "src/maglev/maglev-compilation-info.h" #include "src/maglev/maglev-graph-labeller.h" #include "src/maglev/maglev-graph-processor.h" #include "src/maglev/maglev-ir.h" namespace v8 { namespace internal { namespace maglev { class Graph; // TODO(victorgomes): Currently it only verifies the inputs for all ValueNodes // are expected to be tagged/untagged. Add more verification later. class MaglevGraphVerifier { … }; } // namespace maglev } // namespace internal } // namespace v8 #endif // V8_MAGLEV_MAGLEV_GRAPH_VERIFIER_H_