Home
last modified time | relevance | path

Searched full:start_with (Results 1 – 25 of 42) sorted by relevance

12

/arkcompiler/runtime_core/libabckit/src/codegen/templates_dynamic/
Dic_info.h.erb37 % if ((instFormat.start_with?("IMM8") && invertedInstFormat.start_with?("IMM16")) ||
38 % (instFormat.start_with?("IMM16") && invertedInstFormat.start_with?("IMM8")))
75 % elsif (instFormat.start_with?("IMM8"))
77 % elsif (instFormat.start_with?("IMM16"))
124 % if (inst.format.pretty.upcase.start_with?("IMM8"))
/arkcompiler/runtime_core/static_core/irtoc/lang/
Dvalidation.rb49 if !line.start_with? " "
50 if line.start_with? "METHOD_INFO:"
54 elsif line.start_with? "CODE_STATS:"
61 next if !good_data || line.start_with?("==")
Dirtoc.rb101 raise "Macro can't start with capital letter" if name.to_s.start_with? /[A-Z]/
107 raise "Macro can't start with capital letter" if name.to_s.start_with? /[A-Z]/
/arkcompiler/runtime_core/static_core/assembler/templates/
Dins_create_api.h.erb37 % if o.name.start_with?('v')
45 % if o.name.start_with?('imm')
51 % elsif o.name.start_with?('id')
Dins_to_string.cpp.erb46 % if (item.include?("id") || item.start_with?("imm") && insn.jump?)
49 % elsif item.start_with?("imm")
52 % elsif item.start_with?("v")
/arkcompiler/runtime_core/assembler/templates/
Dins_to_string.cpp.erb45 % if (item.include?("id") || item.start_with?("imm") && insn.jump?)
48 % elsif item.start_with?("imm")
51 % elsif item.start_with?("v")
/arkcompiler/runtime_core/libabckit/src/wrappers/templates/
Dins_create_wrapper_api.inc.erb54 % if o.name.start_with?('v')
62 % if o.name.start_with?('imm')
68 % elsif o.name.start_with?('id')
/arkcompiler/runtime_core/assembler/
Dasm_isapi.rb91 if o.name.start_with?('imm')
92 if insn.asm_token.start_with?('F')
97 elsif o.name.start_with?('id')
/arkcompiler/runtime_core/static_core/assembler/
Dasm_isapi.rb91 if o.name.start_with?('imm')
92 if insn.asm_token.start_with?('F')
97 elsif o.name.start_with?('id')
/arkcompiler/runtime_core/static_core/compiler/optimizer/templates/
Dinst_builder_gen.cpp.erb140 return 'ConditionCode::CC_EQ' if inst.opcode.start_with? 'jeq'
141 return 'ConditionCode::CC_NE' if inst.opcode.start_with? 'jne'
142 return 'ConditionCode::CC_LT' if inst.opcode.start_with? 'jlt'
143 return 'ConditionCode::CC_GT' if inst.opcode.start_with? 'jgt'
144 return 'ConditionCode::CC_LE' if inst.opcode.start_with? 'jle'
145 return 'ConditionCode::CC_GE' if inst.opcode.start_with? 'jge'
Dinstructions.rb167 return item.map { |v| (v.start_with? '$') ? IR::templates[v[1..-1]] : v }
169 return item.map { |k, v| (v.start_with? '$') ? [k, IR::templates[v[1..-1]]] : [k, v] }
/arkcompiler/runtime_core/static_core/runtime/templates/
Dintrinsics.yaml.erb22 … naming of compiler_only intrinsic" if compiler_only and not intrinsic.name.start_with?("Compiler")
23 …ing of not compiler_only intrinsic" if not compiler_only and intrinsic.name.start_with?("Compiler")
44 need_decl: <%= intrinsic.impl.start_with?(Runtime::intrinsics_namespace) %>
/arkcompiler/runtime_core/libabckit/src/irbuilder_dynamic/templates/
Dinst_builder_dyn_gen.cpp.erb144 return 'ark::compiler::ConditionCode::CC_EQ' if inst.opcode.start_with? 'jeq'
145 return 'ark::compiler::ConditionCode::CC_NE' if inst.opcode.start_with? 'jne'
146 return 'ark::compiler::ConditionCode::CC_LT' if inst.opcode.start_with? 'jlt'
147 return 'ark::compiler::ConditionCode::CC_GT' if inst.opcode.start_with? 'jgt'
148 return 'ark::compiler::ConditionCode::CC_LE' if inst.opcode.start_with? 'jle'
149 return 'ark::compiler::ConditionCode::CC_GE' if inst.opcode.start_with? 'jge'
150 return 'ark::compiler::ConditionCode::CC_EQ' if inst.opcode.start_with? 'jstricteq'
151 return 'ark::compiler::ConditionCode::CC_NE' if inst.opcode.start_with? 'jnstricteq'
/arkcompiler/runtime_core/compiler/optimizer/templates/
Dinst_builder_gen.cpp.erb144 return 'ConditionCode::CC_EQ' if inst.opcode.start_with? 'jeq'
145 return 'ConditionCode::CC_NE' if inst.opcode.start_with? 'jne'
146 return 'ConditionCode::CC_LT' if inst.opcode.start_with? 'jlt'
147 return 'ConditionCode::CC_GT' if inst.opcode.start_with? 'jgt'
148 return 'ConditionCode::CC_LE' if inst.opcode.start_with? 'jle'
149 return 'ConditionCode::CC_GE' if inst.opcode.start_with? 'jge'
150 return 'ConditionCode::CC_EQ' if inst.opcode.start_with? 'jstricteq'
151 return 'ConditionCode::CC_NE' if inst.opcode.start_with? 'jnstricteq'
Dinstructions.rb167 return item.map { |v| (v.start_with? '$') ? IR::templates[v[1..-1]] : v }
169 return item.map { |k, v| (v.start_with? '$') ? [k, IR::templates[v[1..-1]]] : [k, v] }
/arkcompiler/runtime_core/static_core/verification/gen/templates/
Dabs_int_inl_compat_checks.h.erb70 % if !name.start_with?('_') # those are special like _domains and _default
76 % if !name2.start_with?('_')
/arkcompiler/runtime_core/tests/checked/
Dchecker.rb366 …if line.start_with?('METHOD_INFO:') && contains?(@disasm_lines[index + 1].split(':', 2)[1].strip, …
370 if line.start_with?('DISASSEMBLY')
375 if line.start_with?('METHOD_INFO:')
402 if line.start_with?(prefix)
497 unless line.start_with? options.command_token
503 next unless line.start_with? checker_start
/arkcompiler/runtime_core/libabckit/scripts/
Dinst_props_api.rb22 opcode.start_with?('ABCKIT_ISA_API_DYNAMIC_OPCODE_')
/arkcompiler/runtime_core/static_core/tests/checked/
Dchecker.rb587 …if line.start_with?('METHOD_INFO:') && contains?(@disasm_lines[index + 1].split(':', 2)[1].strip, …
591 if line.start_with?('DISASSEMBLY')
596 if line.start_with?('METHOD_INFO:')
623 if line.start_with?(prefix)
752 unless line.start_with? command_token
756 raise "No space between two checkers: '#{line.strip}'" if line.start_with? checker_start
759 next unless line.start_with? command_token
760 if line.start_with? checker_start
767 …raise "Line '#{line.strip}' does not belong to any checker" unless line.start_with? disabled_check…
/arkcompiler/runtime_core/static_core/plugins/ets/bytecode_optimizer/templates/
Dets_codegen_intrinsics_gen.inc.erb31 % lowering = lowerings.detect{ |l| inst.sig.start_with?(l[0]) }
/arkcompiler/runtime_core/libabckit/src/templates/abckit_intrinsics/
Dinst_builder_abckit_intrinsics.inc.erb57 return 'ConditionCode::CC_EQ' if inst.opcode.start_with? 'jeq'
58 return 'ConditionCode::CC_NE' if inst.opcode.start_with? 'jne'
59 return 'ConditionCode::CC_LT' if inst.opcode.start_with? 'jlt'
60 return 'ConditionCode::CC_GT' if inst.opcode.start_with? 'jgt'
61 return 'ConditionCode::CC_LE' if inst.opcode.start_with? 'jle'
62 return 'ConditionCode::CC_GE' if inst.opcode.start_with? 'jge'
/arkcompiler/ets_frontend/ets2panda/compiler/scripts/
Dsignatures.rb60 …method_name = signature.method_name.start_with?('$') ? refs[signature.method_name[1..-1]] : signat…
/arkcompiler/runtime_core/static_core/libpandafile/
Dpandafile_isapi.rb68 if o.name.start_with?('imm')
/arkcompiler/runtime_core/isa/
Dasserts.rb123 i.float? == i.acc_and_operands.any? { |op| op.type.start_with?('f') }
188 next true unless i.mnemonic.start_with?('call')
/arkcompiler/runtime_core/static_core/isa/
Dasserts.rb123 i.float? == i.acc_and_operands.any? { |op| op.type.start_with?('f') }
188 next true unless i.mnemonic.start_with?('call')

12