1 /*
  2 * Copyright (c) 2025-2026, Oracle and/or its affiliates. All rights reserved.
  3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4 *
  5 * This code is free software; you can redistribute it and/or modify it
  6 * under the terms of the GNU General Public License version 2 only, as
  7 * published by the Free Software Foundation.  Oracle designates this
  8 * particular file as subject to the "Classpath" exception as provided
  9 * by Oracle in the LICENSE file that accompanied this code.
 10 *
 11 * This code is distributed in the hope that it will be useful, but WITHOUT
 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 14 * version 2 for more details (a copy is included in the LICENSE file that
 15 * accompanied this code).
 16 *
 17 * You should have received a copy of the GNU General Public License version
 18 * 2 along with this work; if not, write to the Free Software Foundation,
 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 20 *
 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 22 * or visit www.oracle.com if you need additional information or have any
 23 * questions.
 24 */
 25 /*
 26 You probably should not edit this this file!!!
 27 It was auto generated 2026-07-23 16:04:56.597 by hat.FFIConfigCreator
 28 */
 29 #pragma once
 30 
 31 #include <iostream>
 32 
 33 struct BasicConfig{
 34     static constexpr int MINIMIZE_COPIES_BIT              = 1<<0x8;
 35     static constexpr int TRACE_BIT                        = 1<<0x9;
 36     static constexpr int PROFILE_BIT                      = 1<<0xa;
 37     static constexpr int SHOW_CODE_BIT                    = 1<<0xb;
 38     static constexpr int SHOW_KERNEL_MODEL_BIT            = 1<<0xc;
 39     static constexpr int SHOW_COMPUTE_MODEL_BIT           = 1<<0xd;
 40     static constexpr int SHOW_DEVICE_INFO_BIT             = 1<<0xe;
 41     static constexpr int INFO_BIT                         = 1<<0xf;
 42     static constexpr int WARN_BIT                         = 1<<0x10;
 43     static constexpr int UNIT_BIT                         = 1<<0x11;
 44     static constexpr int TRACE_COPIES_BIT                 = 1<<0x12;
 45     static constexpr int TRACE_SKIPPED_COPIES_BIT         = 1<<0x13;
 46     static constexpr int TRACE_ENQUEUES_BIT               = 1<<0x14;
 47     static constexpr int TRACE_CALLS_BIT                  = 1<<0x15;
 48     static constexpr int SHOW_WHY_BIT                     = 1<<0x16;
 49     static constexpr int SHOW_STATE_BIT                   = 1<<0x17;
 50     static constexpr int PTX_BIT                          = 1<<0x18;
 51     static constexpr int INTERPRET_BIT                    = 1<<0x19;
 52     static constexpr int HEADLESS_BIT                     = 1<<0x1a;
 53     static constexpr int SHOW_LOWERED_KERNEL_MODEL_BIT    = 1<<0x1b;
 54     static constexpr int SHOW_COMPILATION_PHASES_BIT      = 1<<0x1c;
 55     static constexpr int PROFILE_CUDA_KERNEL_BIT          = 1<<0x1d;
 56     static constexpr int SHOW_COMPUTE_MODEL_JAVA_CODE_BIT = 1<<0x1e;
 57     static constexpr int CHECK_SSA_LOWERING_BIT           = 1<<0x1f;
 58     const static char *bitNames[]; // See below for initialization
 59     const static char *bitDescriptions[]; // See below for initialization
 60     int configBits;
 61     bool minimizeCopies;
 62     bool trace;
 63     bool profile;
 64     bool showCode;
 65     bool showKernelModel;
 66     bool showComputeModel;
 67     bool showDeviceInfo;
 68     bool info;
 69     bool warn;
 70     bool unit;
 71     bool traceCopies;
 72     bool traceSkippedCopies;
 73     bool traceEnqueues;
 74     bool traceCalls;
 75     bool showWhy;
 76     bool showState;
 77     bool ptx;
 78     bool interpret;
 79     bool headless;
 80     bool showLoweredKernelModel;
 81     bool showCompilationPhases;
 82     bool profileCudaKernel;
 83     bool showComputeModelJavaCode;
 84     bool checkSsaLowering;
 85     int platform;
 86     int device;
 87     bool alwaysCopy;
 88     explicit BasicConfig(int configBits):
 89         configBits(configBits),
 90         minimizeCopies((configBits & MINIMIZE_COPIES_BIT)==MINIMIZE_COPIES_BIT),
 91         trace((configBits & TRACE_BIT)==TRACE_BIT),
 92         profile((configBits & PROFILE_BIT)==PROFILE_BIT),
 93         showCode((configBits & SHOW_CODE_BIT)==SHOW_CODE_BIT),
 94         showKernelModel((configBits & SHOW_KERNEL_MODEL_BIT)==SHOW_KERNEL_MODEL_BIT),
 95         showComputeModel((configBits & SHOW_COMPUTE_MODEL_BIT)==SHOW_COMPUTE_MODEL_BIT),
 96         showDeviceInfo((configBits & SHOW_DEVICE_INFO_BIT)==SHOW_DEVICE_INFO_BIT),
 97         info((configBits & INFO_BIT)==INFO_BIT),
 98         warn((configBits & WARN_BIT)==WARN_BIT),
 99         unit((configBits & UNIT_BIT)==UNIT_BIT),
100         traceCopies((configBits & TRACE_COPIES_BIT)==TRACE_COPIES_BIT),
101         traceSkippedCopies((configBits & TRACE_SKIPPED_COPIES_BIT)==TRACE_SKIPPED_COPIES_BIT),
102         traceEnqueues((configBits & TRACE_ENQUEUES_BIT)==TRACE_ENQUEUES_BIT),
103         traceCalls((configBits & TRACE_CALLS_BIT)==TRACE_CALLS_BIT),
104         showWhy((configBits & SHOW_WHY_BIT)==SHOW_WHY_BIT),
105         showState((configBits & SHOW_STATE_BIT)==SHOW_STATE_BIT),
106         ptx((configBits & PTX_BIT)==PTX_BIT),
107         interpret((configBits & INTERPRET_BIT)==INTERPRET_BIT),
108         headless((configBits & HEADLESS_BIT)==HEADLESS_BIT),
109         showLoweredKernelModel((configBits & SHOW_LOWERED_KERNEL_MODEL_BIT)==SHOW_LOWERED_KERNEL_MODEL_BIT),
110         showCompilationPhases((configBits & SHOW_COMPILATION_PHASES_BIT)==SHOW_COMPILATION_PHASES_BIT),
111         profileCudaKernel((configBits & PROFILE_CUDA_KERNEL_BIT)==PROFILE_CUDA_KERNEL_BIT),
112         showComputeModelJavaCode((configBits & SHOW_COMPUTE_MODEL_JAVA_CODE_BIT)==SHOW_COMPUTE_MODEL_JAVA_CODE_BIT),
113         checkSsaLowering((configBits & CHECK_SSA_LOWERING_BIT)==CHECK_SSA_LOWERING_BIT),
114         platform(configBits & 0xf),
115         alwaysCopy(!minimizeCopies),
116         device((configBits & 0xf0) >> 4){
117             if(showDeviceInfo){
118                 std::cout << "native minimizeCopies " << minimizeCopies << std::endl;
119                 std::cout << "native trace " << trace << std::endl;
120                 std::cout << "native profile " << profile << std::endl;
121                 std::cout << "native showCode " << showCode << std::endl;
122                 std::cout << "native showKernelModel " << showKernelModel << std::endl;
123                 std::cout << "native showComputeModel " << showComputeModel << std::endl;
124                 std::cout << "native showDeviceInfo " << showDeviceInfo << std::endl;
125                 std::cout << "native info " << info << std::endl;
126                 std::cout << "native warn " << warn << std::endl;
127                 std::cout << "native unit " << unit << std::endl;
128                 std::cout << "native traceCopies " << traceCopies << std::endl;
129                 std::cout << "native traceSkippedCopies " << traceSkippedCopies << std::endl;
130                 std::cout << "native traceEnqueues " << traceEnqueues << std::endl;
131                 std::cout << "native traceCalls " << traceCalls << std::endl;
132                 std::cout << "native showWhy " << showWhy << std::endl;
133                 std::cout << "native showState " << showState << std::endl;
134                 std::cout << "native ptx " << ptx << std::endl;
135                 std::cout << "native interpret " << interpret << std::endl;
136                 std::cout << "native headless " << headless << std::endl;
137                 std::cout << "native showLoweredKernelModel " << showLoweredKernelModel << std::endl;
138                 std::cout << "native showCompilationPhases " << showCompilationPhases << std::endl;
139                 std::cout << "native profileCudaKernel " << profileCudaKernel << std::endl;
140                 std::cout << "native showComputeModelJavaCode " << showComputeModelJavaCode << std::endl;
141                 std::cout << "native checkSsaLowering " << checkSsaLowering << std::endl;
142                 std::cout << "native platform " << platform << std::endl;
143                 std::cout << "native device " << device << std::endl;
144             }
145         }
146     virtual ~BasicConfig()= default;
147 };
148 
149 #ifdef shared_cpp
150 const char *BasicConfig::bitNames[]={
151     "MINIMIZE_COPIES_BIT",
152     "TRACE_BIT",
153     "PROFILE_BIT",
154     "SHOW_CODE_BIT",
155     "SHOW_KERNEL_MODEL_BIT",
156     "SHOW_COMPUTE_MODEL_BIT",
157     "SHOW_DEVICE_INFO_BIT",
158     "INFO_BIT",
159     "WARN_BIT",
160     "UNIT_BIT",
161     "TRACE_COPIES_BIT",
162     "TRACE_SKIPPED_COPIES_BIT",
163     "TRACE_ENQUEUES_BIT",
164     "TRACE_CALLS_BIT",
165     "SHOW_WHY_BIT",
166     "SHOW_STATE_BIT",
167     "PTX_BIT",
168     "INTERPRET_BIT",
169     "HEADLESS_BIT",
170     "SHOW_LOWERED_KERNEL_MODEL_BIT",
171     "SHOW_COMPILATION_PHASES_BIT",
172     "PROFILE_CUDA_KERNEL_BIT",
173     "SHOW_COMPUTE_MODEL_JAVA_CODE_BIT",
174     "CHECK_SSA_LOWERING_BIT",
175 };
176 const char *BasicConfig::bitDescriptions[]={
177     "FFI ONLY Try to minimize copies",
178     "FFI ONLY trace code",
179     "FFI ONLY Turn on profiling",
180     "Show generated code (PTX/OpenCL/CUDA)",
181     "Show (via OpWriter) Kernel Model",
182     "Show (via OpWriter) Compute Model",
183     "FFI show platform and device info",
184     "INFO level logging",
185     "WARN(ing) level logging ",
186     "UNIT test level logging  ",
187     "FFI ONLY trace copies",
188     "FFI ONLY Trace skipped copies (see MINIMIZE_COPIES) ",
189     "FFI ONLY trace enqueued tasks",
190     "FFI ONLY trace calls (enter/leave)",
191     "FFI ONLY show why we decided to copy buffer (H to D)",
192     "Show iface buffer state changes",
193     "FFI (NVIDIA) ONLY pass PTX rather than C99 CUDA code",
194     "Interpret the code model rather than converting to bytecode",
195     "Don't show UI",
196     "Show (via OpWriter) Lowered Kernel Model",
197     "Show HAT compilation phases",
198     "Add -lineinfo to CUDA kernel compilation for profiling and debugging",
199     "Show java code view of compute model",
200     "Verify that code model can be lowered to SSA",
201 };
202 #endif