| /freebsd-9-stable/contrib/gcc/ |
| D | sched-int.h | 346 #define INSN_DEPEND(INSN) (h_i_d[INSN_UID (INSN)].depend) argument 347 #define RESOLVED_DEPS(INSN) (h_i_d[INSN_UID (INSN)].resolved_deps) argument 348 #define INSN_LUID(INSN) (h_i_d[INSN_UID (INSN)].luid) argument 350 #define INSN_DEP_COUNT(INSN) (h_i_d[INSN_UID (INSN)].dep_count) argument 351 #define INSN_PRIORITY(INSN) (h_i_d[INSN_UID (INSN)].priority) argument 352 #define INSN_PRIORITY_KNOWN(INSN) (h_i_d[INSN_UID (INSN)].priority_known) argument 353 #define INSN_COST(INSN) (h_i_d[INSN_UID (INSN)].cost) argument 354 #define INSN_REG_WEIGHT(INSN) (h_i_d[INSN_UID (INSN)].reg_weight) argument 355 #define HAS_INTERNAL_DEP(INSN) (h_i_d[INSN_UID (INSN)].has_internal_dep) argument 356 #define TODO_SPEC(INSN) (h_i_d[INSN_UID (INSN)].todo_spec) argument [all …]
|
| D | rtl.h | 382 #define NONJUMP_INSN_P(X) (GET_CODE (X) == INSN) 395 #define JUMP_TABLE_DATA_P(INSN) \ argument 396 (JUMP_P (INSN) && (GET_CODE (PATTERN (INSN)) == ADDR_VEC || \ 397 GET_CODE (PATTERN (INSN)) == ADDR_DIFF_VEC)) 733 #define INSN_UID(INSN) XINT (INSN, 0) argument 736 #define PREV_INSN(INSN) XEXP (INSN, 1) argument 737 #define NEXT_INSN(INSN) XEXP (INSN, 2) argument 739 #define BLOCK_FOR_INSN(INSN) XBBDEF (INSN, 3) argument 740 #define INSN_LOCATOR(INSN) XINT (INSN, 4) argument 742 #define PATTERN(INSN) XEXP (INSN, 5) argument [all …]
|
| D | df.h | 463 #define DF_INSN_GET(DF,INSN) ((DF)->insns[(INSN_UID(INSN))]) argument 464 #define DF_INSN_SET(DF,INSN,VAL) ((DF)->insns[(INSN_UID (INSN))]=(VAL)) argument 465 #define DF_INSN_CONTAINS_ASM(DF, INSN) (DF_INSN_GET(DF,INSN)->contains_asm) argument 466 #define DF_INSN_LUID(DF, INSN) (DF_INSN_GET(DF,INSN)->luid) argument 467 #define DF_INSN_DEFS(DF, INSN) (DF_INSN_GET(DF,INSN)->defs) argument 468 #define DF_INSN_USES(DF, INSN) (DF_INSN_GET(DF,INSN)->uses) argument 471 #define DF_INSN_UID_LUID(DF, INSN) (DF_INSN_UID_GET(DF,INSN)->luid) argument 472 #define DF_INSN_UID_DEFS(DF, INSN) (DF_INSN_UID_GET(DF,INSN)->defs) argument 473 #define DF_INSN_UID_USES(DF, INSN) (DF_INSN_UID_GET(DF,INSN)->uses) argument 474 #define DF_INSN_UID_MWS(DF, INSN) (DF_INSN_UID_GET(DF,INSN)->mw_hardregs) argument
|
| D | basic-block.h | 432 #define FOR_BB_INSNS(BB, INSN) \ argument 433 for ((INSN) = BB_HEAD (BB); \ 434 (INSN) && (INSN) != NEXT_INSN (BB_END (BB)); \ 435 (INSN) = NEXT_INSN (INSN)) 437 #define FOR_BB_INSNS_REVERSE(BB, INSN) \ argument 438 for ((INSN) = BB_END (BB); \ 439 (INSN) && (INSN) != PREV_INSN (BB_HEAD (BB)); \ 440 (INSN) = PREV_INSN (INSN)) 479 #define BLOCK_NUM(INSN) (BLOCK_FOR_INSN (INSN)->index + 0) argument 480 #define set_block_for_insn(INSN, BB) (BLOCK_FOR_INSN (INSN) = BB) argument
|
| D | resource.c | 181 while ((code == INSN || code == JUMP_INSN || code == CALL_INSN) in next_insn_no_annul() 392 case INSN: in mark_referenced_resources() 469 case INSN: in find_dead_or_set_registers() 686 case INSN: in mark_set_resources() 1015 if ((code == INSN || code == JUMP_INSN || code == CALL_INSN) in mark_target_live_regs() 1021 if (code == INSN && GET_CODE (PATTERN (insn)) == USE in mark_target_live_regs()
|
| D | emit-rtl.c | 2422 case INSN: in copy_rtx_if_shared_1() 2527 case INSN: in reset_used_flags() 2596 case INSN: in set_used_flags() 3284 insn = rtx_alloc (INSN); in make_insn_raw() 3725 case INSN: in emit_insn_before_noloc() 3768 case INSN: in emit_jump_insn_before_noloc() 3811 case INSN: in emit_call_insn_before_noloc() 3944 case INSN: in emit_insn_after_noloc() 3997 case INSN: in emit_jump_insn_after_noloc() 4033 case INSN: in emit_call_insn_after_noloc() [all …]
|
| D | cfgbuild.c | 76 case INSN: in inside_basic_block_p() 122 case INSN: in control_flow_insn_p() 492 case INSN: in find_basic_blocks_1()
|
| D | sched-rgn.c | 84 #define INSN_REF_COUNT(INSN) (h_i_d[INSN_UID (INSN)].ref_count) argument 271 #define INSN_PROBABILITY(INSN) (SRC_PROB (BLOCK_TO_BB (BLOCK_NUM (INSN)))) argument 272 #define IS_SPECULATIVE_INSN(INSN) (IS_SPECULATIVE (BLOCK_TO_BB (BLOCK_NUM (INSN)))) argument 273 #define INSN_BB(INSN) (BLOCK_TO_BB (BLOCK_NUM (INSN))) argument
|
| D | haifa-sched.c | 189 #define LINE_NOTE(INSN) (h_i_d[INSN_UID (INSN)].line_note) argument 190 #define INSN_TICK(INSN) (h_i_d[INSN_UID (INSN)].tick) argument 191 #define INTER_TICK(INSN) (h_i_d[INSN_UID (INSN)].inter_tick) argument 201 #define ISSUE_POINTS(INSN) 1 argument 295 #define QUEUE_INDEX(INSN) (h_i_d[INSN_UID (INSN)].queue_index) argument
|
| D | postreload-gcse.c | 169 #define INSN_CUID(INSN) (uid_cuid[INSN_UID (INSN)]) argument
|
| D | final.c | 417 case INSN: in get_attr_length_1() 551 #define INSN_LENGTH_ALIGNMENT(INSN) length_unit_log argument 554 #define INSN_SHUID(INSN) (uid_shuid[INSN_UID (INSN)]) argument
|
| D | print-rtl.c | 753 case INSN: in print_rtl()
|
| D | reg-notes.def | 136 /* Indicates what exception region an INSN belongs in. This is used
|
| D | sched-vis.c | 637 case INSN: in print_insn()
|
| D | reorg.c | 143 #define eligible_for_annul_true(INSN, SLOTS, TRIAL, FLAGS) 0 argument 146 #define eligible_for_annul_false(INSN, SLOTS, TRIAL, FLAGS) 0 argument 251 case INSN: in stop_search_p()
|
| /freebsd-9-stable/contrib/llvm/lib/Target/SystemZ/ |
| D | SystemZPatterns.td | 10 // Record that INSN performs a 64-bit version of unary operator OPERATOR 19 // Record that INSN performs a 64-bit version of binary operator OPERATOR 39 // Record that INSN performs a binary read-modify-write operation, 49 // Record that INSN performs binary operation OPERATION on a byte 57 // Record that INSN performs insertion TYPE into a register of class CLS. 69 // INSN stores the low 32 bits of a GPR to a memory with addressing mode MODE. 76 // INSN and INSNY are an RX/RXY pair of instructions that store the low 85 // INSN stores the low 32 bits of a GPR using PC-relative addressing. 96 // INSN and INSNINV conditionally store the low 32 bits of a GPR to memory, 97 // with INSN storing when the condition is true and INSNINV storing when the [all …]
|
| D | SystemZInstrFormats.td | 31 // Many register-based <INSN>R instructions have a memory-based <INSN> 32 // counterpart. OpKey uniquely identifies <INSN>, while OpType is 33 // "reg" for <INSN>R and "mem" for <INSN>.
|
| /freebsd-9-stable/contrib/binutils/gas/ |
| D | itbl-parse.y | 289 %token DREG CREG GREG IMMED ADDR INSN NUM ID NL PNUM 314 | pnum INSN name value range flags
|
| D | itbl-lex.l | 61 return INSN;
|
| D | itbl-ops.c | 821 case INSN: in get_type()
|
| /freebsd-9-stable/contrib/gcc/config/mips/ |
| D | mips.c | 87 #define USEFUL_INSN_P(INSN) \ argument 88 (INSN_P (INSN) \ 89 && GET_CODE (PATTERN (INSN)) != USE \ 90 && GET_CODE (PATTERN (INSN)) != CLOBBER \ 91 && GET_CODE (PATTERN (INSN)) != ADDR_VEC \ 92 && GET_CODE (PATTERN (INSN)) != ADDR_DIFF_VEC) 96 #define SEQ_BEGIN(INSN) \ argument 97 (INSN_P (INSN) && GET_CODE (PATTERN (INSN)) == SEQUENCE \ 98 ? XVECEXP (PATTERN (INSN), 0, 0) \ 99 : (INSN)) [all …]
|
| D | mips.h | 2328 #define ADJUST_INSN_LENGTH(INSN, LENGTH) \ argument 2329 ((LENGTH) = mips_adjust_insn_length ((INSN), (LENGTH))) 2346 #define MIPS_CALL(INSN, OPERANDS, OPNO) \ argument 2348 ? "%*" INSN "\t%" #OPNO "%/" \ 2350 ? "%*" INSN "r\t%" #OPNO "%/" \ 2353 "%*" INSN "\t%" #OPNO "%/\n\t" \ 2355 : "%*" INSN "\t%" #OPNO "%/")
|
| /freebsd-9-stable/contrib/binutils/opcodes/ |
| D | sparc-dis.c | 48 #define HASH_INSN(INSN) \ argument 49 ((((INSN) >> 24) & 0xc0) | (((INSN) & opcode_bits[((INSN) >> 30) & 3]) >> 19))
|
| /freebsd-9-stable/contrib/gcc/config/arm/ |
| D | arm.h | 2254 #define FINAL_PRESCAN_INSN(INSN, OPVEC, NOPERANDS) \ argument 2256 arm_final_prescan_insn (INSN); \ 2258 thumb_final_prescan_insn (INSN)
|
| /freebsd-9-stable/contrib/gcc/config/s390/ |
| D | s390.c | 4813 if (GET_CODE (dep_rtx) == INSN) in addr_generation_dependency_p() 5450 if (GET_CODE (insn) == INSN in s390_execute_label() 5663 if (GET_CODE (insn) == INSN in s390_mainpool_start() 5676 else if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN) in s390_mainpool_start() 5797 if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN) in s390_mainpool_finish() 5877 else if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN) in s390_chunkify_start() 5957 if (GET_CODE (insn) != INSN && GET_CODE (insn) != CALL_INSN) in s390_chunkify_start() 6122 if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN) in s390_chunkify_finish() 6197 if (GET_CODE (insn) == INSN in s390_chunkify_cancel() 8981 if (GET_CODE (insn) != INSN) in s390_optimize_prologue()
|