2019-05-27 13:34:55 +00:00
|
|
|
// 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_FACT_MANAGER_H_
|
|
|
|
#define SOURCE_FUZZ_FACT_MANAGER_H_
|
|
|
|
|
2019-06-11 14:56:08 +00:00
|
|
|
#include <memory>
|
2019-08-05 17:00:13 +00:00
|
|
|
#include <set>
|
2019-05-27 13:34:55 +00:00
|
|
|
#include <utility>
|
2019-06-11 14:56:08 +00:00
|
|
|
#include <vector>
|
2019-05-27 13:34:55 +00:00
|
|
|
|
2019-10-25 16:37:55 +00:00
|
|
|
#include "source/fuzz/data_descriptor.h"
|
2019-05-27 13:34:55 +00:00
|
|
|
#include "source/fuzz/protobufs/spirvfuzz_protobufs.h"
|
|
|
|
#include "source/opt/constants.h"
|
|
|
|
|
|
|
|
namespace spvtools {
|
|
|
|
namespace fuzz {
|
|
|
|
|
|
|
|
// Keeps track of facts about the module being transformed on which the fuzzing
|
|
|
|
// process can depend. Some initial facts can be provided, for example about
|
|
|
|
// guarantees on the values of inputs to SPIR-V entry points. Transformations
|
|
|
|
// may then rely on these facts, can add further facts that they establish.
|
|
|
|
// Facts are intended to be simple properties that either cannot be deduced from
|
|
|
|
// the module (such as properties that are guaranteed to hold for entry point
|
|
|
|
// inputs), or that are established by transformations, likely to be useful for
|
|
|
|
// future transformations, and not completely trivial to deduce straight from
|
|
|
|
// the module.
|
|
|
|
class FactManager {
|
|
|
|
public:
|
|
|
|
FactManager();
|
|
|
|
|
|
|
|
~FactManager();
|
|
|
|
|
|
|
|
// Adds all the facts from |facts|, checking them for validity with respect to
|
2019-06-26 15:40:19 +00:00
|
|
|
// |context|. Warnings about invalid facts are communicated via
|
|
|
|
// |message_consumer|; such facts are otherwise ignored.
|
|
|
|
void AddFacts(const MessageConsumer& message_consumer,
|
|
|
|
const protobufs::FactSequence& facts, opt::IRContext* context);
|
2019-05-27 13:34:55 +00:00
|
|
|
|
2019-06-26 15:40:19 +00:00
|
|
|
// Checks the fact for validity with respect to |context|. Returns false,
|
|
|
|
// with no side effects, if the fact is invalid. Otherwise adds |fact| to the
|
|
|
|
// fact manager.
|
2019-05-27 13:34:55 +00:00
|
|
|
bool AddFact(const protobufs::Fact& fact, opt::IRContext* context);
|
2019-06-11 14:56:08 +00:00
|
|
|
|
2019-10-25 16:37:55 +00:00
|
|
|
// Record the fact that |data1| and |data2| are synonymous.
|
|
|
|
void AddFactDataSynonym(const protobufs::DataDescriptor& data1,
|
2019-11-01 17:50:01 +00:00
|
|
|
const protobufs::DataDescriptor& data2,
|
|
|
|
opt::IRContext* context);
|
2019-10-25 16:37:55 +00:00
|
|
|
|
2019-08-05 17:00:13 +00:00
|
|
|
// The fact manager is responsible for managing a few distinct categories of
|
|
|
|
// facts. In principle there could be different fact managers for each kind
|
|
|
|
// of fact, but in practice providing one 'go to' place for facts is
|
|
|
|
// convenient. To keep some separation, the public methods of the fact
|
|
|
|
// manager should be grouped according to the kind of fact to which they
|
|
|
|
// relate.
|
2019-06-11 14:56:08 +00:00
|
|
|
|
|
|
|
//==============================
|
|
|
|
// Querying facts about uniform constants
|
|
|
|
|
|
|
|
// Provides the distinct type ids for which at least one "constant ==
|
|
|
|
// uniform element" fact is known.
|
|
|
|
std::vector<uint32_t> GetTypesForWhichUniformValuesAreKnown() const;
|
|
|
|
|
|
|
|
// Provides distinct constant ids with type |type_id| for which at least one
|
|
|
|
// "constant == uniform element" fact is known. If multiple identically-
|
|
|
|
// valued constants are relevant, only one will appear in the sequence.
|
|
|
|
std::vector<uint32_t> GetConstantsAvailableFromUniformsForType(
|
|
|
|
opt::IRContext* ir_context, uint32_t type_id) const;
|
|
|
|
|
|
|
|
// Provides details of all uniform elements that are known to be equal to the
|
|
|
|
// constant associated with |constant_id| in |ir_context|.
|
|
|
|
const std::vector<protobufs::UniformBufferElementDescriptor>
|
|
|
|
GetUniformDescriptorsForConstant(opt::IRContext* ir_context,
|
|
|
|
uint32_t constant_id) const;
|
|
|
|
|
|
|
|
// Returns the id of a constant whose value is known to match that of
|
|
|
|
// |uniform_descriptor|, and whose type matches the type of the uniform
|
|
|
|
// element. If multiple such constant is exist, the one that is returned
|
|
|
|
// is arbitrary. Returns 0 if no such constant id exists.
|
|
|
|
uint32_t GetConstantFromUniformDescriptor(
|
|
|
|
opt::IRContext* context,
|
|
|
|
const protobufs::UniformBufferElementDescriptor& uniform_descriptor)
|
|
|
|
const;
|
|
|
|
|
|
|
|
// Returns all "constant == uniform element" facts known to the fact
|
|
|
|
// manager, pairing each fact with id of the type that is associated with
|
|
|
|
// both the constant and the uniform element.
|
|
|
|
const std::vector<std::pair<protobufs::FactConstantUniform, uint32_t>>&
|
|
|
|
GetConstantUniformFactsAndTypes() const;
|
|
|
|
|
|
|
|
// End of uniform constant facts
|
|
|
|
//==============================
|
|
|
|
|
2019-08-05 17:00:13 +00:00
|
|
|
//==============================
|
|
|
|
// Querying facts about id synonyms
|
|
|
|
|
2019-11-05 16:45:14 +00:00
|
|
|
// Returns every id for which a fact of the form "this id is synonymous with
|
|
|
|
// this piece of data" is known.
|
|
|
|
std::vector<uint32_t> GetIdsForWhichSynonymsAreKnown(
|
|
|
|
opt::IRContext* context) const;
|
2019-08-05 17:00:13 +00:00
|
|
|
|
2019-11-01 17:50:01 +00:00
|
|
|
// Returns the equivalence class of all known synonyms of |id|, or an empty
|
|
|
|
// set if no synonyms are known.
|
|
|
|
std::vector<const protobufs::DataDescriptor*> GetSynonymsForId(
|
2019-11-05 16:45:14 +00:00
|
|
|
uint32_t id, opt::IRContext* context) const;
|
2019-11-01 17:50:01 +00:00
|
|
|
|
2019-11-05 16:45:14 +00:00
|
|
|
// Returns the equivalence class of all known synonyms of |data_descriptor|,
|
|
|
|
// or empty if no synonyms are known.
|
|
|
|
std::vector<const protobufs::DataDescriptor*> GetSynonymsForDataDescriptor(
|
|
|
|
const protobufs::DataDescriptor& data_descriptor,
|
|
|
|
opt::IRContext* context) const;
|
|
|
|
|
|
|
|
// Returns true if and ony if |data_descriptor1| and |data_descriptor2| are
|
2019-11-01 17:50:01 +00:00
|
|
|
// known to be synonymous.
|
|
|
|
bool IsSynonymous(const protobufs::DataDescriptor& data_descriptor1,
|
2019-11-05 16:45:14 +00:00
|
|
|
const protobufs::DataDescriptor& data_descriptor2,
|
|
|
|
opt::IRContext* context) const;
|
2019-08-05 17:00:13 +00:00
|
|
|
|
|
|
|
// End of id synonym facts
|
|
|
|
//==============================
|
|
|
|
|
2019-06-11 14:56:08 +00:00
|
|
|
private:
|
|
|
|
// For each distinct kind of fact to be managed, we use a separate opaque
|
2019-11-05 16:45:14 +00:00
|
|
|
// class type.
|
2019-06-11 14:56:08 +00:00
|
|
|
|
2019-11-05 16:45:14 +00:00
|
|
|
class ConstantUniformFacts; // Opaque class for management of
|
|
|
|
// constant uniform facts.
|
2019-06-11 14:56:08 +00:00
|
|
|
std::unique_ptr<ConstantUniformFacts>
|
|
|
|
uniform_constant_facts_; // Unique pointer to internal data.
|
2019-08-05 17:00:13 +00:00
|
|
|
|
2019-11-05 16:45:14 +00:00
|
|
|
class DataSynonymFacts; // Opaque class for management of data synonym facts.
|
2019-10-25 16:37:55 +00:00
|
|
|
std::unique_ptr<DataSynonymFacts>
|
|
|
|
data_synonym_facts_; // Unique pointer to internal data.
|
2019-05-27 13:34:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace fuzz
|
|
|
|
} // namespace spvtools
|
|
|
|
|
2019-09-02 21:31:27 +00:00
|
|
|
#endif // SOURCE_FUZZ_FACT_MANAGER_H_
|