Home
last modified time | relevance | path

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

/arkcompiler/runtime_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.rb89 raise "Macro can't start with capital letter" if name.to_s.start_with? /[A-Z]/
Dinstruction.rb280 prefix = 'Set' unless mod[0].to_s.start_with?('Set')
/arkcompiler/runtime_core/assembler/templates/
Dins_create_api.h.erb35 % if o.name.start_with?('v')
43 % if o.name.start_with?('imm')
49 % elsif o.name.start_with?('id')
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")
Dins_emit.h.erb63 % elsif type(insn).start_with? 'u' # can hold both float and integer literals
/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/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/verification/gen/templates/
Dabs_int_inl_compat_checks.h.erb66 % if !name.start_with?('_') # those are special like _domains and _default
71 % 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/ets_frontend/ts2panda/templates/
DbuiltinsMap.ts.erb73 % if (args[i].start_with?("imm"))
78 % elsif (args[i].start_with?("v"))
Dirnodes.ts.erb25 % if insn.mnemonic.start_with? "call"
78 % if insn.mnemonic.start_with? "callruntime"
81 % if insn.mnemonic.start_with? "call"
/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')
Disapi.rb299 name.start_with?('pref_')
/arkcompiler/runtime_core/libpandafile/
Dpandafile_isapi.rb68 if o.name.start_with?('imm')
/arkcompiler/runtime_core/runtime/templates/
Dintrinsics.yaml.erb36 need_decl: <%= intrinsic.impl.start_with?(Runtime::intrinsics_namespace) %>
/arkcompiler/ets_frontend/es2panda/compiler/templates/
Disa.h.erb298 % if insn.mnemonic == "createobjectwithexcludedkeys" or insn.mnemonic.start_with? "wide."
/arkcompiler/runtime_core/libpandafile/templates/
Dbytecode_emitter_gen.h.erb86 % if arg.name.start_with?('imm')
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml73 % if inst.stripped_mnemonic.start_with? 'fcmp'
/arkcompiler/runtime_core/libpandafile/templates/tests/
Dbytecode_emitter_tests_gen.h.erb295 % is_signed = op.name.start_with?('imm')