2020-06-15 07:18:57 -07:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
2023-12-07 22:11:56 -05:00
|
|
|
│ vi: set et ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi │
|
2020-06-15 07:18:57 -07:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-27 17:18:44 -08:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 07:18:57 -07:00
|
|
|
│ │
|
2020-12-27 17:18:44 -08:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 07:18:57 -07:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2021-02-28 23:42:35 -08:00
|
|
|
#include "libc/macros.internal.h"
|
2021-09-04 13:20:47 -07:00
|
|
|
#include "libc/runtime/memtrack.internal.h"
|
2020-08-25 04:23:25 -07:00
|
|
|
#include "libc/runtime/runtime.h"
|
2020-06-15 07:18:57 -07:00
|
|
|
|
2023-10-02 19:25:19 -07:00
|
|
|
// TODO(jart): DELETE
|
|
|
|
|
2020-06-15 07:18:57 -07:00
|
|
|
/**
|
2020-08-25 04:23:25 -07:00
|
|
|
* Returns true if address isn't stack and was malloc'd or mmap'd.
|
|
|
|
*
|
|
|
|
* @assume stack addresses are always greater than heap addresses
|
|
|
|
* @assume stack memory isn't stored beneath %rsp (-mno-red-zone)
|
2023-10-02 19:25:19 -07:00
|
|
|
* @deprecated
|
2020-06-15 07:18:57 -07:00
|
|
|
*/
|
2023-11-15 20:57:18 -08:00
|
|
|
optimizesize bool32 _isheap(void *p) {
|
2022-05-23 10:15:53 -07:00
|
|
|
intptr_t x, y;
|
|
|
|
x = kAutomapStart;
|
|
|
|
y = x + kAutomapSize;
|
|
|
|
return x <= (intptr_t)p && (intptr_t)p < y;
|
2020-06-15 07:18:57 -07:00
|
|
|
}
|