| // Copyright (c) 2019 Google LLC |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #ifndef SOURCE_FUZZ_FUZZER_UTIL_H_ |
| #define SOURCE_FUZZ_FUZZER_UTIL_H_ |
| |
| #include <vector> |
| |
| #include "source/fuzz/protobufs/spirvfuzz_protobufs.h" |
| #include "source/opt/basic_block.h" |
| #include "source/opt/instruction.h" |
| #include "source/opt/ir_context.h" |
| |
| namespace spvtools { |
| namespace fuzz { |
| |
| // Provides global utility methods for use by the fuzzer |
| namespace fuzzerutil { |
| |
| // Returns true if and only if the module does not define the given id. |
| bool IsFreshId(opt::IRContext* context, uint32_t id); |
| |
| // Updates the module's id bound if needed so that it is large enough to |
| // account for the given id. |
| void UpdateModuleIdBound(opt::IRContext* context, uint32_t id); |
| |
| // Return the block with id |maybe_block_id| if it exists, and nullptr |
| // otherwise. |
| opt::BasicBlock* MaybeFindBlock(opt::IRContext* context, |
| uint32_t maybe_block_id); |
| |
| // When adding an edge from |bb_from| to |bb_to| (which are assumed to be blocks |
| // in the same function), it is important to supply |bb_to| with ids that can be |
| // used to augment OpPhi instructions in the case that there is not already such |
| // an edge. This function returns true if and only if the ids provided in |
| // |phi_ids| suffice for this purpose, |
| bool PhiIdsOkForNewEdge( |
| opt::IRContext* context, opt::BasicBlock* bb_from, opt::BasicBlock* bb_to, |
| const google::protobuf::RepeatedField<google::protobuf::uint32>& phi_ids); |
| |
| // Requires that PhiIdsOkForNewEdge(context, bb_from, bb_to, phi_ids) holds, |
| // and that bb_from ends with "OpBranch %some_block". Turns OpBranch into |
| // "OpBranchConditional |condition_value| ...", such that control will branch |
| // to %some_block, with |bb_to| being the unreachable alternative. Updates |
| // OpPhi instructions in |bb_to| using |phi_ids| so that the new edge is valid. |
| void AddUnreachableEdgeAndUpdateOpPhis( |
| opt::IRContext* context, opt::BasicBlock* bb_from, opt::BasicBlock* bb_to, |
| bool condition_value, |
| const google::protobuf::RepeatedField<google::protobuf::uint32>& phi_ids); |
| |
| // Returns true if and only if |maybe_loop_header_id| is a loop header and |
| // |block_id| is in the continue construct of the associated loop. |
| bool BlockIsInLoopContinueConstruct(opt::IRContext* context, uint32_t block_id, |
| uint32_t maybe_loop_header_id); |
| |
| // If |block| contains |inst|, an iterator for |inst| is returned. |
| // Otherwise |block|->end() is returned. |
| opt::BasicBlock::iterator GetIteratorForInstruction( |
| opt::BasicBlock* block, const opt::Instruction* inst); |
| |
| // Returns true if and only if there is a path to |bb| from the entry block of |
| // the function that contains |bb|. |
| bool BlockIsReachableInItsFunction(opt::IRContext* context, |
| opt::BasicBlock* bb); |
| |
| // Determines whether it is OK to insert an instruction with opcode |opcode| |
| // before |instruction_in_block|. |
| bool CanInsertOpcodeBeforeInstruction( |
| SpvOp opcode, const opt::BasicBlock::iterator& instruction_in_block); |
| |
| // Determines whether it is OK to make a synonym of |inst|. |
| bool CanMakeSynonymOf(opt::IRContext* ir_context, opt::Instruction* inst); |
| |
| // Determines whether the given type is a composite; that is: an array, matrix, |
| // struct or vector. |
| bool IsCompositeType(const opt::analysis::Type* type); |
| |
| // Returns a vector containing the same elements as |repeated_field|. |
| std::vector<uint32_t> RepeatedFieldToVector( |
| const google::protobuf::RepeatedField<uint32_t>& repeated_field); |
| |
| // Given a type id, |base_object_type_id|, checks that the given sequence of |
| // |indices| is suitable for indexing into this type. Returns the id of the |
| // type of the final sub-object reached via the indices if they are valid, and |
| // 0 otherwise. |
| uint32_t WalkCompositeTypeIndices( |
| opt::IRContext* context, uint32_t base_object_type_id, |
| const google::protobuf::RepeatedField<google::protobuf::uint32>& indices); |
| |
| // Returns the number of members associated with |struct_type_instruction|, |
| // which must be an OpStructType instruction. |
| uint32_t GetNumberOfStructMembers( |
| const opt::Instruction& struct_type_instruction); |
| |
| // Returns the constant size of the array associated with |
| // |array_type_instruction|, which must be an OpArrayType instruction. Returns |
| // 0 if there is not a static size. |
| uint32_t GetArraySize(const opt::Instruction& array_type_instruction, |
| opt::IRContext* context); |
| |
| // Returns true if and only if |context| is valid, according to the validator. |
| bool IsValid(opt::IRContext* context); |
| |
| // Returns a clone of |context|, by writing |context| to a binary and then |
| // parsing it again. |
| std::unique_ptr<opt::IRContext> CloneIRContext(opt::IRContext* context); |
| |
| // Returns true if and only if |id| is the id of a type that is not a function |
| // type. |
| bool IsNonFunctionTypeId(opt::IRContext* ir_context, uint32_t id); |
| |
| } // namespace fuzzerutil |
| |
| } // namespace fuzz |
| } // namespace spvtools |
| |
| #endif // SOURCE_FUZZ_FUZZER_UTIL_H_ |