/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVOpCodeEnum.h | 1 _SPIRV_OP(Nop, 0) 2 _SPIRV_OP(Undef, 1) 3 _SPIRV_OP(SourceContinued, 2) 4 _SPIRV_OP(Source, 3) 5 _SPIRV_OP(SourceExtension, 4) 6 _SPIRV_OP(Name, 5) 7 _SPIRV_OP(MemberName, 6) 8 _SPIRV_OP(String, 7) 9 _SPIRV_OP(Line, 8) 10 _SPIRV_OP(Extension, 10) [all …]
|
D | SPIRVInstruction.h | 660 #define _SPIRV_OP(x) typedef SPIRVBinaryInst<Op##x> SPIRV##x; 661 _SPIRV_OP(IAdd) 662 _SPIRV_OP(FAdd) 663 _SPIRV_OP(ISub) 664 _SPIRV_OP(FSub) 665 _SPIRV_OP(IMul) 666 _SPIRV_OP(FMul) 667 _SPIRV_OP(UDiv) 668 _SPIRV_OP(SDiv) 669 _SPIRV_OP(FDiv) [all …]
|
D | SPIRVEntry.h | 687 #define _SPIRV_OP(x, ...) typedef SPIRVEntryOpCodeOnly<Op##x> SPIRV##x; macro 688 _SPIRV_OP(Nop) 689 _SPIRV_OP(SourceContinued, 2) 690 _SPIRV_OP(TypeMatrix) 691 _SPIRV_OP(TypeRuntimeArray) 692 _SPIRV_OP(SpecConstantTrue) 693 _SPIRV_OP(SpecConstantFalse) 694 _SPIRV_OP(SpecConstant) 695 _SPIRV_OP(SpecConstantComposite) 696 _SPIRV_OP(Image) [all …]
|
D | SPIRVErrorEnum.h | 2 _SPIRV_OP(Success,"") 3 _SPIRV_OP(InvalidTargetTriple, "Expects spir-unknown-unknown or spir64-unknown-unknown.") 4 _SPIRV_OP(InvalidAddressingModel, "Expects 0-2.") 5 _SPIRV_OP(InvalidMemoryModel, "Expects 0-3.") 6 _SPIRV_OP(InvalidFunctionControlMask,"") 7 _SPIRV_OP(InvalidBuiltinSetName, "Expects OpenCL.std.")
|
D | SPIRVType.h | 362 #define _SPIRV_OP(x,...) {SPIRVTypeImageDescriptor S(__VA_ARGS__); \ in init() macro 364 _SPIRV_OP(image1d_t, Dim1D, 0, 0, 0, 0, 0) in init() 365 _SPIRV_OP(image1d_buffer_t, DimBuffer, 0, 0, 0, 0, 0) in init() 366 _SPIRV_OP(image1d_array_t, Dim1D, 0, 1, 0, 0, 0) in init() 367 _SPIRV_OP(image2d_t, Dim2D, 0, 0, 0, 0, 0) in init() 368 _SPIRV_OP(image2d_array_t, Dim2D, 0, 1, 0, 0, 0) in init() 369 _SPIRV_OP(image2d_depth_t, Dim2D, 1, 0, 0, 0, 0) in init() 370 _SPIRV_OP(image2d_array_depth_t, Dim2D, 1, 1, 0, 0, 0) in init() 371 _SPIRV_OP(image2d_msaa_t, Dim2D, 0, 0, 1, 0, 0) in init() 372 _SPIRV_OP(image2d_array_msaa_t, Dim2D, 0, 1, 1, 0, 0) in init() [all …]
|
D | SPIRVError.h | 63 #define _SPIRV_OP(x,y) SPIRVEC_##x, macro 65 #undef _SPIRV_OP 71 #define _SPIRV_OP(x,y) add(SPIRVEC_##x, std::string(#x)+": "+y); in init() macro 73 #undef _SPIRV_OP in init()
|
D | SPIRVOpCode.h | 52 #define _SPIRV_OP(x, ...) add(Op##x, #x); in init() macro 54 #undef _SPIRV_OP in init()
|
D | SPIRVEntry.cpp | 77 #define _SPIRV_OP(x,...) {Op##x, &SPIRV::create<SPIRV##x>}, in create() macro 79 #undef _SPIRV_OP in create()
|
/external/spirv-llvm/lib/SPIRV/ |
D | OCLUtil.h | 228 #define _SPIRV_OP(x) x, macro 229 _SPIRV_OP(cl_images) enumerator 230 _SPIRV_OP(cl_doubles) 231 _SPIRV_OP(cl_khr_int64_base_atomics) 232 _SPIRV_OP(cl_khr_int64_extended_atomics) 233 _SPIRV_OP(cl_khr_fp16) 234 _SPIRV_OP(cl_khr_gl_sharing) 235 _SPIRV_OP(cl_khr_gl_event) 236 _SPIRV_OP(cl_khr_d3d10_sharing) 237 _SPIRV_OP(cl_khr_media_sharing) [all …]
|
D | SPIRVInternal.h | 89 #define _SPIRV_OP(x,y) add(Instruction::x, Op##y); in init() macro 91 _SPIRV_OP(ZExt, UConvert) in init() 92 _SPIRV_OP(SExt, SConvert) in init() 93 _SPIRV_OP(Trunc, UConvert) in init() 94 _SPIRV_OP(FPToUI, ConvertFToU) in init() 95 _SPIRV_OP(FPToSI, ConvertFToS) in init() 96 _SPIRV_OP(UIToFP, ConvertUToF) in init() 97 _SPIRV_OP(SIToFP, ConvertSToF) in init() 98 _SPIRV_OP(FPTrunc, FConvert) in init() 99 _SPIRV_OP(FPExt, FConvert) in init() [all …]
|