// Check that (*[n]elem)(p) is appropriately aligned.
// TODO(mdempsky): What about fieldAlign?
if uintptr(p)&(uintptr(elem.align)-1) != 0 {
- throw("checkptr: unsafe pointer conversion")
+ throw("checkptr: misaligned pointer conversion")
}
// Check that (*[n]elem)(p) doesn't straddle multiple heap objects.
if size := n * elem.size; size > 1 && checkptrBase(p) != checkptrBase(add(p, size-1)) {
- throw("checkptr: unsafe pointer conversion")
+ throw("checkptr: converted pointer straddles multiple allocations")
}
}
func checkptrArithmetic(p unsafe.Pointer, originals []unsafe.Pointer) {
if 0 < uintptr(p) && uintptr(p) < minLegalPointer {
- throw("checkptr: unsafe pointer arithmetic")
+ throw("checkptr: pointer arithmetic computed bad pointer value")
}
// Check that if the computed pointer p points into a heap
}
}
- throw("checkptr: unsafe pointer arithmetic")
+ throw("checkptr: pointer arithmetic result points to invalid allocation")
}
// checkptrBase returns the base address for the allocation containing
cmd string
want string
}{
- {"CheckPtrAlignment", "fatal error: checkptr: unsafe pointer conversion\n"},
- {"CheckPtrArithmetic", "fatal error: checkptr: unsafe pointer arithmetic\n"},
- {"CheckPtrSize", "fatal error: checkptr: unsafe pointer conversion\n"},
- {"CheckPtrSmall", "fatal error: checkptr: unsafe pointer arithmetic\n"},
+ {"CheckPtrAlignment", "fatal error: checkptr: misaligned pointer conversion\n"},
+ {"CheckPtrArithmetic", "fatal error: checkptr: pointer arithmetic result points to invalid allocation\n"},
+ {"CheckPtrSize", "fatal error: checkptr: converted pointer straddles multiple allocations\n"},
+ {"CheckPtrSmall", "fatal error: checkptr: pointer arithmetic computed bad pointer value\n"},
}
for _, tc := range testCases {