├── .gitignore ├── .hgignore ├── .hgtags ├── CMakeLists.txt ├── Doxyfile.in ├── LICENSE.TXT ├── README ├── README.md ├── demo ├── aqlDemo.cc ├── atomicexch.cc ├── barrierTest.cc ├── debug.cc ├── dumpDebugInfo.cc ├── fcos.cc ├── fib.cc ├── fibDebug.cc └── vectorCopy.cc ├── gmock ├── gmock-gtest-all.cc ├── gmock.h └── gmock_main.cc ├── gtest ├── gtest-all.cc ├── gtest.h └── gtest_main.cc ├── include ├── AMDGPUDebug.h ├── brig.h ├── brig_control_block.h ├── brig_engine.h ├── brig_function.h ├── brig_inst_helper.h ├── brig_llvm.h ├── brig_module.h ├── brig_reader.h ├── brig_runtime.h ├── brig_runtime_internal.h ├── brig_scope.h ├── brig_symbol.h ├── brig_util.h ├── bugs.h ├── hsa.h ├── hsa_perf.h ├── hsacommon.h ├── hsacore.h ├── hsacorecommon.h ├── hsailasm_wrapper.h └── newcore.h ├── src ├── CMakeLists.txt ├── brig2llvm │ ├── CMakeLists.txt │ ├── brig2llvm.cc │ ├── brig_control_block.cc │ ├── brig_engine.cc │ ├── brig_function.cc │ ├── brig_inst_helper.cc │ ├── brig_module.cc │ ├── brig_reader.cc │ ├── brig_runtime.cc │ ├── brig_scope.cc │ ├── brig_symbol.cc │ ├── hsailasm_wrapper.cc │ ├── math_private.h │ ├── s_fma.c │ └── scripts │ │ └── cmake │ │ ├── EnsureAtomicOps.cmake │ │ ├── EnsureELFisPresent.cmake │ │ ├── EnsureLLVMisPresent.cmake │ │ ├── EnsureLibDwarfisPresent.cmake │ │ ├── EnsureLibHSAILisPresent.cmake │ │ └── FindTargetArch.cmake ├── hsa_runtime │ ├── CMakeLists.txt │ ├── hsa_debug.cc │ ├── hsa_perf.cc │ └── hsa_runtime.cc └── newcore │ ├── CMakeLists.txt │ └── newcore.cc └── test ├── AllUp.hsail ├── CMakeLists.txt ├── VectorAdd.hsail ├── VectorCopy.bin ├── VectorCopy.hsail ├── aqlDemo.hsail ├── atomicexch.hsail ├── barrierTest.hsail ├── brig_reader_test.cc ├── brig_runtime_test.cc ├── brig_runtime_test_internal.h ├── brig_validate.cc ├── fcos.hsail ├── fib.hsail ├── hsa_runtime_test.cc ├── hsail_gdb_test.py ├── hsail_gdb_test_common.py ├── hsail_tests_p.hsail ├── llvm_shutdown.cc └── square.hsail /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/.hgtags -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/README.md -------------------------------------------------------------------------------- /demo/aqlDemo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/aqlDemo.cc -------------------------------------------------------------------------------- /demo/atomicexch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/atomicexch.cc -------------------------------------------------------------------------------- /demo/barrierTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/barrierTest.cc -------------------------------------------------------------------------------- /demo/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/debug.cc -------------------------------------------------------------------------------- /demo/dumpDebugInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/dumpDebugInfo.cc -------------------------------------------------------------------------------- /demo/fcos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/fcos.cc -------------------------------------------------------------------------------- /demo/fib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/fib.cc -------------------------------------------------------------------------------- /demo/fibDebug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/fibDebug.cc -------------------------------------------------------------------------------- /demo/vectorCopy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/demo/vectorCopy.cc -------------------------------------------------------------------------------- /gmock/gmock-gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/gmock/gmock-gtest-all.cc -------------------------------------------------------------------------------- /gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/gmock/gmock.h -------------------------------------------------------------------------------- /gmock/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/gmock/gmock_main.cc -------------------------------------------------------------------------------- /gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/gtest/gtest-all.cc -------------------------------------------------------------------------------- /gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/gtest/gtest.h -------------------------------------------------------------------------------- /gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/gtest/gtest_main.cc -------------------------------------------------------------------------------- /include/AMDGPUDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/AMDGPUDebug.h -------------------------------------------------------------------------------- /include/brig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig.h -------------------------------------------------------------------------------- /include/brig_control_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_control_block.h -------------------------------------------------------------------------------- /include/brig_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_engine.h -------------------------------------------------------------------------------- /include/brig_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_function.h -------------------------------------------------------------------------------- /include/brig_inst_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_inst_helper.h -------------------------------------------------------------------------------- /include/brig_llvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_llvm.h -------------------------------------------------------------------------------- /include/brig_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_module.h -------------------------------------------------------------------------------- /include/brig_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_reader.h -------------------------------------------------------------------------------- /include/brig_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_runtime.h -------------------------------------------------------------------------------- /include/brig_runtime_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_runtime_internal.h -------------------------------------------------------------------------------- /include/brig_scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_scope.h -------------------------------------------------------------------------------- /include/brig_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_symbol.h -------------------------------------------------------------------------------- /include/brig_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/brig_util.h -------------------------------------------------------------------------------- /include/bugs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/bugs.h -------------------------------------------------------------------------------- /include/hsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/hsa.h -------------------------------------------------------------------------------- /include/hsa_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/hsa_perf.h -------------------------------------------------------------------------------- /include/hsacommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/hsacommon.h -------------------------------------------------------------------------------- /include/hsacore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/hsacore.h -------------------------------------------------------------------------------- /include/hsacorecommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/hsacorecommon.h -------------------------------------------------------------------------------- /include/hsailasm_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/hsailasm_wrapper.h -------------------------------------------------------------------------------- /include/newcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/include/newcore.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/brig2llvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/CMakeLists.txt -------------------------------------------------------------------------------- /src/brig2llvm/brig2llvm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig2llvm.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_control_block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_control_block.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_engine.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_function.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_inst_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_inst_helper.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_module.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_reader.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_runtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_runtime.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_scope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_scope.cc -------------------------------------------------------------------------------- /src/brig2llvm/brig_symbol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/brig_symbol.cc -------------------------------------------------------------------------------- /src/brig2llvm/hsailasm_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/hsailasm_wrapper.cc -------------------------------------------------------------------------------- /src/brig2llvm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/math_private.h -------------------------------------------------------------------------------- /src/brig2llvm/s_fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/s_fma.c -------------------------------------------------------------------------------- /src/brig2llvm/scripts/cmake/EnsureAtomicOps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/scripts/cmake/EnsureAtomicOps.cmake -------------------------------------------------------------------------------- /src/brig2llvm/scripts/cmake/EnsureELFisPresent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/scripts/cmake/EnsureELFisPresent.cmake -------------------------------------------------------------------------------- /src/brig2llvm/scripts/cmake/EnsureLLVMisPresent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/scripts/cmake/EnsureLLVMisPresent.cmake -------------------------------------------------------------------------------- /src/brig2llvm/scripts/cmake/EnsureLibDwarfisPresent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/scripts/cmake/EnsureLibDwarfisPresent.cmake -------------------------------------------------------------------------------- /src/brig2llvm/scripts/cmake/EnsureLibHSAILisPresent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/scripts/cmake/EnsureLibHSAILisPresent.cmake -------------------------------------------------------------------------------- /src/brig2llvm/scripts/cmake/FindTargetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/brig2llvm/scripts/cmake/FindTargetArch.cmake -------------------------------------------------------------------------------- /src/hsa_runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/hsa_runtime/CMakeLists.txt -------------------------------------------------------------------------------- /src/hsa_runtime/hsa_debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/hsa_runtime/hsa_debug.cc -------------------------------------------------------------------------------- /src/hsa_runtime/hsa_perf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/hsa_runtime/hsa_perf.cc -------------------------------------------------------------------------------- /src/hsa_runtime/hsa_runtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/hsa_runtime/hsa_runtime.cc -------------------------------------------------------------------------------- /src/newcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/newcore/CMakeLists.txt -------------------------------------------------------------------------------- /src/newcore/newcore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/src/newcore/newcore.cc -------------------------------------------------------------------------------- /test/AllUp.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/AllUp.hsail -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/VectorAdd.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/VectorAdd.hsail -------------------------------------------------------------------------------- /test/VectorCopy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/VectorCopy.bin -------------------------------------------------------------------------------- /test/VectorCopy.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/VectorCopy.hsail -------------------------------------------------------------------------------- /test/aqlDemo.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/aqlDemo.hsail -------------------------------------------------------------------------------- /test/atomicexch.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/atomicexch.hsail -------------------------------------------------------------------------------- /test/barrierTest.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/barrierTest.hsail -------------------------------------------------------------------------------- /test/brig_reader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/brig_reader_test.cc -------------------------------------------------------------------------------- /test/brig_runtime_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/brig_runtime_test.cc -------------------------------------------------------------------------------- /test/brig_runtime_test_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/brig_runtime_test_internal.h -------------------------------------------------------------------------------- /test/brig_validate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/brig_validate.cc -------------------------------------------------------------------------------- /test/fcos.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/fcos.hsail -------------------------------------------------------------------------------- /test/fib.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/fib.hsail -------------------------------------------------------------------------------- /test/hsa_runtime_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/hsa_runtime_test.cc -------------------------------------------------------------------------------- /test/hsail_gdb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/hsail_gdb_test.py -------------------------------------------------------------------------------- /test/hsail_gdb_test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/hsail_gdb_test_common.py -------------------------------------------------------------------------------- /test/hsail_tests_p.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/hsail_tests_p.hsail -------------------------------------------------------------------------------- /test/llvm_shutdown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/llvm_shutdown.cc -------------------------------------------------------------------------------- /test/square.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/HSAIL-Instruction-Set-Simulator/HEAD/test/square.hsail --------------------------------------------------------------------------------