File tree 4 files changed +21
-3
lines changed
4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -257,13 +257,15 @@ Definition RawLine_beq (x y : RawLine) : bool
257
257
| DEFAULT_REL, DEFAULT_REL => true
258
258
| INSTR x, INSTR y => NormalInstruction_beq x y
259
259
| ALIGN x, ALIGN y => String.eqb x y
260
+ | DIRECTIVE x, DIRECTIVE y => String.eqb x y
260
261
| SECTION _, _
261
262
| GLOBAL _, _
262
263
| LABEL _, _
263
264
| EMPTY, _
264
265
| INSTR _, _
265
266
| ALIGN _, _
266
267
| DEFAULT_REL, _
268
+ | DIRECTIVE _, _
267
269
=> false
268
270
end .
269
271
Global Arguments RawLine_beq !_ !_ / .
Original file line number Diff line number Diff line change @@ -161,18 +161,32 @@ Definition parse_RawLine : ParserAction RawLine
161
161
(* get the first space-separated opcode *)
162
162
let '(mnemonic, args) := String.take_while_drop_while (fun ch => negb (Ascii.is_whitespace ch)) s in
163
163
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")
165
165
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")
167
167
then [(GLOBAL args, "")]
168
- else if (String.to_upper mnemonic =? "ALIGN")
168
+ else if (String.to_upper mnemonic =? "ALIGN") || (String.to_upper mnemonic =? ".ALIGN")
169
169
then [(ALIGN args, "")]
170
170
else if (String.to_upper mnemonic =? "DEFAULT") && (String.to_upper args =? "REL")
171
171
then [(DEFAULT_REL, "")]
172
172
else if String.endswith ":" s
173
173
then [(LABEL (substring 0 (pred (String.length s)) s), "")]
174
174
else if (s =? "")
175
175
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, "")]
176
190
else let parsed_prefix := (parse_OpPrefix ;;L ε) mnemonic in
177
191
List.flat_map
178
192
(fun '(parsed_prefix, mnemonic, args)
Original file line number Diff line number Diff line change @@ -205,6 +205,7 @@ Inductive RawLine :=
205
205
| DEFAULT_REL
206
206
| EMPTY
207
207
| INSTR (instr : NormalInstruction)
208
+ | DIRECTIVE (d : string)
208
209
.
209
210
Coercion INSTR : NormalInstruction >-> RawLine.
210
211
Record Line := { indent : string ; rawline :> RawLine ; pre_comment_whitespace : string ; comment : option string ; line_number : N}.
Original file line number Diff line number Diff line change @@ -422,6 +422,7 @@ Definition DenoteRawLine (st : machine_state) (rawline : RawLine) : option machi
422
422
match rawline with
423
423
| EMPTY
424
424
| LABEL _
425
+ | DIRECTIVE _
425
426
=> Some st
426
427
| INSTR instr
427
428
=> DenoteNormalInstruction st instr
You can’t perform that action at this time.
0 commit comments