/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | upgrade_memory_model.cpp | 84 auto ext_inst = inst->GetSingleWordInOperand(1u); in UpgradeInstructions() local 85 if (ext_inst == GLSLstd450Modf || ext_inst == GLSLstd450Frexp) { in UpgradeInstructions() 723 void UpgradeMemoryModel::UpgradeExtInst(Instruction* ext_inst) { in UpgradeExtInst() argument 724 const bool is_modf = ext_inst->GetSingleWordInOperand(1u) == GLSLstd450Modf; in UpgradeExtInst() 725 auto ptr_id = ext_inst->GetSingleWordInOperand(3u); in UpgradeExtInst() 729 auto element_type_id = ext_inst->type_id(); in UpgradeExtInst() 738 ext_inst->SetOperand(3u, {static_cast<uint32_t>(new_op)}); in UpgradeExtInst() 740 ext_inst->RemoveOperand(5u); in UpgradeExtInst() 742 ext_inst->SetResultType(struct_id); in UpgradeExtInst() 747 auto where = ext_inst->NextNode(); in UpgradeExtInst() [all …]
|
/third_party/spirv-tools/source/opt/ |
D | upgrade_memory_model.cpp | 84 auto ext_inst = inst->GetSingleWordInOperand(1u); in UpgradeInstructions() local 85 if (ext_inst == GLSLstd450Modf || ext_inst == GLSLstd450Frexp) { in UpgradeInstructions() 723 void UpgradeMemoryModel::UpgradeExtInst(Instruction* ext_inst) { in UpgradeExtInst() argument 724 const bool is_modf = ext_inst->GetSingleWordInOperand(1u) == GLSLstd450Modf; in UpgradeExtInst() 725 auto ptr_id = ext_inst->GetSingleWordInOperand(3u); in UpgradeExtInst() 729 auto element_type_id = ext_inst->type_id(); in UpgradeExtInst() 738 ext_inst->SetOperand(3u, {static_cast<uint32_t>(new_op)}); in UpgradeExtInst() 740 ext_inst->RemoveOperand(5u); in UpgradeExtInst() 742 ext_inst->SetResultType(struct_id); in UpgradeExtInst() 747 auto where = ext_inst->NextNode(); in UpgradeExtInst() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | upgrade_memory_model.cpp | 84 auto ext_inst = inst->GetSingleWordInOperand(1u); in UpgradeInstructions() local 85 if (ext_inst == GLSLstd450Modf || ext_inst == GLSLstd450Frexp) { in UpgradeInstructions() 723 void UpgradeMemoryModel::UpgradeExtInst(Instruction* ext_inst) { in UpgradeExtInst() argument 724 const bool is_modf = ext_inst->GetSingleWordInOperand(1u) == GLSLstd450Modf; in UpgradeExtInst() 725 auto ptr_id = ext_inst->GetSingleWordInOperand(3u); in UpgradeExtInst() 729 auto element_type_id = ext_inst->type_id(); in UpgradeExtInst() 738 ext_inst->SetOperand(3u, {static_cast<uint32_t>(new_op)}); in UpgradeExtInst() 740 ext_inst->RemoveOperand(5u); in UpgradeExtInst() 742 ext_inst->SetResultType(struct_id); in UpgradeExtInst() 747 auto where = ext_inst->NextNode(); in UpgradeExtInst() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
D | CMakeLists.txt | 103 ext_inst.cldebug100_test.cpp 104 ext_inst.debuginfo_test.cpp 105 ext_inst.glsl_test.cpp 106 ext_inst.non_semantic_test.cpp 107 ext_inst.opencl_test.cpp
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
D | CMakeLists.txt | 103 ext_inst.cldebug100_test.cpp 104 ext_inst.debuginfo_test.cpp 105 ext_inst.glsl_test.cpp 106 ext_inst.non_semantic_test.cpp 107 ext_inst.opencl_test.cpp
|
/third_party/spirv-tools/test/ |
D | CMakeLists.txt | 103 ext_inst.cldebug100_test.cpp 104 ext_inst.debuginfo_test.cpp 105 ext_inst.glsl_test.cpp 106 ext_inst.non_semantic_test.cpp 107 ext_inst.opencl_test.cpp
|
/third_party/flutter/skia/third_party/externals/spirv-tools/source/ |
D | disassemble.cpp | 217 spv_ext_inst_desc ext_inst; in EmitOperand() local 218 if (grammar_.lookupExtInst(inst.ext_inst_type, word, &ext_inst)) in EmitOperand() 221 stream_ << ext_inst->name; in EmitOperand()
|
D | table.h | 57 const uint32_t ext_inst; member
|
D | ext_inst.cpp | 151 if (value == entry.ext_inst) { in spvExtInstTableValueLookup()
|
D | binary.cpp | 471 spv_ext_inst_desc ext_inst; in parseOperand() local 472 if (grammar_.lookupExtInst(inst->ext_inst_type, word, &ext_inst)) in parseOperand() 474 spvPushOperandTypes(ext_inst->operandTypes, expected_operands); in parseOperand()
|
/third_party/flutter/skia/third_party/externals/spirv-tools/test/ |
D | CMakeLists.txt | 82 ext_inst.glsl_test.cpp 83 ext_inst.opencl_test.cpp
|
/third_party/spirv-tools/source/ |
D | disassemble.cpp | 256 spv_ext_inst_desc ext_inst; in EmitOperand() local 258 if (grammar_.lookupExtInst(inst.ext_inst_type, word, &ext_inst) == in EmitOperand() 260 stream_ << ext_inst->name; in EmitOperand()
|
D | table.h | 74 const uint32_t ext_inst; member
|
D | ext_inst.cpp | 190 if (value == entry.ext_inst) { in spvExtInstTableValueLookup()
|
D | binary.cpp | 489 spv_ext_inst_desc ext_inst; in parseOperand() local 490 if (grammar_.lookupExtInst(inst->ext_inst_type, word, &ext_inst) == in parseOperand() 493 spvPushOperandTypes(ext_inst->operandTypes, expected_operands); in parseOperand()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
D | table.h | 74 const uint32_t ext_inst; member
|
D | disassemble.cpp | 256 spv_ext_inst_desc ext_inst; in EmitOperand() local 258 if (grammar_.lookupExtInst(inst.ext_inst_type, word, &ext_inst) == in EmitOperand() 260 stream_ << ext_inst->name; in EmitOperand()
|
D | ext_inst.cpp | 199 if (value == entry.ext_inst) { in spvExtInstTableValueLookup()
|
D | binary.cpp | 489 spv_ext_inst_desc ext_inst; in parseOperand() local 490 if (grammar_.lookupExtInst(inst->ext_inst_type, word, &ext_inst) == in parseOperand() 493 spvPushOperandTypes(ext_inst->operandTypes, expected_operands); in parseOperand()
|
/third_party/skia/third_party/externals/spirv-tools/source/ |
D | table.h | 74 const uint32_t ext_inst; member
|
D | disassemble.cpp | 256 spv_ext_inst_desc ext_inst; in EmitOperand() local 258 if (grammar_.lookupExtInst(inst.ext_inst_type, word, &ext_inst) == in EmitOperand() 260 stream_ << ext_inst->name; in EmitOperand()
|
D | ext_inst.cpp | 199 if (value == entry.ext_inst) { in spvExtInstTableValueLookup()
|
D | binary.cpp | 489 spv_ext_inst_desc ext_inst; in parseOperand() local 490 if (grammar_.lookupExtInst(inst->ext_inst_type, word, &ext_inst) == in parseOperand() 493 spvPushOperandTypes(ext_inst->operandTypes, expected_operands); in parseOperand()
|
/third_party/spirv-tools/ |
D | Android.mk | 13 source/ext_inst.cpp \ 209 $(LOCAL_PATH)/source/ext_inst.cpp: \ 255 $(LOCAL_PATH)/source/ext_inst.cpp: $(1)/$(2).insts.inc
|
/third_party/skia/third_party/externals/spirv-tools/ |
D | Android.mk | 13 source/ext_inst.cpp \ 216 $(LOCAL_PATH)/source/ext_inst.cpp: \ 264 $(LOCAL_PATH)/source/ext_inst.cpp: $(1)/$(2).insts.inc
|