mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
stacksize: deal with DW_CFA_advance_loc1
In some cases this operation is emitted. It appears to be emitted when a switch is lowered to a jump table in the ARM backend.
This commit is contained in:
committed by
Ron Evans
parent
4dadb31e18
commit
fcedf0beaa
@@ -207,6 +207,16 @@ func (fi *frameInfo) exec(bytecode []byte) ([]frameInfoLine, error) {
|
||||
switch lowBits {
|
||||
case 0: // DW_CFA_nop
|
||||
// no operation
|
||||
case 0x02: // DW_CFA_advance_loc1
|
||||
// Very similar to DW_CFA_advance_loc but allows for a slightly
|
||||
// larger range.
|
||||
offset, err := r.ReadByte()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
fi.loc += uint64(offset) * fi.cie.codeAlignmentFactor
|
||||
entries = append(entries, fi.newLine())
|
||||
// TODO: DW_CFA_advance_loc2 etc
|
||||
case 0x07: // DW_CFA_undefined
|
||||
// Marks a single register as undefined. This is used to stop
|
||||
// unwinding in tinygo_startTask using:
|
||||
|
||||
Reference in New Issue
Block a user