Lines Matching refs:nb_operands
5526 static int find_constraint(ASMOperand *operands, int nb_operands,
16662 int nb_operands, int nb_outputs, in asm_compute_constraints() argument
16673 for(i=0;i<nb_operands;i++) { in asm_compute_constraints()
16683 for(i=0;i<nb_operands;i++) { in asm_compute_constraints()
16689 k = find_constraint(operands, nb_operands, str, NULL); in asm_compute_constraints()
16704 for(i=0;i<nb_operands;i++) in asm_compute_constraints()
16706 for(i=0;i<nb_operands - 1;i++) { in asm_compute_constraints()
16707 for(j=i+1;j<nb_operands;j++) { in asm_compute_constraints()
16730 for(i=0;i<nb_operands;i++) { in asm_compute_constraints()
16860 for(i=0;i<nb_operands;i++) { in asm_compute_constraints()
16878 for(i=0;i<nb_operands;i++) { in asm_compute_constraints()
16974 static void asm_gen_code(ASMOperand *operands, int nb_operands, in asm_gen_code() argument
16986 for(i = 0; i < nb_operands;i++) { in asm_gen_code()
17000 for(i = 0; i < nb_operands; i++) { in asm_gen_code()
17823 static int find_constraint(ASMOperand *operands, int nb_operands, in find_constraint() argument
17836 if ((unsigned)index >= nb_operands) in find_constraint()
17843 for(index = 0; index < nb_operands; index++) { in find_constraint()
17861 static void subst_asm_operands(ASMOperand *operands, int nb_operands, in subst_asm_operands() argument
17883 index = find_constraint(operands, nb_operands, str, &str); in subst_asm_operands()
17908 int nb_operands; in parse_asm_operands() local
17911 nb_operands = *nb_operands_ptr; in parse_asm_operands()
17913 if (nb_operands >= MAX_ASM_OPERANDS) in parse_asm_operands()
17915 op = &operands[nb_operands++]; in parse_asm_operands()
17954 *nb_operands_ptr = nb_operands; in parse_asm_operands()
17979 int nb_outputs, nb_operands, i, must_subst, out_reg; in asm_instr() local
17989 nb_operands = 0; in asm_instr()
17997 parse_asm_operands(operands, &nb_operands, 1); in asm_instr()
17998 nb_outputs = nb_operands; in asm_instr()
18002 parse_asm_operands(operands, &nb_operands, 0); in asm_instr()
18026 nb_inputs = nb_operands - nb_outputs; in asm_instr()
18032 asm_compute_constraints(operands, nb_operands, nb_outputs, in asm_instr()
18041 subst_asm_operands(operands, nb_operands, nb_outputs, &astr1, &astr); in asm_instr()
18051 asm_gen_code(operands, nb_operands, nb_outputs, 0, in asm_instr()
18061 asm_gen_code(operands, nb_operands, nb_outputs, 1, in asm_instr()
18065 for(i=0;i<nb_operands;i++) { in asm_instr()