Coverage Report

Created: 2025-12-03 06:45

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/shaderc/third_party/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
82.7k
inline bool IsDebug1Inst(spv::Op opcode) {
29
82.7k
  return (opcode >= spv::Op::OpSourceContinued &&
30
82.7k
          opcode <= spv::Op::OpSourceExtension) ||
31
78.9k
         opcode == spv::Op::OpString;
32
82.7k
}
33
78.9k
inline bool IsDebug2Inst(spv::Op opcode) {
34
78.9k
  return opcode == spv::Op::OpName || opcode == spv::Op::OpMemberName;
35
78.9k
}
36
52.9k
inline bool IsDebug3Inst(spv::Op opcode) {
37
52.9k
  return opcode == spv::Op::OpModuleProcessed;
38
52.9k
}
39
389k
inline bool IsOpLineInst(spv::Op opcode) {
40
389k
  return opcode == spv::Op::OpLine || opcode == spv::Op::OpNoLine;
41
389k
}
42
164k
inline bool IsAnnotationInst(spv::Op opcode) {
43
164k
  return (opcode >= spv::Op::OpDecorate &&
44
29.6k
          opcode <= spv::Op::OpGroupMemberDecorate) ||
45
134k
         opcode == spv::Op::OpDecorateId ||
46
134k
         opcode == spv::Op::OpDecorateStringGOOGLE ||
47
134k
         opcode == spv::Op::OpMemberDecorateStringGOOGLE;
48
164k
}
49
218k
inline bool IsTypeInst(spv::Op opcode) {
50
218k
  return spvOpcodeGeneratesType(opcode) ||
51
106k
         opcode == spv::Op::OpTypeForwardPointer;
52
218k
}
53
416k
inline bool IsConstantInst(spv::Op opcode) {
54
416k
  return spvOpcodeIsConstant(opcode);
55
416k
}
56
6.96k
inline bool IsSpecConstantInst(spv::Op opcode) {
57
6.96k
  return spvOpcodeIsSpecConstant(opcode);
58
6.96k
}
59
60
}  // namespace opt
61
}  // namespace spvtools
62
63
#endif  // SOURCE_OPT_REFLECT_H_