Coverage Report

Created: 2025-07-11 07:07

/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.3k
inline bool IsDebug1Inst(spv::Op opcode) {
29
82.3k
  return (opcode >= spv::Op::OpSourceContinued &&
30
82.3k
          opcode <= spv::Op::OpSourceExtension) ||
31
82.3k
         opcode == spv::Op::OpString;
32
82.3k
}
33
75.8k
inline bool IsDebug2Inst(spv::Op opcode) {
34
75.8k
  return opcode == spv::Op::OpName || opcode == spv::Op::OpMemberName;
35
75.8k
}
36
51.7k
inline bool IsDebug3Inst(spv::Op opcode) {
37
51.7k
  return opcode == spv::Op::OpModuleProcessed;
38
51.7k
}
39
327k
inline bool IsOpLineInst(spv::Op opcode) {
40
327k
  return opcode == spv::Op::OpLine || opcode == spv::Op::OpNoLine;
41
327k
}
42
145k
inline bool IsAnnotationInst(spv::Op opcode) {
43
145k
  return (opcode >= spv::Op::OpDecorate &&
44
145k
          opcode <= spv::Op::OpGroupMemberDecorate) ||
45
145k
         opcode == spv::Op::OpDecorateId ||
46
145k
         opcode == spv::Op::OpDecorateStringGOOGLE ||
47
145k
         opcode == spv::Op::OpMemberDecorateStringGOOGLE;
48
145k
}
49
197k
inline bool IsTypeInst(spv::Op opcode) {
50
197k
  return spvOpcodeGeneratesType(opcode) ||
51
197k
         opcode == spv::Op::OpTypeForwardPointer;
52
197k
}
53
377k
inline bool IsConstantInst(spv::Op opcode) {
54
377k
  return spvOpcodeIsConstant(opcode);
55
377k
}
56
6.52k
inline bool IsSpecConstantInst(spv::Op opcode) {
57
6.52k
  return spvOpcodeIsSpecConstant(opcode);
58
6.52k
}
59
60
}  // namespace opt
61
}  // namespace spvtools
62
63
#endif  // SOURCE_OPT_REFLECT_H_