Object Introspection (OI) enables on-demand, hierarchical profiling of objects in arbitrary C/C++ programs with no recompilation.
Go to file
Jay Kamat e27f725a85 Avoid following weak_ptrs
Previously, we treated weak_ptrs as normal types and we recursed
within them, following the internal data pointer and possibly causing
crashes. We really shouldn't be following them, so I added a custom
type to simply abort processing. If we want to handle them (ie: check
if they are valid, and follow them if so), that should be fairly easy
with the work there is here so far.
2023-03-28 14:10:27 -07:00
.circleci reduce race window for breakpoint trap in prologue (#85) 2023-03-04 08:06:19 +00:00
.github Add website deployment script 2022-12-20 08:40:51 -08:00
cmake Initial commit 2022-12-19 06:37:51 -08:00
examples formatting: force pointers/references with the type 2023-03-24 20:18:18 +00:00
extern folly: switch to FetchContent 2023-03-20 13:25:15 +00:00
include formatting: force pointers/references with the type 2023-03-24 20:18:18 +00:00
src Avoid following weak_ptrs 2023-03-28 14:10:27 -07:00
test Avoid following weak_ptrs 2023-03-28 14:10:27 -07:00
tools formatting: force pointers/references with the type 2023-03-24 20:18:18 +00:00
types Avoid following weak_ptrs 2023-03-28 14:10:27 -07:00
website website: yarn upgrade 2023-03-16 13:49:02 +00:00
.clang-format formatting: force pointers/references with the type 2023-03-24 20:18:18 +00:00
.clang-tidy Initial commit 2022-12-19 06:37:51 -08:00
.editorconfig Initial commit 2022-12-19 06:37:51 -08:00
.git-blame-ignore-revs Initial commit 2022-12-19 06:37:51 -08:00
.gitignore Delete old files from test/ 2023-01-27 12:45:35 +00:00
.gitmodules folly: switch to FetchContent 2023-03-20 13:25:15 +00:00
CHANGELOG.md Initial commit 2022-12-19 06:37:51 -08:00
CMakeLists.txt tests: build integration.py targets with cmake 2023-03-27 16:15:37 +01:00
CODE_OF_CONDUCT.md Initial commit 2022-12-19 06:37:51 -08:00
CONTRIBUTING.md Initial commit 2022-12-19 06:37:51 -08:00
dev.oid.toml Avoid following weak_ptrs 2023-03-28 14:10:27 -07:00
LICENSE Initial commit 2022-12-19 06:37:51 -08:00
oss.oid.toml Initial commit 2022-12-19 06:37:51 -08:00
README.md README: Convert to Markdown format and fix website link 2022-12-19 16:21:39 +00:00

object-introspection

Matrix Chat

Object Introspection is a memory profiling technology for C++ objects. It provides the ability to dynamically instrument applications to capture the precise memory occupancy of entire object hierarchies including all containers and dynamic allocations. All this with no code modification or recompilation!

For more information on the technology and how to get started applying it to your applications please check out the Object Introspection website.

Join the Object Introspection community

See the CONTRIBUTING file for how to help out.

License

Object Introspection is licensed under the Apache 2.0 License.