2016-07-08 13:44:10 +00:00
|
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// 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
|
2016-07-08 13:44:10 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2016-07-08 13:44:10 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// 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.
|
2016-07-08 13:44:10 +00:00
|
|
|
|
2018-08-03 19:06:09 +00:00
|
|
|
#include "source/val/instruction.h"
|
2016-08-06 17:29:33 +00:00
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
2018-07-07 13:38:00 +00:00
|
|
|
namespace spvtools {
|
2018-07-10 03:18:44 +00:00
|
|
|
namespace val {
|
2018-07-07 13:38:00 +00:00
|
|
|
|
2018-08-02 19:12:06 +00:00
|
|
|
Instruction::Instruction(const spv_parsed_instruction_t* inst)
|
2016-08-06 17:29:33 +00:00
|
|
|
: words_(inst->words, inst->words + inst->num_words),
|
|
|
|
operands_(inst->operands, inst->operands + inst->num_operands),
|
|
|
|
inst_({words_.data(), inst->num_words, inst->opcode, inst->ext_inst_type,
|
|
|
|
inst->type_id, inst->result_id, operands_.data(),
|
2018-08-02 19:12:06 +00:00
|
|
|
inst->num_operands}) {}
|
2016-07-08 13:44:10 +00:00
|
|
|
|
2016-08-06 17:29:33 +00:00
|
|
|
void Instruction::RegisterUse(const Instruction* inst, uint32_t index) {
|
2018-08-01 18:58:12 +00:00
|
|
|
uses_.push_back(std::make_pair(inst, index));
|
2016-07-08 13:44:10 +00:00
|
|
|
}
|
2018-07-07 13:38:00 +00:00
|
|
|
|
2018-08-02 19:12:06 +00:00
|
|
|
bool operator<(const Instruction& lhs, const Instruction& rhs) {
|
|
|
|
return lhs.id() < rhs.id();
|
|
|
|
}
|
|
|
|
bool operator<(const Instruction& lhs, uint32_t rhs) { return lhs.id() < rhs; }
|
|
|
|
bool operator==(const Instruction& lhs, const Instruction& rhs) {
|
|
|
|
return lhs.id() == rhs.id();
|
|
|
|
}
|
|
|
|
bool operator==(const Instruction& lhs, uint32_t rhs) {
|
|
|
|
return lhs.id() == rhs;
|
|
|
|
}
|
|
|
|
|
2018-07-10 03:18:44 +00:00
|
|
|
} // namespace val
|
2018-07-07 13:38:00 +00:00
|
|
|
} // namespace spvtools
|