Home
last modified time | relevance | path

Searched defs:opCode (Results 1 – 13 of 13) sorted by relevance

/third_party/glslang/SPIRV/
DSPVRemapper.cpp64 const spv::Op opCode = asOpCode(word); in asOpCodeHash() local
136 const spv::Op opCode = asOpCode(typeStart); in typeSizeInWords() local
367 [&](spv::Op opCode, unsigned start) { in stripDebug()
380 [&](spv::Op opCode, unsigned start) { in stripDeadRefs()
423 [&](spv::Op opCode, unsigned start) { in buildLocalMaps()
520 spv::Op opCode = asOpCode(instructionStart); in processInstruction() local
748 const spv::Op opCode = asOpCode(start); in mapFnBodies() local
790 [&](spv::Op opCode, unsigned start) { in mapFnBodies()
858 [&](spv::Op opCode, unsigned start) { in forwardLoadStores()
888 [&](spv::Op opCode, unsigned start) { in forwardLoadStores()
[all …]
Ddisassemble.cpp168 Op opCode = (Op)(firstWord & OpCodeMask); in processInstructions() local
320 void SpirvStream::disassembleInstruction(Id resultId, Id /*typeId*/, Op opCode, int numOperands) in disassembleInstruction()
DspvIR.h96 …Instruction(Id resultId, Id typeId, Op opCode) : resultId(resultId), typeId(typeId), opCode(opCode… in Instruction()
97 …explicit Instruction(Op opCode) : resultId(NoResult), typeId(NoType), opCode(opCode), block(nullpt… in Instruction()
185 Op opCode; variable
DSpvBuilder.cpp1691 void Builder::createNoResultOp(Op opCode) in createNoResultOp()
1698 void Builder::createNoResultOp(Op opCode, Id operand) in createNoResultOp()
1706 void Builder::createNoResultOp(Op opCode, const std::vector<Id>& operands) in createNoResultOp()
1716 void Builder::createNoResultOp(Op opCode, const std::vector<IdImmediate>& operands) in createNoResultOp()
1746 Id Builder::createUnaryOp(Op opCode, Id typeId, Id operand) in createUnaryOp()
1760 Id Builder::createBinOp(Op opCode, Id typeId, Id left, Id right) in createBinOp()
1777 Id Builder::createTriOp(Op opCode, Id typeId, Id op1, Id op2, Id op3) in createTriOp()
1798 Id Builder::createOp(Op opCode, Id typeId, const std::vector<Id>& operands) in createOp()
1808 Id Builder::createOp(Op opCode, Id typeId, const std::vector<IdImmediate>& operands) in createOp()
1822 Id Builder::createSpecConstantOp(Op opCode, Id typeId, const std::vector<Id>& operands, in createSpecConstantOp()
[all …]
DGlslangToSpv.cpp6696 spv::Op opCode = spv::OpNop; in createAtomicOperation() local
6872 spv::Op opCode = spv::OpNop; in createInvocationsOperation() local
7241 spv::Op opCode = spv::OpNop; in createSubgroupOperation() local
7479 spv::Op opCode = spv::OpNop; in createMiscOperation() local
/third_party/flutter/skia/src/sksl/
DSkSLSPIRVCodeGenerator.cpp186 void SPIRVCodeGenerator::writeOpCode(SpvOp_ opCode, int length, OutputStream& out) { in writeOpCode()
243 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, OutputStream& out) { in writeInstruction()
247 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, OutputStream& out) { in writeInstruction()
269 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, StringFragment string, OutputStream& out) { in writeInstruction()
275 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, StringFragment string, in writeInstruction()
282 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
290 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
297 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
305 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
314 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
[all …]
/third_party/skia/src/sksl/codegen/
DSkSLSPIRVCodeGenerator.cpp241 void SPIRVCodeGenerator::writeOpCode(SpvOp_ opCode, int length, OutputStream& out) { in writeOpCode()
310 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, OutputStream& out) { in writeInstruction()
314 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, OutputStream& out) { in writeInstruction()
337 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, skstd::string_view string, in writeInstruction()
344 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, skstd::string_view string, in writeInstruction()
351 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
359 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
366 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
374 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
383 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, in writeInstruction()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCMIPeephole.cpp1000 static bool isSupportedCmpOp(unsigned opCode) { in isSupportedCmpOp()
1007 static bool is64bitCmpOp(unsigned opCode) { in is64bitCmpOp()
1012 static bool isSignedCmpOp(unsigned opCode) { in isSignedCmpOp()
1017 static unsigned getSignedCmpOpCode(unsigned opCode) { in getSignedCmpOpCode()
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/
DPrecise_test.cpp124 spv::Op opCode; in ValidateDecorations() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCDuplexInfo.cpp1019 static bool isStoreInst(unsigned opCode) { in isStoreInst()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dglslang_wrapper_utils.cpp2972 spv::Op opCode; in resolveVariableIds() local
3023 spv::Op opCode; in transformInstruction() local
3922 spv::Op opCode; in transformInstruction() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp1223 static MCInst makeCombineInst(int opCode, MCOperand &Rdd, MCOperand &MO1, in makeCombineInst()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp1225 const char* opCode; member
11431 const char* opCode; in createFloat16LogicalSet() member