blob: c9ed7ccbe3d82a4fdd9b44ff47f002dc06b427c2 [file] [log] [blame]
// Copyright 2025 The Dawn & Tint Authors
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SRC_TINT_LANG_SPIRV_IR_COPY_LOGICAL_H_
#define SRC_TINT_LANG_SPIRV_IR_COPY_LOGICAL_H_
#include <string>
#include "src/tint/lang/core/ir/call.h"
#include "src/tint/utils/rtti/castable.h"
namespace tint::spirv::ir {
/// A spirv OpCopyLogical instruction in the IR.
class CopyLogical final : public Castable<CopyLogical, core::ir::Call> {
public:
/// The offset in Operands() for Arg.
static constexpr size_t kArgOperandOffset = 0;
/// The number of results.
static constexpr size_t kNumResults = 1;
/// The number of operands.
static constexpr size_t kNumOperands = 1;
/// Constructor
/// @param id the instruction id
/// @param result the result value
/// @param arg the object to copy
CopyLogical(Id id, core::ir::InstructionResult* result, core::ir::Value* arg);
~CopyLogical() override;
/// @copydoc Instruction::Clone()
CopyLogical* Clone(core::ir::CloneContext& ctx) override;
/// @returns The argument being copied.
core::ir::Value* Arg() { return Operand(kArgOperandOffset); }
/// @returns The argument being copied.
const core::ir::Value* Arg() const { return Operand(kArgOperandOffset); }
/// @returns the friendly name for the instruction
std::string FriendlyName() const override;
};
} // namespace tint::spirv::ir
#endif // SRC_TINT_LANG_SPIRV_IR_COPY_LOGICAL_H_