reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
 1229   Out.code_properties |= AMD_CODE_PROPERTY_IS_PTR64;
 1232     Out.code_properties |= AMD_CODE_PROPERTY_IS_DYNAMIC_CALLSTACK;
 1234   AMD_HSA_BITS_SET(Out.code_properties,
 1239     Out.code_properties |=
 1244     Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR;
 1247     Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_QUEUE_PTR;
 1250     Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_KERNARG_SEGMENT_PTR;
 1253     Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_ID;
 1256     Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_FLAT_SCRATCH_INIT;
 1259     Out.code_properties |= AMD_CODE_PROPERTY_ENABLE_SGPR_DISPATCH_PTR;
 1262     Out.code_properties |= AMD_CODE_PROPERTY_IS_XNACK_SUPPORTED;
lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
 4015     if (Header.code_properties & AMD_CODE_PROPERTY_ENABLE_WAVEFRONT_SIZE32) {
lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
  507       Header.code_properties |= AMD_CODE_PROPERTY_ENABLE_WAVEFRONT_SIZE32;
lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
  102 CODEPROP(enable_sgpr_private_segment_buffer,  ENABLE_SGPR_PRIVATE_SEGMENT_BUFFER),
  103 CODEPROP(enable_sgpr_dispatch_ptr,            ENABLE_SGPR_DISPATCH_PTR),
  104 CODEPROP(enable_sgpr_queue_ptr,               ENABLE_SGPR_QUEUE_PTR),
  105 CODEPROP(enable_sgpr_kernarg_segment_ptr,     ENABLE_SGPR_KERNARG_SEGMENT_PTR),
  106 CODEPROP(enable_sgpr_dispatch_id,             ENABLE_SGPR_DISPATCH_ID),
  107 CODEPROP(enable_sgpr_flat_scratch_init,       ENABLE_SGPR_FLAT_SCRATCH_INIT),
  108 CODEPROP(enable_sgpr_private_segment_size,    ENABLE_SGPR_PRIVATE_SEGMENT_SIZE),
  109 CODEPROP(enable_sgpr_grid_workgroup_count_x,  ENABLE_SGPR_GRID_WORKGROUP_COUNT_X),
  110 CODEPROP(enable_sgpr_grid_workgroup_count_y,  ENABLE_SGPR_GRID_WORKGROUP_COUNT_Y),
  111 CODEPROP(enable_sgpr_grid_workgroup_count_z,  ENABLE_SGPR_GRID_WORKGROUP_COUNT_Z),
  112 CODEPROP(enable_wavefront_size32,             ENABLE_WAVEFRONT_SIZE32),
  113 CODEPROP(enable_ordered_append_gds,           ENABLE_ORDERED_APPEND_GDS),
  114 CODEPROP(private_element_size,                PRIVATE_ELEMENT_SIZE),
  115 CODEPROP(is_ptr64,                            IS_PTR64),
  116 CODEPROP(is_dynamic_callstack,                IS_DYNAMIC_CALLSTACK),
  117 CODEPROP(is_debug_enabled,                    IS_DEBUG_SUPPORTED),
  118 CODEPROP(is_xnack_enabled,                    IS_XNACK_SUPPORTED),
lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
   84   printName(OS, Name) << (int)((c.*ptr >> shift) & Mask);
  151   C.*ptr &= (T)~Mask;
  152   C.*ptr |= (T)((Value << shift) & Mask);