1 /* score-datadep.h -- Score Instructions data dependency table
2 Copyright (C) 2006-2022 Free Software Foundation, Inc.
4 Brain.lin (brain.lin@sunplusct.com)
5 Mei Ligang (ligang@sunnorth.com.cn)
6 Pei-Lin Tsai (pltsai@sunplus.com)
8 This file is part of GAS, the GNU Assembler.
10 GAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
15 GAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GAS; see the file COPYING3. If not, write to the Free
22 Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
23 Boston, MA 02110-1301, USA. */
25 #ifndef SCORE_DATA_DEPENDENCY_H
26 #define SCORE_DATA_DEPENDENCY_H
28 #define INSN_NAME_LEN 16
30 enum insn_type_for_dependency
36 struct insn_to_dependency
39 enum insn_type_for_dependency type
;
42 struct data_dependency
44 enum insn_type_for_dependency pre_insn_type
;
46 enum insn_type_for_dependency cur_insn_type
;
50 int warn_or_error
; /* warning - 0; error - 1 */
53 static const struct insn_to_dependency insn_to_dependency_table
[] =
55 /* move spectial instruction. */
59 static const struct data_dependency data_dependency_table
[] =
62 {D_mtcr
, "cr0", D_all_insn
, "", 5, 1, 0},