Home
last modified time | relevance | path

Searched refs:arg1 (Results 1 – 25 of 28) sorted by relevance

12

/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
Dsvme.s12 .macro do_args arg1, arg2
13 invlpga \arg1, \arg2
14 vmload \arg1
15 vmrun \arg1
16 vmsave \arg1
/toolchain/binutils/binutils-2.27/cpu/
Dfr30.cpu554 (define-pmacro (binary-int-op name insn comment opc1 opc2 op arg1 arg2)
558 (.str insn " $" arg1 ",$" arg2)
559 (+ opc1 opc2 arg1 arg2)
561 (set vbit ((.sym op -oflag) arg2 arg1 (const 0)))
562 (set cbit ((.sym op -cflag) arg2 arg1 (const 0)))
563 (set arg2 (op arg2 arg1))
571 (define-pmacro (binary-int-op-n name insn comment opc1 opc2 op arg1 arg2)
575 (.str insn " $" arg1 ",$" arg2)
576 (+ opc1 opc2 arg1 arg2)
577 (set arg2 (op arg2 arg1))
[all …]
Dsh64-media.cpu917 (define-pmacro (-maddsl arg1 arg2) (saturate SI 32 (add arg1 arg2)))
924 (define-pmacro (-maddsub arg1 arg2) (usaturate QI 8 (add arg1 arg2)))
931 (define-pmacro (-maddsw arg1 arg2) (saturate HI 16 (add arg1 arg2)))
938 (define-pmacro (-mcmpeq mode arg1 arg2)
939 (if mode (eq arg1 arg2) (inv mode 0) (const mode 0)))
941 (define-pmacro (-mcmpeqb arg1 arg2) (-mcmpeq QI arg1 arg2))
948 (define-pmacro (-mcmpeql arg1 arg2) (-mcmpeq SI arg1 arg2))
955 (define-pmacro (-mcmpeqw arg1 arg2) (-mcmpeq HI arg1 arg2))
962 (define-pmacro (-mcmpgt mode arg1 arg2)
963 (if mode (gt arg1 arg2) (inv mode 0) (const mode 0)))
[all …]
Dfrv.cpu3642 (define-pmacro (scan-semantics arg1 arg2 targ)
3644 (set tmp1 arg1)
3849 (define-pmacro (multiply-cc-semantics signop arg1 arg2 targ icc)
3852 (set tmp (mul DI (signop DI arg1) (signop DI arg2)))
7404 (define-pmacro (compare-and-set-fcc arg1 arg2 fcc)
7405 (if (gt arg1 arg2)
7407 (if (eq arg1 arg2)
7409 (if (lt arg1 arg2)
7454 (define-pmacro (float-mul-with-add name add_sub arg1 arg2 targ op ope comment)
7458 (.str name "$pack $" arg1 ",$" arg2 ",$" targ)
[all …]
/toolchain/binutils/binutils-2.27/gas/config/
Dtc-tic54x.c2719 math_ceil (float arg1, float ignore ATTRIBUTE_UNUSED) in math_ceil() argument
2721 return (float) ceil (arg1); in math_ceil()
2725 math_cvi (float arg1, float ignore ATTRIBUTE_UNUSED) in math_cvi() argument
2727 return (int) arg1; in math_cvi()
2731 math_floor (float arg1, float ignore ATTRIBUTE_UNUSED) in math_floor() argument
2733 return (float) floor (arg1); in math_floor()
2737 math_fmod (float arg1, float arg2) in math_fmod() argument
2739 return (int) arg1 % (int) arg2; in math_fmod()
2743 math_int (float arg1, float ignore ATTRIBUTE_UNUSED) in math_int() argument
2745 return ((float) ((int) arg1)) == arg1; in math_int()
[all …]
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/macros/
Dtest1.s1 .macro m arg1 arg2
2 .globl \arg1
3 \arg1 == \arg2
Dbadarg.s4 .macro ,arg1
13 .macro m3,arg1, argument
49 .macro m11, arg1 : vararg, arg2 argument
Dtest3.s1 .macro m arg1 arg2
2 \arg1
Dvararg.s1 .macro v1 arg1 : req, args : vararg argument
2 .long foo\arg1
Dtest2.s1 .macro m arg1 arg2 arg3
2 .long \arg1
Dstrings.s1 .macro M arg1 argument
/toolchain/binutils/binutils-2.27/ld/
Dldfile.c203 char *arg, *arg1, *arg2, *arg3; in ldfile_try_open_bfd() local
222 arg1 = yylval.name; in ldfile_try_open_bfd()
230 free (arg1); in ldfile_try_open_bfd()
237 free (arg1); in ldfile_try_open_bfd()
250 arg = arg1; break; in ldfile_try_open_bfd()
252 arg = arg2 ? arg2 : arg1; break; in ldfile_try_open_bfd()
254 arg = arg3 ? arg3 : arg1; break; in ldfile_try_open_bfd()
259 free (arg1); in ldfile_try_open_bfd()
Dldlang.c4690 sort_sections_by_lma (const void *arg1, const void *arg2) in sort_sections_by_lma() argument
4692 const asection *sec1 = ((const struct check_sec *) arg1)->sec; in sort_sections_by_lma()
4708 sort_sections_by_vma (const void *arg1, const void *arg2) in sort_sections_by_vma() argument
4710 const asection *sec1 = ((const struct check_sec *) arg1)->sec; in sort_sections_by_vma()
/toolchain/binutils/binutils-2.27/gold/
Dexpression.cc545 Trinary_expression(Expression* arg1, Expression* arg2, Expression* arg3) in Trinary_expression() argument
546 : arg1_(arg1), arg2_(arg2), arg3_(arg3) in Trinary_expression()
636 Trinary_cond(Expression* arg1, Expression* arg2, Expression* arg3) in Trinary_cond() argument
637 : Trinary_expression(arg1, arg2, arg3) in Trinary_cond()
644 uint64_t arg1 = this->arg1_value(eei, &arg1_section); in value() local
645 return (arg1 in value()
666 script_exp_trinary_cond(Expression* arg1, Expression* arg2, Expression* arg3) in script_exp_trinary_cond() argument
668 return new Trinary_cond(arg1, arg2, arg3); in script_exp_trinary_cond()
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/hppa/parse/
Dstdreg.s14 ldi 15,%arg1
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/mri/
Dempty.s4 SBT arg1
/toolchain/binutils/binutils-2.27/include/gdb/
Dcallback.h249 long arg1, arg2, arg3, arg4; member
/toolchain/binutils/binutils-2.27/bfd/
Dmmo.c2141 mmo_sort_mmo_symbols (const void *arg1, const void *arg2) in mmo_sort_mmo_symbols() argument
2143 const struct mmo_symbol *sym1 = *(const struct mmo_symbol **) arg1; in mmo_sort_mmo_symbols()
2153 return ((const char *) arg1 - (const char *) arg2); in mmo_sort_mmo_symbols()
Dcoffcode.h3129 sort_by_secaddr (const void * arg1, const void * arg2) in sort_by_secaddr() argument
3131 const asection *a = *(const asection **) arg1; in sort_by_secaddr()
4533 coff_sort_func_alent (const void * arg1, const void * arg2) in coff_sort_func_alent() argument
4535 const alent *al1 = *(const alent **) arg1; in coff_sort_func_alent()
Dsom.c2748 compare_syms (const void *arg1, const void *arg2) in compare_syms() argument
2750 asymbol **sym1 = (asymbol **) arg1; in compare_syms()
2778 compare_subspaces (const void *arg1, const void *arg2) in compare_subspaces() argument
2780 asection **subspace1 = (asection **) arg1; in compare_subspaces()
Delf32-score7.c1050 score_elf_sort_dynamic_relocs (const void *arg1, const void *arg2) in score_elf_sort_dynamic_relocs() argument
1055 bfd_elf32_swap_reloc_in (reldyn_sorting_bfd, arg1, &int_reloc1); in score_elf_sort_dynamic_relocs()
Delflink.c3325 elf_sort_symbol (const void *arg1, const void *arg2) in elf_sort_symbol() argument
3331 h1 = *(const struct elf_link_hash_entry **) arg1; in elf_sort_symbol()
7342 elf_sort_elf_symbol (const void *arg1, const void *arg2) in elf_sort_elf_symbol() argument
7344 const Elf_Internal_Sym *s1 = *(const Elf_Internal_Sym **) arg1; in elf_sort_elf_symbol()
7351 elf_sym_name_compare (const void *arg1, const void *arg2) in elf_sym_name_compare() argument
7353 const struct elf_symbol *s1 = (const struct elf_symbol *) arg1; in elf_sym_name_compare()
Decoff.c1939 ecoff_sort_hdrs (const void * arg1, const void * arg2) in ecoff_sort_hdrs() argument
1941 const asection *hdr1 = *(const asection **) arg1; in ecoff_sort_hdrs()
/toolchain/binutils/binutils-2.27/libiberty/
Dregex.c1847 int arg1, int arg2);
1851 int arg1, int arg2, UCHAR_T *end);
4242 PREFIX(store_op2) (re_opcode_t op, UCHAR_T *loc, int arg1, int arg2) in PREFIX()
4245 STORE_NUMBER (loc + 1, arg1); in PREFIX()
4271 PREFIX(insert_op2) (re_opcode_t op, UCHAR_T *loc, int arg1, in PREFIX()
4280 PREFIX(store_op2) (op, loc, arg1, arg2); in PREFIX()
/toolchain/binutils/binutils-2.27/binutils/
Dobjcopy.c3411 compare_section_lma (const void *arg1, const void *arg2) in compare_section_lma() argument
3413 const asection *const *sec1 = (const asection * const *) arg1; in compare_section_lma()

12