// Copyright (c) 2017 The Khronos Group Inc. // Copyright (c) 2017 Valve Corporation // Copyright (c) 2017 LunarG Inc. // // 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 LIBSPIRV_OPT_OPT_PASS_H_ #define LIBSPIRV_OPT_OPT_PASS_H_ #include #include #include #include #include #include #include "basic_block.h" #include "def_use_manager.h" #include "module.h" #include "pass.h" namespace spvtools { namespace opt { // A common base class for mem2reg-type passes. Provides common // utility functions and supporting state. class MemPass : public Pass { public: MemPass(); virtual ~MemPass() = default; protected: // Returns true if |typeInst| is a scalar type // or a vector or matrix bool IsBaseTargetType(const ir::Instruction* typeInst) const; // Returns true if |typeInst| is a math type or a struct or array // of a math type. // TODO(): Add more complex types to convert bool IsTargetType(const ir::Instruction* typeInst) const; // Returns true if |opcode| is a non-ptr access chain op bool IsNonPtrAccessChain(const SpvOp opcode) const; // Given the id |ptrId|, return true if the top-most non-CopyObj is // a variable, a non-ptr access chain or a parameter of pointer type. bool IsPtr(uint32_t ptrId); // Given the id of a pointer |ptrId|, return the top-most non-CopyObj. // Also return the base variable's id in |varId|. ir::Instruction* GetPtr(uint32_t ptrId, uint32_t* varId); // Given a load or store |ip|, return the pointer instruction. // Also return the base variable's id in |varId|. ir::Instruction* GetPtr(ir::Instruction* ip, uint32_t* varId); // Return true if |varId| is a previously identified target variable. // Return false if |varId| is a previously identified non-target variable. // See FindTargetVars() for definition of target variable. If variable is // not cached, return true if variable is a function scope variable of // target type, false otherwise. Updates caches of target and non-target // variables. bool IsTargetVar(uint32_t varId); // Return true if all uses of |id| are only name or decorate ops. bool HasOnlyNamesAndDecorates(uint32_t id) const; // Kill all name and decorate ops using |inst| void KillNamesAndDecorates(ir::Instruction* inst); // Kill all name and decorate ops using |id| void KillNamesAndDecorates(uint32_t id); // Collect all named or decorated ids in module void FindNamedOrDecoratedIds(); // Return true if any instruction loads from |varId| bool HasLoads(uint32_t varId) const; // Return true if |varId| is not a function variable or if it has // a load bool IsLiveVar(uint32_t varId) const; // Return true if |storeInst| is not a function variable or if its // base variable has a load bool IsLiveStore(ir::Instruction* storeInst); // Add stores using |ptr_id| to |insts| void AddStores(uint32_t ptr_id, std::queue* insts); // Delete |inst| and iterate DCE on all its operands if they are now // useless. If a load is deleted and its variable has no other loads, // delete all its variable's stores. void DCEInst(ir::Instruction* inst); // Replace all instances of |loadInst|'s id with |replId| and delete // |loadInst|. void ReplaceAndDeleteLoad(ir::Instruction* loadInst, uint32_t replId); // Return true if |op| is supported decorate. inline bool IsNonTypeDecorate(uint32_t op) const { return (op == SpvOpDecorate || op == SpvOpDecorateId); } // Initialize next available id from |module|. void InitNextId() { next_id_ = module_->IdBound(); } // Save next available id into |module|. void FinalizeNextId() { module_->SetIdBound(next_id_); } // Return next available id and calculate next. inline uint32_t TakeNextId() { return next_id_++; } // Module this pass is processing ir::Module* module_; // Def-Uses for the module we are processing std::unique_ptr def_use_mgr_; // Cache of verified target vars std::unordered_set seen_target_vars_; // Cache of verified non-target vars std::unordered_set seen_non_target_vars_; // named or decorated ids std::unordered_set named_or_decorated_ids_; // Next unused ID uint32_t next_id_; }; } // namespace opt } // namespace spvtools #endif // LIBSPIRV_OPT_OPT_PASS_H_