gdb: check for partial symtab presence in dwarf2_initialize_objfile
[deliverable/binutils-gdb.git] / gas / doc / c-riscv.texi
... / ...
CommitLineData
1@c Copyright (C) 2016-2020 Free Software Foundation, Inc.
2@c This is part of the GAS anual.
3@c For copying conditions, see the file as.texinfo
4@c man end
5
6@ifset GENERIC
7@page
8@node RISC-V-Dependent
9@chapter RISC-V Dependent Features
10@end ifset
11@ifclear GENERIC
12@node Machine Dependencies
13@chapter RISC-V Dependent Features
14@end ifclear
15
16@cindex RISC-V support
17@menu
18* RISC-V-Options:: RISC-V Options
19* RISC-V-Directives:: RISC-V Directives
20* RISC-V-Modifiers:: RISC-V Assembler Modifiers
21* RISC-V-Formats:: RISC-V Instruction Formats
22* RISC-V-ATTRIBUTE:: RISC-V Object Attribute
23@end menu
24
25@node RISC-V-Options
26@section RISC-V Options
27
28The following table lists all available RISC-V specific options.
29
30@c man begin OPTIONS
31@table @gcctabopt
32
33@cindex @samp{-fpic} option, RISC-V
34@item -fpic
35@itemx -fPIC
36Generate position-independent code
37
38@cindex @samp{-fno-pic} option, RISC-V
39@item -fno-pic
40Don't generate position-independent code (default)
41
42@cindex @samp{-march=ISA} option, RISC-V
43@item -march=ISA
44Select the base isa, as specified by ISA. For example -march=rv32ima.
45If this option and the architecture attributes aren't set, then assembler
46will check the default configure setting --with-arch=ISA.
47
48@cindex @samp{-misa-spec=ISAspec} option, RISC-V
49@item -misa-spec=ISAspec
50Select the default isa spec version. If the version of ISA isn't set
51by -march, then assembler helps to set the version according to
52the default chosen spec. If this option isn't set, then assembler will
53check the default configure setting --with-isa-spec=ISAspec.
54
55@cindex @samp{-mpriv-spec=PRIVspec} option, RISC-V
56@item -mpriv-spec=PRIVspec
57Select the privileged spec version. We can decide whether the CSR is valid or
58not according to the chosen spec. If this option and the privilege attributes
59aren't set, then assembler will check the default configure setting
60--with-priv-spec=PRIVspec.
61
62@cindex @samp{-mabi=ABI} option, RISC-V
63@item -mabi=ABI
64Selects the ABI, which is either "ilp32" or "lp64", optionally followed
65by "f", "d", or "q" to indicate single-precision, double-precision, or
66quad-precision floating-point calling convention, or none to indicate
67the soft-float calling convention. Also, "ilp32" can optionally be followed
68by "e" to indicate the RVE ABI, which is always soft-float.
69
70@cindex @samp{-mrelax} option, RISC-V
71@item -mrelax
72Take advantage of linker relaxations to reduce the number of instructions
73required to materialize symbol addresses. (default)
74
75@cindex @samp{-mno-relax} option, RISC-V
76@item -mno-relax
77Don't do linker relaxations.
78
79@cindex @samp{-march-attr} option, RISC-V
80@item -march-attr
81Generate the default contents for the riscv elf attribute section if the
82.attribute directives are not set. This section is used to record the
83information that a linker or runtime loader needs to check compatibility.
84This information includes ISA string, stack alignment requirement, unaligned
85memory accesses, and the major, minor and revision version of privileged
86specification.
87
88@cindex @samp{-mno-arch-attr} option, RISC-V
89@item -mno-arch-attr
90Don't generate the default riscv elf attribute section if the .attribute
91directives are not set.
92
93@cindex @samp{-mcsr-check} option, RISC-V
94@item -mcsr-check
95Enable the CSR checking for the ISA-dependent CRS and the read-only CSR.
96The ISA-dependent CSR are only valid when the specific ISA is set. The
97read-only CSR can not be written by the CSR instructions.
98
99@cindex @samp{-mno-csr-check} option, RISC-V
100@item -mno-csr-check
101Don't do CSR cheching.
102@end table
103@c man end
104
105@node RISC-V-Directives
106@section RISC-V Directives
107@cindex machine directives, RISC-V
108@cindex RISC-V machine directives
109
110The following table lists all available RISC-V specific directives.
111
112@table @code
113
114@cindex @code{align} directive
115@item .align @var{size-log-2}
116Align to the given boundary, with the size given as log2 the number of bytes to
117align to.
118
119@cindex Data directives
120@item .half @var{value}
121@itemx .word @var{value}
122@itemx .dword @var{value}
123Emits a half-word, word, or double-word value at the current position.
124
125@cindex DTP-relative data directives
126@item .dtprelword @var{value}
127@itemx .dtpreldword @var{value}
128Emits a DTP-relative word (or double-word) at the current position. This is
129meant to be used by the compiler in shared libraries for DWARF debug info for
130thread local variables.
131
132@cindex BSS directive
133@item .bss
134Sets the current section to the BSS section.
135
136@cindex LEB128 directives
137@item .uleb128 @var{value}
138@itemx .sleb128 @var{value}
139Emits a signed or unsigned LEB128 value at the current position. This only
140accepts constant expressions, because symbol addresses can change with
141relaxation, and we don't support relocations to modify LEB128 values at link
142time.
143
144@cindex Option directive
145@cindex @code{option} directive
146@item .option @var{argument}
147Modifies RISC-V specific assembler options inline with the assembly code.
148This is used when particular instruction sequences must be assembled with a
149specific set of options. For example, since we relax addressing sequences to
150shorter GP-relative sequences when possible the initial load of GP must not be
151relaxed and should be emitted as something like
152
153@smallexample
154 .option push
155 .option norelax
156 la gp, __global_pointer$
157 .option pop
158@end smallexample
159
160in order to produce after linker relaxation the expected
161
162@smallexample
163 auipc gp, %pcrel_hi(__global_pointer$)
164 addi gp, gp, %pcrel_lo(__global_pointer$)
165@end smallexample
166
167instead of just
168
169@smallexample
170 addi gp, gp, 0
171@end smallexample
172
173It's not expected that options are changed in this manner during regular use,
174but there are a handful of esoteric cases like the one above where users need
175to disable particular features of the assembler for particular code sequences.
176The complete list of option arguments is shown below:
177
178@table @code
179@item push
180@itemx pop
181Pushes or pops the current option stack. These should be used whenever
182changing an option in line with assembly code in order to ensure the user's
183command-line options are respected for the bulk of the file being assembled.
184
185@item rvc
186@itemx norvc
187Enables or disables the generation of compressed instructions. Instructions
188are opportunistically compressed by the RISC-V assembler when possible, but
189sometimes this behavior is not desirable.
190
191@item pic
192@itemx nopic
193Enables or disables position-independent code generation. Unless you really
194know what you're doing, this should only be at the top of a file.
195
196@item relax
197@itemx norelax
198Enables or disables relaxation. The RISC-V assembler and linker
199opportunistically relax some code sequences, but sometimes this behavior is not
200desirable.
201@end table
202
203@item csr-check
204@itemx no-csr-check
205Enables or disables the CSR checking.
206
207@cindex INSN directives
208@item .insn @var{value}
209@itemx .insn @var{value}
210This directive permits the numeric representation of an instructions
211and makes the assembler insert the operands according to one of the
212instruction formats for @samp{.insn} (@ref{RISC-V-Formats}).
213For example, the instruction @samp{add a0, a1, a2} could be written as
214@samp{.insn r 0x33, 0, 0, a0, a1, a2}.
215
216@cindex @code{.attribute} directive, RISC-V
217@item .attribute @var{tag}, @var{value}
218Set the object attribute @var{tag} to @var{value}.
219
220The @var{tag} is either an attribute number, or one of the following:
221@code{Tag_RISCV_arch}, @code{Tag_RISCV_stack_align},
222@code{Tag_RISCV_unaligned_access}, @code{Tag_RISCV_priv_spec},
223@code{Tag_RISCV_priv_spec_minor}, @code{Tag_RISCV_priv_spec_revision}.
224
225@end table
226
227@node RISC-V-Modifiers
228@section RISC-V Assembler Modifiers
229
230The RISC-V assembler supports following modifiers for relocatable addresses
231used in RISC-V instruction operands. However, we also support some pseudo
232instructions that are easier to use than these modifiers.
233
234@table @code
235@item %lo(@var{symbol})
236The low 12 bits of absolute address for @var{symbol}.
237
238@item %hi(@var{symbol})
239The high 20 bits of absolute address for @var{symbol}. This is usually
240used with the %lo modifier to represent a 32-bit absolute address.
241
242@smallexample
243 lui a0, %hi(@var{symbol}) // R_RISCV_HI20
244 addi a0, a0, %lo(@var{symbol}) // R_RISCV_LO12_I
245
246 lui a0, %hi(@var{symbol}) // R_RISCV_HI20
247 load/store a0, %lo(@var{symbol})(a0) // R_RISCV_LO12_I/S
248@end smallexample
249
250@item %pcrel_lo(@var{label})
251The low 12 bits of relative address between pc and @var{symbol}.
252The @var{symbol} is related to the high part instruction which is marked
253by @var{label}.
254
255@item %pcrel_hi(@var{symbol})
256The high 20 bits of relative address between pc and @var{symbol}.
257This is usually used with the %pcrel_lo modifier to represent a +/-2GB
258pc-relative range.
259
260@smallexample
261@var{label}:
262 auipc a0, %pcrel_hi(@var{symbol}) // R_RISCV_PCREL_HI20
263 addi a0, a0, %pcrel_lo(@var{label}) // R_RISCV_PCREL_LO12_I
264
265@var{label}:
266 auipc a0, %pcrel_hi(@var{symbol}) // R_RISCV_PCREL_HI20
267 load/store a0, %pcrel_lo(@var{label})(a0) // R_RISCV_PCREL_LO12_I/S
268@end smallexample
269
270Or you can use the pseudo lla/lw/sw/... instruction to do this.
271
272@smallexample
273 lla a0, @var{symbol}
274@end smallexample
275
276@item %got_pcrel_hi(@var{symbol})
277The high 20 bits of relative address between pc and the GOT entry of
278@var{symbol}. This is usually used with the %pcrel_lo modifier to access
279the GOT entry.
280
281@smallexample
282@var{label}:
283 auipc a0, %got_pcrel_hi(@var{symbol}) // R_RISCV_GOT_HI20
284 addi a0, a0, %pcrel_lo(@var{label}) // R_RISCV_PCREL_LO12_I
285
286@var{label}:
287 auipc a0, %got_pcrel_hi(@var{symbol}) // R_RISCV_GOT_HI20
288 load/store a0, %pcrel_lo(@var{label})(a0) // R_RISCV_PCREL_LO12_I/S
289@end smallexample
290
291Also, the pseudo la instruction with PIC has similar behavior.
292
293@item %tprel_add(@var{symbol})
294This is used purely to associate the R_RISCV_TPREL_ADD relocation for
295TLS relaxation. This one is only valid as the fourth operand to the normally
2963 operand add instruction.
297
298@item %tprel_lo(@var{symbol})
299The low 12 bits of relative address between tp and @var{symbol}.
300
301@item %tprel_hi(@var{symbol})
302The high 20 bits of relative address between tp and @var{symbol}. This is
303usually used with the %tprel_lo and %tprel_add modifiers to access the thread
304local variable @var{symbol} in TLS Local Exec.
305
306@smallexample
307 lui a5, %tprel_hi(@var{symbol}) // R_RISCV_TPREL_HI20
308 add a5, a5, tp, %tprel_add(@var{symbol}) // R_RISCV_TPREL_ADD
309 load/store t0, %tprel_lo(@var{symbol})(a5) // R_RISCV_TPREL_LO12_I/S
310@end smallexample
311
312@item %tls_ie_pcrel_hi(@var{symbol})
313The high 20 bits of relative address between pc and GOT entry. It is
314usually used with the %pcrel_lo modifier to access the thread local
315variable @var{symbol} in TLS Initial Exec.
316
317@smallexample
318 la.tls.ie a5, @var{symbol}
319 add a5, a5, tp
320 load/store t0, 0(a5)
321@end smallexample
322
323The pseudo la.tls.ie instruction can be expended to
324
325@smallexample
326@var{label}:
327 auipc a5, %tls_ie_pcrel_hi(@var{symbol}) // R_RISCV_TLS_GOT_HI20
328 load a5, %pcrel_lo(@var{label})(a5) // R_RISCV_PCREL_LO12_I
329@end smallexample
330
331@item %tls_gd_pcrel_hi(@var{symbol})
332The high 20 bits of relative address between pc and GOT entry. It is
333usually used with the %pcrel_lo modifier to access the thread local variable
334@var{symbol} in TLS Global Dynamic.
335
336@smallexample
337 la.tls.gd a0, @var{symbol}
338 call __tls_get_addr@@plt
339 mv a5, a0
340 load/store t0, 0(a5)
341@end smallexample
342
343The pseudo la.tls.gd instruction can be expended to
344
345@smallexample
346@var{label}:
347 auipc a0, %tls_gd_pcrel_hi(@var{symbol}) // R_RISCV_TLS_GD_HI20
348 addi a0, a0, %pcrel_lo(@var{label}) // R_RISCV_PCREL_LO12_I
349@end smallexample
350
351@end table
352
353@node RISC-V-Formats
354@section RISC-V Instruction Formats
355@cindex instruction formats, risc-v
356@cindex RISC-V instruction formats
357
358The RISC-V Instruction Set Manual Volume I: User-Level ISA lists 12
359instruction formats where some of the formats have multiple variants.
360For the @samp{.insn} pseudo directive the assembler recognizes some
361of the formats.
362Typically, the most general variant of the instruction format is used
363by the @samp{.insn} directive.
364
365The following table lists the abbreviations used in the table of
366instruction formats:
367
368@display
369@multitable @columnfractions .15 .40
370@item opcode @tab Unsigned immediate or opcode name for 7-bits opcode.
371@item opcode2 @tab Unsigned immediate or opcode name for 2-bits opcode.
372@item func7 @tab Unsigned immediate for 7-bits function code.
373@item func6 @tab Unsigned immediate for 6-bits function code.
374@item func4 @tab Unsigned immediate for 4-bits function code.
375@item func3 @tab Unsigned immediate for 3-bits function code.
376@item func2 @tab Unsigned immediate for 2-bits function code.
377@item rd @tab Destination register number for operand x, can be GPR or FPR.
378@item rd' @tab Destination register number for operand x,
379only accept s0-s1, a0-a5, fs0-fs1 and fa0-fa5.
380@item rs1 @tab First source register number for operand x, can be GPR or FPR.
381@item rs1' @tab First source register number for operand x,
382only accept s0-s1, a0-a5, fs0-fs1 and fa0-fa5.
383@item rs2 @tab Second source register number for operand x, can be GPR or FPR.
384@item rs2' @tab Second source register number for operand x,
385only accept s0-s1, a0-a5, fs0-fs1 and fa0-fa5.
386@item simm12 @tab Sign-extended 12-bit immediate for operand x.
387@item simm20 @tab Sign-extended 20-bit immediate for operand x.
388@item simm6 @tab Sign-extended 6-bit immediate for operand x.
389@item uimm8 @tab Unsigned 8-bit immediate for operand x.
390@item symbol @tab Symbol or lable reference for operand x.
391@end multitable
392@end display
393
394The following table lists all available opcode name:
395
396@table @code
397@item C0
398@item C1
399@item C2
400Opcode space for compressed instructions.
401
402@item LOAD
403Opcode space for load instructions.
404
405@item LOAD_FP
406Opcode space for floating-point load instructions.
407
408@item STORE
409Opcode space for store instructions.
410
411@item STORE_FP
412Opcode space for floating-point store instructions.
413
414@item AUIPC
415Opcode space for auipc instruction.
416
417@item LUI
418Opcode space for lui instruction.
419
420@item BRANCH
421Opcode space for branch instructions.
422
423@item JAL
424Opcode space for jal instruction.
425
426@item JALR
427Opcode space for jalr instruction.
428
429@item OP
430Opcode space for ALU instructions.
431
432@item OP_32
433Opcode space for 32-bits ALU instructions.
434
435@item OP_IMM
436Opcode space for ALU with immediate instructions.
437
438@item OP_IMM_32
439Opcode space for 32-bits ALU with immediate instructions.
440
441@item OP_FP
442Opcode space for floating-point operation instructions.
443
444@item MADD
445Opcode space for madd instruction.
446
447@item MSUB
448Opcode space for msub instruction.
449
450@item NMADD
451Opcode space for nmadd instruction.
452
453@item NMSUB
454Opcode space for msub instruction.
455
456@item AMO
457Opcode space for atomic memory operation instructions.
458
459@item MISC_MEM
460Opcode space for misc instructions.
461
462@item SYSTEM
463Opcode space for system instructions.
464
465@item CUSTOM_0
466@item CUSTOM_1
467@item CUSTOM_2
468@item CUSTOM_3
469Opcode space for customize instructions.
470
471@end table
472
473An instruction is two or four bytes in length and must be aligned
474on a 2 byte boundary. The first two bits of the instruction specify the
475length of the instruction, 00, 01 and 10 indicates a two byte instruction,
47611 indicates a four byte instruction.
477
478The following table lists the RISC-V instruction formats that are available
479with the @samp{.insn} pseudo directive:
480
481@table @code
482@item R type: .insn r opcode, func3, func7, rd, rs1, rs2
483@verbatim
484+-------+-----+-----+-------+----+-------------+
485| func7 | rs2 | rs1 | func3 | rd | opcode |
486+-------+-----+-----+-------+----+-------------+
48731 25 20 15 12 7 0
488@end verbatim
489
490@item R type with 4 register operands: .insn r opcode, func3, func2, rd, rs1, rs2, rs3
491@itemx R4 type: .insn r4 opcode, func3, func2, rd, rs1, rs2, rs3
492@verbatim
493+-----+-------+-----+-----+-------+----+-------------+
494| rs3 | func2 | rs2 | rs1 | func3 | rd | opcode |
495+-----+-------+-----+-----+-------+----+-------------+
49631 27 25 20 15 12 7 0
497@end verbatim
498
499@item I type: .insn i opcode, func3, rd, rs1, simm12
500@itemx I type: .insn i opcode, func3, rd, simm12(rs1)
501@verbatim
502+-------------+-----+-------+----+-------------+
503| simm12 | rs1 | func3 | rd | opcode |
504+-------------+-----+-------+----+-------------+
50531 20 15 12 7 0
506@end verbatim
507
508@item S type: .insn s opcode, func3, rs2, simm12(rs1)
509@verbatim
510+--------------+-----+-----+-------+-------------+-------------+
511| simm12[11:5] | rs2 | rs1 | func3 | simm12[4:0] | opcode |
512+--------------+-----+-----+-------+-------------+-------------+
51331 25 20 15 12 7 0
514@end verbatim
515
516@item B type: .insn s opcode, func3, rs1, rs2, symbol
517@itemx SB type: .insn sb opcode, func3, rs1, rs2, symbol
518@verbatim
519+------------+--------------+-----+-----+-------+-------------+-------------+--------+
520| simm12[12] | simm12[10:5] | rs2 | rs1 | func3 | simm12[4:1] | simm12[11]] | opcode |
521+------------+--------------+-----+-----+-------+-------------+-------------+--------+
52231 30 25 20 15 12 7 0
523@end verbatim
524
525@item U type: .insn u opcode, rd, simm20
526@verbatim
527+---------------------------+----+-------------+
528| simm20 | rd | opcode |
529+---------------------------+----+-------------+
53031 12 7 0
531@end verbatim
532
533@item J type: .insn j opcode, rd, symbol
534@itemx UJ type: .insn uj opcode, rd, symbol
535@verbatim
536+------------+--------------+------------+---------------+----+-------------+
537| simm20[20] | simm20[10:1] | simm20[11] | simm20[19:12] | rd | opcode |
538+------------+--------------+------------+---------------+----+-------------+
53931 30 21 20 12 7 0
540@end verbatim
541
542@item CR type: .insn cr opcode2, func4, rd, rs2
543@verbatim
544+---------+--------+-----+---------+
545| func4 | rd/rs1 | rs2 | opcode2 |
546+---------+--------+-----+---------+
54715 12 7 2 0
548@end verbatim
549
550@item CI type: .insn ci opcode2, func3, rd, simm6
551@verbatim
552+---------+-----+--------+-----+---------+
553| func3 | imm | rd/rs1 | imm | opcode2 |
554+---------+-----+--------+-----+---------+
55515 13 12 7 2 0
556@end verbatim
557
558@item CIW type: .insn ciw opcode2, func3, rd, uimm8
559@verbatim
560+---------+--------------+-----+---------+
561| func3 | imm | rd' | opcode2 |
562+---------+--------------+-----+---------+
56315 13 7 2 0
564@end verbatim
565
566@item CA type: .insn ca opcode2, func6, func2, rd, rs2
567@verbatim
568+---------+----------+-------+------+--------+
569| func6 | rd'/rs1' | func2 | rs2' | opcode |
570+---------+----------+-------+------+--------+
57115 10 7 5 2 0
572@end verbatim
573
574@item CB type: .insn cb opcode2, func3, rs1, symbol
575@verbatim
576+---------+--------+------+--------+---------+
577| func3 | offset | rs1' | offset | opcode2 |
578+---------+--------+------+--------+---------+
57915 13 10 7 2 0
580@end verbatim
581
582@item CJ type: .insn cj opcode2, symbol
583@verbatim
584+---------+--------------------+---------+
585| func3 | jump target | opcode2 |
586+---------+--------------------+---------+
58715 13 7 2 0
588@end verbatim
589
590
591@end table
592
593For the complete list of all instruction format variants see
594The RISC-V Instruction Set Manual Volume I: User-Level ISA.
595
596@node RISC-V-ATTRIBUTE
597@section RISC-V Object Attribute
598@cindex Object Attribute, RISC-V
599
600RISC-V attributes have a string value if the tag number is odd and an integer
601value if the tag number is even.
602
603@table @r
604@item Tag_RISCV_stack_align (4)
605Tag_RISCV_strict_align records the N-byte stack alignment for this object. The
606default value is 16 for RV32I or RV64I, and 4 for RV32E.
607
608The smallest value will be used if object files with different
609Tag_RISCV_stack_align values are merged.
610
611@item Tag_RISCV_arch (5)
612Tag_RISCV_arch contains a string for the target architecture taken from the
613option @option{-march}. Different architectures will be integrated into a
614superset when object files are merged.
615
616Note that the version information of the target architecture must be presented
617explicitly in the attribute and abbreviations must be expanded. The version
618information, if not given by @option{-march}, must be in accordance with the
619default specified by the tool. For example, the architecture @code{RV32I} has
620to be recorded in the attribute as @code{RV32I2P0} in which @code{2P0} stands
621for the default version of its base ISA. On the other hand, the architecture
622@code{RV32G} has to be presented as @code{RV32I2P0_M2P0_A2P0_F2P0_D2P0} in
623which the abbreviation @code{G} is expanded to the @code{IMAFD} combination
624with default versions of the standard extensions.
625
626@item Tag_RISCV_unaligned_access (6)
627Tag_RISCV_unaligned_access is 0 for files that do not allow any unaligned
628memory accesses, and 1 for files that do allow unaligned memory accesses.
629
630@item Tag_RISCV_priv_spec (8)
631@item Tag_RISCV_priv_spec_minor (10)
632@item Tag_RISCV_priv_spec_revision (12)
633Tag_RISCV_priv_spec contains the major/minor/revision version information of
634the privileged specification. It will report errors if object files of
635different privileged specification versions are merged.
636
637@end table
This page took 0.028387 seconds and 4 git commands to generate.