Searched full:start_with (Results 1 – 25 of 42) sorted by relevance
12
| /arkcompiler/runtime_core/libabckit/src/codegen/templates_dynamic/ |
| D | ic_info.h.erb | 37 % 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/ |
| D | validation.rb | 49 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?("==")
|
| D | irtoc.rb | 101 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/ |
| D | ins_create_api.h.erb | 37 % if o.name.start_with?('v') 45 % if o.name.start_with?('imm') 51 % elsif o.name.start_with?('id')
|
| D | ins_to_string.cpp.erb | 46 % 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/ |
| D | ins_to_string.cpp.erb | 45 % 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/ |
| D | ins_create_wrapper_api.inc.erb | 54 % if o.name.start_with?('v') 62 % if o.name.start_with?('imm') 68 % elsif o.name.start_with?('id')
|
| /arkcompiler/runtime_core/assembler/ |
| D | asm_isapi.rb | 91 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/ |
| D | asm_isapi.rb | 91 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/ |
| D | inst_builder_gen.cpp.erb | 140 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'
|
| D | instructions.rb | 167 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/ |
| D | intrinsics.yaml.erb | 22 … 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/ |
| D | inst_builder_dyn_gen.cpp.erb | 144 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/ |
| D | inst_builder_gen.cpp.erb | 144 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'
|
| D | instructions.rb | 167 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/ |
| D | abs_int_inl_compat_checks.h.erb | 70 % if !name.start_with?('_') # those are special like _domains and _default 76 % if !name2.start_with?('_')
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | checker.rb | 366 …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/ |
| D | inst_props_api.rb | 22 opcode.start_with?('ABCKIT_ISA_API_DYNAMIC_OPCODE_')
|
| /arkcompiler/runtime_core/static_core/tests/checked/ |
| D | checker.rb | 587 …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/ |
| D | ets_codegen_intrinsics_gen.inc.erb | 31 % lowering = lowerings.detect{ |l| inst.sig.start_with?(l[0]) }
|
| /arkcompiler/runtime_core/libabckit/src/templates/abckit_intrinsics/ |
| D | inst_builder_abckit_intrinsics.inc.erb | 57 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/ |
| D | signatures.rb | 60 …method_name = signature.method_name.start_with?('$') ? refs[signature.method_name[1..-1]] : signat…
|
| /arkcompiler/runtime_core/static_core/libpandafile/ |
| D | pandafile_isapi.rb | 68 if o.name.start_with?('imm')
|
| /arkcompiler/runtime_core/isa/ |
| D | asserts.rb | 123 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/ |
| D | asserts.rb | 123 i.float? == i.acc_and_operands.any? { |op| op.type.start_with?('f') } 188 next true unless i.mnemonic.start_with?('call')
|
12