// Copyright 2014 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/codegen/machine-type.h" #include "src/utils/ostreams.h" namespace v8 { namespace internal { bool IsSubtype(MachineRepresentation rep1, MachineRepresentation rep2) { … } std::ostream& operator<<(std::ostream& os, MachineRepresentation rep) { … } const char* MachineReprToString(MachineRepresentation rep) { … } std::ostream& operator<<(std::ostream& os, MachineSemantic type) { … } std::ostream& operator<<(std::ostream& os, MachineType type) { … } } // namespace internal } // namespace v8