Coverage Report

Created: 2026-06-07 07:03

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
13.1k
inline bool IsDebug1Inst(spv::Op opcode) {
29
13.1k
  return (opcode >= spv::Op::OpSourceContinued &&
30
13.1k
          opcode <= spv::Op::OpSourceExtension) ||
31
12.3k
         opcode == spv::Op::OpString;
32
13.1k
}
33
12.3k
inline bool IsDebug2Inst(spv::Op opcode) {
34
12.3k
  return opcode == spv::Op::OpName || opcode == spv::Op::OpMemberName;
35
12.3k
}
36
8.61k
inline bool IsDebug3Inst(spv::Op opcode) {
37
8.61k
  return opcode == spv::Op::OpModuleProcessed;
38
8.61k
}
39
60.5k
inline bool IsOpLineInst(spv::Op opcode) {
40
60.5k
  return opcode == spv::Op::OpLine || opcode == spv::Op::OpNoLine;
41
60.5k
}
42
17.4k
inline bool IsAnnotationInst(spv::Op opcode) {
43
17.4k
  return (opcode >= spv::Op::OpDecorate &&
44
4.08k
          opcode <= spv::Op::OpGroupMemberDecorate) ||
45
13.4k
         opcode == spv::Op::OpDecorateId ||
46
13.4k
         opcode == spv::Op::OpDecorateStringGOOGLE ||
47
13.4k
         opcode == spv::Op::OpMemberDecorateStringGOOGLE ||
48
13.4k
         opcode == spv::Op::OpMemberDecorateIdEXT;
49
17.4k
}
50
34.3k
inline bool IsTypeInst(spv::Op opcode) {
51
34.3k
  return spvOpcodeGeneratesType(opcode) ||
52
16.9k
         opcode == spv::Op::OpTypeForwardPointer;
53
34.3k
}
54
60.3k
inline bool IsConstantInst(spv::Op opcode) {
55
60.3k
  return spvOpcodeIsConstant(opcode);
56
60.3k
}
57
1.34k
inline bool IsSpecConstantInst(spv::Op opcode) {
58
1.34k
  return spvOpcodeIsSpecConstant(opcode);
59
1.34k
}
60
61
}  // namespace opt
62
}  // namespace spvtools
63
64
#endif  // SOURCE_OPT_REFLECT_H_