1 /*
  2  * Copyright (c) 1998, 2025, 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.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #ifndef SHARE_COMPILER_COMPILERDIRECTIVES_HPP
 26 #define SHARE_COMPILER_COMPILERDIRECTIVES_HPP
 27 
 28 #include "ci/ciMethod.hpp"
 29 #include "classfile/vmIntrinsics.hpp"
 30 #include "compiler/methodMatcher.hpp"
 31 #include "opto/phasetype.hpp"
 32 #include "utilities/bitMap.hpp"
 33 #include "utilities/exceptions.hpp"
 34 #include "utilities/tribool.hpp"
 35 
 36   //      Directives flag name,    type, default value, compile command name
 37   #define compilerdirectives_common_other_flags(cflags) \
 38     cflags(Enable,                  bool, false, Unknown) \
 39     cflags(Exclude,                 bool, false, Unknown) \
 40     cflags(BreakAtExecute,          bool, false, BreakAtExecute) \
 41     cflags(BreakAtCompile,          bool, false, BreakAtCompile) \
 42     cflags(Log,                     bool, LogCompilation, Unknown) \
 43     cflags(MemLimit,                intx, 0, MemLimit) \
 44     cflags(MemStat,                 uintx, 0, MemStat) \
 45     cflags(PrintAssembly,           bool, PrintAssembly, PrintAssembly) \
 46     cflags(PrintCompilation,        bool, PrintCompilation, PrintCompilation) \
 47     cflags(PrintInlining,           bool, PrintInlining, PrintInlining) \
 48     cflags(PrintNMethods,           bool, PrintNMethods, PrintNMethods) \
 49     cflags(BackgroundCompilation,   bool, BackgroundCompilation, BackgroundCompilation) \
 50     cflags(ReplayInline,            bool, false, ReplayInline) \
 51     cflags(DumpReplay,              bool, false, DumpReplay) \
 52     cflags(DumpInline,              bool, false, DumpInline) \
 53     cflags(CompilerDirectivesIgnoreCompileCommands, bool, CompilerDirectivesIgnoreCompileCommands, Unknown) \
 54     cflags(RepeatCompilation,       intx, RepeatCompilation, RepeatCompilation) \
 55     cflags(PrecompileRecorded,      uintx, 0, PrecompileRecorded) \
 56     cflags(DontPrecompile,          bool, false, DontPrecompile) \
 57     cflags(DontPreload,             bool, false, DontPreload) \
 58     cflags(IgnoreRecordedProfile,   bool, false, IgnoreRecordedProfile) \
 59     cflags(IgnorePrecompiled,       bool, false, IgnorePrecompiled) \
 60     cflags(TooManyTrapsAtBCI,       ccstrlist, "", TooManyTrapsAtBCI)
 61 #define compilerdirectives_common_string_flags(cflags)                           \
 62   cflags(DisableIntrinsic,        ccstrlist, DisableIntrinsic, DisableIntrinsic) \
 63   cflags(ControlIntrinsic,        ccstrlist, ControlIntrinsic, ControlIntrinsic)
 64 #define compilerdirectives_common_flags(cflags) \
 65   compilerdirectives_common_other_flags(cflags) \
 66   compilerdirectives_common_string_flags(cflags)
 67 
 68 #ifdef COMPILER1
 69   #define compilerdirectives_c1_other_flags(cflags)
 70   #define compilerdirectives_c1_string_flags(cflags)
 71 #else
 72   #define compilerdirectives_c1_other_flags(cflags)
 73   #define compilerdirectives_c1_string_flags(cflags)
 74 #endif
 75 
 76 #define compilerdirectives_c1_flags(cflags) \
 77   compilerdirectives_c1_other_flags(cflags) \
 78   compilerdirectives_c1_string_flags(cflags)
 79 
 80 #ifdef COMPILER2
 81   #define compilerdirectives_c2_other_flags(cflags) \
 82     cflags(BlockLayoutByFrequency,  bool, BlockLayoutByFrequency,  BlockLayoutByFrequency) \
 83     cflags(PrintOptoAssembly,       bool, PrintOptoAssembly, PrintOptoAssembly) \
 84     cflags(PrintIntrinsics,         bool, PrintIntrinsics, PrintIntrinsics) \
 85 NOT_PRODUCT(cflags(TraceOptoPipelining, bool, TraceOptoPipelining, TraceOptoPipelining)) \
 86 NOT_PRODUCT(cflags(TraceOptoOutput,     bool, TraceOptoOutput, TraceOptoOutput)) \
 87 NOT_PRODUCT(cflags(TraceEscapeAnalysis, bool, false, TraceEscapeAnalysis)) \
 88 NOT_PRODUCT(cflags(PrintIdeal,          bool, PrintIdeal, PrintIdeal)) \
 89     cflags(TraceSpilling,           bool, TraceSpilling, TraceSpilling) \
 90     cflags(Vectorize,               bool, false, Vectorize) \
 91     cflags(CloneMapDebug,           bool, false, CloneMapDebug) \
 92 NOT_PRODUCT(cflags(PhasePrintLevel, intx, PrintPhaseLevel, PhasePrintLevel)) \
 93 NOT_PRODUCT(cflags(IGVPrintLevel,   intx, PrintIdealGraphLevel, IGVPrintLevel)) \
 94     cflags(IncrementalInlineForceCleanup, bool, IncrementalInlineForceCleanup, IncrementalInlineForceCleanup) \
 95     cflags(MaxNodeLimit,            intx, MaxNodeLimit, MaxNodeLimit)
 96 #define compilerdirectives_c2_string_flags(cflags) \
 97 NOT_PRODUCT(cflags(TraceAutoVectorization, ccstrlist, "", TraceAutoVectorization)) \
 98 NOT_PRODUCT(cflags(TraceMergeStores, ccstrlist, "", TraceMergeStores)) \
 99 NOT_PRODUCT(cflags(PrintIdealPhase,     ccstrlist, "", PrintIdealPhase))
100 #else
101   #define compilerdirectives_c2_other_flags(cflags)
102   #define compilerdirectives_c2_string_flags(cflags)
103 #endif
104 
105 #define compilerdirectives_c2_flags(cflags) \
106   compilerdirectives_c2_other_flags(cflags) \
107   compilerdirectives_c2_string_flags(cflags)
108 
109 class AbstractCompiler;
110 class CompilerDirectives;
111 class DirectiveSet;
112 
113 class DirectivesStack : AllStatic {
114 private:
115   static CompilerDirectives* _top;
116   static CompilerDirectives* _bottom;
117   static int _depth;
118 
119   static void pop_inner(); // no lock version of pop
120 public:
121   static void init();
122   static DirectiveSet* getMatchingDirective(const methodHandle& mh, AbstractCompiler* comp);
123   static DirectiveSet* getDefaultDirective(AbstractCompiler* comp);
124   static void push(CompilerDirectives* directive);
125   static void pop(int count);
126   static bool check_capacity(int request_size, outputStream* st);
127   static void clear();
128   static void print(outputStream* st);
129   static void release(DirectiveSet* set);
130   static void release(CompilerDirectives* dir);
131 };
132 
133 class DirectiveSet : public CHeapObj<mtCompiler> {
134 private:
135   InlineMatcher* _inlinematchers;
136   CompilerDirectives* _directive;
137   TriBoolArray<(size_t)vmIntrinsics::number_of_intrinsics(), int> _intrinsic_control_words;
138   CHeapBitMap _ideal_phase_name_set;
139   CHeapBitMap _trace_auto_vectorization_tags;
140   CHeapBitMap _trace_merge_stores_tags;
141 
142 public:
143   DirectiveSet(CompilerDirectives* directive);
144   ~DirectiveSet();
145   void init_control_intrinsic();
146   CompilerDirectives* directive();
147   bool parse_and_add_inline(char* str, const char*& error_msg);
148   void append_inline(InlineMatcher* m);
149   bool should_inline(ciMethod* inlinee);
150   bool should_not_inline(ciMethod* inlinee);
151   void print_inline(outputStream* st);
152   DirectiveSet* compilecommand_compatibility_init(const methodHandle& method);
153   bool is_exclusive_copy() { return _directive == nullptr; }
154   bool matches_inline(const methodHandle& method, int inline_action);
155   static DirectiveSet* clone(DirectiveSet const* src);
156   bool is_intrinsic_disabled(vmIntrinsicID id);
157   static ccstrlist canonicalize_control_intrinsic(ccstrlist option_value);
158   void finalize(outputStream* st);
159   bool is_c1(CompilerDirectives* directive) const;
160   bool is_c2(CompilerDirectives* directive) const;
161   bool should_collect_memstat() const;
162   bool should_print_memstat() const;
163   size_t mem_limit() const;
164   bool should_crash_at_mem_limit() const; // true: crash false: stop compilation
165 
166   typedef enum {
167 #define enum_of_flags(name, type, dvalue, cc_flag) name##Index,
168     compilerdirectives_common_flags(enum_of_flags)
169     compilerdirectives_c2_flags(enum_of_flags)
170     compilerdirectives_c1_flags(enum_of_flags)
171 #undef enum_of_flags
172     number_of_flags
173   } flags;
174 
175  private:
176   bool _modified[number_of_flags]; // Records what options where set by a directive
177  public:
178 #define flag_store_definition(name, type, dvalue, cc_flag) type name##Option;
179   compilerdirectives_common_flags(flag_store_definition)
180   compilerdirectives_c2_flags(flag_store_definition)
181   compilerdirectives_c1_flags(flag_store_definition)
182 #undef flag_store_definition
183 
184 // Casting to get the same function signature for all setters. Used from parser.
185 #define set_function_definition(name, type, dvalue, cc_flag) void set_##name(void* value) { type val = *(type*)value; name##Option = val; _modified[name##Index] = true; }
186   compilerdirectives_common_other_flags(set_function_definition)
187   compilerdirectives_c2_other_flags(set_function_definition)
188   compilerdirectives_c1_other_flags(set_function_definition)
189 #undef set_function_definition
190 
191 // Casting to get the same function signature for all setters. Used from parser.
192 //
193 // IMPORTANT: Takes ownership, will use os::free. Ensure the memory was dynamically allocated on the
194 //            C heap.
195 #define set_string_function_definition(name, type, dvalue, cc_flag) \
196 void set_##name(void* value) {                                      \
197   if (_modified[name##Index]) {                                     \
198     os::free(const_cast<char*>(name##Option));                      \
199   }                                                                 \
200   type val = *(type*)value;                                         \
201   name##Option = val;                                               \
202   _modified[name##Index] = true;                                    \
203 }
204   compilerdirectives_common_string_flags(set_string_function_definition)
205   compilerdirectives_c2_string_flags(set_string_function_definition)
206   compilerdirectives_c1_string_flags(set_string_function_definition)
207 #undef set_string_function_definition
208 
209   void set_ideal_phase_name_set(const BitMap& set) {
210     _ideal_phase_name_set.set_from(set);
211   };
212   bool should_print_ideal_phase(const CompilerPhaseType cpt) const {
213     return _ideal_phase_name_set.at(cpt);
214   };
215   void set_trace_auto_vectorization_tags(const CHeapBitMap& tags) {
216     _trace_auto_vectorization_tags.set_from(tags);
217   };
218   const CHeapBitMap& trace_auto_vectorization_tags() {
219     return _trace_auto_vectorization_tags;
220   };
221   void set_trace_merge_stores_tags(const CHeapBitMap& tags) {
222     _trace_merge_stores_tags.set_from(tags);
223   };
224   const CHeapBitMap& trace_merge_stores_tags() {
225     return _trace_merge_stores_tags;
226   };
227 
228   void print_intx(outputStream* st, ccstr n, intx v, bool mod) { if (mod) { st->print("%s:%zd ", n, v); } }
229   void print_uintx(outputStream* st, ccstr n, intx v, bool mod) { if (mod) { st->print("%s:%zu ", n, v); } }
230   void print_bool(outputStream* st, ccstr n, bool v, bool mod) { if (mod) { st->print("%s:%s ", n, v ? "true" : "false"); } }
231   void print_double(outputStream* st, ccstr n, double v, bool mod) { if (mod) { st->print("%s:%f ", n, v); } }
232   void print_ccstr(outputStream* st, ccstr n, ccstr v, bool mod) { if (mod) { st->print("%s:%s ", n, v); } }
233   void print_ccstrlist(outputStream* st, ccstr n, ccstr v, bool mod) { print_ccstr(st, n, v, mod); }
234 
235 void print(outputStream* st) {
236     print_inline(st);
237     st->print("  ");
238 #define print_function_definition(name, type, dvalue, cc_flag) print_##type(st, #name, this->name##Option, true);
239     compilerdirectives_common_flags(print_function_definition)
240     compilerdirectives_c2_flags(print_function_definition)
241     compilerdirectives_c1_flags(print_function_definition)
242 #undef print_function_definition
243     st->cr();
244   }
245 };
246 
247 // Iterator of ControlIntrinsic=+_id1,-_id2,+_id3,...
248 //
249 // If disable_all is set, it accepts DisableIntrinsic and all intrinsic Ids
250 // appear in the list are disabled. Arguments don't have +/- prefix. eg.
251 // DisableIntrinsic=_id1,_id2,_id3,...
252 class ControlIntrinsicIter {
253  private:
254   bool _enabled;
255   char* _token;
256   char* _saved_ptr;
257   char* _list;
258   const bool _disableIntrinsic;
259   void next_token();
260 
261  public:
262   ControlIntrinsicIter(ccstrlist option, bool disable_all = false);
263   ~ControlIntrinsicIter();
264 
265   bool is_enabled() const { return _enabled; }
266   const char* operator*() const { return _token; }
267 
268   ControlIntrinsicIter& operator++();
269 };
270 
271 class ControlIntrinsicValidator {
272  private:
273   bool _valid;
274   char* _bad;
275 
276  public:
277   ControlIntrinsicValidator(ccstrlist option, bool disable_all) : _valid(true), _bad(nullptr) {
278     for (ControlIntrinsicIter iter(option, disable_all); *iter != nullptr && _valid; ++iter) {
279       if (vmIntrinsics::_none == vmIntrinsics::find_id(*iter)) {
280         const size_t len = MIN2<size_t>(strlen(*iter), 63) + 1;  // cap len to a value we know is enough for all intrinsic names
281         _bad = NEW_C_HEAP_ARRAY(char, len, mtCompiler);
282         // strncpy always writes len characters. If the source string is shorter, the function fills the remaining bytes with nullptrs.
283         strncpy(_bad, *iter, len);
284         _valid = false;
285       }
286     }
287   }
288 
289   ~ControlIntrinsicValidator() {
290     if (_bad != nullptr) {
291       FREE_C_HEAP_ARRAY(char, _bad);
292     }
293   }
294 
295   bool is_valid() const {
296     return _valid;
297   }
298 
299   const char* what() const {
300     return _bad;
301   }
302 };
303 
304 class CompilerDirectives : public CHeapObj<mtCompiler> {
305 private:
306   CompilerDirectives* _next;
307   BasicMatcher* _match;
308   int _ref_count;
309 
310 public:
311 
312   CompilerDirectives();
313   ~CompilerDirectives();
314 
315   CompilerDirectives* next();
316   void set_next(CompilerDirectives* next) {_next = next; }
317 
318   bool match(const methodHandle& method);
319   BasicMatcher* match() { return _match; }
320   bool add_match(char* str, const char*& error_msg);
321   DirectiveSet* get_for(AbstractCompiler *comp);
322   void print(outputStream* st);
323   bool is_default_directive() { return _next == nullptr; }
324   void finalize(outputStream* st);
325 
326   void inc_refcount();
327   void dec_refcount();
328   int refcount();
329 
330   DirectiveSet* _c1_store;
331   DirectiveSet* _c2_store;
332 };
333 
334 #endif // SHARE_COMPILER_COMPILERDIRECTIVES_HPP