Skip to content

Commit aa67e91

Browse files
committed
Parse various directives starting with . in intel syntax
1 parent ee8fca9 commit aa67e91

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

src/Assembly/Equality.v

+2
Original file line numberDiff line numberDiff line change
@@ -257,13 +257,15 @@ Definition RawLine_beq (x y : RawLine) : bool
257257
| DEFAULT_REL, DEFAULT_REL => true
258258
| INSTR x, INSTR y => NormalInstruction_beq x y
259259
| ALIGN x, ALIGN y => String.eqb x y
260+
| DIRECTIVE x, DIRECTIVE y => String.eqb x y
260261
| SECTION _, _
261262
| GLOBAL _, _
262263
| LABEL _, _
263264
| EMPTY, _
264265
| INSTR _, _
265266
| ALIGN _, _
266267
| DEFAULT_REL, _
268+
| DIRECTIVE _, _
267269
=> false
268270
end.
269271
Global Arguments RawLine_beq !_ !_ / .

src/Assembly/Parse.v

+17-3
Original file line numberDiff line numberDiff line change
@@ -161,18 +161,32 @@ Definition parse_RawLine : ParserAction RawLine
161161
(* get the first space-separated opcode *)
162162
let '(mnemonic, args) := String.take_while_drop_while (fun ch => negb (Ascii.is_whitespace ch)) s in
163163
let args := String.trim args in
164-
if (String.to_upper mnemonic =? "SECTION")
164+
if (String.to_upper mnemonic =? "SECTION") || (String.to_upper mnemonic =? ".SECTION")
165165
then [(SECTION args, "")]
166-
else if (String.to_upper mnemonic =? "GLOBAL")
166+
else if (String.to_upper mnemonic =? "GLOBAL") || (String.to_upper mnemonic =? ".GLOBAL") || (String.to_upper mnemonic =? ".GLOBL")
167167
then [(GLOBAL args, "")]
168-
else if (String.to_upper mnemonic =? "ALIGN")
168+
else if (String.to_upper mnemonic =? "ALIGN") || (String.to_upper mnemonic =? ".ALIGN")
169169
then [(ALIGN args, "")]
170170
else if (String.to_upper mnemonic =? "DEFAULT") && (String.to_upper args =? "REL")
171171
then [(DEFAULT_REL, "")]
172172
else if String.endswith ":" s
173173
then [(LABEL (substring 0 (pred (String.length s)) s), "")]
174174
else if (s =? "")
175175
then [(EMPTY, "")]
176+
else if (List.find (String.eqb (String.to_lower s))
177+
[".cfi_def_cfa_offset"
178+
; ".cfi_endproc"
179+
; ".cfi_offset"
180+
; ".cfi_startproc"
181+
; ".file"
182+
; ".ident"
183+
; ".intel_syntax"
184+
; ".loc"
185+
; ".size"
186+
; ".text"
187+
; ".type"
188+
])
189+
then [(DIRECTIVE s, "")]
176190
else let parsed_prefix := (parse_OpPrefix ;;L ε) mnemonic in
177191
List.flat_map
178192
(fun '(parsed_prefix, mnemonic, args)

src/Assembly/Syntax.v

+1
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ Inductive RawLine :=
205205
| DEFAULT_REL
206206
| EMPTY
207207
| INSTR (instr : NormalInstruction)
208+
| DIRECTIVE (d : string)
208209
.
209210
Coercion INSTR : NormalInstruction >-> RawLine.
210211
Record Line := { indent : string ; rawline :> RawLine ; pre_comment_whitespace : string ; comment : option string ; line_number : N}.

src/Assembly/WithBedrock/Semantics.v

+1
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ Definition DenoteRawLine (st : machine_state) (rawline : RawLine) : option machi
422422
match rawline with
423423
| EMPTY
424424
| LABEL _
425+
| DIRECTIVE _
425426
=> Some st
426427
| INSTR instr
427428
=> DenoteNormalInstruction st instr

0 commit comments

Comments
 (0)