Coverage Report

Created: 2025-06-13 06:49

/src/spirv-tools/source/opt/reflect.h
Line
Count
Source
1
// Copyright (c) 2016 Google Inc.
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_OPT_REFLECT_H_
16
#define SOURCE_OPT_REFLECT_H_
17
18
#include "source/latest_version_spirv_header.h"
19
#include "source/opcode.h"
20
21
namespace spvtools {
22
namespace opt {
23
24
// Note that as SPIR-V evolves over time, new opcodes may appear. So the
25
// following functions tend to be outdated and should be updated when SPIR-V
26
// version bumps.
27
28
14.7M
inline bool IsDebug1Inst(spv::Op opcode) {
29
14.7M
  return (opcode >= spv::Op::OpSourceContinued &&
30
14.7M
          opcode <= spv::Op::OpSourceExtension) ||
31
14.7M
         opcode == spv::Op::OpString;
32
14.7M
}
33
14.7M
inline bool IsDebug2Inst(spv::Op opcode) {
34
14.7M
  return opcode == spv::Op::OpName || opcode == spv::Op::OpMemberName;
35
14.7M
}
36
14.6M
inline bool IsDebug3Inst(spv::Op opcode) {
37
14.6M
  return opcode == spv::Op::OpModuleProcessed;
38
14.6M
}
39
20.4M
inline bool IsOpLineInst(spv::Op opcode) {
40
20.4M
  return opcode == spv::Op::OpLine || opcode == spv::Op::OpNoLine;
41
20.4M
}
42
15.4M
inline bool IsAnnotationInst(spv::Op opcode) {
43
15.4M
  return (opcode >= spv::Op::OpDecorate &&
44
15.4M
          opcode <= spv::Op::OpGroupMemberDecorate) ||
45
15.4M
         opcode == spv::Op::OpDecorateId ||
46
15.4M
         opcode == spv::Op::OpDecorateStringGOOGLE ||
47
15.4M
         opcode == spv::Op::OpMemberDecorateStringGOOGLE;
48
15.4M
}
49
8.26M
inline bool IsTypeInst(spv::Op opcode) {
50
8.26M
  return spvOpcodeGeneratesType(opcode) ||
51
8.26M
         opcode == spv::Op::OpTypeForwardPointer;
52
8.26M
}
53
23.9M
inline bool IsConstantInst(spv::Op opcode) {
54
23.9M
  return spvOpcodeIsConstant(opcode);
55
23.9M
}
56
206k
inline bool IsSpecConstantInst(spv::Op opcode) {
57
206k
  return spvOpcodeIsSpecConstant(opcode);
58
206k
}
59
60
}  // namespace opt
61
}  // namespace spvtools
62
63
#endif  // SOURCE_OPT_REFLECT_H_