Home
last modified time | relevance | path

Searched full:upcase (Results 1 – 25 of 37) sorted by relevance

12

/arkcompiler/runtime_core/libpandafile/templates/
Dbytecode_instruction_enum_gen.h.erb18 <%= fmt.pretty.upcase %>,
24 <%= i.opcode.upcase %> = <%= i.opcode_idx %>,
26 LAST = <%= Panda::instructions.last().opcode.upcase %>
31 <%= f.tag.upcase %> = <%= format("0x%x", 1 << i) %>,
37 <%= f.tag.upcase %> = <%= format("0x%x", 1 << i) %>,
Dbytecode_instruction-inl_gen.h.erb24 case Format::<%= fmt.pretty.upcase %>:
43 case Format::<%= fmt.pretty.upcase %>:
62 case Format::<%= fmt.pretty.upcase %>:
78 case Format::<%= fmt.pretty.upcase %>: {
104 if (format == Format::<%= fmt.pretty.upcase %>) {
138 if (format == Format::<%= fmt.pretty.upcase %>) {
168 case Format::<%= fmt.pretty.upcase %>: {
199 if constexpr (format == Format::<%= fmt.pretty.upcase %>) {
229 case Format::<%= fmt.pretty.upcase %>: {
262 if constexpr (format == Format::<%= fmt.pretty.upcase %>) {
[all …]
Dbytecode_emitter_gen.h.erb31 if constexpr (format == Format::<%= fmt.pretty.upcase %>) {
51 % OPCODE_TYPE + '::' + i.opcode.upcase
55 % FORMAT_TYPE + '::' + i.format.pretty.upcase
134 if constexpr (format == Format::<%= fmt.pretty.upcase %>) {
194 % pref = insn.format.prefixed? ? insn.prefix.name.upcase + "_" : ""
195 % op = insn.opcode.upcase.delete_prefix(pref)
215 case <%= OPCODE_TYPE %>::<%= i.opcode.upcase %>:
217 return <%= OPCODE_TYPE %>::<%= group[-1].opcode.upcase %>;
234 case <%= OPCODE_TYPE %>::<%= insn.opcode.upcase %>:
240 … return <%= OPCODE_TYPE %>::<%= (suit_ind == 0) ? "LAST" : group[suit_ind].opcode.upcase %>;
[all …]
Dtype.h.erb27 <%= type.name.upcase %> = 0x<%= type.code.to_s(16) %>,
62 case TypeId::<%= type.name.upcase %>:
73 case TypeId::<%= type.name.upcase %>: {
86 case TypeId::<%= type.name.upcase %>:
97 case TypeId::<%= type.name.upcase %>:
108 case TypeId::<%= type.name.upcase %>:
237 case TypeId::<%= type.name.upcase %>:
/arkcompiler/ets_frontend/es2panda/lexer/templates/
Dkeywords.h.erb54 inline void Scan<%= key.upcase %>()
58 case LEX_CHAR_LOWERCASE_<%=prefix.upcase%>: /* '<%=prefix%>' */ {
60 Scan<%= key.upcase %><%= prefix.upcase %>();
80 ….ScanIdContinueMaybeKeyword(Span<const KeywordString>(KeywordsMap::KEYWORDS_<%= key[0].upcase %>));
DkeywordsMap.h.erb30 case LEX_CHAR_LOWERCASE_<%= group.keys[0][0].upcase %>: {
31 return Span<const KeywordString>(KEYWORDS_<%= group.keys[0][0].upcase %>);
42 …xpr std::array<const KeywordString, <%= group.size %>> KEYWORDS_<%= group.keys[0][0].upcase %> = {{
/arkcompiler/runtime_core/compiler/optimizer/templates/
Dopcodes.h.erb24 …DEF( <%= inst.opcode.ljust(20) %>, <%= inst.base.ljust(20) %>, <%= flags.map{|x| x.upcase }.join('…
37 DEF(<%= flag.upcase %>) \
44 <%= inst.modes.map{|x| x.upcase }.join('|') %>, \
50 DEF(<%= mode.upcase %>) \
Dinst_builder_gen.cpp.erb48 return "BytecodeInstruction::Format::#{format.pretty.upcase}"
173 case BytecodeInstruction::Opcode::<%= inst.opcode.upcase %>: {
191 case BytecodeInstruction::Opcode::<%= inst.opcode.upcase %>:
193 return inst->GetImm<BytecodeInstruction::Format::<%= inst.format.pretty.upcase %>, 0>();
218 case BytecodeInstruction::Opcode::<%= inst.opcode.upcase %>: {
230 % abort "isa.yaml inconsistency: #{inst.opcode.upcase} is not compilable, but inlinable" if in…
255 % opc = inst.opcode.upcase
278 % format = "BytecodeInstruction::Format::" + inst.format.pretty.upcase
384 case compiler::RuntimeInterface::IntrinsicId::<%= inst.opcode.upcase %>: {
Decma_intrinsics_enum.inl.erb19 <%= insn.opcode.upcase %>,
/arkcompiler/runtime_core/libpandabase/templates/
Dlogger.rb27 @enum = dscr['enum'] || @name.upcase
28 @tag = dscr['tag'] || @name[0].upcase
39 @enum = dscr['enum'] || @name.upcase
/arkcompiler/runtime_core/libpandafile/templates/tests/
Dbytecode_emitter_tests_gen.h.erb45 if constexpr (format == BytecodeInstruction::Format::<%= fmt.pretty.upcase %>) {
112 if constexpr (format == BytecodeInstruction::Format::<%= fmt.pretty.upcase %>) {
141 if constexpr (format == BytecodeInstruction::Format::<%= fmt.pretty.upcase %>) {
163 % OPCODE_TYPE + '::' + i.opcode.upcase
167 % FORMAT_TYPE + '::' + i.format.pretty.upcase
252 TestNoneFormat(Opcode::<%= i.opcode.upcase %>, [](BytecodeEmitter* emitter) {
259 % pretty_format = group_insn.format.pretty.upcase
260 % opcode = group_insn.opcode.upcase
272 % pretty_format = group_insn.format.pretty.upcase
273 % opcode = group_insn.opcode.upcase
[all …]
/arkcompiler/runtime_core/libpandabase/events/
Devents_gen.h.erb36 <%= field.enums.map(&:upcase).join(', ') %>
64 case <%= field.type %>::<%= enum.upcase %>: os << "<%= enum.upcase %>"; break;
264 #define EVENT_<%= event.name.upcase %>_ENABLED 0
266 #define EVENT_<%= event.name.upcase %>(<%= event.fields.map(&:name).join(', ') %>)
269 #define EVENT_<%= event.name.upcase %>_ENABLED 1
271 #define EVENT_<%= event.name.upcase %>(<%= event.fields.map(&:name).join(', ') %>) \
280 #define EVENT_<%= event.name.upcase %>(<%= event.fields.map(&:name).join(', ') %>)
/arkcompiler/runtime_core/templates/events/
Devents.h.erb18 #ifndef PANDA_<%= Common::module.name.upcase %>_EVENTS_GEN_H_
19 #define PANDA_<%= Common::module.name.upcase %>_EVENTS_GEN_H_
63 #endif // PANDA_<%= Common::module.name.upcase %>_EVENTS_GEN_H_
/arkcompiler/runtime_core/libark_defect_scan_aux/templates/
Dintrinsic_map_table.h.erb22 V( <%= inst.opcode.upcase.ljust(60) %>, <%= inst.opcode.upcase.ljust(60) %> ) \
Dopcode_map_table.h.erb22 V( <%= inst.opcode.ljust(30) %>, OPCODE_<%= inst.opcode.upcase.ljust(30) %> ) \
/arkcompiler/runtime_core/disassembler/templates/
Dopcode_translator.cpp.erb23 case BytecodeInstruction::Opcode::<%= i.opcode.upcase %>:
24 return pandasm::Opcode::<%= i.mnemonic.tr('.', '_').upcase %>;
Dbc_ins_to_pandasm_ins.cpp.erb33 case BytecodeInstruction::Format::<%=i.format.pretty.upcase%>:
38 …t<int64_t>(bc_ins.GetImm<BytecodeInstruction::Format::<%=i.format.pretty.upcase%>, <%=imm_count%>>…
40 …ins.imms.push_back(bc_ins.GetImm<BytecodeInstruction::Format::<%=i.format.pretty.upcase%>, <%=imm_…
Dtype_to_pandasm_type.cpp.erb26 case panda_file::Type::TypeId::<%= type.name.upcase %>:
49 case panda_file::Type::TypeId::<%= type.name.upcase %>:
Dget_ins_info.cpp.erb46 case BytecodeInstruction::Format::<%= fmt.pretty.upcase %>:
47 ss << std::setw(FORMAT_WIDTH) << std::left << "[<%= fmt.pretty.upcase %>]";
/arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/
Dintrinsic_flags_test.inl.erb19 …y? ? "0U" : intrinsic.clear_flags.collect { |f| "compiler::inst_flags::" + f.upcase }.join("|") %>;
20 …pty? ? "0U" : intrinsic.set_flags.collect { |f| "compiler::inst_flags::" + f.upcase }.join("|") %>;
Dintrinsics_flags.inl.erb26 …y? ? "0U" : intrinsic.clear_flags.collect { |f| "compiler::inst_flags::" + f.upcase }.join("|") %>;
27 …pty? ? "0U" : intrinsic.set_flags.collect { |f| "compiler::inst_flags::" + f.upcase }.join("|") %>;
/arkcompiler/ets_frontend/es2panda/compiler/templates/
Dformats.h.erb2 % return "#{mnemonic.gsub('.', '_').upcase}" + "_FORMATS"
5 % return "#{mnemonic.gsub('.', '_').upcase}" + "_FORMAT_ITEMS_" + index.to_s
/arkcompiler/runtime_core/templates/messages/
Dmessages.h.erb17 % component = Messages.component.upcase
41 % level = msg.level.upcase
/arkcompiler/runtime_core/templates/
Dcpu_features.inc.erb24 …DEF(<%= val.upcase.gsub( "-", "_") %>, "<%= val %>")<%= op.possible_values.last != val ? " \\" : "…
/arkcompiler/runtime_core/templates/logger_components/
Dlogger_components.inc.erb24 …DEF(<%= val.upcase.gsub( "-", "_") %>, "<%= val %>")<%= op.possible_values.last != val ? " \\" : "…

12