├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── HSAILAsm ├── CMakeLists.txt └── HSAILAsm.cpp ├── README.md ├── bin ├── cmake_lnx_amd.sh └── cmake_win_amd.bat ├── cmake_modules ├── FindLibDwarf.cmake ├── FindLibElf.cmake └── FindRE2C.cmake ├── docs ├── HSA-PRM-1.02.pdf ├── hsail_lex.txt └── hsail_syntax.txt ├── libHSAIL-AMD ├── Brig_amd.h ├── CMakeLists.txt ├── HSAILAmdExt.cpp ├── HSAILAmdExt.h ├── dg.cpp ├── dg.hdl ├── gcn.cpp ├── gcn.hdl ├── generate.pl ├── mipmap.cpp └── mipmap.hdl ├── libHSAIL ├── Brig.h ├── BrigDwarfGenerator.cpp ├── BrigDwarfGenerator.h ├── BrigMeta.info ├── CMakeLists.txt ├── HDLProcessor.pl ├── HSAILBrigContainer.cpp ├── HSAILBrigContainer.h ├── HSAILBrigObjectFile.cpp ├── HSAILBrigObjectFile.h ├── HSAILBrigantine.cpp ├── HSAILBrigantine.h ├── HSAILConvertors.h ├── HSAILCore.hdl ├── HSAILDefs.hdl ├── HSAILDisassembler.cpp ├── HSAILDisassembler.h ├── HSAILDump.cpp ├── HSAILDump.h ├── HSAILExtManager.cpp ├── HSAILExtManager.h ├── HSAILExtension.h ├── HSAILFloats.cpp ├── HSAILFloats.h ├── HSAILGenericExtension.h ├── HSAILImage.hdl ├── HSAILImageExt.cpp ├── HSAILImageExt.h ├── HSAILInstProps.cpp ├── HSAILInstProps.h ├── HSAILItemBase.h ├── HSAILItems.cpp ├── HSAILItems.h ├── HSAILParser.cpp ├── HSAILParser.h ├── HSAILSRef.h ├── HSAILScanner.cpp ├── HSAILScanner.h ├── HSAILScannerRules.cpp ├── HSAILScannerRules.re2c ├── HSAILScope.h ├── HSAILTool.cpp ├── HSAILTool.h ├── HSAILTypeUtilities.h ├── HSAILUtilities.cpp ├── HSAILUtilities.h ├── HSAILValidator.cpp ├── HSAILValidator.h ├── HSAILValidatorBase.cpp ├── HSAILValidatorBase.h ├── HSAILb128_t.h ├── SectionHeaderTable.h ├── doxy.cfg ├── generate.pl ├── hsa_dwarf.h ├── hsail_c.cpp └── hsail_c.h └── tests └── 1.0 ├── instruction ├── CMakeLists.txt ├── CORE-base-large.hsail ├── CORE-base-small.hsail ├── CORE-full-large.hsail ├── CORE-full-small.hsail ├── IMAGE-base-large.hsail ├── IMAGE-base-small.hsail ├── IMAGE-full-large.hsail ├── IMAGE-full-small.hsail ├── amd_gcn-base-large.hsail ├── amd_gcn-base-small.hsail ├── amd_gcn-full-large.hsail ├── amd_gcn-full-small.hsail ├── amd_mipmap-base-large.hsail ├── amd_mipmap-base-small.hsail ├── amd_mipmap-full-large.hsail ├── amd_mipmap-full-small.hsail ├── generate.sh ├── run_test └── run_test.cmd ├── simple.hsail ├── syntax ├── 000_empty_1.hsail ├── 000_inst_image_large.hsail ├── 000_inst_image_small.hsail ├── 000_inst_large.hsail ├── 000_inst_large_base.hsail ├── 000_inst_small.hsail ├── 001_delimiters.hsail ├── 001_order_1.hsail ├── 001_order_2.hsail ├── 001_order_3.hsail ├── 002_version_large.hsail ├── 002_version_small.hsail ├── 003_pragma.hsail ├── 004_extension.hsail ├── 004_extension_CORE.hsail ├── 004_extension_CORE_0.hsail ├── 005_control_00.hsail ├── 005_control_01.hsail ├── 005_control_02.hsail ├── 005_control_03.hsail ├── 005_control_04.hsail ├── 005_control_05.hsail ├── 005_control_06.hsail ├── 005_control_07.hsail ├── 005_control_08.hsail ├── 005_control_09.hsail ├── 005_control_10.hsail ├── 005_control_enablebreakexceptions_1.hsail ├── 005_control_enablebreakexceptions_2.hsail ├── 005_control_enabledetectexceptions_1.hsail ├── 005_control_enabledetectexceptions_2.hsail ├── 005_control_maxdynamicgroupsize.hsail ├── 005_control_maxflatgridsize_1.hsail ├── 005_control_maxflatgridsize_2.hsail ├── 005_control_maxflatworkgroupsize_1.hsail ├── 005_control_maxflatworkgroupsize_2.hsail ├── 005_control_requireddim.hsail ├── 005_control_requiredgridsize_1.hsail ├── 005_control_requiredgridsize_2.hsail ├── 005_control_requiredworkgroupsize_1.hsail ├── 005_control_requiredworkgroupsize_2.hsail ├── 006_loc.hsail ├── 009_function_arg_align.hsail ├── 009_function_arg_array.hsail ├── 009_function_arg_flexible_array.hsail ├── 009_function_arg_generic.hsail ├── 009_function_arg_generic_base.hsail ├── 009_function_arg_passing.hsail ├── 009_function_decl.hsail ├── 009_function_forw_decl.hsail ├── 009_function_generic.hsail ├── 009_function_indirect.hsail ├── 009_function_indirect_small.hsail ├── 009_function_module.hsail ├── 009_function_signature_0.hsail ├── 009_function_signature_1.hsail ├── 009_function_width.hsail ├── 010_kernel_args.hsail ├── 010_kernel_decl.hsail ├── 010_kernel_generic.hsail ├── 010_kernel_module.hsail ├── 011_argscope_generic.hsail ├── 011_argscope_jumps_01.hsail ├── 011_argscope_jumps_02.hsail ├── 011_argscope_jumps_03.hsail ├── 011_argscope_jumps_04.hsail ├── 011_argscope_jumps_05.hsail ├── 011_argscope_special.hsail ├── 012_var_align.hsail ├── 012_var_alloc.hsail ├── 012_var_array.hsail ├── 012_var_array_init.hsail ├── 012_var_base.hsail ├── 012_var_decl.hsail ├── 012_var_generic.hsail ├── 012_var_img.hsail ├── 012_var_module.hsail ├── 012_var_sampler.hsail ├── 013_name_1.hsail ├── 013_name_2.hsail ├── 013_name_3.hsail ├── 013_name_4.hsail ├── 014_branch.hsail ├── 015_large_memory_model.hsail ├── 015_small_memory_model.hsail ├── 016_literal_conversion.hsail ├── 016_literal_conversions_1_0.hsail ├── 017_addressing.hsail ├── 018_aggregate_const.hsail ├── 019_reg_limit.hsail ├── CMakeLists.txt ├── run_test └── run_test.cmd └── syntax_validation ├── CMakeLists.txt ├── golden.zip ├── hsail_negative_tests.txt ├── run_test ├── run_test.cmd └── testgen.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HSAILAsm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/HSAILAsm/CMakeLists.txt -------------------------------------------------------------------------------- /HSAILAsm/HSAILAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/HSAILAsm/HSAILAsm.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/README.md -------------------------------------------------------------------------------- /bin/cmake_lnx_amd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/bin/cmake_lnx_amd.sh -------------------------------------------------------------------------------- /bin/cmake_win_amd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/bin/cmake_win_amd.bat -------------------------------------------------------------------------------- /cmake_modules/FindLibDwarf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/cmake_modules/FindLibDwarf.cmake -------------------------------------------------------------------------------- /cmake_modules/FindLibElf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/cmake_modules/FindLibElf.cmake -------------------------------------------------------------------------------- /cmake_modules/FindRE2C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/cmake_modules/FindRE2C.cmake -------------------------------------------------------------------------------- /docs/HSA-PRM-1.02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/docs/HSA-PRM-1.02.pdf -------------------------------------------------------------------------------- /docs/hsail_lex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/docs/hsail_lex.txt -------------------------------------------------------------------------------- /docs/hsail_syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/docs/hsail_syntax.txt -------------------------------------------------------------------------------- /libHSAIL-AMD/Brig_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/Brig_amd.h -------------------------------------------------------------------------------- /libHSAIL-AMD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/CMakeLists.txt -------------------------------------------------------------------------------- /libHSAIL-AMD/HSAILAmdExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/HSAILAmdExt.cpp -------------------------------------------------------------------------------- /libHSAIL-AMD/HSAILAmdExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/HSAILAmdExt.h -------------------------------------------------------------------------------- /libHSAIL-AMD/dg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/dg.cpp -------------------------------------------------------------------------------- /libHSAIL-AMD/dg.hdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/dg.hdl -------------------------------------------------------------------------------- /libHSAIL-AMD/gcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/gcn.cpp -------------------------------------------------------------------------------- /libHSAIL-AMD/gcn.hdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/gcn.hdl -------------------------------------------------------------------------------- /libHSAIL-AMD/generate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/generate.pl -------------------------------------------------------------------------------- /libHSAIL-AMD/mipmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/mipmap.cpp -------------------------------------------------------------------------------- /libHSAIL-AMD/mipmap.hdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL-AMD/mipmap.hdl -------------------------------------------------------------------------------- /libHSAIL/Brig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/Brig.h -------------------------------------------------------------------------------- /libHSAIL/BrigDwarfGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/BrigDwarfGenerator.cpp -------------------------------------------------------------------------------- /libHSAIL/BrigDwarfGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/BrigDwarfGenerator.h -------------------------------------------------------------------------------- /libHSAIL/BrigMeta.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/BrigMeta.info -------------------------------------------------------------------------------- /libHSAIL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/CMakeLists.txt -------------------------------------------------------------------------------- /libHSAIL/HDLProcessor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HDLProcessor.pl -------------------------------------------------------------------------------- /libHSAIL/HSAILBrigContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILBrigContainer.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILBrigContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILBrigContainer.h -------------------------------------------------------------------------------- /libHSAIL/HSAILBrigObjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILBrigObjectFile.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILBrigObjectFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILBrigObjectFile.h -------------------------------------------------------------------------------- /libHSAIL/HSAILBrigantine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILBrigantine.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILBrigantine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILBrigantine.h -------------------------------------------------------------------------------- /libHSAIL/HSAILConvertors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILConvertors.h -------------------------------------------------------------------------------- /libHSAIL/HSAILCore.hdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILCore.hdl -------------------------------------------------------------------------------- /libHSAIL/HSAILDefs.hdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILDefs.hdl -------------------------------------------------------------------------------- /libHSAIL/HSAILDisassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILDisassembler.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILDisassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILDisassembler.h -------------------------------------------------------------------------------- /libHSAIL/HSAILDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILDump.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILDump.h -------------------------------------------------------------------------------- /libHSAIL/HSAILExtManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILExtManager.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILExtManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILExtManager.h -------------------------------------------------------------------------------- /libHSAIL/HSAILExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILExtension.h -------------------------------------------------------------------------------- /libHSAIL/HSAILFloats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILFloats.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILFloats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILFloats.h -------------------------------------------------------------------------------- /libHSAIL/HSAILGenericExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILGenericExtension.h -------------------------------------------------------------------------------- /libHSAIL/HSAILImage.hdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILImage.hdl -------------------------------------------------------------------------------- /libHSAIL/HSAILImageExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILImageExt.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILImageExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILImageExt.h -------------------------------------------------------------------------------- /libHSAIL/HSAILInstProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILInstProps.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILInstProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILInstProps.h -------------------------------------------------------------------------------- /libHSAIL/HSAILItemBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILItemBase.h -------------------------------------------------------------------------------- /libHSAIL/HSAILItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILItems.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILItems.h -------------------------------------------------------------------------------- /libHSAIL/HSAILParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILParser.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILParser.h -------------------------------------------------------------------------------- /libHSAIL/HSAILSRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILSRef.h -------------------------------------------------------------------------------- /libHSAIL/HSAILScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILScanner.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILScanner.h -------------------------------------------------------------------------------- /libHSAIL/HSAILScannerRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILScannerRules.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILScannerRules.re2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILScannerRules.re2c -------------------------------------------------------------------------------- /libHSAIL/HSAILScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILScope.h -------------------------------------------------------------------------------- /libHSAIL/HSAILTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILTool.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILTool.h -------------------------------------------------------------------------------- /libHSAIL/HSAILTypeUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILTypeUtilities.h -------------------------------------------------------------------------------- /libHSAIL/HSAILUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILUtilities.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILUtilities.h -------------------------------------------------------------------------------- /libHSAIL/HSAILValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILValidator.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILValidator.h -------------------------------------------------------------------------------- /libHSAIL/HSAILValidatorBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILValidatorBase.cpp -------------------------------------------------------------------------------- /libHSAIL/HSAILValidatorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILValidatorBase.h -------------------------------------------------------------------------------- /libHSAIL/HSAILb128_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/HSAILb128_t.h -------------------------------------------------------------------------------- /libHSAIL/SectionHeaderTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/SectionHeaderTable.h -------------------------------------------------------------------------------- /libHSAIL/doxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/doxy.cfg -------------------------------------------------------------------------------- /libHSAIL/generate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/generate.pl -------------------------------------------------------------------------------- /libHSAIL/hsa_dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/hsa_dwarf.h -------------------------------------------------------------------------------- /libHSAIL/hsail_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/hsail_c.cpp -------------------------------------------------------------------------------- /libHSAIL/hsail_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/libHSAIL/hsail_c.h -------------------------------------------------------------------------------- /tests/1.0/instruction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/CMakeLists.txt -------------------------------------------------------------------------------- /tests/1.0/instruction/CORE-base-large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/CORE-base-large.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/CORE-base-small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/CORE-base-small.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/CORE-full-large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/CORE-full-large.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/CORE-full-small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/CORE-full-small.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/IMAGE-base-large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/IMAGE-base-large.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/IMAGE-base-small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/IMAGE-base-small.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/IMAGE-full-large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/IMAGE-full-large.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/IMAGE-full-small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/IMAGE-full-small.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/amd_gcn-base-large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/amd_gcn-base-large.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/amd_gcn-base-small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/amd_gcn-base-small.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/amd_gcn-full-large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/amd_gcn-full-large.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/amd_gcn-full-small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/amd_gcn-full-small.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/amd_mipmap-base-large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/amd_mipmap-base-large.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/amd_mipmap-base-small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/amd_mipmap-base-small.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/amd_mipmap-full-large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/amd_mipmap-full-large.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/amd_mipmap-full-small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/amd_mipmap-full-small.hsail -------------------------------------------------------------------------------- /tests/1.0/instruction/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/generate.sh -------------------------------------------------------------------------------- /tests/1.0/instruction/run_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/run_test -------------------------------------------------------------------------------- /tests/1.0/instruction/run_test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/instruction/run_test.cmd -------------------------------------------------------------------------------- /tests/1.0/simple.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/simple.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/000_empty_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/000_empty_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/000_inst_image_large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/000_inst_image_large.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/000_inst_image_small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/000_inst_image_small.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/000_inst_large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/000_inst_large.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/000_inst_large_base.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/000_inst_large_base.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/000_inst_small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/000_inst_small.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/001_delimiters.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/001_delimiters.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/001_order_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/001_order_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/001_order_2.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/001_order_2.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/001_order_3.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/001_order_3.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/002_version_large.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/002_version_large.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/002_version_small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/002_version_small.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/003_pragma.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/003_pragma.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/004_extension.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/004_extension.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/004_extension_CORE.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/004_extension_CORE.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/004_extension_CORE_0.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/004_extension_CORE_0.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_00.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_00.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_01.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_01.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_02.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_02.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_03.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_03.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_04.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_04.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_05.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_05.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_06.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_06.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_07.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_07.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_08.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_08.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_09.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_09.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_10.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_10.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_enablebreakexceptions_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_enablebreakexceptions_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_enablebreakexceptions_2.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_enablebreakexceptions_2.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_enabledetectexceptions_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_enabledetectexceptions_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_enabledetectexceptions_2.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_enabledetectexceptions_2.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_maxdynamicgroupsize.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_maxdynamicgroupsize.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_maxflatgridsize_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_maxflatgridsize_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_maxflatgridsize_2.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_maxflatgridsize_2.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_maxflatworkgroupsize_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_maxflatworkgroupsize_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_maxflatworkgroupsize_2.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_maxflatworkgroupsize_2.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_requireddim.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_requireddim.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_requiredgridsize_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_requiredgridsize_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_requiredgridsize_2.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_requiredgridsize_2.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_requiredworkgroupsize_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_requiredworkgroupsize_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/005_control_requiredworkgroupsize_2.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/005_control_requiredworkgroupsize_2.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/006_loc.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/006_loc.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_arg_align.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_arg_align.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_arg_array.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_arg_array.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_arg_flexible_array.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_arg_flexible_array.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_arg_generic.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_arg_generic.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_arg_generic_base.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_arg_generic_base.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_arg_passing.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_arg_passing.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_decl.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_decl.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_forw_decl.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_forw_decl.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_generic.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_generic.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_indirect.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_indirect.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_indirect_small.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_indirect_small.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_module.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_module.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_signature_0.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_signature_0.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_signature_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_signature_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/009_function_width.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/009_function_width.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/010_kernel_args.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/010_kernel_args.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/010_kernel_decl.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/010_kernel_decl.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/010_kernel_generic.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/010_kernel_generic.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/010_kernel_module.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/010_kernel_module.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/011_argscope_generic.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/011_argscope_generic.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/011_argscope_jumps_01.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/011_argscope_jumps_01.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/011_argscope_jumps_02.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/011_argscope_jumps_02.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/011_argscope_jumps_03.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/011_argscope_jumps_03.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/011_argscope_jumps_04.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/011_argscope_jumps_04.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/011_argscope_jumps_05.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/011_argscope_jumps_05.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/011_argscope_special.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/011_argscope_special.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_align.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_align.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_alloc.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_alloc.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_array.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_array.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_array_init.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_array_init.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_base.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_base.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_decl.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_decl.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_generic.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_generic.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_img.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_img.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_module.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_module.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/012_var_sampler.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/012_var_sampler.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/013_name_1.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/013_name_1.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/013_name_2.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/013_name_2.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/013_name_3.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/013_name_3.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/013_name_4.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/013_name_4.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/014_branch.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/014_branch.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/015_large_memory_model.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/015_large_memory_model.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/015_small_memory_model.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/015_small_memory_model.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/016_literal_conversion.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/016_literal_conversion.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/016_literal_conversions_1_0.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/016_literal_conversions_1_0.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/017_addressing.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/017_addressing.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/018_aggregate_const.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/018_aggregate_const.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/019_reg_limit.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/019_reg_limit.hsail -------------------------------------------------------------------------------- /tests/1.0/syntax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/CMakeLists.txt -------------------------------------------------------------------------------- /tests/1.0/syntax/run_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/run_test -------------------------------------------------------------------------------- /tests/1.0/syntax/run_test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax/run_test.cmd -------------------------------------------------------------------------------- /tests/1.0/syntax_validation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax_validation/CMakeLists.txt -------------------------------------------------------------------------------- /tests/1.0/syntax_validation/golden.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax_validation/golden.zip -------------------------------------------------------------------------------- /tests/1.0/syntax_validation/hsail_negative_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax_validation/hsail_negative_tests.txt -------------------------------------------------------------------------------- /tests/1.0/syntax_validation/run_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax_validation/run_test -------------------------------------------------------------------------------- /tests/1.0/syntax_validation/run_test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax_validation/run_test.cmd -------------------------------------------------------------------------------- /tests/1.0/syntax_validation/testgen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Tools/HEAD/tests/1.0/syntax_validation/testgen.pl --------------------------------------------------------------------------------