diff options
author | Andrzej Janik <[email protected]> | 2020-09-06 21:38:01 +0200 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2020-09-08 21:29:18 +0200 |
commit | 76afbeba63d29e1247d5beb00902a8bb0279f791 (patch) | |
tree | db5a79853dcf5fcd4137a6542f9198a17e40e6fe /ptx/src/test/spirv_run/add.spvtxt | |
parent | bbb3a6c5cbaff3430191ef4858aa16be8320ce77 (diff) | |
download | ZLUDA-76afbeba63d29e1247d5beb00902a8bb0279f791.tar.gz ZLUDA-76afbeba63d29e1247d5beb00902a8bb0279f791.zip |
Implement support for PTX call instruction
Diffstat (limited to 'ptx/src/test/spirv_run/add.spvtxt')
-rw-r--r-- | ptx/src/test/spirv_run/add.spvtxt | 84 |
1 files changed, 46 insertions, 38 deletions
diff --git a/ptx/src/test/spirv_run/add.spvtxt b/ptx/src/test/spirv_run/add.spvtxt index 465a74e..6810fec 100644 --- a/ptx/src/test/spirv_run/add.spvtxt +++ b/ptx/src/test/spirv_run/add.spvtxt @@ -1,38 +1,46 @@ - OpCapability GenericPointer
- OpCapability Linkage
- OpCapability Addresses
- OpCapability Kernel
- OpCapability Int64
- OpCapability Int8
- %1 = OpExtInstImport "OpenCL.std"
- OpMemoryModel Physical64 OpenCL
- OpEntryPoint Kernel %5 "add"
- %void = OpTypeVoid
- %ulong = OpTypeInt 64 0
- %4 = OpTypeFunction %void %ulong %ulong
-%_ptr_Function_ulong = OpTypePointer Function %ulong
-%_ptr_Generic_ulong = OpTypePointer Generic %ulong
- %ulong_1 = OpConstant %ulong 1
- %5 = OpFunction %void None %4
- %6 = OpFunctionParameter %ulong
- %7 = OpFunctionParameter %ulong
- %21 = OpLabel
- %8 = OpVariable %_ptr_Function_ulong Function
- %9 = OpVariable %_ptr_Function_ulong Function
- %10 = OpVariable %_ptr_Function_ulong Function
- %11 = OpVariable %_ptr_Function_ulong Function
- OpStore %8 %6
- OpStore %9 %7
- %12 = OpLoad %ulong %8
- %19 = OpConvertUToPtr %_ptr_Generic_ulong %12
- %13 = OpLoad %ulong %19
- OpStore %10 %13
- %14 = OpLoad %ulong %10
- %15 = OpIAdd %ulong %14 %ulong_1
- OpStore %11 %15
- %16 = OpLoad %ulong %9
- %17 = OpLoad %ulong %11
- %20 = OpConvertUToPtr %_ptr_Generic_ulong %16
- OpStore %20 %17
- OpReturn
- OpFunctionEnd
+ OpCapability GenericPointer + OpCapability Linkage + OpCapability Addresses + OpCapability Kernel + OpCapability Int64 + OpCapability Int8 + %25 = OpExtInstImport "OpenCL.std" + OpMemoryModel Physical64 OpenCL + OpEntryPoint Kernel %1 "add" + %void = OpTypeVoid + %ulong = OpTypeInt 64 0 + %28 = OpTypeFunction %void %ulong %ulong +%_ptr_Function_ulong = OpTypePointer Function %ulong +%_ptr_Generic_ulong = OpTypePointer Generic %ulong + %ulong_1 = OpConstant %ulong 1 + %1 = OpFunction %void None %28 + %8 = OpFunctionParameter %ulong + %9 = OpFunctionParameter %ulong + %23 = OpLabel + %2 = OpVariable %_ptr_Function_ulong Function + %3 = OpVariable %_ptr_Function_ulong Function + %4 = OpVariable %_ptr_Function_ulong Function + %5 = OpVariable %_ptr_Function_ulong Function + %6 = OpVariable %_ptr_Function_ulong Function + %7 = OpVariable %_ptr_Function_ulong Function + OpStore %2 %8 + OpStore %3 %9 + %11 = OpLoad %ulong %2 + %10 = OpCopyObject %ulong %11 + OpStore %4 %10 + %13 = OpLoad %ulong %3 + %12 = OpCopyObject %ulong %13 + OpStore %5 %12 + %15 = OpLoad %ulong %4 + %21 = OpConvertUToPtr %_ptr_Generic_ulong %15 + %14 = OpLoad %ulong %21 + OpStore %6 %14 + %17 = OpLoad %ulong %6 + %16 = OpIAdd %ulong %17 %ulong_1 + OpStore %7 %16 + %18 = OpLoad %ulong %5 + %19 = OpLoad %ulong %7 + %22 = OpConvertUToPtr %_ptr_Generic_ulong %18 + OpStore %22 %19 + OpReturn + OpFunctionEnd |