forked from KhronosGroup/SPIRV-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
spirv-fuzz: Transformation to add OpConstantNull (KhronosGroup#3273)
Adds a transformation for adding OpConstantNull to a module, for appropriate data types.
- Loading branch information
Showing
11 changed files
with
372 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// Copyright (c) 2020 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. | ||
|
||
#include "source/fuzz/transformation_add_constant_null.h" | ||
|
||
#include "source/fuzz/fuzzer_util.h" | ||
|
||
namespace spvtools { | ||
namespace fuzz { | ||
|
||
TransformationAddConstantNull::TransformationAddConstantNull( | ||
const spvtools::fuzz::protobufs::TransformationAddConstantNull& message) | ||
: message_(message) {} | ||
|
||
TransformationAddConstantNull::TransformationAddConstantNull(uint32_t fresh_id, | ||
uint32_t type_id) { | ||
message_.set_fresh_id(fresh_id); | ||
message_.set_type_id(type_id); | ||
} | ||
|
||
bool TransformationAddConstantNull::IsApplicable( | ||
opt::IRContext* context, const TransformationContext& /*unused*/) const { | ||
// A fresh id is required. | ||
if (!fuzzerutil::IsFreshId(context, message_.fresh_id())) { | ||
return false; | ||
} | ||
auto type = context->get_type_mgr()->GetType(message_.type_id()); | ||
// The type must exist. | ||
if (!type) { | ||
return false; | ||
} | ||
// The type must be one of the types for which null constants are allowed, | ||
// according to the SPIR-V spec. | ||
return fuzzerutil::IsNullConstantSupported(*type); | ||
} | ||
|
||
void TransformationAddConstantNull::Apply( | ||
opt::IRContext* context, TransformationContext* /*unused*/) const { | ||
context->module()->AddGlobalValue(MakeUnique<opt::Instruction>( | ||
context, SpvOpConstantNull, message_.type_id(), message_.fresh_id(), | ||
opt::Instruction::OperandList())); | ||
fuzzerutil::UpdateModuleIdBound(context, message_.fresh_id()); | ||
// We have added an instruction to the module, so need to be careful about the | ||
// validity of existing analyses. | ||
context->InvalidateAnalysesExceptFor(opt::IRContext::Analysis::kAnalysisNone); | ||
} | ||
|
||
protobufs::Transformation TransformationAddConstantNull::ToMessage() const { | ||
protobufs::Transformation result; | ||
*result.mutable_add_constant_null() = message_; | ||
return result; | ||
} | ||
|
||
} // namespace fuzz | ||
} // namespace spvtools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// Copyright (c) 2020 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_TRANSFORMATION_ADD_CONSTANT_NULL_H_ | ||
#define SOURCE_FUZZ_TRANSFORMATION_ADD_CONSTANT_NULL_H_ | ||
|
||
#include "source/fuzz/protobufs/spirvfuzz_protobufs.h" | ||
#include "source/fuzz/transformation.h" | ||
#include "source/fuzz/transformation_context.h" | ||
#include "source/opt/ir_context.h" | ||
|
||
namespace spvtools { | ||
namespace fuzz { | ||
|
||
class TransformationAddConstantNull : public Transformation { | ||
public: | ||
explicit TransformationAddConstantNull( | ||
const protobufs::TransformationAddConstantNull& message); | ||
|
||
TransformationAddConstantNull(uint32_t fresh_id, uint32_t type_id); | ||
|
||
// - |message_.fresh_id| must be fresh | ||
// - |message_.type_id| must be the id of a type for which it is acceptable | ||
// to create a null constant | ||
bool IsApplicable( | ||
opt::IRContext* context, | ||
const TransformationContext& transformation_context) const override; | ||
|
||
// Adds an OpConstantNull instruction to the module, with |message_.type_id| | ||
// as its type. The instruction has result id |message_.fresh_id|. | ||
void Apply(opt::IRContext* context, | ||
TransformationContext* transformation_context) const override; | ||
|
||
protobufs::Transformation ToMessage() const override; | ||
|
||
private: | ||
protobufs::TransformationAddConstantNull message_; | ||
}; | ||
|
||
} // namespace fuzz | ||
} // namespace spvtools | ||
|
||
#endif // SOURCE_FUZZ_TRANSFORMATION_ADD_CONSTANT_NULL_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.