{"runtime.panicdivide", 1},
{"runtime.panicshift", 1},
{"runtime.panicmakeslicelen", 1},
+ {"runtime.panicmakeslicecap", 1},
{"runtime.throwinit", 1},
{"runtime.panicwrap", 1},
{"runtime.gopanic", 1},
{"runtime.msanwrite", 1},
{"runtime.checkptrAlignment", 1},
{"runtime.checkptrArithmetic", 1},
+ {"runtime.libfuzzerTraceCmp1", 1},
+ {"runtime.libfuzzerTraceCmp2", 1},
+ {"runtime.libfuzzerTraceCmp4", 1},
+ {"runtime.libfuzzerTraceCmp8", 1},
+ {"runtime.libfuzzerTraceConstCmp1", 1},
+ {"runtime.libfuzzerTraceConstCmp2", 1},
+ {"runtime.libfuzzerTraceConstCmp4", 1},
+ {"runtime.libfuzzerTraceConstCmp8", 1},
{"runtime.x86HasPOPCNT", 0},
{"runtime.x86HasSSE41", 0},
+ {"runtime.x86HasFMA", 0},
+ {"runtime.armHasVFPv4", 0},
{"runtime.arm64HasATOMICS", 0},
- {"runtime.gcWriteBarrier", 0},
{"runtime.deferproc", 1},
{"runtime.deferprocStack", 1},
{"runtime.deferreturn", 1},
{"runtime.newproc", 1},
+ {"runtime.panicoverflow", 1},
+ {"runtime.sigpanic", 1},
+ {"runtime.gcWriteBarrier", 0},
{"runtime.morestack", 0},
{"runtime.morestackc", 0},
{"runtime.morestack_noctxt", 0},
name string
abi int
}{
- {"gcWriteBarrier", 0}, // asm function, ABI0
+ // compiler frontend inserted calls (sysfunc)
{"deferproc", 1},
{"deferprocStack", 1},
{"deferreturn", 1},
{"newproc", 1},
+ {"panicoverflow", 1},
+ {"sigpanic", 1},
+
+ // compiler backend inserted calls
+ {"gcWriteBarrier", 0}, // asm function, ABI0
+
+ // assembler backend inserted calls
{"morestack", 0}, // asm function, ABI0
{"morestackc", 0}, // asm function, ABI0
{"morestack_noctxt", 0}, // asm function, ABI0