91448848c6
- HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_DYNAMIC_CALLSTACK
Change-Id: Idff5c1a2ce2a3e2d65bcc9cf1f66a68d37cd41ef
[ROCm/ROCR-Runtime commit: d962fc39bb]
266 linhas
11 KiB
C++
266 linhas
11 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// The University of Illinois/NCSA
|
|
// Open Source License (NCSA)
|
|
//
|
|
// Copyright (c) 2014-2020, Advanced Micro Devices, Inc. All rights reserved.
|
|
//
|
|
// Developed by:
|
|
//
|
|
// AMD Research and AMD HSA Software Development
|
|
//
|
|
// Advanced Micro Devices, Inc.
|
|
//
|
|
// www.amd.com
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to
|
|
// deal with the Software without restriction, including without limitation
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
//
|
|
// - Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimers.
|
|
// - Redistributions in binary form must reproduce the above copyright
|
|
// notice, this list of conditions and the following disclaimers in
|
|
// the documentation and/or other materials provided with the distribution.
|
|
// - Neither the names of Advanced Micro Devices, Inc,
|
|
// nor the names of its contributors may be used to endorse or promote
|
|
// products derived from this Software without specific prior written
|
|
// permission.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
// THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
// OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
// DEALINGS WITH THE SOFTWARE.
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H
|
|
#define LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// Gets offset of specified member in specified type.
|
|
#ifndef offsetof
|
|
#define offsetof(TYPE, MEMBER) ((size_t)&((TYPE*)0)->MEMBER)
|
|
#endif // offsetof
|
|
|
|
// Creates enumeration entries used for packing bits into integers. Enumeration
|
|
// entries include bit shift amount, bit width, and bit mask.
|
|
#ifndef AMDHSA_BITS_ENUM_ENTRY
|
|
#define AMDHSA_BITS_ENUM_ENTRY(NAME, SHIFT, WIDTH) \
|
|
NAME ## _SHIFT = (SHIFT), \
|
|
NAME ## _WIDTH = (WIDTH), \
|
|
NAME = (((1 << (WIDTH)) - 1) << (SHIFT))
|
|
#endif // AMDHSA_BITS_ENUM_ENTRY
|
|
|
|
// Gets bits for specified bit mask from specified source.
|
|
#ifndef AMDHSA_BITS_GET
|
|
#define AMDHSA_BITS_GET(SRC, MSK) ((SRC & MSK) >> MSK ## _SHIFT)
|
|
#endif // AMDHSA_BITS_GET
|
|
|
|
// Sets bits for specified bit mask in specified destination.
|
|
#ifndef AMDHSA_BITS_SET
|
|
#define AMDHSA_BITS_SET(DST, MSK, VAL) \
|
|
DST &= ~MSK; \
|
|
DST |= ((VAL << MSK ## _SHIFT) & MSK)
|
|
#endif // AMDHSA_BITS_SET
|
|
|
|
namespace rocr {
|
|
namespace llvm {
|
|
namespace amdhsa {
|
|
|
|
// Floating point rounding modes. Must match hardware definition.
|
|
enum : uint8_t {
|
|
FLOAT_ROUND_MODE_NEAR_EVEN = 0,
|
|
FLOAT_ROUND_MODE_PLUS_INFINITY = 1,
|
|
FLOAT_ROUND_MODE_MINUS_INFINITY = 2,
|
|
FLOAT_ROUND_MODE_ZERO = 3,
|
|
};
|
|
|
|
// Floating point denorm modes. Must match hardware definition.
|
|
enum : uint8_t {
|
|
FLOAT_DENORM_MODE_FLUSH_SRC_DST = 0,
|
|
FLOAT_DENORM_MODE_FLUSH_DST = 1,
|
|
FLOAT_DENORM_MODE_FLUSH_SRC = 2,
|
|
FLOAT_DENORM_MODE_FLUSH_NONE = 3,
|
|
};
|
|
|
|
// System VGPR workitem IDs. Must match hardware definition.
|
|
enum : uint8_t {
|
|
SYSTEM_VGPR_WORKITEM_ID_X = 0,
|
|
SYSTEM_VGPR_WORKITEM_ID_X_Y = 1,
|
|
SYSTEM_VGPR_WORKITEM_ID_X_Y_Z = 2,
|
|
SYSTEM_VGPR_WORKITEM_ID_UNDEFINED = 3,
|
|
};
|
|
|
|
// Compute program resource register 1. Must match hardware definition.
|
|
#define COMPUTE_PGM_RSRC1(NAME, SHIFT, WIDTH) \
|
|
AMDHSA_BITS_ENUM_ENTRY(COMPUTE_PGM_RSRC1_ ## NAME, SHIFT, WIDTH)
|
|
enum : int32_t {
|
|
COMPUTE_PGM_RSRC1(GRANULATED_WORKITEM_VGPR_COUNT, 0, 6),
|
|
COMPUTE_PGM_RSRC1(GRANULATED_WAVEFRONT_SGPR_COUNT, 6, 4),
|
|
COMPUTE_PGM_RSRC1(PRIORITY, 10, 2),
|
|
COMPUTE_PGM_RSRC1(FLOAT_ROUND_MODE_32, 12, 2),
|
|
COMPUTE_PGM_RSRC1(FLOAT_ROUND_MODE_16_64, 14, 2),
|
|
COMPUTE_PGM_RSRC1(FLOAT_DENORM_MODE_32, 16, 2),
|
|
COMPUTE_PGM_RSRC1(FLOAT_DENORM_MODE_16_64, 18, 2),
|
|
COMPUTE_PGM_RSRC1(PRIV, 20, 1),
|
|
COMPUTE_PGM_RSRC1(ENABLE_DX10_CLAMP, 21, 1),
|
|
COMPUTE_PGM_RSRC1(DEBUG_MODE, 22, 1),
|
|
COMPUTE_PGM_RSRC1(ENABLE_IEEE_MODE, 23, 1),
|
|
COMPUTE_PGM_RSRC1(BULKY, 24, 1),
|
|
COMPUTE_PGM_RSRC1(CDBG_USER, 25, 1),
|
|
COMPUTE_PGM_RSRC1(FP16_OVFL, 26, 1), // GFX9+
|
|
COMPUTE_PGM_RSRC1(RESERVED0, 27, 2),
|
|
COMPUTE_PGM_RSRC1(WGP_MODE, 29, 1), // GFX10+
|
|
COMPUTE_PGM_RSRC1(MEM_ORDERED, 30, 1), // GFX10+
|
|
COMPUTE_PGM_RSRC1(FWD_PROGRESS, 31, 1), // GFX10+
|
|
};
|
|
#undef COMPUTE_PGM_RSRC1
|
|
|
|
// Compute program resource register 2. Must match hardware definition.
|
|
#define COMPUTE_PGM_RSRC2(NAME, SHIFT, WIDTH) \
|
|
AMDHSA_BITS_ENUM_ENTRY(COMPUTE_PGM_RSRC2_ ## NAME, SHIFT, WIDTH)
|
|
enum : int32_t {
|
|
COMPUTE_PGM_RSRC2(ENABLE_PRIVATE_SEGMENT, 0, 1),
|
|
COMPUTE_PGM_RSRC2(USER_SGPR_COUNT, 1, 5),
|
|
COMPUTE_PGM_RSRC2(ENABLE_TRAP_HANDLER, 6, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_SGPR_WORKGROUP_ID_X, 7, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_SGPR_WORKGROUP_ID_Y, 8, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_SGPR_WORKGROUP_ID_Z, 9, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_SGPR_WORKGROUP_INFO, 10, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_VGPR_WORKITEM_ID, 11, 2),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_ADDRESS_WATCH, 13, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_MEMORY, 14, 1),
|
|
COMPUTE_PGM_RSRC2(GRANULATED_LDS_SIZE, 15, 9),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_IEEE_754_FP_INVALID_OPERATION, 24, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_FP_DENORMAL_SOURCE, 25, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_IEEE_754_FP_DIVISION_BY_ZERO, 26, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_IEEE_754_FP_OVERFLOW, 27, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_IEEE_754_FP_UNDERFLOW, 28, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_IEEE_754_FP_INEXACT, 29, 1),
|
|
COMPUTE_PGM_RSRC2(ENABLE_EXCEPTION_INT_DIVIDE_BY_ZERO, 30, 1),
|
|
COMPUTE_PGM_RSRC2(RESERVED0, 31, 1),
|
|
};
|
|
#undef COMPUTE_PGM_RSRC2
|
|
|
|
// Compute program resource register 3 for GFX90A+. Must match hardware
|
|
// definition.
|
|
#define COMPUTE_PGM_RSRC3_GFX90A(NAME, SHIFT, WIDTH) \
|
|
AMDHSA_BITS_ENUM_ENTRY(COMPUTE_PGM_RSRC3_GFX90A_ ## NAME, SHIFT, WIDTH)
|
|
enum : int32_t {
|
|
COMPUTE_PGM_RSRC3_GFX90A(ACCUM_OFFSET, 0, 6),
|
|
COMPUTE_PGM_RSRC3_GFX90A(RESERVED0, 6, 10),
|
|
COMPUTE_PGM_RSRC3_GFX90A(TG_SPLIT, 16, 1),
|
|
COMPUTE_PGM_RSRC3_GFX90A(RESERVED1, 17, 15),
|
|
};
|
|
#undef COMPUTE_PGM_RSRC3_GFX90A
|
|
|
|
// Compute program resource register 3 for GFX10+. Must match hardware
|
|
// definition.
|
|
#define COMPUTE_PGM_RSRC3_GFX10_PLUS(NAME, SHIFT, WIDTH) \
|
|
AMDHSA_BITS_ENUM_ENTRY(COMPUTE_PGM_RSRC3_GFX10_PLUS_ ## NAME, SHIFT, WIDTH)
|
|
enum : int32_t {
|
|
COMPUTE_PGM_RSRC3_GFX10_PLUS(SHARED_VGPR_COUNT, 0, 4), // GFX10+
|
|
COMPUTE_PGM_RSRC3_GFX10_PLUS(INST_PREF_SIZE, 4, 6), // GFX11+
|
|
COMPUTE_PGM_RSRC3_GFX10_PLUS(TRAP_ON_START, 10, 1), // GFX11+
|
|
COMPUTE_PGM_RSRC3_GFX10_PLUS(TRAP_ON_END, 11, 1), // GFX11+
|
|
COMPUTE_PGM_RSRC3_GFX10_PLUS(RESERVED0, 12, 19),
|
|
COMPUTE_PGM_RSRC3_GFX10_PLUS(IMAGE_OP, 31, 1), // GFX11+
|
|
};
|
|
#undef COMPUTE_PGM_RSRC3_GFX10_PLUS
|
|
|
|
// Kernel code properties. Must be kept backwards compatible.
|
|
#define KERNEL_CODE_PROPERTY(NAME, SHIFT, WIDTH) \
|
|
AMDHSA_BITS_ENUM_ENTRY(KERNEL_CODE_PROPERTY_ ## NAME, SHIFT, WIDTH)
|
|
enum : int32_t {
|
|
KERNEL_CODE_PROPERTY(ENABLE_SGPR_PRIVATE_SEGMENT_BUFFER, 0, 1),
|
|
KERNEL_CODE_PROPERTY(ENABLE_SGPR_DISPATCH_PTR, 1, 1),
|
|
KERNEL_CODE_PROPERTY(ENABLE_SGPR_QUEUE_PTR, 2, 1),
|
|
KERNEL_CODE_PROPERTY(ENABLE_SGPR_KERNARG_SEGMENT_PTR, 3, 1),
|
|
KERNEL_CODE_PROPERTY(ENABLE_SGPR_DISPATCH_ID, 4, 1),
|
|
KERNEL_CODE_PROPERTY(ENABLE_SGPR_FLAT_SCRATCH_INIT, 5, 1),
|
|
KERNEL_CODE_PROPERTY(ENABLE_SGPR_PRIVATE_SEGMENT_SIZE, 6, 1),
|
|
KERNEL_CODE_PROPERTY(RESERVED0, 7, 3),
|
|
KERNEL_CODE_PROPERTY(ENABLE_WAVEFRONT_SIZE32, 10, 1), // GFX10+
|
|
KERNEL_CODE_PROPERTY(USES_DYNAMIC_STACK, 11, 1),
|
|
KERNEL_CODE_PROPERTY(RESERVED1, 12, 4),
|
|
};
|
|
#undef KERNEL_CODE_PROPERTY
|
|
|
|
// Kernel descriptor. Must be kept backwards compatible.
|
|
struct kernel_descriptor_t {
|
|
uint32_t group_segment_fixed_size;
|
|
uint32_t private_segment_fixed_size;
|
|
uint32_t kernarg_size;
|
|
uint8_t reserved0[4];
|
|
int64_t kernel_code_entry_byte_offset;
|
|
uint8_t reserved1[20];
|
|
uint32_t compute_pgm_rsrc3; // GFX10+ and GFX90A+
|
|
uint32_t compute_pgm_rsrc1;
|
|
uint32_t compute_pgm_rsrc2;
|
|
uint16_t kernel_code_properties;
|
|
uint8_t reserved2[6];
|
|
};
|
|
|
|
enum : uint32_t {
|
|
GROUP_SEGMENT_FIXED_SIZE_OFFSET = 0,
|
|
PRIVATE_SEGMENT_FIXED_SIZE_OFFSET = 4,
|
|
KERNARG_SIZE_OFFSET = 8,
|
|
RESERVED0_OFFSET = 12,
|
|
KERNEL_CODE_ENTRY_BYTE_OFFSET_OFFSET = 16,
|
|
RESERVED1_OFFSET = 24,
|
|
COMPUTE_PGM_RSRC3_OFFSET = 44,
|
|
COMPUTE_PGM_RSRC1_OFFSET = 48,
|
|
COMPUTE_PGM_RSRC2_OFFSET = 52,
|
|
KERNEL_CODE_PROPERTIES_OFFSET = 56,
|
|
RESERVED2_OFFSET = 58,
|
|
};
|
|
|
|
static_assert(
|
|
sizeof(kernel_descriptor_t) == 64,
|
|
"invalid size for kernel_descriptor_t");
|
|
static_assert(offsetof(kernel_descriptor_t, group_segment_fixed_size) ==
|
|
GROUP_SEGMENT_FIXED_SIZE_OFFSET,
|
|
"invalid offset for group_segment_fixed_size");
|
|
static_assert(offsetof(kernel_descriptor_t, private_segment_fixed_size) ==
|
|
PRIVATE_SEGMENT_FIXED_SIZE_OFFSET,
|
|
"invalid offset for private_segment_fixed_size");
|
|
static_assert(offsetof(kernel_descriptor_t, kernarg_size) ==
|
|
KERNARG_SIZE_OFFSET,
|
|
"invalid offset for kernarg_size");
|
|
static_assert(offsetof(kernel_descriptor_t, reserved0) == RESERVED0_OFFSET,
|
|
"invalid offset for reserved0");
|
|
static_assert(offsetof(kernel_descriptor_t, kernel_code_entry_byte_offset) ==
|
|
KERNEL_CODE_ENTRY_BYTE_OFFSET_OFFSET,
|
|
"invalid offset for kernel_code_entry_byte_offset");
|
|
static_assert(offsetof(kernel_descriptor_t, reserved1) == RESERVED1_OFFSET,
|
|
"invalid offset for reserved1");
|
|
static_assert(offsetof(kernel_descriptor_t, compute_pgm_rsrc3) ==
|
|
COMPUTE_PGM_RSRC3_OFFSET,
|
|
"invalid offset for compute_pgm_rsrc3");
|
|
static_assert(offsetof(kernel_descriptor_t, compute_pgm_rsrc1) ==
|
|
COMPUTE_PGM_RSRC1_OFFSET,
|
|
"invalid offset for compute_pgm_rsrc1");
|
|
static_assert(offsetof(kernel_descriptor_t, compute_pgm_rsrc2) ==
|
|
COMPUTE_PGM_RSRC2_OFFSET,
|
|
"invalid offset for compute_pgm_rsrc2");
|
|
static_assert(offsetof(kernel_descriptor_t, kernel_code_properties) ==
|
|
KERNEL_CODE_PROPERTIES_OFFSET,
|
|
"invalid offset for kernel_code_properties");
|
|
static_assert(offsetof(kernel_descriptor_t, reserved2) == RESERVED2_OFFSET,
|
|
"invalid offset for reserved2");
|
|
|
|
} // end namespace amdhsa
|
|
} // end namespace llvm
|
|
} // end namespace rocr
|
|
|
|
#endif // LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H
|