first 5 words of module are the headers
| 38 | |
| 39 | static const int kModuleStartingOffset = 5; // first 5 words of module are the headers |
| 40 | static inline uint32_t Opcode(uint32_t instruction) { return instruction & 0x0ffffu; } |
| 41 | static inline uint32_t Length(uint32_t instruction) { return instruction >> 16; } |
| 42 | |
| 43 | struct SpirvLoggingInfo { |
no outgoing calls
no test coverage detected