• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2018 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 
15 #ifndef SOURCE_REDUCE_CHANGE_OPERAND_REDUCTION_OPPORTUNITY_H_
16 #define SOURCE_REDUCE_CHANGE_OPERAND_REDUCTION_OPPORTUNITY_H_
17 
18 #include "source/opt/instruction.h"
19 #include "source/reduce/reduction_opportunity.h"
20 #include "spirv-tools/libspirv.h"
21 
22 namespace spvtools {
23 namespace reduce {
24 
25 // An opportunity to replace an id operand of an instruction with some other id.
26 class ChangeOperandReductionOpportunity : public ReductionOpportunity {
27  public:
28   // Constructs the opportunity to replace operand |operand_index| of |inst|
29   // with |new_id|.
ChangeOperandReductionOpportunity(opt::Instruction * inst,uint32_t operand_index,uint32_t new_id)30   ChangeOperandReductionOpportunity(opt::Instruction* inst,
31                                     uint32_t operand_index, uint32_t new_id)
32       : inst_(inst),
33         operand_index_(operand_index),
34         original_id_(inst->GetOperand(operand_index).words[0]),
35         original_type_(inst->GetOperand(operand_index).type),
36         new_id_(new_id) {}
37 
38   bool PreconditionHolds() override;
39 
40  protected:
41   void Apply() override;
42 
43  private:
44   opt::Instruction* const inst_;
45   const uint32_t operand_index_;
46   const uint32_t original_id_;
47   const spv_operand_type_t original_type_;
48   const uint32_t new_id_;
49 };
50 
51 }  // namespace reduce
52 }  // namespace spvtools
53 
54 #endif  // SOURCE_REDUCE_CHANGE_OPERAND_REDUCTION_OPPORTUNITY_H_
55