instruction_message.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Copyright (c) 2019 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #ifndef SOURCE_FUZZ_INSTRUCTION_MESSAGE_H_
  15. #define SOURCE_FUZZ_INSTRUCTION_MESSAGE_H_
  16. #include <memory>
  17. #include "source/fuzz/protobufs/spirvfuzz_protobufs.h"
  18. #include "source/opt/instruction.h"
  19. #include "source/opt/ir_context.h"
  20. namespace spvtools {
  21. namespace fuzz {
  22. // Creates an Instruction protobuf message from its component parts.
  23. protobufs::Instruction MakeInstructionMessage(
  24. spv::Op opcode, uint32_t result_type_id, uint32_t result_id,
  25. const opt::Instruction::OperandList& input_operands);
  26. // Creates an Instruction protobuf message from a parsed instruction.
  27. protobufs::Instruction MakeInstructionMessage(
  28. const opt::Instruction* instruction);
  29. // Creates and returns an opt::Instruction from protobuf message
  30. // |instruction_message|, relative to |ir_context|. In the process, the module
  31. // id bound associated with |ir_context| is updated to be at least as large as
  32. // the result id (if any) associated with the new instruction.
  33. std::unique_ptr<opt::Instruction> InstructionFromMessage(
  34. opt::IRContext* ir_context,
  35. const protobufs::Instruction& instruction_message);
  36. } // namespace fuzz
  37. } // namespace spvtools
  38. #endif // SOURCE_FUZZ_INSTRUCTION_MESSAGE_H_