diff --git a/.gitignore b/.gitignore index 722dbb390..a4efc556f 100644 --- a/.gitignore +++ b/.gitignore @@ -51,7 +51,6 @@ compile_commands.json *.s *.bc *.swp -*.dump .env .env_perso.yml test/configs/perso.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cce0304ee..94212ade9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,8 +16,31 @@ trigger_internal_build: DDPROF_SHORT_COMMIT_SHA: ${CI_COMMIT_SHORT_SHA} DDPROF_COMMIT_TAG: ${CI_COMMIT_TAG} # Reliability environment downstream branch - DDPROF_RELENV_BRANCH: master + DDPROF_RELENV_BRANCH: ${DDPROF_RELENV_BRANCH-"master"} trigger: - project: DataDog/ddprof-build + project: DataDog/apm-reliability/ddprof-build strategy: depend branch: $DOWNSTREAM_BUILD_BRANCH + +# Following jobs are required otherwise gitsync will not report downstream pipeline failure to github + +# This job is used to determine is downstream pipeline has succeeded +report_failure: + tags: ["arch:amd64"] + when: on_failure + needs: [trigger_internal_build] + # allow_failure: true prevents the job from showing up in github statuses (because it's filtered by gitsync) + allow_failure: true + script: + - echo "STATUS=1" >> .env + artifacts: + reports: + dotenv: .env + +# Final job that will show in github statuses +report_gitlab_CI_status: + tags: ["arch:amd64"] + when: always + stage: .post + script: + - exit ${STATUS} diff --git a/CMakeLists.txt b/CMakeLists.txt index a23a8031f..2b214838e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ cmake_minimum_required(VERSION 3.19) project( DDProf LANGUAGES C CXX - VERSION 0.9.3 + VERSION 0.13.0 DESCRIPTION "Datadog's native profiler for Linux") message(STATUS "Compiler ID: ${CMAKE_C_COMPILER_ID}") @@ -23,8 +23,12 @@ endif() # ~~~ # set(CMAKE_VERBOSE_MAKEFILE on) +# Add build ID info on alpine +add_link_options("LINKER:--build-id=sha1") + # Define the include path of cmake scripts list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") +list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/util") include(ExtendBuildTypes) @@ -80,22 +84,27 @@ endif() # libdatadog_profiling include(Findlibdatadog) +# Event Parser +add_subdirectory(src/event_parser) + # elfutils include(Findelfutils) # ---- Static analysis ---- include(ClangTidy) -include(CppcheckConfig) include(Format) +# Generated code needs to be available for cppcheck to work +include(CppcheckConfig) +add_dependencies(cppcheck DDProf::Parser) + # ---- Libraries (needed by ut) ---- -option(DDPROF_JEMALLOC "Enable jemalloc stats" OFF) -if(${DDPROF_JEMALLOC}) +option(DDPROF_ALLOCATOR "Define the type of allocator (STANDARD / JEMALLOC)" STANDARD) +if("${DDPROF_ALLOCATOR}" STREQUAL "JEMALLOC") # jemalloc for debug include(Jemalloc) - message(STATUS "Adding jemalloc for DBG purpose" ${JEMALLOC_ROOT_DIR}) - add_compile_definitions("DBG_JEMALLOC") + message(STATUS "Using Allocator Jemalloc from:" ${JEMALLOC_LIBRARIES}) endif() # Install lib cap to retrieve capabilities @@ -130,21 +139,24 @@ list(APPEND DDPROF_INCLUDE_LIST ${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/ # Find the source files aux_source_directory(src COMMON_SRC) aux_source_directory(src/pprof PPROF_SRC) +aux_source_directory(src/demangler DEMANGLER_SRC) aux_source_directory(src/exporter EXPORTER_SRC) aux_source_directory(src/exe EXE_SRC) +aux_source_directory(src/jit JIT_SRC) # Define all sources -set(DDPROF_GLOBAL_SRC ${COMMON_SRC} ${PPROF_SRC} ${EXPORTER_SRC} ${EXE_SRC}) +set(DDPROF_GLOBAL_SRC ${COMMON_SRC} ${DEMANGLER_SRC} ${PPROF_SRC} ${EXPORTER_SRC} ${EXE_SRC} + ${JIT_SRC}) -set(DDPROF_LIBRARY_LIST llvm-demangle ${ELFUTILS_LIBRARIES} Threads::Threads) +set(DDPROF_LIBRARY_LIST DDProf::Parser llvm-demangle ${ELFUTILS_LIBRARIES} Threads::Threads) if(ON) # Add the rust library - Refactoring ongoing. OFF for now list(PREPEND DDPROF_LIBRARY_LIST Datadog::Profiling) endif() -if(${DDPROF_JEMALLOC}) - list(PREPEND DDPROF_LIBRARY_LIST jemalloc) +if("${DDPROF_ALLOCATOR}" STREQUAL "JEMALLOC") + list(PREPEND DDPROF_LIBRARY_LIST ${JEMALLOC_LIBRARIES}) endif() # libcap, can be removed from version distributed to client @@ -191,6 +203,7 @@ set(DD_PROFILING_SOURCES src/lib/dd_profiling.cc src/lib/elfutils.cc src/lib/lib_embedded_data.c + src/lib/pthread_fixes.cc src/lib/savecontext.cc src/lib/saveregisters.cc src/lib/symbol_overrides.cc @@ -203,10 +216,12 @@ set(DD_PROFILING_SOURCES src/ringbuffer_utils.cc src/signal_helper.cc src/sys_utils.cc + src/tracepoint_config.cc src/user_override.cc) if(BUILD_UNIVERSAL_DDPROF) - list(APPEND DD_PROFILING_SOURCES src/lib/glibc_fixes.c) + # Compiling on different libc, we need to ensure some symbols are available everywhere + list(APPEND DD_PROFILING_SOURCES src/lib/glibc_fixes.c src/lib/libc_compatibility.c) endif() # libddprofiling_embeded.so is the actual profiling library @@ -232,6 +247,8 @@ if(BUILD_UNIVERSAL_DDPROF) endif() endif() +target_link_libraries(dd_profiling-embedded PRIVATE DDProf::Parser) + # Fix for link error in sanitizeddebug build mode with gcc: # ~~~ # /usr/bin/ld: ./libdd_profiling.so: undefined reference to `__dynamic_cast' @@ -247,6 +264,17 @@ target_link_libraries( ) target_link_libraries(dd_profiling-embedded PUBLIC dl pthread rt) + +# add libaustin +add_library(austin SHARED IMPORTED) +set_target_properties(austin PROPERTIES + IMPORTED_LOCATION "/austin/src/libaustin.a" + INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/include/libaustin" +) + + + + set(LIBDD_PROFILING_EMBEDDED_OBJECT "${CMAKE_BINARY_DIR}/libdd_profiling-embedded.o") add_custom_command( OUTPUT ${LIBDD_PROFILING_EMBEDDED_OBJECT} @@ -266,6 +294,16 @@ add_exe( LIBRARIES ${DDPROF_LIBRARY_LIST} DEFINITIONS ${DDPROF_DEFINITION_LIST}) target_link_libraries(ddprof PRIVATE libddprofiling_embedded_object) + + + +# link libaustin to ddprof +target_link_libraries(ddprof PRIVATE austin) + + + + + if(USE_LOADER) target_compile_definitions(ddprof PRIVATE "DDPROF_USE_LOADER") target_link_libraries(ddprof PRIVATE libdd_loader_object) @@ -293,6 +331,10 @@ add_custom_command( COMMAND objcopy --rename-section .data=.rodata,alloc,load,readonly,data,contents ${DDPROF_EXE_OBJECT} DEPENDS ddprof) +# add_custom_target is required here, because multiple targets depend on ${DDPROF_EXE_OBJECT} +# Without add_custom_target (only add_custom_command), each dependent target will run the custom +# command and they will race, leading to spurious failures. +add_custom_target(generate_ddprof_object DEPENDS ${DDPROF_EXE_OBJECT}) add_library(ddprof_exe_object OBJECT IMPORTED GLOBAL) set_target_properties(ddprof_exe_object PROPERTIES IMPORTED_OBJECTS "${DDPROF_EXE_OBJECT}") @@ -305,6 +347,7 @@ target_include_directories( ${CMAKE_SOURCE_DIR}/third_party) set_target_properties(dd_profiling-static PROPERTIES PUBLIC_HEADER "${CMAKE_SOURCE_DIR}/include/lib/dd_profiling.h") +target_link_libraries(dd_profiling-static PRIVATE DDProf::Parser) target_link_libraries(dd_profiling-static PUBLIC dl pthread rt) if(USE_LOADER) @@ -312,7 +355,7 @@ if(USE_LOADER) # and ddprof executable. add_library(dd_profiling-shared SHARED src/lib/glibc_fixes.c src/lib/lib_embedded_data.c src/lib/loader.c src/sha1.c) - target_link_libraries(dd_profiling-shared PRIVATE libddprofiling_embedded_object + target_link_libraries(dd_profiling-shared PRIVATE DDProf::Parser libddprofiling_embedded_object ddprof_exe_object) target_compile_definitions(dd_profiling-shared PRIVATE DDPROF_EMBEDDED_LIB_DATA DDPROF_EMBEDDED_EXE_DATA) @@ -320,7 +363,7 @@ else() # Without loader, libdd_profiling.so is basically the same as libdd_profiling-embedded.so plus an # embedded ddprof executable. add_library(dd_profiling-shared SHARED ${DD_PROFILING_SOURCES} src/lib/lib_embedded_data.c) - target_link_libraries(dd_profiling-shared PRIVATE ddprof_exe_object) + target_link_libraries(dd_profiling-shared PRIVATE DDProf::Parser ddprof_exe_object) target_compile_definitions(dd_profiling-shared PRIVATE DDPROF_EMBEDDED_EXE_DATA) # Fix for link error in sanitizeddebug build mode with gcc: @@ -366,40 +409,6 @@ install( ARCHIVE DESTINATION ddprof/lib PUBLIC_HEADER DESTINATION ddprof/include) -# ---- Declaration of native library ---- -option(BUILD_NATIVE_LIB "Build a library out of the native profiler" ON) -if(${BUILD_NATIVE_LIB}) - - # Define all sources - set(DDPROF_LIB_SRC ${COMMON_SRC} src/lib/ddprof_output.cc) - - # Libs to link - set(NATIVE_LIB_LIBRARY_LIST llvm-demangle ${ELFUTILS_LIBRARIES} Threads::Threads) - - if(${DDPROF_JEMALLOC}) - list(PREPEND NATIVE_LIB_LIBRARY_LIST jemalloc) - endif() - - # Create the lib - add_library(ddprof-native ${DDPROF_LIB_SRC}) - - set_target_properties(ddprof-native PROPERTIES VERSION ${PROJECT_VERSION}) - set_target_properties(ddprof-native PROPERTIES COMPILE_DEFINITIONS DDPROF_NATIVE_LIB) - - # libcap, can be removed from version distributed to client - list(APPEND NATIVE_LIB_LIBRARY_LIST libcap) - - target_include_directories(ddprof-native PRIVATE ${DDPROF_INCLUDE_LIST}) - - target_link_libraries(ddprof-native PRIVATE ${NATIVE_LIB_LIBRARY_LIST}) - add_library(DDProf::Native ALIAS ddprof-native) - - option(ACCURACY_TEST "Enable accuracy test" OFF) - if(${ACCURACY_TEST}) - add_subdirectory(test/self_unwind) - endif() -endif() - # ---- Unit tests ---- # Unit tests Add infrastructure for enabling tests diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a062a0949..42266fb0e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -65,4 +65,4 @@ We're always happy to help contributors with their pull requests. ## Final word -Many thanks to all of our contributors, and looking forward to seeing you on Github! :tada: +Many thanks to all of our contributors, and looking forward to seeing you on Github! diff --git a/CppCheckSuppressions.txt b/CppCheckSuppressions.txt index 4f77895d4..3b12198ba 100644 --- a/CppCheckSuppressions.txt +++ b/CppCheckSuppressions.txt @@ -7,3 +7,6 @@ missingInclude // Ignore warnings from third parties *:*/third_party/* + +// Ignore Lex and Yacc defects +*:*/event_parser/* diff --git a/Readme.md b/Readme.md index 59259a20e..3c4945e98 100644 --- a/Readme.md +++ b/Readme.md @@ -1,56 +1,99 @@ # ddprof -The Datadog Native Profiler for Linux +The Datadog Native Profiler for Linux. ## Overview -`ddprof` is a commandline utility for engaging kernel-mediated telemetry of an application and forwarding the resulting information to the Datadog backend. In several ways, it's similar to the `perf record` tool. +`ddprof` is a command-line utility to gather profiling data. After install you will continuously see where your application is spending CPU and memory allocations. +The data will be available in the `/profiling` section of the [Datadog UI](https://app.datadoghq.com/). ## Quick Start Our official documentation is available [here](https://docs.datadoghq.com/profiler/enabling/ddprof/?tab=environmentvariables). +Our pre-built binaries are compatible with both musl and glibc. You should not need to recompile `ddprof` from source. -### From binary +### From binary [Recommended] -Check out our Release page for prebuilt binaries. Download the desired binary, making sure to mark it executable `chmod +x ./ddprof`. -Refer to [commands](docs/Commands.md) for the commands supported by `ddprof`. Example : +An installation guide is available [here](https://docs.datadoghq.com/profiler/enabling/ddprof/?tab=environmentvariables). +Check out our Release page for our [latest](https://github.com/DataDog/ddprof/releases/latest) release. Download the release and extract `ddprof`. +Instrumenting your application should be as simple as adding `ddprof` in front of your usual command line. + +To install the profiler, check out our [installation-helpers](#Installation-helpers) bellow. + +The following command will run `ddprof` with the default settings (CPU and allocations) ```bash -./ddprof -S my_native_service ./run.sh +ddprof -S service_name_for_my_program ./my_program arg1 arg2 ``` +Profiling data shows up in the `/profiling` section of your Datadog UI. Specifying a service name will help you select your profiling data. +Refer to [commands](docs/Commands.md) for a more advanced usage of `ddprof`. + ### From source Checkout our build section [here](./docs/Build.md). -### Prerequisites +## Prerequisites -The Datadog Native Profiler for Linux has only been tested on kernel 4.15 above. It may be supported by older kernels, but your mileage may vary. One can verify the kernel version by running `uname`: +### Perf event paranoid + +The target machine must have `perf_event_paranoid` set to 2 or lower. ```bash -uname -r +# needs to be less than or equal to 2 +cat /proc/sys/kernel/perf_event_paranoid ``` -In addition, the target machine must have `perf_event_paranoid` set to 2 or lower OR `CAP_SYS_ADMIN` enabled. +Here is an example adding a startup configuration to your system. This requires a system restart. ```bash -# needs to be less than or equal to 2 -cat /proc/sys/kernel/perf_event_paranoid +sudo sh -c 'echo kernel.perf_event_paranoid=2 > /etc/sysctl.d/perf_event_paranoid_2.conf' ``` +Alternatively you can use `CAP_SYS_ADMIN` or `sudo` as a one off test mechanism, more in the [Troubleshooting](./docs/Troubleshooting.md) section. Don't hesitate to [reach-out](#Reaching-out) if you are not able to use our profiler! +### Agent installation + +It is recommended to have an agent setup on the system you are profiling. +By default the profiler will target `localhost:8126` (the default trace agent endpoint). The `DD_TRACE_AGENT_URL` environment variable can be used to override this setting. + +## Installation helpers + +### Ubuntu / Debian + +The following commands will download and install `ddprof` on Debian or Ubuntu distributions: + +```bash +export ARCH=$(dpkg --print-architecture) # ARCH should hold amd64 or arm64 +# ddprof requires xz-utils to uncompress the archive +sudo apt-get update && \ +sudo DEBIAN_FRONTEND=noninteractive apt-get install -y xz-utils curl jq && \ +tag_name=$(curl -s https://api.github.com/repos/DataDog/ddprof/releases/latest | jq -r '.tag_name[1:]') && \ +url_release="https://github.com/DataDog/ddprof/releases/download/v${tag_name}/ddprof-${tag_name}-${ARCH}-linux.tar.xz" && \ +curl -L -o ddprof-${ARCH}-linux.tar.xz ${url_release} && \ +tar xvf ddprof-${ARCH}-linux.tar.xz && \ +sudo mv ddprof/bin/ddprof /usr/local/bin && \ +rm -Rf ddprof-amd64-linux.tar.xz ./ddprof && \ +ddprof --version +``` + ## Key Features ### Simplicity -`ddprof` is a wrapper, so using it should be as simple as injecting the binary into your container and wrapping your `run.sh` (or whatever) in it. `ddprof` will use environment variables if they are available, overriding them with commandline parameters if given. +`ddprof` is a wrapper, so using it should be as simple as injecting the binary into your container and wrapping your entrypoint. +`ddprof` will use environment variables if they are available, overriding them with commandline parameters if given. ### Safety - Minimal interference to execution of instrumented processes - `ddprof`'s Memory usage is sandboxed +### Allocation profiling + +- By working in user space, `ddprof` can instrument allocations with low overhead + ## Docs Architectural showpieces and such will always be available in the `docs/` folder. @@ -58,6 +101,7 @@ Architectural showpieces and such will always be available in the `docs/` folder - [Build](./docs/Build.md) - [Design](./docs/Design.md) - [Automatically updated list of commads](./docs/Commands.md) +- [Troubleshooting](./docs/Troubleshooting.md) ## Reaching-out diff --git a/app/base-env-alpine/Dockerfile b/app/base-env-alpine/Dockerfile index 4323ac7c0..9ee47baee 100644 --- a/app/base-env-alpine/Dockerfile +++ b/app/base-env-alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.16.0 +FROM alpine:3.17.2 ARG COMPILER="gcc" ENV CC=gcc ENV CXX=g++ @@ -6,45 +6,46 @@ ENV CXX=g++ #MISSING # lcov # liblzma -# libjemalloc # libexecinfo-dev # No static lib RUN apk update \ && apk add --no-cache aws-cli \ - bash \ - binutils-dev \ - ca-certificates \ - gcovr \ - git \ - subversion \ - patch \ - curl \ - wget \ - make \ - cmake \ - m4 \ - autoconf \ - automake \ - unzip \ - gcc \ - g++ \ - clang \ + bash \ + binutils-dev \ + bison \ + ca-certificates \ + gcovr \ + git \ + flex \ + subversion \ + patch \ + curl \ + wget \ + make \ + cmake \ + m4 \ + autoconf \ + automake \ + unzip \ + gcc \ + g++ \ + clang \ libcap-static \ libunwind-dev \ - py3-pkgconfig \ - gtest-dev \ - cppcheck \ - openssh \ + musl-dbg \ + py3-pkgconfig \ + gtest-dev \ + cppcheck \ + openssh \ zlib-dev \ zlib-static \ bzip2-dev \ - xz-dev \ - argp-standalone \ - fts-dev \ - musl-obstack-dev \ - musl-libintl \ - musl-legacy-error \ - libcap-dev \ - netcat-openbsd \ + argp-standalone \ + musl-fts-dev \ + musl-obstack-dev \ + musl-libintl \ + musl-legacy-error \ + libcap-dev \ + netcat-openbsd \ util-linux # Tell docker to use bash as the default @@ -103,3 +104,34 @@ RUN mkdir /patch ADD ./app/base-env-alpine/*.patch /patch/ ADD ./app/base-env-alpine/error.h /patch/ ADD ./app/base-env-alpine/libintl.h /patch/ + +# jemalloc +RUN git clone --branch 5.3.0 https://github.com/jemalloc/jemalloc.git && \ + cd jemalloc && \ + ./autogen.sh && \ + make && \ + make install + +# lzma +# The static version of lzma is no longer available in package xz-dev +RUN git clone --branch v5.4 https://github.com/tukaani-project/xz.git && \ + cd xz && \ + mkdir Build && \ + cd Build && \ + cmake -DCMAKE_BUILD_TYPE=Release ../ && \ + make -j && \ + make install + + +## This does not work +#RUN apk update \ +# && apk add --no-cache argp-standalone +# +## Austin \ +## Todo: get a stable version here +RUN git clone --branch r1viollet/libaustin https://github.com/r1viollet/austin.git && \ + cd austin && \ + autoreconf --install && \ + ./configure && \ + make && \ + make install diff --git a/app/base-env/Dockerfile b/app/base-env/Dockerfile index 6c1d62eab..8a90709c3 100644 --- a/app/base-env/Dockerfile +++ b/app/base-env/Dockerfile @@ -1,12 +1,16 @@ # Using a recent compiler version and recent OS (better tooling) # We'll implement libc version sanitization in the code itself -ARG UBUNTU_VERSION=20 +ARG UBUNTU_VERSION=18 ARG COMPILER="gcc" FROM ubuntu:${UBUNTU_VERSION}.04 as base ARG UBUNTU_VERSION ENV OS_IDENTIFIER="UB${UBUNTU_VERSION}" +FROM base AS base-22 +ENV GCC_VERSION=12 +ENV CLANG_VERSION=15 + FROM base AS base-20 ENV GCC_VERSION=11 ENV CLANG_VERSION=13 @@ -37,10 +41,13 @@ RUN apt-get update \ apt-transport-https \ awscli \ binutils-dev \ + bison \ ca-certificates \ curl \ + flex \ gcovr \ git \ + jq \ lcov \ libcap-dev \ libjemalloc-dev \ @@ -59,7 +66,7 @@ RUN apt-get update \ zlib1g-dev # Codeql : static analysis tooling -RUN curl -L https://github.com/github/codeql-action/releases/download/codeql-bundle-20210622/codeql-bundle-linux64.tar.gz -o - | tar -xz -C /usr/local +RUN curl -L https://github.com/github/codeql-action/releases/download/codeql-bundle-20230304/codeql-bundle-linux64.tar.gz -o - | tar -xz -C /usr/local #################### ## LLVM/GCC SETUP ## @@ -136,14 +143,18 @@ RUN VERSION="3.10.5" \ && rm -rf json json.tar.xz # Google benchmark -RUN VERSION="1.6.1" \ +# Command line includes a change +# - in python which is missing on ubuntu 20.04, use python 3 instead +# - in options_test.cc to fix a clang build issue (fixed after 1.7.1) +RUN VERSION="1.7.1" \ && curl -LO "https://github.com/google/benchmark/archive/refs/tags/v${VERSION}.tar.gz" \ - && SHA256="6132883bc8c9b0df5375b16ab520fac1a85dc9e4cf5be59480448ece74b278d4" \ + && SHA256="6430e4092653380d9dc4ccb45a1e2dc9259d581f4866dc0759713126056bc1d7" \ && (printf "${SHA256} v${VERSION}.tar.gz" | sha256sum --check --strict --status) \ && tar xf v${VERSION}.tar.gz \ && pushd benchmark-${VERSION} \ - # python is missing on ubuntu 20.04, use python 3 instead && { command -v python > /dev/null || { ln -s /usr/bin/python3 python && export PATH=$PWD:$PATH; }; } \ + && sed -i 's/^\s*size_t actual_iterations = 0;\s*$/ for (auto _ : state) {}/' ./test/options_test.cc \ + && sed -i 's/^\s*for (auto _ : state) ++actual_iterations;\s*$//' ./test/options_test.cc \ && cmake -DCMAKE_BUILD_TYPE=Release -DBENCHMARK_USE_BUNDLED_GTEST=OFF -GNinja -S . -B "build" \ && cmake --build "build" --target install \ && popd \ @@ -155,3 +166,24 @@ RUN pip3 install cmake_format # A specific user is required to get access to perf event ressources. # This enables unit testing using perf-event ressources RUN useradd -ms /bin/bash ddbuild + +RUN apt-get update \ + && DEBIAN_FRONTEND=noninteractive apt-get install -y \ + autoconf \ + libtool + +#RUN git clone https://github.com/libunwind/libunwind.git && \ +# cd libunwind && \ +# autoreconf --install && \ +# ./configure && \ +# make && \ +# make install + +# Austin \ +# Todo: get a stable version here +RUN git clone --branch r1viollet/libaustin https://github.com/r1viollet/austin.git && \ + cd austin && \ + autoreconf --install && \ + ./configure && \ + make && \ + make install diff --git a/app/base-env/llvm.sh b/app/base-env/llvm.sh index 6b3f2ba38..a159238cf 100755 --- a/app/base-env/llvm.sh +++ b/app/base-env/llvm.sh @@ -10,8 +10,21 @@ set -eux +usage() { + set +x + echo "Usage: $0 [llvm_major_version] [all] [OPTIONS]" 1>&2 + echo -e "all\t\t\tInstall all packages." 1>&2 + echo -e "-n=code_name\t\tSpecifies the distro codename, for example bionic" 1>&2 + echo -e "-h\t\t\tPrints this help." 1>&2 + echo -e "-m=repo_base_url\tSpecifies the base URL from which to download." 1>&2 + exit 1; +} + +CURRENT_LLVM_STABLE=15 +BASE_URL="http://apt.llvm.org" + # Check for required tools -needed_binaries=(lsb_release wget add-apt-repository) +needed_binaries=(lsb_release wget add-apt-repository gpg) missing_binaries=() for binary in "${needed_binaries[@]}"; do if ! which $binary &>/dev/null ; then @@ -20,19 +33,83 @@ for binary in "${needed_binaries[@]}"; do done if [[ ${#missing_binaries[@]} -gt 0 ]] ; then echo "You are missing some tools this script requires: ${missing_binaries[@]}" - echo "(hint: apt install lsb-release wget software-properties-common)" + echo "(hint: apt install lsb-release wget software-properties-common gnupg)" exit 4 fi -# read optional command line argument -LLVM_VERSION=13 -if [ "$#" -eq 1 ]; then - LLVM_VERSION=$1 -fi - +# Set default values for commandline arguments +# We default to the current stable branch of LLVM +LLVM_VERSION=$CURRENT_LLVM_STABLE +ALL=0 DISTRO=$(lsb_release -is) VERSION=$(lsb_release -sr) -DIST_VERSION="${DISTRO}_${VERSION}" +UBUNTU_CODENAME="" +CODENAME_FROM_ARGUMENTS="" +# Obtain VERSION_CODENAME and UBUNTU_CODENAME (for Ubuntu and its derivatives) +source /etc/os-release +DISTRO=${DISTRO,,} +case ${DISTRO} in + debian) + if [[ "${VERSION}" == "unstable" ]] || [[ "${VERSION}" == "testing" ]] || [[ "${VERSION_CODENAME}" == "bookworm" ]]; then + # For now, bookworm == sid. + # TODO change when bookworm is released + CODENAME=unstable + LINKNAME= + else + # "stable" Debian release + CODENAME=${VERSION_CODENAME} + LINKNAME=-${CODENAME} + fi + ;; + *) + # ubuntu and its derivatives + if [[ -n "${UBUNTU_CODENAME}" ]]; then + CODENAME=${UBUNTU_CODENAME} + if [[ -n "${CODENAME}" ]]; then + LINKNAME=-${CODENAME} + fi + fi + ;; +esac + +# read optional command line arguments +if [ "$#" -ge 1 ] && [ "${1::1}" != "-" ]; then + if [ "$1" != "all" ]; then + LLVM_VERSION=$1 + else + # special case for ./llvm.sh all + ALL=1 + fi + OPTIND=2 + if [ "$#" -ge 2 ]; then + if [ "$2" == "all" ]; then + # Install all packages + ALL=1 + OPTIND=3 + fi + fi +fi + +while getopts ":hm:n:" arg; do + case $arg in + h) + usage + ;; + m) + BASE_URL=${OPTARG} + ;; + n) + CODENAME=${OPTARG} + if [[ "${CODENAME}" == "unstable" ]]; then + # link name does not apply to unstable repository + LINKNAME= + else + LINKNAME=-${CODENAME} + fi + CODENAME_FROM_ARGUMENTS="true" + ;; + esac +done if [[ $EUID -ne 0 ]]; then echo "This script must be run as root!" @@ -45,7 +122,10 @@ LLVM_VERSION_PATTERNS[10]="-10" LLVM_VERSION_PATTERNS[11]="-11" LLVM_VERSION_PATTERNS[12]="-12" LLVM_VERSION_PATTERNS[13]="-13" -LLVM_VERSION_PATTERNS[14]="" +LLVM_VERSION_PATTERNS[14]="-14" +LLVM_VERSION_PATTERNS[15]="-15" +LLVM_VERSION_PATTERNS[16]="-16" +LLVM_VERSION_PATTERNS[17]="" if [ ! ${LLVM_VERSION_PATTERNS[$LLVM_VERSION]+_} ]; then echo "This script does not support LLVM version $LLVM_VERSION" @@ -54,29 +134,42 @@ fi LLVM_VERSION_STRING=${LLVM_VERSION_PATTERNS[$LLVM_VERSION]} -# find the right repository name for the distro and version -case "$DIST_VERSION" in - Debian_9* ) REPO_NAME="deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch$LLVM_VERSION_STRING main" ;; - Debian_10* ) REPO_NAME="deb http://apt.llvm.org/buster/ llvm-toolchain-buster$LLVM_VERSION_STRING main" ;; - Debian_11* ) REPO_NAME="deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye$LLVM_VERSION_STRING main" ;; - Debian_unstable ) REPO_NAME="deb http://apt.llvm.org/unstable/ llvm-toolchain$LLVM_VERSION_STRING main" ;; - Debian_testing ) REPO_NAME="deb http://apt.llvm.org/unstable/ llvm-toolchain$LLVM_VERSION_STRING main" ;; - Ubuntu_16.04 ) REPO_NAME="deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial$LLVM_VERSION_STRING main" ;; - Ubuntu_18.04 ) REPO_NAME="deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic$LLVM_VERSION_STRING main" ;; - Ubuntu_18.10 ) REPO_NAME="deb http://apt.llvm.org/cosmic/ llvm-toolchain-cosmic$LLVM_VERSION_STRING main" ;; - Ubuntu_19.04 ) REPO_NAME="deb http://apt.llvm.org/disco/ llvm-toolchain-disco$LLVM_VERSION_STRING main" ;; - Ubuntu_19.10 ) REPO_NAME="deb http://apt.llvm.org/eoan/ llvm-toolchain-eoan$LLVM_VERSION_STRING main" ;; - Ubuntu_20.04 ) REPO_NAME="deb http://apt.llvm.org/focal/ llvm-toolchain-focal$LLVM_VERSION_STRING main" ;; - Ubuntu_21.04 ) REPO_NAME="deb http://apt.llvm.org/groovy/ llvm-toolchain-groovy$LLVM_VERSION_STRING main" ;; - Ubuntu_21.10 ) REPO_NAME="deb http://apt.llvm.org/hirsute/ llvm-toolchain-hirsute$LLVM_VERSION_STRING main" ;; - * ) - echo "Distribution '$DISTRO' in version '$VERSION' is not supported by this script (${DIST_VERSION})." +# join the repository name +if [[ -n "${CODENAME}" ]]; then + REPO_NAME="deb ${BASE_URL}/${CODENAME}/ llvm-toolchain${LINKNAME}${LLVM_VERSION_STRING} main" + + # check if the repository exists for the distro and version + if ! wget -q --method=HEAD ${BASE_URL}/${CODENAME} &> /dev/null; then + if [[ -n "${CODENAME_FROM_ARGUMENTS}" ]]; then + echo "Specified codename '${CODENAME}' is not supported by this script." + else + echo "Distribution '${DISTRO}' in version '${VERSION}' is not supported by this script." + fi exit 2 -esac + fi +fi # install everything -wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - + +if [[ ! -f /etc/apt/trusted.gpg.d/apt.llvm.org.asc ]]; then + # download GPG key once + wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc +fi + +if [[ -z "`apt-key list 2> /dev/null | grep -i llvm`" ]]; then + # Delete the key in the old format + apt-key del AF4F7421 +fi add-apt-repository "${REPO_NAME}" apt-get update -apt-get install -y clang-$LLVM_VERSION lldb-$LLVM_VERSION lld-$LLVM_VERSION clangd-$LLVM_VERSION clang-format-$LLVM_VERSION clang-tidy-$LLVM_VERSION +PKG="clang-$LLVM_VERSION lldb-$LLVM_VERSION lld-$LLVM_VERSION clangd-$LLVM_VERSION clang-format-$LLVM_VERSION" +if [[ $ALL -eq 1 ]]; then + # same as in test-install.sh + # No worries if we have dups + PKG="$PKG clang-tidy-$LLVM_VERSION clang-tools-$LLVM_VERSION llvm-$LLVM_VERSION-dev lld-$LLVM_VERSION lldb-$LLVM_VERSION llvm-$LLVM_VERSION-tools libomp-$LLVM_VERSION-dev libc++-$LLVM_VERSION-dev libc++abi-$LLVM_VERSION-dev libclang-common-$LLVM_VERSION-dev libclang-$LLVM_VERSION-dev libclang-cpp$LLVM_VERSION-dev libunwind-$LLVM_VERSION-dev" + if test $LLVM_VERSION -gt 14; then + PKG="$PKG libclang-rt-$LLVM_VERSION-dev libpolly-$LLVM_VERSION-dev" + fi +fi +apt-get install -y $PKG diff --git a/changelog b/changelog index 9b64f9ee5..2d2f01e0b 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,37 @@ +0.11.0 to 0.11.1 (15/03/2023) +* Enable automatic releasing to GITHub + +0.10.1 to 0.11.0 (13/03/2023) +* JITDump support +* Fix crash when using custom stack (example: Fibers) +* Fix tag validation + +0.9.3 to 0.10.1 (14/11/2022) +* Allocation profiling - instrument forks +* Universal binary - remove dependency on libc +This allows compatibility with older libc (like centos 7) +* Formalize tracepoint grammar +* Add build-id to mapping information +* Use a temporary file to generate a library to load +* Switch user if failing to read /proc//maps +* Changes in instrumentation mechanisms +Periodically check for new loaded libraries +Use GOT override instead of symbol interposition +* Add information on lost events +When ring buffer is full we flag them as "lost events". +* Use jemalloc as default allocator +This prevents a counter-performance on musl compilations + +0.8.2 to 0.9.3 (08/08/2022) +* Allocation profiling +Library mode and wrapper mode have an option to instrument allocations with low overhead. +Limitation: This only works for dynamically linked allocators (example: standard allocator) and does not follow forks. If you are concerned by these limitations, please reach out with your requirements. +* Samples are labeled with PID / TID +* Preset option : adds defined presets to simplify configuration of the profiler (cpu_only, alloc_only) +* Catch kernel activity (when permissions allow it) +* Several improvements to unwinding +* Alpine musl (built on 3.16) + 0.8.1 to 0.8.2 (14/04/2022) * Correctly convert Watcher frequency to pprof period (for time-based frequency) diff --git a/cmake/Findelfutils.cmake b/cmake/Findelfutils.cmake index 0b445b9e9..7a460b5af 100644 --- a/cmake/Findelfutils.cmake +++ b/cmake/Findelfutils.cmake @@ -16,17 +16,22 @@ find_package(ZLIB) set(CMAKE_FIND_LIBRARY_SUFFIXES ${ORIG_CMAKE_FIND_LIBRARY_SUFFIXES}) set(SHA512_ELF - "a9b9e32b503b8b50a62d4e4001097ed2721d3475232a6380e6b9853bd1647aec016440c0ca7ceb950daf1144f8db9814ab43cf33cc0ebef7fc91e9e775c9e874" + "585551b2d937d19d1becfc2f28935db1dd1a3d25571a62f322b70ac8da98c1a741a55d070327705df6c3e2ee026652e0b9a3c733b050a0b0ec5f2fc75d5b74b5" CACHE STRING "SHA512 of the elfutils tar") set(VER_ELF - "0.187" + "0.188" CACHE STRING "elfutils version") set(ELFUTILS_PATH ${VENDOR_PATH}/elfutils-${VER_ELF}) set(LIBDW_PATH ${ELFUTILS_PATH}/lib/libdw.a) set(LIBELF_PATH ${ELFUTILS_PATH}/lib/libelf.a) +set(LIBEBL_PATH ${ELFUTILS_PATH}/src/libebl/libebl.a) + +set(DW_INCLUDE_DIRS ${ELFUTILS_PATH}/include/elfutils) set(ELFUTILS_INCLUDE_DIRS ${ELFUTILS_PATH}/include) +# list(APPEND EBL_INCLUDE_DIRS ${ELFUTILS_PATH}/include/elfutils ${ELFUTILS_PATH}/include) +set(EBL_INCLUDE_DIRS ${ELFUTILS_PATH}/src/libebl) if(NOT "${CMAKE_BUILD_TYPE}" STREQUAL "Release" AND NOT "${CMAKE_BUILD_TYPE}" STREQUAL "RelWithDebInfo") @@ -49,7 +54,7 @@ add_library(dw STATIC IMPORTED) set_target_properties( dw PROPERTIES IMPORTED_LOCATION ${LIBDW_PATH} - INTERFACE_INCLUDE_DIRECTORIES ${ELFUTILS_INCLUDE_DIRS} + INTERFACE_INCLUDE_DIRECTORIES ${DW_INCLUDE_DIRS} INTERFACE_LINK_LIBRARIES "${LIBLZMA_LIBRARIES};${ZLIB_LIBRARIES}") add_library(elf STATIC IMPORTED) @@ -59,5 +64,12 @@ set_target_properties( INTERFACE_INCLUDE_DIRECTORIES ${ELFUTILS_INCLUDE_DIRS} INTERFACE_LINK_LIBRARIES "${LIBLZMA_LIBRARIES};${ZLIB_LIBRARIES}") +add_library(ebl STATIC IMPORTED) +set_target_properties( + ebl + PROPERTIES IMPORTED_LOCATION ${LIBEBL_PATH} + INTERFACE_INCLUDE_DIRECTORIES ${EBL_INCLUDE_DIRS} + INTERFACE_LINK_LIBRARIES dw) + # Elf libraries -set(ELFUTILS_LIBRARIES dw elf) +set(ELFUTILS_LIBRARIES dw ebl elf) diff --git a/cmake/Findlibdatadog.cmake b/cmake/Findlibdatadog.cmake index fe1c207cb..633b35cc8 100644 --- a/cmake/Findlibdatadog.cmake +++ b/cmake/Findlibdatadog.cmake @@ -5,7 +5,7 @@ # libdatadog : common profiler imported libraries # https://github.com/DataDog/libdatadog/releases/tag/v0.8.0 set(TAG_LIBDATADOG - "v0.8.0" + "v2.1.0" CACHE STRING "libdatadog github tag") set(Datadog_ROOT ${VENDOR_PATH}/libdatadog-${TAG_LIBDATADOG}) diff --git a/cmake/Format.cmake b/cmake/Format.cmake index 2a8e78c02..f37748fee 100644 --- a/cmake/Format.cmake +++ b/cmake/Format.cmake @@ -5,3 +5,6 @@ add_custom_target(format COMMAND ${CMAKE_SOURCE_DIR}/tools/style-check.sh) add_custom_target(format-apply COMMAND ${CMAKE_SOURCE_DIR}/tools/style-check.sh apply) + +add_custom_target(help-generate COMMAND ${CMAKE_SOURCE_DIR}/tools/help_generate.sh -b + ${CMAKE_BINARY_DIR}) diff --git a/cmake/Jemalloc.cmake b/cmake/Jemalloc.cmake index 56f7beb7a..b909eaffa 100644 --- a/cmake/Jemalloc.cmake +++ b/cmake/Jemalloc.cmake @@ -20,13 +20,12 @@ # JEMALLOC_FOUND System has jemalloc libs/headers # JEMALLOC_LIBRARIES The jemalloc library/libraries # JEMALLOC_INCLUDE_DIR The location of jemalloc headers - find_path(JEMALLOC_ROOT_DIR NAMES include/jemalloc/jemalloc.h ) find_library(JEMALLOC_LIBRARIES - NAMES jemalloc + NAMES libjemalloc.a HINTS ${JEMALLOC_ROOT_DIR}/lib ) diff --git a/docs/Build.md b/docs/Build.md index 92701b3a2..4865357c8 100644 --- a/docs/Build.md +++ b/docs/Build.md @@ -1,9 +1,11 @@ # ddprof build +We do not recommend for users to recompile the application. The pre-built binaries should be compatible with your system. +Checkout the release page for our latest builds. + ## Environment setup -ddprof is meant to build on Linux. -*Local builds on macos do not work (you don't have access to perf events).* +The dockerized environment will take care of installing all the dependencies. ### Native linux @@ -13,6 +15,7 @@ Once all dependencies are installed, you can run the [Build Commands section](#b ### Docker The [Dockerfile](../app/base-env/Dockerfile) contains all necessary dependencies to build the project. +Here is a script that mounts the `ddprof` folder within the build container. ``` ./tools/launch_local_build.sh @@ -20,7 +23,6 @@ The [Dockerfile](../app/base-env/Dockerfile) contains all necessary dependencies Once inside the container, you can run the [Build Commands section](#build-commands). - ## Build commands ### Building the native profiler @@ -32,56 +34,3 @@ MkBuildDir Rel RelCMake ../ make -j 4 . ``` - -### Building the benchmark (collatz) - -A bench application will be built by default. Following CMake flag controls the build decision: `-DBUILD_BENCHMARKS=ON`. - -## Speeding up builds - -### Bypassing the use of shared docker volumes on MacOS - -Docker can be used if you are not already on a linux environment. You need an ssh configuration as some repositories are private. -The following script create a docker container based on CI dockerfiles. It will: - -- Use your ssh configuration -- Automatically pull down all dependencies (same as in CI) -- Sync your files with the docker environment - -```bash -./tools/launch_local_build.sh -``` - -To speed up builds, we recommend usage of docker-sync (shared filesystems are very slow). - -1 - create a docker-sync.yml file in the root of the repo. - -```yml -version: "2" -syncs: - ddprof-sync: - sync_strategy: "native_osx" - src: "./" - host_disk_mount_mode: "cached" -``` - -2 - Then create a docker volume and launch docker-sync - -```bash -docker volume create ddprof-sync -docker-sync start # launchs a watcher that syncs the files (takes a long time on first run) -``` - -3 - Use the docker build environment as usual (it will pick up the docker volume from the docker-sync file) - -```bash -./tools/launch_local_build.sh -``` - -4 - You can stop and clean these volumes after usage - -```bash -docker-sync stop -docker-sync clean -docker volume rm ddprof-sync -``` \ No newline at end of file diff --git a/docs/Commands.md b/docs/Commands.md index 99ec08b9f..4360f4075 100644 --- a/docs/Commands.md +++ b/docs/Commands.md @@ -77,6 +77,18 @@ Options: Enables statsd metrics for ddprof. Value should point to a statsd socket. Example: /var/run/datadog-agent/statsd.sock + -D, --preset, (envvar: DD_PROFILING_NATIVE_PRESET) + Select a predefined profiling configuration. + Available presets: + - default: profile CPU and memory allocations + (profile only CPU when targeting a given PID) + - cpu_only: profile CPU + - alloc_only: profile memory allocations + If no --preset option is given, `default` preset is used. + + -W, --switch_user, (envvar: DD_PROFILING_NATIVE_SWITCH_USER) + Run the target process under the given user. + -v, --version: Prints the version of ddprof and exits. diff --git a/docs/Design.md b/docs/Design.md index 01923f252..8b3f1e09d 100644 --- a/docs/Design.md +++ b/docs/Design.md @@ -1,91 +1,10 @@ # Design -Design discussions. +Overview of the `ddprof` architecture ## Architecture -Roughly speaking, the profiler performs the following operations in sequence. +`ddprof` is a sample based profiler. It uses a mix of user space instrumentation and kernel APIs. +`ddprof` runs in a separate process and processes events through shared ring buffers. -* Instantiated by OS -* Processes options, environment variables, etc -* Initializes global objects and memory -* Creates a pipe (two linked sockets), setting the socket type to be a Unix - Domain Socket. This will be used for transferring file descriptors -* Sets up a pthreads barrier in a shared-memory region, with a shared - disposition (otherwise pthreads fails to use it properly) for coordination -* Calls fork() to create a child -* The child calls fork() and dies -* The original process iteratively calls `perf_event_open()` and sends the - resulting file descriptor to the grandchild using a unix domain socket, then - enters the pthread barrier. Iteration is done for each watcher, on each - CPU, since the `perf_event_open()` context is restricted. -* Grandchild receives the file descriptors, clears the thread barrier -* Original process closes the file descriptor and repeats until all watchers - have been enabled on all CPUs. -* Both processes close their unix domain sockets -* Grandchild creates one mmap() region to receive the `perf_event_open()` - ringbuffer -* Original process calls `execvp()` to become the target process with args -* Grandchild `poll()`s on received file descriptors to listen for events in - ringbuffer - -## Overview - -![img_fork_strategy](ddprof_archi_20210830.svg) - -### Notes - -* the grandchild does not read from stdio, so it should not be necessary to - close any of the underlying streams. But we could once we have better - logging facilities. -* We don't do anything to set the signal disposition of the grandchild or - original process. -* We should, but do not, do any resource isolation or limiting yet. - -## Architecture painpoints - -### Instrumentation Sequence - -**Problem** -ddprof needs to enable instrumentation for the process it wraps. If this -fails, we want the target process to get launched anyway. It would also -be great if instrumentation happened after the profiler gets launched -(i.e., don't profile the profiler in the common case). Basically, we'd -like to: - -* Minimize the permissions escalations required to instrument an application -* Ensure that hierarchical resource sandboxing interfaces, such as cgroups, - can be easily used in a large number of kernel versions to clamp ddprof - (i.e., don't rely on cool new cgroups v2 kernel v5.bignum features) -* Have an instrumentation sequence that could allow profiles to be collected - in a separate container entirely -* Suppress SIGCHLD in instrumented application if the profiler dies (SIGCHLD - can be used as a job control mechanism; we don't want to interfere, but - sometimes we can't help dying) -* A higher-order executor (for example, `strace ddprof app`) must receive the - PID of the _application_ and not the PID of ddprof through fork(). In other - words, the PID of the process must be the PID of the service, not the wrapper -* Isolate the instrumented application from hierarchical limits (e.g., - those in `getrlimit()` - -Of these goals, the first five are satisfied in the current implementation of -ddprof, with the last one being tricky to implement on containerized -environments without breaking containerization. We'll provide a discussion on -an alternative mechanism (option 3 above) which gets over this hurdle for -`perf_event_open()`-facilitated instrumentation. - -## Ideas - -### Alternative timing mode - -For a variety of reasons, we thought of launching with `perf_event_open()`. We could also measure time using the standard `set_itimer()` approach. There are a few unfortunate consequences to this: - -* itimers are mediated through Unix signals, which steal execution from the instrumented process (adds latency) -* signals have more skid than the kernel code, sometimes by a truly significant margin -* signals can interrupt syscalls, which can break client code -* signals don't follow forks -* have to implement new message passing system to bring samples up from children -* signal delivery is non-uniform through a thread pool--this isn't an academic point, sampling hugely favors the earliest-spawned thread -* users can over-write signal handlers - -Some of this can be controlled for by implementing an LD_PRELOAD-type trick inside of a wrapper, which could catch `fork()` calls into libc and implement some other niceties, but I'm not sure how much effort this will be to support both glibc/musl across the major versions we have to support. +![wrapper_architecture.png](wrapper_architecture.png) diff --git a/docs/Troubleshooting.md b/docs/Troubleshooting.md index 2d48e32bf..15eeac7da 100644 --- a/docs/Troubleshooting.md +++ b/docs/Troubleshooting.md @@ -3,6 +3,14 @@ ## ddprof errors +### Enabling debug logs + +You can increase the log level of the profiler with the `-l` option + +```bash +./ddprof -l debug my_program +``` + ### Failures to instrument ```bash @@ -16,6 +24,12 @@ In order to instrument the system or target application, ddprof must call `mmap( - increasing the pinned memory limits - running fewer `ddprof` instances in parallel +In container environments, you can troubleshoot these issues by adding capabilities to your container. `CAP_SYS_ADMIN` (or `CAP_PERFMON` on newer kernels). + +```bash +docker run --cap-add CAP_PERFMON my_docker_img +``` + ## Reaching the agent host It is useful to verify that the target machine can connect to a Datadog agent. Follow the Datadog troubleshooting guidelines. @@ -62,3 +76,73 @@ example: 000000000015cbb9 rbp+16 c-16 c-8 000000000015cd1a rsp+8 c-16 c-8 ``` + +### Checking allocator stats + +``` +MALLOC_CONF=stats_print:true ./ddprof -S test-service service_cmd +``` + +### Library issues (LD_PRELOAD or allocation profiling) + +You will want to instrument the loader function (loader.c) to figure out what is going on. +You can do this by breaking in the loader and running gdb as follows. Example of GDB using LD_PRELOAD: + +``` +gdb +set environment LD_PRELOAD=./libdd_profiling.so +b loader +run +``` + +Example of issue: +A symbol is missing from the libc (compared to the musl libc where the library was compiled) + +## Speeding up builds on macOS + +### Bypassing the use of shared docker volumes on macOS + +Docker can be used if you are not already on a linux environment. You need an ssh configuration as some repositories are private. +The following script create a docker container based on CI dockerfiles. It will: + +- Use your ssh configuration +- Automatically pull down all dependencies (same as in CI) +- Sync your files with the docker environment + +```bash +./tools/launch_local_build.sh +``` + +To speed up builds, we recommend usage of docker-sync (shared filesystems are very slow). + +1 - create a docker-sync.yml file in the root of the repo. + +```yml +version: "2" +syncs: + ddprof-sync: + sync_strategy: "native_osx" + src: "./" + host_disk_mount_mode: "cached" +``` + +2 - Then create a docker volume and launch docker-sync + +```bash +docker volume create ddprof-sync +docker-sync start # launchs a watcher that syncs the files (takes a long time on first run) +``` + +3 - Use the docker build environment as usual (it will pick up the docker volume from the docker-sync file) + +```bash +./tools/launch_local_build.sh +``` + +4 - You can stop and clean these volumes after usage + +```bash +docker-sync stop +docker-sync clean +docker volume rm ddprof-sync +``` \ No newline at end of file diff --git a/docs/ddprof_archi_20210830.svg b/docs/ddprof_archi_20210830.svg deleted file mode 100644 index 90a1564aa..000000000 --- a/docs/ddprof_archi_20210830.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - eyJ2ZXJzaW9uIjoiMSIsImVuY29kaW5nIjoiYnN0cmluZyIsImNvbXByZXNzZWQiOnRydWUsImVuY29kZWQiOiJ4nO19WVdcImuW9n39XG5W9k1/6yui3nmoO1x1MDAwNFx1MDAwNVJFXHUwMDE0XHUwMDE1tbOXXHUwMDBimZVJXGJcdTAwMTCsVf+9947MlICIQEDCJE9lXFycQVx1MDAwMlxmeffwPHv8199cdTAwMTKJL+5sUP/yz8SX+rRa6bRrw8rLl7/jzyf14ajd78FLzPv/UX88rHp3tlxcdzD65z/+MX+HU+13v7+r3ql36z13XHUwMDA09/1cdTAwMGb8f1wi8S/vn77f02n36t693k/nv4VTtfzTQr/n/UZGudXMUGrf7miPMvCr3Hpccl5uVDqj+vxcdTAwMTX80Vx1MDAxN9VrXTz0z3OkSFx1MDAwNqXWwdFB+XLan//aRrvTKbmzzve/p1JtjYe+h1x1MDAxYbnD/lO93K65LXidLv387X2jPvz183dccvvjZqtXXHUwMDFmjVx1MDAxNt7TXHUwMDFmVKptd4Y/I+Ttp5Ve0/uM+U+meFx1MDAwN9ziXGJKmZVaXHUwMDFiKal4e1x1MDAxOT8gyah1XHUwMDE4JVIpy6wghrKlR0v3O/0hPtp/XHUwMDEx75o/3EOl+tSEJ+zV3u5xh5XeaFBcdTAwMTnCcc3ve/nxR3NHMFx1MDAwMVx1MDAwZqFcdLGWXHRq5dstrXq72XLxWJRwmFwiXFwrKonkfH5+o7p3MJRJbYQgav5cbj7DIF/z5ON/l7/YVmU4+PFcdTAwMDV+8Z7V9/z4v4ffhSvk7ZWhe9Du1dq9JrzSXHUwMDFidzpvr9V7tYhXOpWRm+53u21cdTAwMTfEqNhv99zlO7zPTVxyh/2XVr1SXHUwMDBi+eTI11x1MDAwNvhxcyXAa/5fifmxe//z9t//+/fQu5PRh4FX4Fx1MDAxOOaf9zf/v//993CFXHUwMDFj1qvud3lcZtFKakmUVlJlXHUwMDE4MZZJsrZWNqblq1HpvnXxdNK7LmeyjYfLg/TeayUh1OGaSW6EXHUwMDE0nDO9pJVaONwqZpUl1mhldGxaXHQn74BcdTAwMTBw0CqqLfymXHUwMDEwrZTSXHUwMDExglOtmLKSg1xuXHUwMDA2tFJcdTAwMWGpmbWGba6VI/yflVr5JnxfzthD4VxcZt2jYSZf1cXjnjnmuS9riaRbn7qh0sh1lDRcdTAwMWHKKVx1MDAxN1xcru9cIq7r+dJw9HianNVcdTAwMDdXXHUwMDE3XHUwMDAzm5pcdTAwMTZcbnr/hVFxR1pOXHKRXHUwMDAyhEAtu1xiqVx1MDAxZNBLzYWxXHUwMDA2Tnr5yXYni4pcdTAwMDVlLyhsjFBcdTAwMDbuTEhcdTAwMTOHsM3f3uj33FL71UNcdTAwMGJk4adHlW67M1v4wj3xgl9Qq1xyhv2G/ytcdTAwMTjVPXhcdTAwMDI3m4W7U512s+ehl3pjUTLdNoCgt5fd/uDLSsmuoMdcYlx1MDAxNW1cdTAwMTVcdH9Ah+GkjLZ8bdku9ljjoNl5Llx1MDAxY1HRXHUwMDE11+2zr6Lc2H/ZtspRklx1MDAxMkGNZpwsw1x1MDAxZitcdTAwMWNtwexZXHUwMDEwb1x1MDAxNG1cdTAwMWWbbFM06ZJcdTAwMTPUI1x1MDAxZWZkqUNArIVl1G+Df8g8+mCj9Db29bdDPctcdTAwMDK9U+BcdTAwMTNxXGbeS/5cdTAwMDPYXHUwMDEw8ER6XHUwMDE3XHUwMDE2rYKcKW4sXHUwMDExem1cdTAwMTU8KYnu7fNhKpvMPlx1MDAxZJRkeZArTGZ7r4JUMYcoXHUwMDAzXHUwMDE30Fx1MDAwZmvsolx1MDAwNlJcdTAwMDbOR1x1MDAwMP4gXGJ4iIxNXHUwMDAxuVxy6lxc0Llwg1x1MDAxY8hPk/bHtzT6w6dP9SwrYTzn0TCeXGLA8YBcdTAwMTbl2qL9etT9Wi7a0mUpl8vfnZ6ejpVu779oW+2AXFxbqSylfFx1MDAxOThcdTAwMDGUclx1MDAxNFx1MDAxMSjXWlLg4FwiNuGmgjpcdTAwMWF+n4Sn0Gi/VFDYXHUwMDA1wDgllbCCXHUwMDAyf2bCLss+hT+FM0JULCh+O1x1MDAwM8pcdTAwMDSPlDJKXHUwMDE4XHUwMDA3r27WN6BtNzNtk0zpTEzMIzstcXNWvth7KVx1MDAwM6zmXHUwMDAwUVx1MDAxNGAlgVxyXHUwMDA2MFxm2leG8lx1MDAwN5dUMs5cdTAwMTCOoEGxXG5hg1RcbvSvXCJcdTAwMWU5+phcdTAwMTGtttqd2qda0ajopPKhuWXmyUFJlTXr289ZQVx1MDAxZjOtU51M77J7n/56KJOvo/2XbE1cdTAwMWNcdTAwMDLGk0mlQuwnU1x1MDAwMFxyhFx1MDAwNq4nJOE8RnROXHUwMDFjzcBnaeBETClBWIig4+MosI5cdTAwMTYuJf0m9qfcXHUwMDBieL+mgv0noPT4YpPRZ4FX4Fx1MDAxNDZE6pFsmdlIT6M1WlWh6drqWH6qmXNOTi9TtdvinTiZtu9cdTAwMWH7XHUwMDFmlWSaOsxcYsOFolx1MDAxYUDwojpcdTAwMDLEkJJcdTAwMDBusNJaOFwirWJTR1x1MDAwZs4ocPDwnUtrXGZcdTAwMTFBdSRcdTAwMGVjWkhcdTAwMDA0lFOipGTL+lxiUMhcbmV8weS/rjrGS5ojj1x1MDAwM69k8CQ21MnVPENHU2jBuOXc0PVcdTAwMTHgoFtcdTAwMTT6cNZVZTfv1vJjN1m0fO9cdTAwMTWTS6TQ4CZB6ZhlXHUwMDAxR8mFXHUwMDAz9NkwSjCaZXSMRFx1MDAwM+g62Fx00CpcdKqlwVx1MDAxOFx1MDAwNDVTXHUwMDFhh1x1MDAxYThcdTAwMTdKvt9jllx1MDAxNVx1MDAxM1x1MDAxYyVcdTAwMDNOxO1cdTAwMTaa+VGiXHUwMDExhca0L1x1MDAxZLkkZtYyXCIt2YDN5muX5FWcXHUwMDFldV76NZLh16VcdTAwMDfhx5B7KmWCMlx1MDAwN2BcdTAwMTgwQKJcdTAwMDHBL0uZhpPXRFGAplZcdFx1MDAxNl+khjmcgPBgXFxWMiONXHSKXHUwMDE4SJWD2TOuXHUwMDA1MZz7mfVcdTAwMGZcdTAwMTHjgkggiNtwkN/O+MeHxVwij1x1MDAwMq/AIexcZoqRyNBcdTAwMTLnoI1WmfVzcoeycPjYPLu+7Vx1MDAxNS96+UJmYi9cbmrvdZEp6yilvb82JCdHuVx1MDAwM3aVXHUwMDEyXHUwMDBliExcdTAwMTJqYkzKXHUwMDAxXHUwMDEydFx1MDAwMFx1MDAwMINbIZpg0DokSUdcdTAwMDCSXHUwMDFicE0gKuCMQSB0QFx1MDAxZq0gxHJlt1xirP52+lx1MDAxOCtcdTAwMThLRlx1MDAxZoj3/sBRbKiV26QyrCaAtK1dXyuPn1x1MDAwZnL5YvGoVD/Rz4PbVG+Ykb2910rwf1x1MDAwZZBcbouVXHUwMDFiKlx1MDAxMK/g1lx1MDAwMa9DhcBoXHUwMDA2Uz6/tfNcXEaIS1xmxuFcdTAwMTSwaKv3M1xmV5+2Xf/f/+uy5NZcdTAwMDdcdTAwMWWW5Vx1MDAxYfSIUFxmPa0t1+T+aFhrm1nmJZ36+jLJmsnVQ2HHcl2rjFr13VxutiTCMVJcdTAwMTDNiWFcdTAwMDb+a8ndKONIXHUwMDA2XHUwMDE2XHUwMDFjnFx1MDAwZVx1MDAxNt9F81x1MDAwYtngtarYXrK1drC+T0nOwe1cdTAwMDF9XGJcbjpcdTAwMDcuxKxFnMq0tDYg91x1MDAwNt5KhN9e/XE1P65ccl1N5GngXHUwMDE1OIdcclx1MDAxZM1K1i+i6Vx1MDAxOFx1MDAwNTpmuZU+S/GeVlZcdTAwMGKH+a8t8fyo70+vSEk+1r8+7To6XHUwMDFlg1ZcdTAwMDK7doywzFx1MDAwMJdcdEn8gKLC8Vil4Fx1MDAxZWrJXG5cZvhRrWTMXHUwMDAy9+PESk1cdTAwMTbq/+bBcWpcdTAwMWSgjFxcXHUwMDAx7ODWXGJcdTAwMWUg/WBJXHUwMDE1sISY3NGb7EVY4Fx1MDAwZkFcdTAwMWawi9EugnCNXHUwMDA1nOu7iN5skL2c1NtcdTAwMDNZ7GR5q0wzN6y6/8IoqXQ4XHUwMDE2XGZzXHUwMDAyzDooi8BIJGVgI1x1MDAxNKb/V4SgPiqMNCzm5P9cdTAwMDN+1kxcdM5ccjCkeIJMXHUwMDFmgz9nw0Gr0ktcZob9KvzKfya+9U7ajbrb7tZcdTAwMTO9fqLT7zXrQ/ghYKKnei3h9lx1MDAxM26rnvj+hXzr/XhXKHzyJTF2XG6folTDmijNMFx1MDAxYYCTpnr9qFl1Wry+ndF05eypWmp0O6J5+ML2XzE4YVx1MDAwZZNac+BiIWEzpTE8zkF9rOY6VlawVoVcdTAwMTNcdTAwMTXgrJFcdTAwMWHuoVrsV4VcdTAwMTNcdTAwMDDeSLOvXHUwMDE4k1x1MDAwMHy4WFu6XHUwMDA1u3u8eVx1MDAxNTdcdTAwMGYpcFx1MDAxN9X09Dxfncq9Z7yEMrDrXHUwMDAywIfiOpB50MohXHUwMDE0o8VcdTAwMTTrnKSKr/KEKuVcdTAwMDC4XHUwMDEwktClXHUwMDE2hHnaXHUwMDAxPFx1MDAxMChcdTAwMTixRnFmQrtcdTAwMTRcdTAwMDCbXHUwMDE4a7bJz2+CQNJuuXt0bVx1MDAxYifj2XO3Kdyvhb6pfVxmgehIM0tcdTAwMDF+XHUwMDE4Ylx1MDAwNV8/OT0h7a8zlklccjLlg5RVpHX/fHaz/5JcYlx1MDAxMmC5lEyBMZVmqWXGXHUwMDEyXHUwMDA0J8ZcdTAwMTBcdTAwMDLsXHUwMDAwaHt8XHUwMDE5MLlW7IVcdTAwMTKJfVxuPFx1MDAxZVn7oJk9naVcdTAwMDaDjexsXHUwMDE1fnd9uMLSdtu1XHUwMDFhnNr2xlx1MDAxNshcdTAwMGWNlHE4d0uNkutb26eD3GSQT7HupJhcdTAwMTdcdTAwMTedSTI1Oz3cP1x1MDAxOVx1MDAxN46yXHUwMDE2w/tgmsBySbko81x1MDAxY1xiOFImXCJcYtg+X1wiXHUwMDE1P49cdTAwMTnlMKu1XHUwMDAwq1x1MDAwNzZgoVly18hCXHUwMDAwxOFcdTAwMDSekCiA/34mOje/XHUwMDE0yChcdTAwMDXrKkI7XHUwMDE4qCBWw1ewRVBmXHUwMDEz25s7r7Q7w+F0+npw3jzJv/BS3c7/cLihrF77/a9cdTAwMTeXxXHFLbqWT4fdl0f/XHK14lxiXHUwMDAwUv3q9cKc88noPuu+nDD/XHL53sV4csguZXKQbryWXHUwMDA356XSmfLfII7H2XLhru/OLs9v0nepq3TxXvhvuDgqXFxk81dcdTAwMTWtWo3H3MFYXHUwMDFm9mXbf0OxVT9Lu4CF+/d3T5Nuqc5cbqUn/1xynbv+9KzyeHl1+ZgpXGafnptXpCb9N5zkZD9Veukpln1IkZtaqXBX6flvaE0yk9e720NxRI7O7rK3jydV0/yYk2I0ulbXWFx1MDAwMoab2vW91ODyrk6zJ/z5hpLxVWbWfMpkn/dPg5fJXHUwMDAwQFwijFx1MDAxOINHliRIXHUwMDA2KKeONFilK1xmo3Em0X1cdTAwMDGJuYpcdTAwMDY4MpWGM1x1MDAwZVx1MDAwZr2PblxuO+na4JiaQHm9vzJcdTAwMTHqs0RMlDeqUsRcdTAwMWZ/WFx1MDAxMnPwUHC4ZoPsdLXQ0+0jY7/Oztu9nshcclrn/HfoqpOO8LguVlx1MDAwNSxcdTAwMGZcdTAwMTVcdTAwMDBcdTAwMTlcdTAwMDenhVx1MDAxNVx1MDAwM2DxpeAxNi9jXoJQTVxmhlx1MDAxY8O66lx1MDAwNGgjPCb2lOtQTqC1XHUwMDAyXHUwMDA3+5+RLIhxnkDUSXgvLlx1MDAxZsL809byN5GpO6EjK+jhXHUwMDExXHUwMDA0XHUwMDAx07Y+YlxmZ22fpolkK020zDhcdTAwMDKIhlZIfoxdbK5cdTAwMDNcdTAwMTLicMKIXHUwMDAwIZdcdTAwMTaUNr5cdTAwMDJ6w1x1MDAxY3hcdTAwMDZcdTAwMGWOT1NlWUj7XHUwMDExd1x1MDAxOLByooFwWvQ5wZItauBZgcLtS8nWv97kXHUwMDE0PFV1jFx1MDAxZoO1rlZjYFkxyTVcIl1cdTAwMWamalZcdTAwMDb4dzhcdTAwMTK+XHRcdTAwMDaWxeuB8TV4Jt6G2eRXhIR+3PzvuKxArCnDKDnAKyBcdTAwMDFcdTAwMWLagSiHXGafXHUwMDFhiTvhWbBgXaxcdTAwMWaFzlx0VlPZ8e31WerxRJxmrtPdZnf/7YByLFx1MDAxMZZrsL9AXHUwMDE1XHUwMDE3gyNMO1ZR4G/wXUiidXyoXHUwMDEzPT+28jKL0020oiHBXHUwMDEybVx1MDAxZCaJYlx1MDAxNvtccjG1XHUwMDFjpIpcdTAwMTS4LZCFLULUf3zy21x1MDAxNX1cdTAwMTZ4XHUwMDA1TmFDZYyep1x1MDAxMl0mhnFiziVbv1xcf2Iq6YOHm9ZtnXVdXqxf9e46x3ufXHUwMDEyskhcdTAwMDKNkVRcdTAwMGJpXHUwMDE4X3LKWLnJwFx1MDAxN2v4XCKwXCIyNmX0pS9WRCo1U0hF9T52vNcnlc5cdTAwMWXlg0hkTVxuuCCg/JSuX1x1MDAwNXDfbjbHk0yz+NJcIoPHy4E+adRcdTAwMWY/UbK38zPSKHQl0lx1MDAxOFxmOy5XpEjpXHUwMDAw/SVe/1x1MDAxOKOrplZcdTAwMDF8qtvq9qLNXGJ3sC7JXG7GzWKy503UlXZcdTAwMDBPYk2KXHUwMDBlXHUwMDBiSFpAxFSQmPKgK6VsRVx1MDAwZmJ0LaLVRFqp+fpI5rR4WGxfdZ5r1fzxPVFpdfR18pn59O1EXGZsooPTxFx1MDAwMCYqsJA+NoDvN1x1MDAwMGWA5jCgk9hcdTAwMTAso63nR0VcZj7cIcCvrFx1MDAwNMhk/MNcdTAwMWLmRSfW8ZrewMlykEVcdTAwMTboQFx1MDAwNCRDiWB/Wlx1MDAxMH9cXFx1MDAxZlx1MDAwMDNRp4FXMnBcdTAwMTC7XHUwMDAyM3RFXHUwMDE1olGEWrVB4dfrmHRVoTJcdTAwMWOVT1x1MDAxZp/IXHSZ9c8rv4HJt9KB791waSiAyEWLr6SDXHUwMDExPsx0gjVeXHUwMDE16vuwOuqQvpNgQFtj06HRfFx1MDAxZtGMl3ZNuJWn+lxi67m+9Vx1MDAwNu1aot/w1XbtRXyb2Vx1MDAxNTOrOFx1MDAxMHhJ6PpOiE4y7s3RZZ1cZolLZqc5WVx1MDAxYVx1MDAxNu2+02lvbJxcdTAwMDFAx7DbdnlmXHUwMDE1sFNHoTKAR1x1MDAxNlh+XHUwMDFiX0lcdTAwMTdxJGfgQpbHws1BXHUwMDBldzAtq4Eyw0PzsLwrWkR41D9cdTAwMDHuXHUwMDBmXHUwMDA1uCNOXHUwMDAyr8BcdTAwMTls6H1Wklx1MDAwZe2zcct9yVxmNVFuQDomj+Ls/nzkXHUwMDFl3jXvr45vX29fUpefOEBuXWVcdTAwMTTeXHUwMDA0XHUwMDEw61xyZSRMWr2gnMBWXHUwMDFkxbxWXHUwMDE0qoGHLHokwYRcdTAwMDOQXHUwMDFmOFxiJ1x1MDAwNPyAji/mXHL+zlx1MDAwMbTKudRUKet7zHmsXHUwMDBi6JJcdTAwMDYjQlxit0T5R2q8JWCVpFx1MDAxNFx1MDAwN4x8PlxyiSx3j657tNpcYlwi/Fx0v/dELmOyl658XHUwMDFkZjM0nTrslDPP9Wbrd1x1MDAxMzn4XHUwMDExXHUwMDAz/aeCXHUwMDExhd3OakHkXHUwMDE4yFx1MDAwMdxcdTAwMDFcdTAwMDdccjBIc6NijK+KsHlcdTAwMGLBtD5nQsJcdTAwMWZcdTAwMTFcdTAwMGa5fTNvXHUwMDExtTI/jd7H0FKp360nKi/1XHUwMDEx/vtbz22B+1xir3mPXHUwMDAySO9cdTAwMTatbV/1voJcdTAwMTdQVHUj9PrdSaly6eZmdj0uZFx1MDAwN/pBJm9fpZqd7KOKrKxVk0Q5XG570jHoQvViXHUwMDA2glx1MDAxYeZcdTAwMDBcdTAwMDZcdTAwMDH1XHUwMDAy0aSMxKhcIjok91x1MDAxOFx1MDAxMvW0gltq4+FcdHNcdTAwMDV5t9rMvVx1MDAxOVbd48eHQfZKfVx1MDAwNdPyUKhOkv5cdTAwMWLeLWhcdTAwMWJdZCe542q1VEl1eeeuM5lkO1n/XHKP+aNak0z44EX201fudfNMjPL+XHUwMDFi6rPz/sFooJl0++nk8CgzPW9e7kiLiz9reHZbbro1ueEsWnNcdTAwMTlYVzD0XHUwMDFidPtcdTAwMWX0p8+np8mLRs5Wi1xykZlcdTAwMWXUZmb/NDdAblxixmlxXGKPXHUwMDAwrkxcdTAwMTbLSlx1MDAwMVA5XlxmXHUwMDA160qZjJPcXHUwMDA0XHUwMDE1lStcdTAwMWM0xThcdTAwMTEqJGRcdTAwMGJcdTAwMDCKMC3+1OokPjRfz3/34lx1MDAxN75L4kJ1JIpcdTAwMDS0yznhav1i0O60r65kTT7djvlZhWZuJ+3p094rmjbWMYZroo1cdDbPJLnkjiFKYDBcdTAwMWI4Qqxju1x1MDAxNHE8+Fx1MDAxYV0oR1x1MDAxY1wiuFe3XHUwMDE3XHUwMDFhR9CEYlRkm/ktcfFcdTAwMTRcdTAwMWHdfIhohGipNlx1MDAxONl4c382Mikzvlx1MDAxNJPD4Ws/X3vpuXTvRVxmeC6m+SXHKJVYXHUwMDFlrs6FXHUwMDA0XkMlNiBaP2LbOVx1MDAxNVx1MDAwZeG+YU0xXHUwMDFhTc1WQ7lij85cdTAwMWXXh736Ztnm+GBcblXRzTCEXG6tLbHrV1FM3Urr4uai1X4+TmdfXHUwMDFmz2j+rLPrzWW7TzxQo7CYjIOIXHUwMDFiQUlgdVx1MDAxOadgPjm3hlx1MDAxMCpB0mNcdTAwMWNHiqknZiSVKjTRjPNcdTAwMGW5ksD5lm75mWrGyM9W01x1MDAwZf/AlrcrXHUwMDE5elxueFx1MDAwNb7/XHJhTORISFx1MDAxNlleTDFcblx1MDAwNlx1MDAwZXv9PEj/+bnDiifjaWdKm3Taybqzh09s//2QXG4yjrO9gvVcdTAwMWVJJpQj0O9gNacyNEZcdTAwMGZDXHUwMDFkazklq1x1MDAxNuhcdTAwMTCN8Vgr1fe5oyFz6eGNgIT+7Fx1MDAwZUx8rK4w/CS815bPYENVjKyM8XcoLcekpWSI9jZIg5Tbg+TVUN+nXHUwMDBm2l3Szo2oSu0/1Fx1MDAxM1Q6TEitXHUwMDAwwVx1MDAwYrNUXHUwMDE3Q3EqOlx1MDAwZe+SXG7+XHUwMDFkpzNcdTAwMTRcdTAwMDLMrfDK37H5lIUhP1x1MDAwNylcclBcdTAwMWWEKtI/vPLnhC5ipLV0byr9f9uymMjDwCtwXGZcdTAwMWIqY1x1MDAxNO9SK2ZzYeMjl1x1MDAxYlxmfenl3Zunm9zs+LB9xcd92j6/TX3ipPwtdVFcdTAwMTLtXHUwMDE4hS1wRlx1MDAxOFx1MDAxM+jyXHUwMDE0oIxcdTAwMTIu+C5cYsBTXHUwMDEyIzRVa4W7KTg+K/eUeVxy6sPGfX1cdTAwMDKfd99cdTAwMWbUe59MwVaX/OrIgkyNhfVMb1x1MDAxMMTK3Gfo42WaXHUwMDFkX0xOO+2Ke5e+fjnde1FX3DrgYXHqnpCWssVosaVcdTAwMGWToFx1MDAwMIJcdTAwMDHFIVLHXHUwMDE3LaZCOsJcdTAwMWFcbi6OXHUwMDE4ZYhcbsmEXG4sXHUwMDFk5ZilNbhcdTAwMWJAXHUwMDA2x1x1MDAxMHNcdTAwMWNcdTAwMWQo5D6l2zmLXGaUelx1MDAxZFx1MDAxM8ZcdTAwMTK9fkNxsZNOXHUwMDFmUpK6ml67Zvj4alM5Oth/IVx1MDAxM1x1MDAxYdhcdTAwMWRcdTAwMDVcdTAwMGZmXHUwMDE4QPQlIaOEXHUwMDAyw8N9X0LgwElcdTAwMTHjnKGw1sWwSJbAIVosnoXHXHUwMDFmtKeHaEpcdTAwMTNcdTAwMGbjRsNvXHUwMDE5f23aTUVCXHUwMDA2pJdcdTAwMWHc5frhrP7d8V1x2q7Ig1muclUqpK9q9lx1MDAxM3dcdTAwMDVum1xmIMKhYCut5CHJXHUwMDAwrG+WXHUwMDE2XHUwMDA0nFxuXHUwMDAxnkXb+JrmmcOpNdpcYs3gUv4nmefhXGaO81x1MDAwNFhp4WSAT1x1MDAwNFd4XHUwMDEwLYCQsP+Iee6x7leIOFx1MDAwYrxcdTAwMDKnsCGAj95cZlxyxjRKXHUwMDFmXHUwMDE1Y8Jgu/ja+qgmyaNjOjvrfJWmeJmun9ZGvU+cYbF1aIs4XG63u1x1MDAxYlx1MDAwMDfG+EJ53lxmXHUwMDBi4a1cdTAwMTkjjDNcdTAwMDBcdTAwMGI8xp2KVHLHYlx1MDAxNSfTWlx1MDAxYs59J+Pbr4DoXXLAXHUwMDAzTHDM3Vx1MDAwN5fPcVxylENv1cf3XHUwMDAxhVxm65GnjsJZUZpyLoF4culrPP3ZI09cdTAwMWSNQUWpXHUwMDE0YjnfptjEUo/8/YCOX89cdTAwMGVcdTAwMTU97z0+lLtqcHNafFxu9sj/Neh8MlpcdTAwMTi8l0PkYEOTXHUwMDEwXHRCV0xcdTAwMThkUuCSl1xyij7DXHUwMDBmbd8tgubGsUQpwoBEXHUwMDAw2+GLXHUwMDE2gXJHUlx1MDAxY2FcIlx1MDAxNZZ7x2hcdTAwMTHoWo27uNbecP9cdTAwMTj0WErYwq37T2H7XHUwMDE4Un1cdTAwMTm23XrCo/6fXGZUo/TA0Eg9XHUwMDAwXCKsXHUwMDE09Vx1MDAwZqZ/T1xyXHUwMDFl0qXcS2uaaaZcdTAwMGUy6nU4md3Th09cXMq6LVx1MDAxNyPGXHUwMDExRoJcdTAwMGUoytB8L6pcdTAwMDHDJl8qXHUwMDA1iJ9cdTAwMDBVYfHFtlSIJ1xm1jozy4kx28yKiJ2IXYDL+NZbQcQ+v3KZsuikJsPWOVx1MDAwMnZufUOvXHUwMDFms4Oa6Vx1MDAwZpLtUlU387ezm1nucv8kXFw5zFx1MDAxMG+PXHUwMDA1qrD0tYx4XHUwMDEyb1x1MDAwNeBs3KVcdTAwMDRcdTAwMTKvrU/sPIHX1MFvxdtuXHSmX8RYpVx1MDAxNZpMXHRcdTAwMDaxNEOkZ+NcdTAwMTnZMLf84cXLKy0/5lx1MDAwNlx1MDAwMU4rqaxcdTAwMDFaY9fVlJbrXHUwMDBlXHUwMDEy9emgP4xwXHUwMDA0Ni5FieZIflxutKQpQmJDLNHrK8rqqaJ7oyhLrlx1MDAwMC7HWK7AxoJiiGWOJHFpXHUwMDEwXHUwMDAzekRcdTAwMDCuqlx1MDAxOPdcdTAwMDFcdTAwMTOHXHUwMDEwqVxmXHUwMDA19ZWEIVx1MDAwNFx1MDAwZV1Cx3BlNFBb+MuMXHUwMDE1wVx1MDAwNd1cdTAwMWE+XHUwMDAxXHUwMDFj+DZdMTunSIDeKVx1MDAxYSOqXHUwMDE1XHUwMDEwJOvb4faDXCKBn1x1MDAxNVx1MDAxNL53bCVcdTAwMDGYp3gkRerW1Z1J6qw6vqpeP8/YTe4ld/9cdTAwMGVFXG6fbSZcdTAwMDRTmNvHbiZGjFxmPFx1MDAxNPVWXHUwMDFkKOxcdTAwMDLGMDqdXHUwMDA34ZdcdTAwMWYqvO8r8FC/XHUwMDEzO1shhd9fXpa/+Vx1MDAwN/7N/++Nh7+zyPUzwljFjNqgZaEya/ZcdTAwMGI181xcmJyW+W1JtPVDdf/rkFx1MDAxONFcdTAwMGXmn1x1MDAwNE5cdTAwMDJcdTAwMDdfvmSIOHdcdTAwMTRcdTAwMTPW4PY9wKQxemi71vR3XGbDaGX2cqpus+4mai+VYVx1MDAwM9fKjHsv7Vx1MDAwNbv2K5NcdTAwMDRSRFx1MDAwZdbFJVx1MDAxM0Qzw9YnX9PbNG2UXHUwMDBmn1x1MDAwZXL9XHUwMDA2n42Sapg/3/Wm71iKXqXDNOdWY2/3YlxiwjDl4Fx1MDAxZVx1MDAwNICpylxiJeLLXHUwMDExXHUwMDEwXHUwMDA3XHUwMDA3NDJwO1pjUZGWIUlcdTAwMDLmXHUwMDE1JGH5XHUwMDFmrtXQQX9LJZhDLqX8kyT4mN+JPFxmvFx1MDAwMsewI7fDSHRccjpTXHUwMDE0s1hcdTAwMWJcdTAwMTQ/XGbSXHUwMDE3k+fT62ZPPYlGNjvJNV9cbrveelx1MDAxNoPfUczB1Vx1MDAwYlpT8C2AdFx1MDAxN/QxKYA4onxcdTAwMWKJqzFcdTAwMDWJcyl6mOfhwcS0MYDUjdym2Hxb12NcdTAwMTZ+usL1ZOu9+rDSSdRqONo9UauP0GWEOVx1MDAxZt9cdTAwMTf5meU+3EZvMFx1MDAwMMZtOKV8/b5u0z9cdTAwMTm53f5rf5p7zFx1MDAxZdy60+RdJ7/3XHUwMDFlSEvpWOzUkdbbZLxYZ5pk2DyqqabeXGY2aqLHa3x44pOiXHUwMDBlODorOGA+jvGOoFx1MDAwMlxijqaPMWuN18HIXHUwMDAzPohcdTAwMTGugKpoXHUwMDEz8+KRM/ZQOJdZ92iYyVd18bhnjnluvX1cdTAwMWGRIVxixVwiLTDDcb6SMd+f9Z44hj/hvoujpdbRknOQNYUjtZc63JhcIo5cdTAwMTb4PVx1MDAxMFxy3J5HXHUwMDFi4I+Ko1x1MDAwMXpstFwiuIqVXHUwMDAz91x1MDAwYjHHXHUwMDE0h4ggZafwT8KlXHUwMDBlkUbBlZWfXflcdTAwMWPC9oGtglx1MDAxYaNiXHUwMDEwqbVcdTAwMTLMl2n8XHUwMDE5gXBcdTAwMTiAXHJcIozUhitD/GncXHUwMDA1rlx1MDAxZm7ofty8flx1MDAwMFx1MDAwMnCOYFx1MDAxYYCtNLgnXHUwMDEx08KBZ6JcdTAwMGVGYTF3jJPVge3xqIdqTMtXo9J96+LppHddzmRcdTAwMWJcdTAwMGaXXHUwMDA36d87XHUwMDAwXHUwMDExKYJ4XHUwMDA1hW9XODB6KKnCLJFRXHUwMDFijIPr8Ju7XHUwMDA38nB3q15Ts9fMw+3zaJTceyOktTfZloNcdTAwMTlcdTAwMDJ/4q+x+LH8XHUwMDE2U1x1MDAwNFxmXHUwMDA3U4J0clCZ+JyiXGKrT1xm7lLAUkll4slccoeiQFx1MDAxY8EpiLBcdTAwMDJwXHUwMDAzdsb5voN3UOFcdTAwMGY0+H06YviKXHUwMDFmqlx1MDAxN95cdTAwMTX/XGJEXHUwMDFlXZLrLb1RVq1fkivuyrprTq6T7nR2r69cdTAwMWJn+eTDrlx1MDAxZG9cdTAwMWNTQlx1MDAwMFx1MDAwN3JcdTAwMDBXQuNcdTAwMDB5voRcdTAwMDNcdTAwMDFcdTAwMDFiPybVXHUwMDA0bFx1MDAxMbhfXHUwMDE2Xz1cdTAwMDTjXHUwMDBlpVx1MDAxNKcoWLBsUoU1m4M7k9ziaC5lcPGLXHRuXHUwMDE10N62ertNye6fYMTblYw+XHLv/YFz2NBcdTAwMGJFqaRcdTAwMTCRU0lcdTAwMTmRyFx1MDAxMDapzLD3x4U7cVxcy+SJqX+9Oa7eXHUwMDE3WX3/VVJzXHUwMDAwXHUwMDAwSnuOnvtcdTAwMDNubyqJXHUwMDE4mFx1MDAxYiuR9sSokjhASGOnhURcIuiPi8xjXHUwMDEzXHUwMDAyXHUwMDE3TDBkX4RcdTAwMDJrtFx1MDAwMYVcdTAwMDQgjOSOb1x1MDAxMar4o5DzXHUwMDFioo5cdTAwMDKvwCFsqI3R2XFcdTAwMWG9XGaBXG5mXHUwMDE1XHUwMDAzwr5+XHRxpfRQK5+UXHUwMDA3N0+pq/4ka166j6Pz30BcdTAwMWaFw63FSVx1MDAwMF4+NLDsUTtcdTAwMDSUXHUwMDE1J7NcYo1j8eJzkcyh5vvWKcNcdKEhvVHAriw8i2RA6uTC3oO3ekKF+2K22Vi8W2pcbsBCS4y0ScpwoGBcYlx1MDAwYqSOXHUwMDA13mqAfVhcdTAwMDFcdTAwMDfA/OnzXHUwMDA1XHUwMDE2aHWyVvpKi8WUXHUwMDE4XHUwMDFjj8V5c9C/v/qrllx1MDAwZkdKXHUwMDAxXsmAXHUwMDAwbGhcdTAwMGJcIksmo8fF4vIzhXup1i+UXHQ/sL2zXHUwMDA0qyvKLGdcdTAwMGV2ZFx1MDAwM1x1MDAwMKLYzrOMnZVwwC5cdTAwMDCCXHUwMDEyXGZcYruMcUGmz7muqChj1FBcdTAwMTSYmEuJw638T+FcdTAwMGJjlVtcdTAwMTeUnVxy6r3EqF99qu9PQVx1MDAxOVsx1Fx0ZYhyur7HPC27rWnl6OhidvM4fVx1MDAxY13fvLw8uTvWk91vxlx1MDAwMvNkXHUwMDFjjJAogcuvuFmCsEKDXlGllZaSXHUwMDE4plfMsZBccl6riu1VQylcdTAwMDeAspJcdTAwMDJcdTAwMTeKWClD4iqKO0AsLMHsXHUwMDFmUyaAYJmgqMbbXGaR3XUwXHUwMDE3XGJcdTAwMDFAfkxDXHUwMDFhisPIXHUwMDAzLlPB164olVJyasFqychyMnatTm/Oh7Xbcubg5LDXeC5UeOev6jKTkWKA17JcdTAwMDBs6DFXXHUwMDBm9lx1MDAxN5FVXdSA81CWbzBDOvzQ9t9cdTAwMWNcdTAwMDCCxpHrXHUwMDFhg0iSL/VcdTAwMWFcdTAwMDCCXHUwMDA2P0s1Rl0loO1cdTAwMTXjpT5qXHJAlYE7S3DG3txcIlx1MDAxMcZorXakxKHRXHUwMDE2mJS/o3m+wFZcdTAwMDJcdTAwMWFV8TSFz7U13PR/XGLDWVx1MDAxZL3zRSFQkWqD9q9S2bTlzaxWKpUvZmftXHUwMDEz9+Rg+vpcdTAwMWJcYiOOa8Xh/1x1MDAwNpvvxHJ0hVNcdTAwMDcnulxuXCJwwLla0Vx1MDAxMvphYWQh0meCuyOQ7Vx1MDAxYiq3mWe2O3mLgG1cbndcXFKmhVx1MDAwMm68di7gXGZkLjGoXHUwMDBmXHUwMDEz6eJV4v/jf33roezimqSXiltt4Vx1MDAwZv67Pq10XHUwMDA3nbp30z/g553O/1x1MDAwYlx1MDAwNXk6ps1JK9aFRVx1MDAwN0WklsDI/MOr31Ojl8zdq0h1c/2Xx9mZerzMXHUwMDFkPE1K+0eFXHUwMDAy7WPEXHUwMDAxNGuZ4kDfiVpcdTAwMWHlIa3j2Vx1MDAxM2q1tsw/fHzX3MenMPN9LEGjrb+vs9xmP9ImSlRs1c/S7u2M9u/vnibdUp1cdTAwMTVK85bYRHyD/lfq6dpVw91uZZBw+996XrPmt96P8Vwi4ek69WuGNcnoQTrc4i4v7ovAvTtxPLSpYt+VXHUwMDBmQ46gdlx1MDAxNidcdTAwMDQrvah6QPBcdTAwMWSOgUrcjqRWMCuuRKOqt1c8jVNBOe5AXHUwMDAxJmf9vGleKcOEXHUwMDEzNilcdTAwMTe3JltCadyRiHe1cXW/XHUwMDE23HCSk/1U6aWnWPYhRW5qpcJdpfcxXHUwMDEwxtSKXHUwMDE0l2ZcdTAwMDZcdTAwMDNpa8uvXHUwMDFlXHUwMDBiUs0/XHUwMDE3J31bPe9+7T007npcdTAwMGZ7L7+GaFx1MDAxY7uBZc6Ui6U19twqgFx1MDAxNVx1MDAxYVfDa4v1gNG1h1x1MDAxZlx1MDAxNWFcdTAwMTFW7lx1MDAxZZBWLrlcdTAwMTRC0S1cdTAwMTJYsbd5nPT7g1Dj/Ism6UlcdTAwMTE9TJlcIlx1MDAxMrCbTI3kXHUwMDE5WZ89TVONbOv+tiFrzyxzpz5PurckXHUwMDE4wCpcdTAwMWSKNVxiknCvh3dBvKV2kFx1MDAwN3t9lsBAVHyL6yjm8JlWP8muXHJbKoZDtS3nlPwgxMvCz7Dgliz41F8+Sk9Gh1SUlNwzousjgIy6f3o6rqfaXHUwMDA3x8XS4/mlmv5cdTAwMDbwXHUwMDFiOFx1MDAxN1x1MDAwZc1nXFxj5swule3gdGYtwGhZzEpQXHUwMDFlX0YybKpYiL+3gFhcdTAwMTiOXHUwMDBi2kNcdTAwMTNa7lx1MDAwZp92PUGv267V4NhWSndkXHRMZHucwqFyRKzfjXObypRNvdc8OpSl5qs8fM5OTXb/ZVx1MDAxYsv9cf0wwSGRS6JNsVxyXG7zm4ZIi837cc6ix6XAhElcZk1ixWdINzrTXHUwMDBlls1cdTAwMTlmjcKOYFx1MDAxMzKxi8GDbjeL9E/9y9tcdTAwMTV9XHUwMDE4eFx1MDAwNY9h/nlrgfXIiZYrXHUwMDA2ZoEycsnM+lx1MDAxMy3vjium+tpcdTAwMThcdTAwMTRmo69dRpr30+vcrlx1MDAwM6YxqKNcdTAwMTS4/Vx1MDAxZNA4gFx1MDAwMGNcdTAwMTbVXHUwMDExsY5cdTAwMDL5XHUwMDA2QsdwW02ctWhEXHUwMDFhjlNcdTAwMGLBkVx1MDAxOGX8vNe/WM7gXHUwMDE2bMpcclxcllx1MDAwNiumtVJCafPJ8/P+atq44jDwXG5cdTAwMWPDhtq4olUqSlx1MDAxYpnQXHUwMDAwdyhbP/RTm1x1MDAxONG4OCxky7PjK96t1I7M2ePea6PAXG58jrlfRYGT2kV1NMzBXHUwMDE53oRQilx1MDAwYlxcVXxhV+UttWNcbp5cdTAwMDSIjlx1MDAwZUtlXHUwMDEwR4C1hlx1MDAxN71cdTAwMTJi5U9g+FJpXHUwMDA0l/p87qqW0GI0wy3hQlx1MDAxMKpcYpUhmXVKXHUwMDFjxalcdTAwMDaRVnpxNfxiXr1JRbo0qV2Mj9jL8UE+Vynn3L9sXj1SXG68d1x1MDAwN85/QzNcdTAwMTBcdTAwMTlB45FcdTAwMTDZSmU4V1x1MDAxYsw2XHUwMDBiP6/dmoFcdTAwMTiymLgmRlx1MDAxYYU7ccAn28V+SYH2l+BaJ+ElaOIzXHUwMDAzPCSmXHUwMDEwwv+U0MRqXHUwMDEyzzz+uVwihpv0n7L2MZrYXHUwMDAwmrhcdTAwMTFJ/Gj6MdJcdPLoLD6nXGKQzVx1MDAwNu3C4Vuh991cdTAwMGKCqXE4s1x1MDAwMOawmo5cdTAwMDS3kIMxV1pITmSc0Vx1MDAwZsA5oFxcXt96yKYyTlx1MDAxZMyLS5yNXHUwMDAyrkVcdTAwMDXqMTVcdTAwMTfAV1xm/eWFZV7RMG5+k1g9ho4wZJazdDiWaWPKR+HQ4ihcdTAwMDdcdTAwMTi+5361XHUwMDAzXGYtdtOCwPdqucRcdTAwMDJCX+3t/JFcdTAwMTiO9iZMKWbxrOeFl1s+0+/kei1cdTAwMWOZspqp5T2J1MFcdTAwMTEmXHUwMDE2vDIyZWKkee+juHBcYmdcdTAwMTKchVx1MDAwNC6n6UKrXHUwMDE34Fx1MDAxZVx1MDAxY1x1MDAxMmdcdTAwMDRwJtAlot/7tCRzXHUwMDE4/FLAUtRcYmCMbKlXZVkrNlx1MDAwNFx1MDAwNVunXHUwMDFmpFwiWuNcdTAwMWGKtW2jurzItp5vwEJcdTAwMGUrXHUwMDA3J3fm62h2+IlcdTAwMWSdW6dcdTAwMWawbUKAXHUwMDEye32dS1x1MDAxYijgfHGSgsXTNuAq4tyxsov0XHUwMDAzUFx1MDAwNLVcYuj2Of3AtMFcciDrZ1x1MDAxZlLj0/zAVPmsa4tcdTAwMTeH2ddcdTAwMGLy0lx1MDAxYu+/+6XUkWhcdTAwMTBcdTAwMTSmcJckXGZ4qcNcdTAwMDGjUIzWIVx1MDAxYo2Pg66XfFx1MDAwMORpXHUwMDE01TEtg/pcdTAwMTiq/FXJh+hccpzRLfHgZzSn/jFv7+ZvXHUwMDFmMlx1MDAxOU1cdTAwMWbGbdl96D+/vlx1MDAxMH7X3PVwvnhCLFxmPCHWXCLjgIXFaWDgQFx1MDAxY2Iws0Zx82mMK0NcdTAwMTRzjFJcdTAwMTg/I7gziOtcdTAwMTBxXyPGXCJwXHUwMDE5mtH70PBcdTAwMDeggIFrklx1MDAxNscqy1x1MDAxMEC3ZoylW7+s1lx1MDAwZtklP3LPL1hanIibbvIvXHUwMDFiY4lcdTAwMTRcdTAwMDPv7fFcdTAwMDVZot1cdTAwMWNcdTAwMDefzizboHEh/MR2a1x0YomygC/TXGbHXHUwMDAwXHUwMDAzpFV20Vx1MDAxNEij4dvH/Fx1MDAxZceYIY+vwS+sbSnE02HhOnb9xFKpNNfFcLP+U9o+5lx1MDAxMOEreNlsN2hscVx1MDAxNlx1MDAxM13lbVx1MDAxOTZ1+nzlu1x1MDAwM5Hu+tOzyuPl1eVjpjB8em5ekdr+z2OWWjo4ToBcdTAwMTElhLFyqdJU4nxz+Fx1MDAxYZhcdTAwMDJaaJefa5dMwjiWXHUwMDAyXHT9kXBcblx1MDAxZlxmY43m3lxcLG+PvVxmTIaBd1x1MDAwM3oh2+zG3flMNvhSpSFcdTAwMWHcslx1MDAwNG9cdTAwMTcygD3K8z1cdTAwMWTkJoN8inUnxby46EySqdnp4V/V80WeO17JkCPf0PWtWFxuYaJnVFx1MDAxYqnBXHUwMDExkFxyxl5cXDWOXHUwMDBivYNcdD1/6Fx1MDAxZFx1MDAxNltj20yXkof77/wsMVx1MDAwZYA15aVxydK+XHUwMDE0qlx1MDAxNe7pXHUwMDA1ZiXB/a1ieVx1MDAxZm6T4lxigKy1Wlxu5Y1+XHUwMDBm8YXYqE85XHUwMDA1w0xcdFx1MDAwM1x1MDAwNLms/OjCKYjQNlx1MDAwYoR2rf24XHRcdTAwMTXgLyBcXMIlXHUwMDBmomDhYF0oXHUwMDEzgIThX4pHXHUwMDBlZDw9N3n+kG9cdTAwMTSOX9ik9pR1j59q4q9qXGaS0XKAV0BcdTAwMDI2tFx1MDAwNSvDiiZ6QitcdTAwMWNcIpFcZvjK+qw4/Nj231x1MDAxY1Du4IA4XHUwMDFjXHUwMDE2Klxy44uNk1QyXFyuhPsyqMYxXHUwMDBl0WB4L5p4XHUwMDAxXHUwMDBi4IKlbZbEbFx1MDAwMpXDTf9aXHUwMDEyXHUwMDE53X5cdTAwMTi9vI4r8IWAxdYnZulmgTfHtlfSr9Xj3OnLrFd42nWJfVx1MDAxY8LIMEbDXHUwMDE0zmahNCCLcPrEaKqUXHUwMDAwfGpXbFxu+bAshs1gXG728FxuXHUwMDA1UriQl/1cdTAwMDXSXHUwMDE2Ssy2beEt1oeN/rCbqCTGI+zWXHUwMDFkvbTdaisxXHUwMDE4tvtDXFw5gp2E33rjXHUwMDExeJ3Ety+9/kO/Nvv2xbs5lN3F1cRcdTAwMWKN8Vxiie7DYoB7tNkg0tmaZCavd7eH4ohcdTAwMWOd3WVvXHUwMDFmT6qm+VvwO1xyppyBM7X+vSxeXHUwMDExXHRcdTAwMDF/Kzjuf1x1MDAwNJ9rgOnFRvAktdhcdTAwMGbGgFx1MDAwZVx0Llwi5pppXHUwMDAwRFx1MDAwMPNx5DG31EfjfmbTcVj0PrA7XHRQXHUwMDEz6Fx1MDAwMZBcdTAwMTIuJOchpWR/2Fx1MDAxZFxckYeOVzJ43lx1MDAxYlx1MDAwMrpoxY9usFx1MDAwMK4jubZcdTAwMWLofXh/6N7rvZfDXHUwMDAwKI2SKlx1MDAxOVmK6yjhcIC8oPKKLUyA3H31XHUwMDE4XHUwMDE2XHUwMDE3XHUwMDE44e2exlqBXHUwMDEwZudcdTAwMDDMo1Jpy4ArLdjkeYdcdTAwMWHFfW3sl1x1MDAxN5FiXHUwMDE5XHJ8ncA/vM4/lFpcdTAwMWSv8ofaXHUwMDFmbJKwXHUwMDE2vDmuUuCca1x1MDAxZXhcYulQLPXBQlx1MDAwMIVTd1wi9/utuXTwd7I7yUip815cclxu3IaGZyWTxGqxSNSBm2lxJNr65ud8cnaT7p+ScZOke1x1MDAwZq/56fiy9InmZ13wLlx1MDAxY4BcdTAwMTBUY0m6UcQ3lOyHOVwiXHUwMDAy61VccjA5oPVyqZdcdTAwMTF7xblcdTAwMDRur7C5U8fY70XA6Xhz/ZXAuVxcIdZIUsBL1Fx1MDAxYcBcdTAwMTn+/ORPUyRcdTAwMDFAXHUwMDEzLraxRJvA/HdniISv9PXd8O7cg3zvYjw5ZJcyOUg3XsuD81LpTPlvXHUwMDEwx+NsuXDXd2eX5zfpu9RVungv/DdcXFx1MDAxY1x1MDAxNS6y+auKVq3GY+5grFx1MDAwZvuy7b/h3eFcZqtzJon3nG9cIlxula+lxdHsW0eWmFlJtKBkXHUwMDAz/T1cdTAwMWRcdTAwMWZcXFxc9UrX57n2IDV86mWHYpTZP/jwnv5S6aBcdTAwMTNcdTAwMDbNYcbSpV1Smlx0XHUwMDA3I0JcdTAwMDCtXHUwMDE4XFxcIr6Gd71ellRLz5bEnSV9V1x03Zth1T1+fFx1MDAxOGSv1FeuxUOhOkn6b4hrVpDvhsb0cZiTN9Xe5e1hbXx7Uck1eWVHqdzisFx1MDAwZlx1MDAwMoxAJYzwf/7iUU5cIte+aSE4IXz9ur2DVPnoVPRS1m3kXHUwMDA3XHUwMDA3R0eVdIqe7Z/iXHUwMDA2WjmpIy34WVwirOF6MaOjpHZwRzX/3jXCYlx1MDAxY1e8k8Zq5lxyXHUwMDE4I386OVx1MDAxM3vcV1x1MDAxZF1cXGGiy4tcdTAwMDDsXHUwMDExq7hZv5cz3IztvTpcdTAwMWHiZVQ44FutlyZRottcdTAwMTRcdTAwMWH8XHUwMDE004wo31xu9n3rYsGkXHUwMDFi7pj79anVpTZcdTAwMTbjXHUwMDFiXHUwMDBlkYhoY5EyOrtcdTAwMWGKzX7c/Iv6WNZ8pt+Jjv/l+1j+9uM3fKlcZlx1MDAwNiW34tbf5OTLpF1/OVxiaut/NbxcdTAwMGLP9d9/+/f/XHUwMDAx0XJIiSJ9 - - - - ddprofforkchildexitOrphan process: Lifetime no longer linked to the parentprocessforkMyAppprofilingparent evalMyApp takes thepid of the parentSome awesome thingsProfilingKernelperf_event_openEvent bufferwrite eventReadbufferhttp exportget dwarf to unwindGeneral ddprof designddprof MyApp Open socketOnce per CPU + pertype of watcher(example CPU / wall)mmap toevent buffer LoopWorkerforkWorkerspawnPerform a userswitch prior to mmapusing "nobody" userProfiling \ No newline at end of file diff --git a/docs/wrapper_architecture.png b/docs/wrapper_architecture.png new file mode 100644 index 000000000..99d1560b9 Binary files /dev/null and b/docs/wrapper_architecture.png differ diff --git a/include/austin_symbol_lookup.hpp b/include/austin_symbol_lookup.hpp new file mode 100644 index 000000000..7b5751e98 --- /dev/null +++ b/include/austin_symbol_lookup.hpp @@ -0,0 +1,25 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +#include "symbol_table.hpp" + +#include "libaustin.h" + +#include + +namespace ddprof { + +class AustinSymbolLookup { +public: + SymbolIdx_t get_or_insert(austin_frame_t *frame, SymbolTable &symbol_table); + +private: + using FrameKeyMap = std::unordered_map; + FrameKeyMap _frame_key_map; +}; + +} // namespace ddprof diff --git a/include/build_id.hpp b/include/build_id.hpp new file mode 100644 index 000000000..334adc1e9 --- /dev/null +++ b/include/build_id.hpp @@ -0,0 +1,16 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include "span.hpp" + +#include + +namespace ddprof { +using BuildIdSpan = ddprof::span; +using BuildIdStr = std::string; + +BuildIdStr format_build_id(BuildIdSpan build_id_span); + +} // namespace ddprof diff --git a/include/ddog_profiling_utils.hpp b/include/ddog_profiling_utils.hpp index 3a8f0a026..d9b5b1d30 100644 --- a/include/ddog_profiling_utils.hpp +++ b/include/ddog_profiling_utils.hpp @@ -10,7 +10,6 @@ extern "C" { } #include "string_view.hpp" - #include inline ddog_CharSlice to_CharSlice(std::string_view str) { diff --git a/include/ddprof.hpp b/include/ddprof.hpp index 682886a7b..141f8ba21 100644 --- a/include/ddprof.hpp +++ b/include/ddprof.hpp @@ -6,7 +6,6 @@ #pragma once #include "ddres_def.hpp" -#include "stack_handler.hpp" #include @@ -19,11 +18,6 @@ DDRes ddprof_setup(DDProfContext *ctx); // Free perf event resources DDRes ddprof_teardown(DDProfContext *ctx); -#ifndef DDPROF_NATIVE_LIB /************************* Instrumentation Helpers **************************/ // Attach a profiler exporting results from a different fork DDRes ddprof_start_profiler(DDProfContext *); -#endif - -// Stack handler should remain valid -void ddprof_attach_handler(DDProfContext *, const StackHandler *stack_handler); diff --git a/include/ddprof_buffer.hpp b/include/ddprof_buffer.hpp index 079ef8c6f..9c86c71e5 100644 --- a/include/ddprof_buffer.hpp +++ b/include/ddprof_buffer.hpp @@ -4,6 +4,9 @@ // Datadog, Inc. #pragma once +#include +#include + #include "span.hpp" namespace ddprof { diff --git a/include/ddprof_cmdline.hpp b/include/ddprof_cmdline.hpp index ad35ee653..aad07b003 100644 --- a/include/ddprof_cmdline.hpp +++ b/include/ddprof_cmdline.hpp @@ -27,5 +27,4 @@ bool arg_inset(const char *str, char const *const *set, int sz_set); bool arg_yesno(const char *str, int mode); -bool watcher_from_event(const char *str, PerfWatcher *watcher); -bool watcher_from_tracepoint(const char *str, PerfWatcher *watcher); +bool watcher_from_str(const char *str, PerfWatcher *watcher); diff --git a/include/ddprof_context.hpp b/include/ddprof_context.hpp index e73edb716..26d0c3533 100644 --- a/include/ddprof_context.hpp +++ b/include/ddprof_context.hpp @@ -40,7 +40,6 @@ typedef struct DDProfContext { bool initialized; ExporterInput exp_input; - const StackHandler *stack_handler; PerfWatcher watchers[MAX_TYPE_WATCHER]; int num_watchers; void *callback_ctx; // user state to be used in callback (lib mode) diff --git a/include/ddprof_context_lib.hpp b/include/ddprof_context_lib.hpp index af352f5e3..e864ec201 100644 --- a/include/ddprof_context_lib.hpp +++ b/include/ddprof_context_lib.hpp @@ -10,8 +10,10 @@ typedef struct DDProfInput DDProfInput; typedef struct DDProfContext DDProfContext; typedef struct PerfWatcher PerfWatcher; +namespace ddprof { /***************************** Context Management *****************************/ -DDRes ddprof_context_set(DDProfInput *input, DDProfContext *); -void ddprof_context_free(DDProfContext *); +DDRes context_set(DDProfInput *input, DDProfContext *); +void context_free(DDProfContext *); -int ddprof_context_allocation_profiling_watcher_idx(const DDProfContext *ctx); +int context_allocation_profiling_watcher_idx(const DDProfContext *ctx); +} // namespace ddprof diff --git a/include/ddprof_defs.hpp b/include/ddprof_defs.hpp index ec63634f0..fbb78a40d 100644 --- a/include/ddprof_defs.hpp +++ b/include/ddprof_defs.hpp @@ -13,6 +13,8 @@ // Maximum depth for a single stack #define DD_MAX_STACK_DEPTH 512 +constexpr int k_size_api_key = 32; + // Linux Inode type typedef uint64_t inode_t; diff --git a/include/ddprof_file_info.hpp b/include/ddprof_file_info.hpp index 0d8712d30..69e683bfd 100644 --- a/include/ddprof_file_info.hpp +++ b/include/ddprof_file_info.hpp @@ -12,6 +12,7 @@ #include #include #include + namespace ddprof { /// Defines file uniqueness @@ -19,7 +20,7 @@ namespace ddprof { /// inodes struct FileInfoInodeKey { FileInfoInodeKey(inode_t inode, std::size_t sz) : _inode(inode), _sz(sz) {} - bool operator==(const FileInfoInodeKey &o) const; + bool operator==(const FileInfoInodeKey &o) const = default; // inode is used as a key (instead of path which can be the same for several // containers). TODO: inode could be the same across several filesystems (size // is there to mitigate) @@ -54,26 +55,16 @@ struct FileInfo { /// Keeps metadata on the file associated to a key class FileInfoValue { public: - /// duplicates and holds the file descriptor - FileInfoValue(FileInfo &&info, FileInfoId_t id, int fd); - /// Opens a file descriptor to the file - FileInfoValue(FileInfo &&info, FileInfoId_t id); - FileInfoValue(const FileInfoValue &other) = delete; - FileInfoValue &operator=(const FileInfoValue &other) = delete; - FileInfoValue(FileInfoValue &&other); - FileInfoValue &operator=(FileInfoValue &&other); - ~FileInfoValue(); + FileInfoValue(FileInfo &&info, FileInfoId_t id) : _info(info), _id(id) {} + FileInfoId_t get_id() const { return _id; } int64_t get_size() const { return _info._size; } const std::string &get_path() const { return _info._path; } - FileInfo _info; - int _fd; mutable bool _errored = false; // a flag to avoid trying to read in a loop bad files private: - void copy_values(const FileInfoValue &other); FileInfoId_t _id; // unique ID matching index in table }; diff --git a/include/ddprof_input.hpp b/include/ddprof_input.hpp index d40cafef8..5a0e8a8f7 100644 --- a/include/ddprof_input.hpp +++ b/include/ddprof_input.hpp @@ -34,7 +34,6 @@ typedef struct DDProfInput { char *worker_period; char *internal_stats; char *tags; - char *url; char *socket; char *preset; char *switch_user; @@ -76,9 +75,8 @@ typedef struct DDProfInput { XX(DD_API_KEY, api_key, A, 'A', 1, input, NULL, "", exp_input.) \ XX(DD_ENV, environment, E, 'E', 1, input, NULL, "", exp_input.) \ XX(DD_AGENT_HOST, host, H, 'H', 1, input, NULL, "localhost", exp_input.) \ - XX(DD_SITE, site, I, 'I', 1, input, NULL, "", exp_input.) \ XX(DD_TRACE_AGENT_PORT, port, P, 'P', 1, input, NULL, "8126", exp_input.) \ - XX(DD_TRACE_AGENT_URL, url, U, 'U', 1, input, NULL, "", ) \ + XX(DD_TRACE_AGENT_URL, url, U, 'U', 1, input, NULL, "", exp_input.) \ XX(DD_SERVICE, service, S, 'S', 1, input, NULL, "myservice", exp_input.) \ XX(DD_VERSION, service_version, V, 'V', 1, input, NULL, "", exp_input.) \ XX(DD_PROFILING_EXPORT, do_export, X, 'X', 1, input, NULL, "yes", exp_input.) \ diff --git a/include/ddprof_module.hpp b/include/ddprof_module.hpp index 96d5c0646..99cfeca14 100644 --- a/include/ddprof_module.hpp +++ b/include/ddprof_module.hpp @@ -7,6 +7,8 @@ #include "ddprof_defs.hpp" +#include "build_id.hpp" + extern "C" { typedef struct Dwfl_Module Dwfl_Module; } @@ -29,6 +31,10 @@ struct DDProfMod { explicit DDProfMod(Status status) : DDProfMod() { _status = status; } + void set_build_id(BuildIdSpan x) { _build_id = format_build_id(x); } + + // build id (string that displays the hexadecimal value) + BuildIdStr _build_id; // In the current version of dwfl, the dwfl_module addresses are stable Dwfl_Module *_mod; ProcessAddress_t _low_addr; diff --git a/include/ddprof_perf_event.hpp b/include/ddprof_perf_event.hpp new file mode 100644 index 000000000..ceda11982 --- /dev/null +++ b/include/ddprof_perf_event.hpp @@ -0,0 +1,37 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +#include +#include + +// Extend the perf event types +// There are <30 different perf events (starting at 1000 seems safe) +enum : uint32_t { + PERF_CUSTOM_EVENT_DEALLOCATION = 1000, + PERF_CUSTOM_EVENT_CLEAR_LIVE_ALLOCATION +}; + +static_assert(static_cast(PERF_CUSTOM_EVENT_DEALLOCATION) > + PERF_RECORD_MAX, + "Error from PERF_CUSTOM_EVENT_DEALLOCATION definition"); + +namespace ddprof { + +// Custom sample type +struct DeallocationEvent { + perf_event_header hdr; + struct sample_id sample_id; + uintptr_t ptr; +}; + +// Event to notify we have tracked too many allocations +struct ClearLiveAllocationEvent { + perf_event_header hdr; + struct sample_id sample_id; +}; + +} // namespace ddprof diff --git a/include/ddprof_stats.hpp b/include/ddprof_stats.hpp index 21ba076dd..5e4f23314 100644 --- a/include/ddprof_stats.hpp +++ b/include/ddprof_stats.hpp @@ -23,6 +23,9 @@ X(UNWIND_INCOMPLETE_STACK, "unwind.stack.incomplete", STAT_GAUGE) \ X(UNWIND_AVG_STACK_SIZE, "unwind.stack.avg_size", STAT_GAUGE) \ X(UNWIND_AVG_STACK_DEPTH, "unwind.stack.avg_depth", STAT_GAUGE) \ + X(SYMBOLS_JIT_READS, "symbols.jit.reads", STAT_GAUGE) \ + X(SYMBOLS_JIT_FAILED_LOOKUPS, "symbols.jit.failed_lookups", STAT_GAUGE) \ + X(SYMBOLS_JIT_SYMBOL_COUNT, "symbols.jit.symbol_count", STAT_GAUGE) \ X(PROFILER_RSS, "profiler.rss", STAT_GAUGE) \ X(PROFILER_CPU_USAGE, "profiler.cpu_usage.millicores", STAT_GAUGE) \ X(DSO_UNHANDLED_SECTIONS, "dso.unhandled_sections", STAT_GAUGE) \ diff --git a/include/ddprof_worker_context.hpp b/include/ddprof_worker_context.hpp index de05c3dca..f7c969ace 100644 --- a/include/ddprof_worker_context.hpp +++ b/include/ddprof_worker_context.hpp @@ -5,6 +5,7 @@ #pragma once +#include "live_allocation.hpp" #include "pevent.hpp" #include "proc_status.hpp" @@ -36,4 +37,5 @@ struct DDProfWorkerContext { int64_t send_nanos; // Last time an export was sent uint32_t count_worker; // exports since last cache clear std::array lost_events_per_watcher; + ddprof::LiveAllocation live_allocation; }; diff --git a/include/ddres_def.hpp b/include/ddres_def.hpp index d5a831f78..234ffda5d 100644 --- a/include/ddres_def.hpp +++ b/include/ddres_def.hpp @@ -9,10 +9,12 @@ #include -#define DD_SEVOK 0 -#define DD_SEVNOTICE 1 -#define DD_SEVWARN 2 -#define DD_SEVERROR 3 +enum DD_RES_SEV { + DD_SEVOK = 0, + DD_SEVNOTICE = 1, + DD_SEVWARN = 2, + DD_SEVERROR = 3, +}; /// Result structure containing a what / severity typedef struct DDRes { diff --git a/include/ddres_helpers.hpp b/include/ddres_helpers.hpp index 463952703..26afec482 100644 --- a/include/ddres_helpers.hpp +++ b/include/ddres_helpers.hpp @@ -71,6 +71,31 @@ } \ } while (0) +static inline int ddres_sev_to_log_level(int sev) { + switch (sev) { + case DD_SEVERROR: + return LL_ERROR; + case DD_SEVWARN: + return LL_WARNING; + case DD_SEVNOTICE: + return LL_DEBUG; + default: // no log + return LL_LENGTH; + } +} + +/// Forward result if Fatal +#define DDRES_CHECK_FWD_STRICT(ddres) \ + do { \ + DDRes lddres = ddres; /* single eval */ \ + if (IsDDResNotOK(lddres)) { \ + LG_IF_LVL_OK(ddres_sev_to_log_level(lddres._sev), \ + "Forward error at %s:%u - %s", __FILE__, __LINE__, \ + ddres_error_message(lddres._what)); \ + return lddres; \ + } \ + } while (0) + /// Forward result if Fatal #define DDRES_CHECK_FWD(ddres) \ do { \ diff --git a/include/ddres_list.hpp b/include/ddres_list.hpp index bc0ec47bc..8a87ee53c 100644 --- a/include/ddres_list.hpp +++ b/include/ddres_list.hpp @@ -46,8 +46,10 @@ X(EXPORT_TIMEOUT, "pending export failed to return in time") \ X(ARGUMENT, "error writing arguments") \ X(INPUT_PROCESS, "") \ - X(STACK_HANDLE, "") \ X(DSO, "") \ + X(JIT, "Error parsing JIT files") \ + X(NO_JIT_FILE, "File not readable for JIT") \ + X(UNHANDLED_CONFIG, "unhandled configuration") \ X(UNHANDLED_DSO, "ignore dso type") \ X(WORKERLOOP_INIT, "error initializing the worker loop") \ X(SYS_CONFIG, "error checking system configuration") \ diff --git a/include/demangler/demangler.hpp b/include/demangler/demangler.hpp new file mode 100644 index 000000000..7706c9f07 --- /dev/null +++ b/include/demangler/demangler.hpp @@ -0,0 +1,15 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +#include + +namespace Demangler { + +// Functions +std::string demangle(const std::string &mangled); + +} // namespace Demangler diff --git a/include/dso.hpp b/include/dso.hpp index 848f641ee..1718fab06 100644 --- a/include/dso.hpp +++ b/include/dso.hpp @@ -30,12 +30,13 @@ class Dso { Dso(const Dso &parent, pid_t new_pid) : Dso(parent) { _pid = new_pid; } // Check if the provided address falls within the provided dso - bool is_within(pid_t pid, ElfAddress_t addr) const; + bool is_within(ElfAddress_t addr) const; // Avoid use of strict == as we do not consider _end in comparison bool operator==(const Dso &o) const = delete; // perf gives larger regions than proc maps (keep the largest of them) bool intersects(const Dso &o) const; + std::string to_string() const; std::string format_filename() const; @@ -52,6 +53,9 @@ class Dso { dso::DsoType _type; bool _executable; mutable FileInfoId_t _id; + +private: + static bool is_jit_dump_str(std::string_view file_path, pid_t pid); }; std::ostream &operator<<(std::ostream &os, const Dso &dso); diff --git a/include/dso_hdr.hpp b/include/dso_hdr.hpp index 25ec6ae51..831054bae 100644 --- a/include/dso_hdr.hpp +++ b/include/dso_hdr.hpp @@ -71,7 +71,12 @@ class DsoHdr { public: /******* Structures and types **********/ using DsoMap = std::map; - using DsoPidMap = std::unordered_map; + struct PidMapping { + DsoMap _map; + // save the start addr of the jit dump info if available + ProcessAddress_t _jitdump_addr = {}; + }; + using DsoPidMap = std::unordered_map; using DsoMapConstIt = DsoMap::const_iterator; using DsoMapIt = DsoMap::iterator; @@ -81,14 +86,11 @@ class DsoHdr { using DsoFindRes = std::pair; /******* MAIN APIS **********/ - explicit DsoHdr(int dd_profiling_fd = -1); + explicit DsoHdr(std::string_view path_to_proc = "", int dd_profiling_fd = -1); // Add the element check for overlap and remove them DsoFindRes insert_erase_overlap(Dso &&dso); - DsoFindRes insert_erase_overlap(DsoMap &map, Dso &&dso); - - // true if it erases anything - bool erase_overlap(const Dso &dso); + DsoFindRes insert_erase_overlap(PidMapping &pid_mapping, Dso &&dso); // Clear all dsos and regions associated with this pid void pid_free(int pid); @@ -100,16 +102,19 @@ class DsoHdr { // Find the closest dso to this pid and addr DsoFindRes dso_find_closest(pid_t pid, ElfAddress_t addr); - static DsoFindRes dso_find_closest(const DsoMap &map, pid_t pid, - ElfAddress_t addr); + static DsoFindRes dso_find_closest(const DsoMap &map, ElfAddress_t addr); // parse procfs to look for dso elements bool pid_backpopulate(pid_t pid, int &nb_elts_added); // find or parse procfs if allowed + DsoFindRes dso_find_or_backpopulate(PidMapping &pid_mapping, pid_t pid, + ElfAddress_t addr); DsoFindRes dso_find_or_backpopulate(pid_t pid, ElfAddress_t addr); - void reset_backpopulate_state(); + void reset_backpopulate_state( + int reset_threshold = + BackpopulateState::_k_nb_requests_between_backpopulates); /******* HELPERS **********/ // Find the dso if same static DsoFindRes dso_find_adjust_same(DsoMap &map, const Dso &dso); @@ -126,7 +131,7 @@ class DsoHdr { DsoFindRes find_res_not_found(int pid) { // not const as it can create an element if the map does not exist for pid - return {_map[pid].end(), false}; + return {_pid_map[pid]._map.end(), false}; } // Access file and retrieve absolute path and ID @@ -139,12 +144,15 @@ class DsoHdr { return _file_info_vector[id]; } + void set_path_to_proc(std::string_view path_to_proc) { + _path_to_proc = path_to_proc; + } const std::string &get_path_to_proc() const { return _path_to_proc; } int get_nb_dso() const; // Unordered map (by pid) of sorted DSOs - DsoPidMap _map; + DsoPidMap _pid_map; DsoStats _stats; private: @@ -167,7 +175,7 @@ class DsoHdr { static void erase_range(DsoMap &map, const DsoRange &range); // parse procfs to look for dso elements - bool pid_backpopulate(DsoMap &map, pid_t pid, int &nb_elts_added); + bool pid_backpopulate(PidMapping &pid_mapping, pid_t pid, int &nb_elts_added); FileInfoId_t update_id_from_dso(const Dso &dso); @@ -181,7 +189,9 @@ class DsoHdr { FileInfoVector _file_info_vector; // /proc files can be mounted at various places (whole host profiling) - std::string _path_to_proc; + std::string _path_to_proc; // /proc files can be mounted at various places + // (whole host profiling) + int _dd_profiling_fd; // Assumption is that we have a single version of the dd_profiling library // accross all PIDs. diff --git a/include/dso_type.hpp b/include/dso_type.hpp index 3e29e6ec8..e4fba64e5 100644 --- a/include/dso_type.hpp +++ b/include/dso_type.hpp @@ -18,6 +18,7 @@ enum DsoType { kRuntime, kSocket, kDDProfiling, // special case in which the library might be known internally + kJITDump, // jit dump file (LLVM guarantee they mmap this as a marker) kNbDsoTypes }; diff --git a/include/dwfl_hdr.hpp b/include/dwfl_hdr.hpp index 2669156e2..c37dde031 100644 --- a/include/dwfl_hdr.hpp +++ b/include/dwfl_hdr.hpp @@ -64,7 +64,8 @@ struct DwflWrapper { class DwflHdr { public: DwflWrapper &get_or_insert(pid_t pid); - void clear_unvisited(); + std::vector get_unvisited() const; + void reset_unvisited(); void clear_pid(pid_t pid); // get number of accessed modules diff --git a/include/dwfl_internals.hpp b/include/dwfl_internals.hpp index 6fa3981c3..288f9283a 100644 --- a/include/dwfl_internals.hpp +++ b/include/dwfl_internals.hpp @@ -5,5 +5,5 @@ #pragma once -#include "elfutils/libdw.h" -#include "elfutils/libdwfl.h" +#include "libdw.h" +#include "libdwfl.h" diff --git a/include/event_config.hpp b/include/event_config.hpp new file mode 100644 index 000000000..f7f1c4a46 --- /dev/null +++ b/include/event_config.hpp @@ -0,0 +1,166 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +#include +#include + +// Defines how a sample is aggregated when it is received +enum class EventConfMode : uint32_t { + kDisabled = 0, + kCallgraph = 1 << 0, // flamegraph of resource usage + kMetric = 1 << 1, // gauge of resource usage + kLiveCallgraph = 1 << 2, // report callgraph of resources still in use + kAll = kCallgraph | kMetric | kLiveCallgraph, +}; + +bool operator<=(EventConfMode A, EventConfMode B) = delete; +bool operator<(EventConfMode A, EventConfMode B) = delete; +bool operator>(EventConfMode A, EventConfMode B) = delete; +bool operator>=(EventConfMode A, EventConfMode B) = delete; + +constexpr EventConfMode operator|(EventConfMode A, const EventConfMode B) { + return static_cast(static_cast(A) | + static_cast(B)); +} + +constexpr EventConfMode operator|=(EventConfMode &A, const EventConfMode B) { + return A = A | B; +} + +constexpr EventConfMode operator&(const EventConfMode A, + const EventConfMode B) { + return static_cast(static_cast(A) & + static_cast(B)); +} + +constexpr bool Any(EventConfMode arg) { + return arg != EventConfMode::kDisabled; +} + +constexpr bool AnyCallgraph(EventConfMode arg) { + return Any((arg & EventConfMode::kLiveCallgraph) | + (arg & EventConfMode::kCallgraph)); +} + +// Defines how samples are weighted +enum class EventConfValueSource { + kSample = 0, // Use sample value (period) from perf events + kRegister = 1, // Use the register from `register_num` + kRaw = 2, // Use the offset/size for raw event +}; + +// Defines how the sampling is configured (e.g., with `perf_event_open()`) +enum class EventConfCadenceType { + kUndefined = 0, + kPeriod = 1, + kFrequency = 2, +}; + +// Used by the parser to return which key was detected +enum class EventConfField { + kNone = 0, + /* + * None is an invalid event type used to fence uninitialized values. + */ + kValueScale, + /* + * ValueScale defines a real-valued coefficient which is used to scale the + * sample value when the correspond watcher is retrieved. This is useful + * because multiple tracepoints may be globbed together in the Profiling + * UX and individual watchers therein may need to be scaled differently + * (e.g., mmap and munmap together although this is a bad example). + */ + kRawOffset, + kRawSize, + /* + * RawOffset and RawSize are only valid for watchers where perf_event_open + * will generate raw event data. Raw data is sent as a byte buffer, so + * the offset and size are needed to extract the desired (integral!) value + * from the buffer. + */ + kEvent, + /* + * The name of the watcher, such as 'sAlloc'. + * Also used in tracepoints to define the specific tracepoint (as opposed + * to the group). In this mode, may also be given as a `group:event` tuple + * delimited by a ':' (as is typical for other tools). + */ + kFrequency, + /* + * Specifies that the given watcher will be configured in perf_events with + * frequency mode (as opposed to periodic sampling). Mutually exclusive + * with `Period`, presence of both should return error. Presence of neither + * defaults to `period=1`. + */ + kGroup, + /* + * When `Event` is given and is not a valid "normal" event (such as + * `sALLOC`) nor a `group:event` tuple, then `Group` is needed to define + * the groupname for the tracepoint. + */ + kId, + /* + * The Id for the tracepoint. Customers usually do not know this and will + * not specify it; but sometimes debugfs/tracefs may be inaccessible even + * though probe points can be consumed through `perf_events`. This setting + * allows users to perform instrumentation in such a configuration. + */ + kLabel, + /* + * An informative label which is forwarded to the UX, but does not have any + * direct relationship with how the watcher calls `perf_event_open()`. This + * may however be used to aggregate watchers in a single ringbuffer (if they + * share the same label). + */ + kMode, + /* + * Specifies what to do with a sample when it is collected. Comprised of a + * string; the presence or absence of certain characters defines the + * output mode: + * * 'M' or 'm' -- emit a metric + * * 'G' or 'g' -- emit a flamegraph (default) + * * 'A', 'a', or '*' -- emit all outputs + */ + kParameter, + /* + * A function parameter number. Is expanded into the correct register for + * the System-V procedure call ABI for the current architecture. + */ + kPeriod, + /* + * Gives the period for which to configure sampling. Conflicts with + * `Frequency`--presence of both is an error. + */ + kRegister, + /* + * The `perf_event` register number to use for sample normalization. In a + * future patch, the user will be able to use register names. + */ +}; + +struct EventConf { + EventConfMode mode; + + int64_t id; + + std::string eventname; + std::string groupname; + std::string label; + + EventConfValueSource value_source; + uint8_t register_num; + uint8_t raw_size; + uint64_t raw_offset; + double value_scale; + + EventConfCadenceType cad_type; + int64_t cadence; + + void clear() { *this = EventConf{}; } +}; + +EventConf *EventConf_parse(const char *msg); // Provided by generated code diff --git a/include/exporter/ddprof_exporter.hpp b/include/exporter/ddprof_exporter.hpp index cc1b59344..cf9bacc39 100644 --- a/include/exporter/ddprof_exporter.hpp +++ b/include/exporter/ddprof_exporter.hpp @@ -12,7 +12,7 @@ #include "string_view.hpp" #include "tags.hpp" -typedef struct ddog_ProfileExporter ddog_ProfileExporter; +typedef struct ddog_prof_Exporter ddog_prof_Exporter; typedef struct ddog_Profile ddog_Profile; typedef struct UserTags UserTags; @@ -22,7 +22,7 @@ typedef struct DDProfExporter { ExporterInput _input; char *_url; // url contains path and port const char *_debug_pprof_prefix; // write pprofs to folder - ddog_ProfileExporter *_exporter; + ddog_prof_Exporter *_exporter; bool _agent; bool _export; // debug mode : should we send profiles ? int32_t _nb_consecutive_errors; @@ -34,7 +34,7 @@ DDRes ddprof_exporter_init(const ExporterInput *exporter_input, DDRes ddprof_exporter_new(const UserTags *user_tags, DDProfExporter *exporter); -DDRes ddprof_exporter_export(const struct ddog_Profile *profile, +DDRes ddprof_exporter_export(const struct ddog_prof_Profile *profile, const ddprof::Tags &additional_tags, uint32_t profile_seq, DDProfExporter *exporter); diff --git a/include/exporter_input.hpp b/include/exporter_input.hpp index b6daa449d..b1f6eb12f 100644 --- a/include/exporter_input.hpp +++ b/include/exporter_input.hpp @@ -18,7 +18,7 @@ typedef struct ExporterInput { const char *api_key; // Datadog api key const char *environment; // ex: staging / local / prod const char *host; // agent host ex:162.184.2.1 - const char *site; // not used for now + const char *url; // url (can contain port and schema) const char *port; // port appended to the host IP (ignored in agentless) const char *service; // service to identify the profiles (ex:prof-probe-native) @@ -60,7 +60,7 @@ static inline DDRes exporter_input_copy(const ExporterInput *src, DUP_PARAM(api_key); DUP_PARAM(environment); DUP_PARAM(host); - DUP_PARAM(site); + DUP_PARAM(url); DUP_PARAM(port); DUP_PARAM(service); DUP_PARAM(service_version); @@ -78,7 +78,7 @@ static inline void exporter_input_free(ExporterInput *exporter_input) { free((char *)exporter_input->api_key); free((char *)exporter_input->environment); free((char *)exporter_input->host); - free((char *)exporter_input->site); + free((char *)exporter_input->url); free((char *)exporter_input->port); free((char *)exporter_input->service); free((char *)exporter_input->service_version); diff --git a/include/ipc.hpp b/include/ipc.hpp index afe0a0a03..6c78343cc 100644 --- a/include/ipc.hpp +++ b/include/ipc.hpp @@ -15,7 +15,7 @@ namespace ddprof { -// Maximum number of file descriptors that can be tansferred with +// Maximum number of file descriptors that can be transferred with // sendmsg/recvmsg. Taken from default value for SCM_MAX_FD, which is a kernel // configuration. 253 is a common safe lower bound for that value. static constexpr size_t kMaxFD = 253; @@ -26,14 +26,16 @@ using socket_t = int; class UnixSocket { public: - static inline constexpr socket_t kInvalidSocket = -1; - UnixSocket() noexcept : _handle(kInvalidSocket) {} + UnixSocket() noexcept = default; + explicit UnixSocket(socket_t handle) noexcept : _handle(handle) {} + UnixSocket(UnixSocket &&socket) noexcept : _handle(socket._handle) { socket._handle = kInvalidSocket; } UnixSocket(const UnixSocket &) = delete; + ~UnixSocket(); UnixSocket &operator=(const UnixSocket &) = delete; @@ -72,7 +74,9 @@ class UnixSocket { } private: - socket_t _handle; + static constexpr socket_t kInvalidSocket = -1; + + socket_t _handle = kInvalidSocket; }; struct RequestMessage { @@ -90,6 +94,7 @@ struct RingBufferInfo { }; struct ReplyMessage { + enum { kLiveCallgraph = 0 }; // reply with the request flags from the request uint32_t request = 0; // profiler pid @@ -98,6 +103,7 @@ struct ReplyMessage { // RingBufferInfo is returned if request & kRingBuffer // cppcheck-suppress unusedStructMember RingBufferInfo ring_buffer; + int32_t allocation_flags = 0; }; class Client { diff --git a/include/jit/jitdump.hpp b/include/jit/jitdump.hpp new file mode 100644 index 000000000..4bd36692e --- /dev/null +++ b/include/jit/jitdump.hpp @@ -0,0 +1,129 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. +// +// Implemented in the scope of this issue. +// Disucssion here https://github.com/DataDog/ddprof/issues/212 +// +// Another implementations of this is available in Go +// https://github.com/parca-dev/parca-agent/blob/4538c7f6c0b5e686cbdde2594c422edf98432c23/pkg/jit/jitdump.go +// Thanks to @maxbrunet for a reference implementation a and well commented code +// +// Some other notes around jvmti +// https://github.com/sfriberg/perf-jitdump-agent +// +// Some notes around the format (thanks to Stephane Eranian) +// https://github.dev/torvalds/linux/blob/ab072681eabe1ce0a9a32d4baa1a27a2d046bc4a/tools/perf/Documentation/jitdump-specification.txt#L8 +// +#pragma once + +#include "ddres.hpp" + +#include +#include +#include + +namespace ddprof { + +struct JITHeader { + uint32_t magic; /* characters "jItD" */ + uint32_t version; /* header version */ + uint32_t total_size; /* total size of header */ + uint32_t elf_mach; /* elf mach target */ + uint32_t pad1; /* reserved */ + uint32_t pid; /* JIT process id */ + uint64_t timestamp; /* timestamp */ + uint64_t flags; /* flags */ +}; + +static constexpr int k_jit_header_version = 1; + +// Looking at LLVM code, only DEBUG and LOAD are emitted +// https://github.com/llvm/llvm-project/blob/main/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp +enum JITRecordType { + JIT_CODE_LOAD = 0, // record describing a jitted function + JIT_CODE_MOVE = 1, // already jitted function which is moved + JIT_CODE_DEBUG_INFO = 2, // debug information for a jitted function + JIT_CODE_CLOSE = 3, // end of the jit runtime (optional) + JIT_CODE_UNWINDING_INFO = 4, // function unwinding information + JIT_CODE_MAX, // maximum record type +}; + +/* At the start of every record */ +struct JITRecordPrefix { + uint32_t id; // JITRecordType (leaving it as uint as size is important) + uint32_t total_size; + uint64_t timestamp; // Not used for now (nice info to order events) +}; + +struct JITRecordCodeLoad { + // minimal size we will read + static constexpr uint32_t k_size_integers = + sizeof(uint32_t) * 2 + sizeof(uint64_t) * 4; + JITRecordPrefix prefix; + uint32_t pid; + uint32_t tid; + uint64_t vma; + uint64_t code_addr; + uint64_t code_size; + uint64_t code_index; + std::string func_name; + std::byte *raw_code; // not sure how this can be useful for now +}; + +#ifdef EXTENDED_JITDUMP_STRUCTS +// Following structures are part of the spec, though not used for now +// LLVM is not emitting these structures + +struct JITRecordCodeClose { + struct JITRecordPrefix p; +}; + +// Unused (as not emitted by LLVM as of now) +struct JITRecordCodeMove { + struct JITRecordPrefix prefix; + uint32_t pid; + uint32_t tid; + uint64_t vma; + uint64_t old_code_addr; + uint64_t new_code_addr; + uint64_t code_size; + uint64_t code_index; +}; + +// Unused (as not emitted by LLVM as of now) +struct JITRecordUnwindingInfo { + struct JITRecordPrefix prefix; + uint64_t unwinding_size; + uint64_t eh_frame_hdr_size; + uint64_t mapped_size; + std::vector unwinding_data; +}; +#endif + +struct DebugEntry { + uint64_t addr; + int32_t lineno; /* source line number starting at 1 */ + int32_t discrim; + std::string name; +}; + +struct JITRecordDebugInfo { + // minimal size we will read + static constexpr uint32_t k_size_integers = sizeof(uint64_t) * 2; + JITRecordPrefix prefix; + uint64_t code_addr; + uint64_t nr_entry; + std::vector entries; +}; + +struct JITDump { + JITHeader header; + std::vector code_load; + std::vector debug_info; +}; + +DDRes jitdump_read(std::string_view file, JITDump &jit_dump); + +} // namespace ddprof diff --git a/include/lib/allocation_tracker.hpp b/include/lib/allocation_tracker.hpp index 723c4d589..43efb31c4 100644 --- a/include/lib/allocation_tracker.hpp +++ b/include/lib/allocation_tracker.hpp @@ -8,12 +8,14 @@ #include "ddprof_base.hpp" #include "ddres_def.hpp" #include "pevent.hpp" +#include "span.hpp" #include "unlikely.hpp" #include #include #include #include +#include namespace ddprof { @@ -24,7 +26,7 @@ struct TrackerThreadLocalState { int64_t remaining_bytes; // remaining allocation bytes until next sample bool remaining_bytes_initialized; // false if remaining_bytes is not // initialized - const std::byte *stack_end; + ddprof::span stack_bounds; pid_t tid; // cache of tid bool reentry_guard; // prevent reentry in AllocationTracker (eg. when @@ -37,6 +39,8 @@ class AllocationTracker { AllocationTracker(const AllocationTracker &) = delete; AllocationTracker &operator=(const AllocationTracker &) = delete; + ~AllocationTracker() { free(); } + enum AllocationTrackingFlags { kTrackDeallocations = 0x1, kDeterministicSampling = 0x2 @@ -59,13 +63,22 @@ class AllocationTracker { static inline bool is_active(); private: + using AdressSet = std::unordered_set; + struct TrackerState { + void init(bool track_alloc, bool track_dealloc) { + track_allocations = track_alloc; + track_deallocations = track_dealloc; + lost_count = 0; + failure_count = 0; + pid = 0; + } std::mutex mutex; std::atomic track_allocations = false; std::atomic track_deallocations = false; std::atomic lost_count; // count number of lost events std::atomic failure_count; - std::atomic pid; // cache of pid + std::atomic pid; // lazy cache of pid (0 is un-init value) }; AllocationTracker(); @@ -81,16 +94,24 @@ class AllocationTracker { TrackerThreadLocalState &tl_state); void track_deallocation(uintptr_t addr, TrackerThreadLocalState &tl_state); - DDRes push_sample(uint64_t allocated_size, TrackerThreadLocalState &tl_state); + DDRes push_alloc_sample(uintptr_t addr, uint64_t allocated_size, + TrackerThreadLocalState &tl_state); - // Return true if consumer should be notified + // If notify_needed is true, consumer should be notified DDRes push_lost_sample(MPSCRingBufferWriter &writer, bool ¬ify_needed); + DDRes push_dealloc_sample(uintptr_t addr, TrackerThreadLocalState &tl_state); + + DDRes push_clear_live_allocation(TrackerThreadLocalState &tl_state); + + void free_on_consecutive_failures(bool success); + TrackerState _state; uint64_t _sampling_interval; std::mt19937 _gen; PEvent _pevent; bool _deterministic_sampling; + AdressSet _address_set; static thread_local TrackerThreadLocalState _tl_state; static AllocationTracker *_instance; @@ -127,7 +148,21 @@ void AllocationTracker::track_allocation(uintptr_t addr, size_t size) { } } -void AllocationTracker::track_deallocation(uintptr_t) {} +void AllocationTracker::track_deallocation(uintptr_t addr) { + // same pattern as track_allocation + AllocationTracker *instance = _instance; + + if (!instance) { + return; + } + TrackerThreadLocalState &tl_state = _tl_state; + + if (instance->_state.track_deallocations.load(std::memory_order_relaxed)) { + // not cool as we are always calling this (high overhead). Can we do better + // ? + instance->track_deallocation(addr, tl_state); + } +} bool AllocationTracker::is_active() { auto instance = _instance; diff --git a/include/lib/pthread_fixes.hpp b/include/lib/pthread_fixes.hpp new file mode 100644 index 000000000..1b58149b4 --- /dev/null +++ b/include/lib/pthread_fixes.hpp @@ -0,0 +1,10 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +#include + +int pthread_getattr_np_safe(pthread_t th, pthread_attr_t *attr); diff --git a/include/lib/savecontext.hpp b/include/lib/savecontext.hpp index db273f5e0..72689cceb 100644 --- a/include/lib/savecontext.hpp +++ b/include/lib/savecontext.hpp @@ -12,11 +12,12 @@ #include "perf_archmap.hpp" #include "span.hpp" -/** Cache stack end from current thread in TLS for future use */ -DDPROF_NOIPO const std::byte *retrieve_stack_end_address(); +/**Retrieve stack bounds from current thread. + Return an empty span in case of failure.*/ +DDPROF_NOIPO ddprof::span retrieve_stack_bounds(); /** Save registers and stack for remote unwinding * Return saved stack size */ -DDPROF_NOIPO size_t save_context(const std::byte *stack_end, +DDPROF_NOIPO size_t save_context(ddprof::span stack_bounds, ddprof::span regs, ddprof::span buffer); diff --git a/include/libaustin/libaustin.h b/include/libaustin/libaustin.h new file mode 100755 index 000000000..1c5aaef8d --- /dev/null +++ b/include/libaustin/libaustin.h @@ -0,0 +1,70 @@ +// This file is part of "austin" which is released under GPL. +// +// See file LICENCE or go to http://www.gnu.org/licenses/ for full license +// details. +// +// Austin is a Python frame stack sampler for CPython. +// +// Copyright (c) 2018 Gabriele N. Tornetta . +// All rights reserved. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#ifndef LIBAUSTIN_H +#define LIBAUSTIN_H +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + + +typedef void (*austin_callback_t)(pid_t, pid_t); +typedef void * austin_handle_t; +typedef struct { + uintptr_t key; // private + char * filename; + char * scope; + unsigned int line; +} austin_frame_t; + + +extern int +austin_up(); + +extern void +austin_down(); + +extern austin_handle_t +austin_attach(pid_t); + +extern void +austin_detach(austin_handle_t); + +extern int +austin_sample(austin_handle_t, austin_callback_t); + +extern int +austin_sample_thread(austin_handle_t, pid_t); + +extern austin_frame_t * +austin_pop_frame(); + +austin_frame_t * +austin_read_frame(austin_handle_t, void *); + +#ifdef __cplusplus +} +#endif +#endif // LIBAUSTIN_H diff --git a/include/live_allocation-c.hpp b/include/live_allocation-c.hpp new file mode 100644 index 000000000..657e84b1b --- /dev/null +++ b/include/live_allocation-c.hpp @@ -0,0 +1,17 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +namespace ddprof { +namespace liveallocation { +#ifdef KMAX_TRACKED_ALLOCATIONS +// build time override to reduce execution time of test +static constexpr auto kMaxTracked = KMAX_TRACKED_ALLOCATIONS; +#else +static constexpr auto kMaxTracked = 500000; +#endif +} // namespace liveallocation +} // namespace ddprof diff --git a/include/live_allocation.hpp b/include/live_allocation.hpp new file mode 100644 index 000000000..f19ff339b --- /dev/null +++ b/include/live_allocation.hpp @@ -0,0 +1,92 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +#include "ddprof_defs.hpp" +#include "unlikely.hpp" +#include "unwind_output_hash.hpp" + +#include +#include +#include + +namespace ddprof { + +template +T &access_resize(std::vector &v, size_t index, + const T &default_value = T()) { + if (unlikely(index >= v.size())) { + v.resize(index + 1, default_value); + } + return v[index]; +} + +class LiveAllocation { +public: + // For allocations Value is the size + // This is the cumulative value and count for a given stack + struct ValueAndCount { + int64_t _value = 0; + int64_t _count = 0; + }; + + using PprofStacks = + std::unordered_map; + + struct ValuePerAddress { + int64_t _value = 0; + PprofStacks::value_type *_unique_stack = nullptr; + }; + + using AddressMap = std::unordered_map; + struct PidStacks { + AddressMap _address_map; + PprofStacks _unique_stacks; + }; + + using PidMap = std::unordered_map; + using WatcherVector = std::vector; + WatcherVector _watcher_vector; + + // Allocation should be aggregated per stack trace + // instead of a stack, we would have a total size for this unique stack trace + // and a count. + void register_allocation(const UnwindOutput &uo, uintptr_t addr, size_t size, + int watcher_pos, pid_t pid) { + PidMap &pid_map = access_resize(_watcher_vector, watcher_pos); + PidStacks &pid_stacks = pid_map[pid]; + register_allocation(uo, addr, size, pid_stacks._unique_stacks, + pid_stacks._address_map); + } + + void register_deallocation(uintptr_t addr, int watcher_pos, pid_t pid) { + PidMap &pid_map = access_resize(_watcher_vector, watcher_pos); + PidStacks &pid_stacks = pid_map[pid]; + register_deallocation(addr, pid_stacks._unique_stacks, + pid_stacks._address_map); + } + + void clear_pid_for_watcher(int watcher_pos, pid_t pid) { + PidMap &pid_map = access_resize(_watcher_vector, watcher_pos); + pid_map.erase(pid); + } + + void clear_pid(pid_t pid) { + for (auto &pid_map : _watcher_vector) { + pid_map.erase(pid); + } + } + +private: + static void register_deallocation(uintptr_t address, PprofStacks &stacks, + AddressMap &address_map); + + static void register_allocation(const UnwindOutput &uo, uintptr_t address, + int64_t value, PprofStacks &stacks, + AddressMap &address_map); +}; + +} // namespace ddprof \ No newline at end of file diff --git a/include/mapinfo_lookup.hpp b/include/mapinfo_lookup.hpp index 233ee8108..6c9ebaccd 100644 --- a/include/mapinfo_lookup.hpp +++ b/include/mapinfo_lookup.hpp @@ -10,6 +10,7 @@ #include "dso.hpp" +#include #include #include @@ -20,7 +21,8 @@ namespace ddprof { class MapInfoLookup { public: MapInfoIdx_t get_or_insert(pid_t pid, MapInfoTable &mapinfo_table, - const Dso &dso); + const Dso &dso, + std::optional build_id); void erase(pid_t pid) { // table elements are not removed (TODO to gain memory usage) _mapinfo_pidmap.erase(pid); diff --git a/include/mapinfo_table.hpp b/include/mapinfo_table.hpp index d70d5114a..8f7072613 100644 --- a/include/mapinfo_table.hpp +++ b/include/mapinfo_table.hpp @@ -5,6 +5,7 @@ #pragma once +#include "build_id.hpp" #include "ddprof_defs.hpp" #include @@ -14,14 +15,16 @@ namespace ddprof { class MapInfo { public: MapInfo() : _low_addr(0), _high_addr(0), _offset(0), _sopath() {} + MapInfo(ElfAddress_t low_addr, ElfAddress_t high_addr, Offset_t offset, - std::string &&sopath) + std::string &&sopath, BuildIdStr build_id) : _low_addr(low_addr), _high_addr(high_addr), _offset(offset), - _sopath(sopath) {} + _sopath(sopath), _build_id(std::move(build_id)) {} ElfAddress_t _low_addr; ElfAddress_t _high_addr; Offset_t _offset; std::string _sopath; + BuildIdStr _build_id; }; typedef std::vector MapInfoTable; diff --git a/include/perf.hpp b/include/perf.hpp index 462c1d092..d18fb98b4 100644 --- a/include/perf.hpp +++ b/include/perf.hpp @@ -16,6 +16,8 @@ // defaut ring buffer size expressed as a power-of-two in number of pages #define DEFAULT_BUFF_SIZE_SHIFT 6 +// this does not count as pinned memory, use a larger size +#define MPSC_BUFF_SIZE_SHIFT 8 #define PSAMPLE_DEFAULT_WAKEUP_MS 100 // sample frequency check @@ -144,4 +146,10 @@ const char *perf_type_str(int type_id); namespace ddprof { std::vector all_perf_configs_from_watcher(const PerfWatcher *watcher, bool extras); -} + +uint64_t perf_value_from_sample(const PerfWatcher *watcher, + const perf_event_sample *sample); +} // namespace ddprof + +perf_event_attr perf_config_from_watcher(const PerfWatcher *watcher, + bool extras); diff --git a/include/perf_archmap.hpp b/include/perf_archmap.hpp index df4342529..b4521a3db 100644 --- a/include/perf_archmap.hpp +++ b/include/perf_archmap.hpp @@ -5,6 +5,8 @@ #pragma once +#include // for std::size() + // Architecture mapfile #ifdef __x86_64__ @@ -89,3 +91,52 @@ enum PERF_ARCHMAP_ARM { // cppcheck-suppress preprocessorErrorDirective # error Architecture not supported #endif + +// F[i] = y_i; where i is the DWARF regno and y_i is the Linux perf regno +constexpr unsigned int dwarf_to_perf_regno(unsigned int i) { + constexpr unsigned int lookup[] = { +#ifdef __x86_64__ + REGNAME(RAX), REGNAME(RDX), REGNAME(RCX), REGNAME(RBX), REGNAME(RSI), + REGNAME(RDI), REGNAME(RBP), REGNAME(SP), REGNAME(R8), REGNAME(R9), + REGNAME(R10), REGNAME(R11), REGNAME(R12), REGNAME(R13), REGNAME(R14), + REGNAME(R15), REGNAME(PC), +#elif __aarch64__ + REGNAME(X0), REGNAME(X1), REGNAME(X2), REGNAME(X3), REGNAME(X4), + REGNAME(X5), REGNAME(X6), REGNAME(X7), REGNAME(X8), REGNAME(X9), + REGNAME(X10), REGNAME(X11), REGNAME(X12), REGNAME(X13), REGNAME(X14), + REGNAME(X15), REGNAME(X16), REGNAME(X17), REGNAME(X18), REGNAME(X19), + REGNAME(X20), REGNAME(X21), REGNAME(X22), REGNAME(X23), REGNAME(X24), + REGNAME(X25), REGNAME(X26), REGNAME(X27), REGNAME(X28), REGNAME(FP), + REGNAME(LR), REGNAME(SP), +#else +# error Architecture not supported +#endif + }; + + if (i >= std::size(lookup)) { + return -1u; // implicit sentinel value + } + + return lookup[i]; +}; + +constexpr unsigned int param_to_perf_regno(unsigned int param_no) { +// Populate lookups for converting parameter number (1-indexed) to regno +#define R(x) REGNAME(x) +#ifdef __x86_64__ + constexpr int reg_lookup[] = {-1, R(RDI), R(RSI), R(RDX), + R(RCX), R(R8), R(R9)}; +#elif __aarch64__ + constexpr int reg_lookup[] = {-1, R(X0), R(X1), R(X2), + R(X3), R(X4), R(X5), R(X6)}; +#else +// cppcheck-suppress preprocessorErrorDirective +# error Architecture not supported +#endif +#undef R + + if (!param_no || param_no >= std::size(reg_lookup)) + return -1u; + + return reg_lookup[param_no]; +} diff --git a/include/perf_mainloop.hpp b/include/perf_mainloop.hpp index 4eb3385b2..77bd79221 100644 --- a/include/perf_mainloop.hpp +++ b/include/perf_mainloop.hpp @@ -8,6 +8,7 @@ #include "ddprof_context.hpp" #include "worker_attr.hpp" +namespace ddprof { /** * Continuously poll for new events and process them accordingly * @@ -23,3 +24,4 @@ DDRes main_loop(const WorkerAttr *, DDProfContext *); // Same as main loop without any forks void main_loop_lib(const WorkerAttr *attr, DDProfContext *ctx); +} // namespace ddprof diff --git a/include/perf_watcher.hpp b/include/perf_watcher.hpp index 40bb8caf7..0f9ae8f98 100644 --- a/include/perf_watcher.hpp +++ b/include/perf_watcher.hpp @@ -5,32 +5,36 @@ #pragma once +#include "event_config.hpp" + +#include + #include #include -typedef enum { - kPerfWatcher_Off = 0, // always off - kPerfWatcher_Required, // always on - kPerfWatcher_Try, // On if possible, default to OFF on failure -} PerfWatcherValue; +enum class PerfWatcherUseKernel { + kOff = 0, // always off + kRequired, // always on + kTry, // On if possible, default to OFF on failure +}; struct PerfWatcherOptions { - PerfWatcherValue is_kernel; + PerfWatcherUseKernel use_kernel; bool is_freq; uint8_t nb_frames_to_skip; // number of bottom frames to skip in stack trace // (useful for allocation profiling to remove // frames belonging to lib_ddprofiling.so) }; -typedef struct PerfWatcher { +struct PerfWatcher { int ddprof_event_type; // ddprof event type from DDPROF_EVENT_NAMES enum - const char *desc; + std::string desc; uint64_t sample_type; // perf sample type: specifies values included in sample int type; // perf event type (software / hardware / tracepoint / ... or custom // for non-perf events) unsigned long config; // specifies which perf event is requested union { - uint64_t sample_period; + int64_t sample_period; uint64_t sample_frequency; }; int sample_type_id; // index into the sample types defined in this header @@ -39,17 +43,22 @@ typedef struct PerfWatcher { // perf_event_open configs struct PerfWatcherOptions options; // tracepoint configuration - uint8_t reg; - uint8_t trace_off; - uint8_t trace_sz; - const char *tracepoint_name; - const char *tracepoint_group; + EventConfValueSource value_source; // how to normalize the sample value + uint8_t regno; + uint8_t raw_off; + uint8_t raw_sz; + double value_scale; + std::string tracepoint_event; + std::string tracepoint_group; + std::string tracepoint_label; // Other configs bool suppress_pid; bool suppress_tid; int pprof_sample_idx; // index into the SampleType in the pprof int pprof_count_sample_idx; // index into the pprof for the count -} PerfWatcher; + bool instrument_self; // do my own perfopen, etc + EventConfMode output_mode; // defines how sample data is aggregated +}; // The Datadog backend only understands pre-configured event types. Those // types are defined here, and then referenced in the watcher @@ -72,19 +81,21 @@ typedef enum DDPROF_SAMPLE_TYPES { // Define our own event type on top of perf event types enum DDProfTypeId { kDDPROF_TYPE_CUSTOM = PERF_TYPE_MAX + 100 }; -enum DDProfCustomCountId { kDDPROF_COUNT_ALLOCATIONS = 0 }; +enum DDProfCustomCountId { + kDDPROF_COUNT_ALLOCATIONS = 0, +}; // Kernel events are necessary to get a full accounting of CPU // This depend on the state of configuration (capabilities / // perf_event_paranoid) Attempt to activate them and remove them if you fail #define IS_FREQ_TRY_KERNEL \ - { .is_kernel = kPerfWatcher_Try, .is_freq = true } + { .use_kernel = PerfWatcherUseKernel::kTry, .is_freq = true } #define IS_FREQ \ { .is_freq = true } -#define IS_KERNEL \ - { .is_kernel = kPerfWatcher_Required } +#define USE_KERNEL \ + { .use_kernel = PerfWatcherUseKernel::kRequired } #ifdef DDPROF_OPTIM # define NB_FRAMES_TO_SKIP 4 @@ -101,29 +112,30 @@ enum DDProfCustomCountId { kDDPROF_COUNT_ALLOCATIONS = 0 }; // events are marked as tracepoint unless they represent a well-known profiling // type! // clang-format off -// short desc perf event type perf event count type period/freq profile sample type addtl. configs +// short desc perf event type perf event count type period/freq profile sample type addtl. configs // cppcheck-suppress preprocessorErrorDirective #define EVENT_CONFIG_TABLE(X) \ - X(hCPU, "CPU Cycles", PERF_TYPE_HARDWARE, PERF_COUNT_HW_CPU_CYCLES, 99, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(hREF, "Ref. CPU Cycles", PERF_TYPE_HARDWARE, PERF_COUNT_HW_REF_CPU_CYCLES, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(hINST, "Instr. Count", PERF_TYPE_HARDWARE, PERF_COUNT_HW_INSTRUCTIONS, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(hCREF, "Cache Ref.", PERF_TYPE_HARDWARE, PERF_COUNT_HW_CACHE_REFERENCES, 999, DDPROF_PWT_TRACEPOINT, {}) \ - X(hCMISS, "Cache Miss", PERF_TYPE_HARDWARE, PERF_COUNT_HW_CACHE_MISSES, 999, DDPROF_PWT_TRACEPOINT, {}) \ - X(hBRANCH, "Branche Instr.", PERF_TYPE_HARDWARE, PERF_COUNT_HW_BRANCH_INSTRUCTIONS, 999, DDPROF_PWT_TRACEPOINT, {}) \ - X(hBMISS, "Branch Miss", PERF_TYPE_HARDWARE, PERF_COUNT_HW_BRANCH_MISSES, 999, DDPROF_PWT_TRACEPOINT, {}) \ - X(hBUS, "Bus Cycles", PERF_TYPE_HARDWARE, PERF_COUNT_HW_BUS_CYCLES, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(hBSTF, "Bus Stalls(F)", PERF_TYPE_HARDWARE, PERF_COUNT_HW_STALLED_CYCLES_FRONTEND, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(hBSTB, "Bus Stalls(B)", PERF_TYPE_HARDWARE, PERF_COUNT_HW_STALLED_CYCLES_BACKEND, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(sCPU, "CPU Time", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_TASK_CLOCK, 99, DDPROF_PWT_CPU_NANOS, IS_FREQ_TRY_KERNEL) \ - X(sPF, "Page Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_PAGE_FAULTS, 1, DDPROF_PWT_TRACEPOINT, IS_KERNEL) \ - X(sCS, "Con. Switch", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_CONTEXT_SWITCHES, 1, DDPROF_PWT_TRACEPOINT, IS_KERNEL) \ - X(sMig, "CPU Migrations", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_CPU_MIGRATIONS, 99, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(sPFMAJ, "Minor Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_PAGE_FAULTS_MIN, 99, DDPROF_PWT_TRACEPOINT, IS_KERNEL) \ - X(sPFMIN, "Major Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_PAGE_FAULTS_MAJ, 99, DDPROF_PWT_TRACEPOINT, IS_KERNEL) \ - X(sALGN, "Align. Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_ALIGNMENT_FAULTS, 99, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(sEMU, "Emu. Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_EMULATION_FAULTS, 99, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ - X(sDUM, "Dummy", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_DUMMY, 1, DDPROF_PWT_NOCOUNT, {}) \ - X(sALLOC, "Allocations", kDDPROF_TYPE_CUSTOM, kDDPROF_COUNT_ALLOCATIONS, 524288, DDPROF_PWT_ALLOC_SPACE, SKIP_FRAMES) + X(hCPU, "CPU Cycles", PERF_TYPE_HARDWARE, PERF_COUNT_HW_CPU_CYCLES, 99, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(hREF, "Ref. CPU Cycles", PERF_TYPE_HARDWARE, PERF_COUNT_HW_REF_CPU_CYCLES, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(hINST, "Instr. Count", PERF_TYPE_HARDWARE, PERF_COUNT_HW_INSTRUCTIONS, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(hCREF, "Cache Ref.", PERF_TYPE_HARDWARE, PERF_COUNT_HW_CACHE_REFERENCES, 999, DDPROF_PWT_TRACEPOINT, {}) \ + X(hCMISS, "Cache Miss", PERF_TYPE_HARDWARE, PERF_COUNT_HW_CACHE_MISSES, 999, DDPROF_PWT_TRACEPOINT, {}) \ + X(hBRANCH, "Branche Instr.", PERF_TYPE_HARDWARE, PERF_COUNT_HW_BRANCH_INSTRUCTIONS, 999, DDPROF_PWT_TRACEPOINT, {}) \ + X(hBMISS, "Branch Miss", PERF_TYPE_HARDWARE, PERF_COUNT_HW_BRANCH_MISSES, 999, DDPROF_PWT_TRACEPOINT, {}) \ + X(hBUS, "Bus Cycles", PERF_TYPE_HARDWARE, PERF_COUNT_HW_BUS_CYCLES, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(hBSTF, "Bus Stalls(F)", PERF_TYPE_HARDWARE, PERF_COUNT_HW_STALLED_CYCLES_FRONTEND, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(hBSTB, "Bus Stalls(B)", PERF_TYPE_HARDWARE, PERF_COUNT_HW_STALLED_CYCLES_BACKEND, 1000, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(sCPU, "CPU Time", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_TASK_CLOCK, 99, DDPROF_PWT_CPU_NANOS, IS_FREQ_TRY_KERNEL) \ + X(sPF, "Page Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_PAGE_FAULTS, 1, DDPROF_PWT_TRACEPOINT, USE_KERNEL) \ + X(sCS, "Con. Switch", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_CONTEXT_SWITCHES, 1, DDPROF_PWT_TRACEPOINT, USE_KERNEL) \ + X(sMig, "CPU Migrations", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_CPU_MIGRATIONS, 99, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(sPFMAJ, "Major Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_PAGE_FAULTS_MAJ, 99, DDPROF_PWT_TRACEPOINT, USE_KERNEL) \ + X(sPFMIN, "Minor Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_PAGE_FAULTS_MIN, 99, DDPROF_PWT_TRACEPOINT, USE_KERNEL) \ + X(sALGN, "Align. Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_ALIGNMENT_FAULTS, 99, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(sEMU, "Emu. Faults", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_EMULATION_FAULTS, 99, DDPROF_PWT_TRACEPOINT, IS_FREQ) \ + X(sDUM, "Dummy", PERF_TYPE_SOFTWARE, PERF_COUNT_SW_DUMMY, 1, DDPROF_PWT_NOCOUNT, {}) \ + X(sALLOC, "Allocations", kDDPROF_TYPE_CUSTOM, kDDPROF_COUNT_ALLOCATIONS, 524288, DDPROF_PWT_ALLOC_SPACE, SKIP_FRAMES) + // clang-format on #define X_ENUM(a, b, c, d, e, f, g) DDPROF_PWE_##a, @@ -136,7 +148,7 @@ typedef enum DDPROF_EVENT_NAMES { // Helper functions for event-type watcher lookups const PerfWatcher *ewatcher_from_idx(int idx); const PerfWatcher *ewatcher_from_str(const char *str); -const PerfWatcher *twatcher_default(); +const PerfWatcher *tracepoint_default_watcher(); bool watcher_has_countable_sample_type(const PerfWatcher *watcher); bool watcher_has_tracepoint(const PerfWatcher *watcher); int watcher_to_count_sample_type_id(const PerfWatcher *watcher); @@ -149,3 +161,4 @@ int sample_type_id_to_count_sample_type_id(int idx); // Helper functions, mostly for tests uint64_t perf_event_default_sample_type(); +void log_watcher(const PerfWatcher *w, int idx); \ No newline at end of file diff --git a/include/pevent.hpp b/include/pevent.hpp index d2016c8b4..f4c17efcd 100644 --- a/include/pevent.hpp +++ b/include/pevent.hpp @@ -24,6 +24,8 @@ typedef struct PEvent { bool custom_event; // true if custom event (not handled by perf, eg. memory // allocations) RingBuffer rb; // metadata and buffers for processing perf ringbuffer + int child_fds[MAX_NB_PERF_EVENT_OPEN]; + int current_child_fd; } PEvent; typedef struct PEventHdr { diff --git a/include/pprof/ddprof_pprof.hpp b/include/pprof/ddprof_pprof.hpp index e902d04a0..2e4d555f7 100644 --- a/include/pprof/ddprof_pprof.hpp +++ b/include/pprof/ddprof_pprof.hpp @@ -12,13 +12,13 @@ #include "tags.hpp" #include "unwind_output.hpp" -struct ddog_Profile; +struct ddog_prof_Profile; struct SymbolHdr; struct DDProfPProf { DDProfPProf() noexcept {} /* single profile gathering several value types */ - ddog_Profile *_profile = nullptr; + ddog_prof_Profile *_profile = nullptr; unsigned _nb_values = 0; ddprof::Tags _tags; }; @@ -33,7 +33,7 @@ DDRes pprof_create_profile(DDProfPProf *pprof, DDProfContext *ctx); * @param pprof */ DDRes pprof_aggregate(const UnwindOutput *uw_output, - const SymbolHdr *symbol_hdr, uint64_t value, + const SymbolHdr &symbol_hdr, uint64_t value, uint64_t count, const PerfWatcher *watcher, DDProfPProf *pprof); diff --git a/include/presets.hpp b/include/presets.hpp new file mode 100644 index 000000000..1a685fb77 --- /dev/null +++ b/include/presets.hpp @@ -0,0 +1,23 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +#include "ddprof_context.hpp" +#include "ddres_def.hpp" +#include + +namespace ddprof { + +struct Preset { + static constexpr size_t k_max_events = 10; + const char *name; + const char *events[k_max_events]; +}; + +DDRes add_preset(DDProfContext *ctx, const char *preset, + bool pid_or_global_mode); + +} // namespace ddprof diff --git a/include/ringbuffer_utils.hpp b/include/ringbuffer_utils.hpp index 94ede9449..3a4620b29 100644 --- a/include/ringbuffer_utils.hpp +++ b/include/ringbuffer_utils.hpp @@ -220,16 +220,15 @@ class MPSCRingBufferWriter { // Atomic operation required to synchronize with reader load_acquire __atomic_store_n(_rb.writer_pos, new_writer_pos, __ATOMIC_RELEASE); - return {reinterpret_cast(hdr) + sizeof(MPSCRingBufferHeader), - n}; + return {reinterpret_cast(hdr + 1), n}; } // Return true if notification to consumer is necesssary // Notification is necessary only if consumer has caught up with producer // (meaning tail afer commit is at or after head before commit) bool commit(Buffer buf, bool discard = false) { - MPSCRingBufferHeader *hdr = reinterpret_cast( - buf.data() - sizeof(MPSCRingBufferHeader)); + MPSCRingBufferHeader *hdr = + reinterpret_cast(buf.data()) - 1; // Clear busy bit uint64_t new_size = hdr->size ^ MPSCRingBufferHeader::k_busy_bit; @@ -294,7 +293,7 @@ class MPSCRingBufferReader { return {}; } - return {start + sizeof(MPSCRingBufferHeader), sz}; + return {reinterpret_cast(hdr + 1), sz}; } void advance() { diff --git a/include/runtime_symbol_lookup.hpp b/include/runtime_symbol_lookup.hpp index 1698ecae4..2e197f990 100644 --- a/include/runtime_symbol_lookup.hpp +++ b/include/runtime_symbol_lookup.hpp @@ -9,25 +9,134 @@ #include "symbol_map.hpp" #include "symbol_table.hpp" +#include "ddres_def.hpp" +#include #include namespace ddprof { class RuntimeSymbolLookup { public: + struct Stats { + uint32_t _nb_jit_reads = {}; + uint32_t _nb_failed_lookups = {}; + uint32_t _symbol_count = {}; + }; + explicit RuntimeSymbolLookup(std::string_view path_to_proc) - : _path_to_proc(path_to_proc) {} + : _path_to_proc(path_to_proc), _stats{}, _cycle_counter(1) {} + + SymbolIdx_t get_or_insert_jitdump(pid_t pid, ProcessAddress_t pc, + SymbolTable &symbol_table, + std::string_view jitdump_path); + SymbolIdx_t get_or_insert(pid_t pid, ProcessAddress_t pc, SymbolTable &symbol_table); + void erase(pid_t pid) { _pid_map.erase(pid); } + + void cycle() { + ++_cycle_counter; + _stats = {}; + } + + Stats get_stats() const { + Stats ret = _stats; + ret._symbol_count = 0; + for (const auto &map : _pid_map) { + ret._symbol_count += map.second._map.size(); + } + return ret; + } + private: - using PidUnorderedMap = std::unordered_map; - void fill_perfmap_from_file(int pid, SymbolMap &symbol_map, - SymbolTable &symbol_table); + struct hash_string { + // allow comparison between strings and string_views. + // This saves on some string creations + // as suggested by @sjanel + using is_transparent = void; + std::size_t operator()(const std::string &v) const { + return std::hash{}(v); + } + std::size_t operator()(const char *v) const { + return std::hash{}(v); + } + + std::size_t operator()(const std::string_view &v) const { + return std::hash{}(v); + } + }; + + using FailedCycle = + std::unordered_map>; + struct SymbolInfo { + SymbolMap _map; + FailedCycle _failed_cycle; + }; + using PidUnorderedMap = std::unordered_map; + + // Notes on JITDump strategy + // + // 1) Retrieve JITDump path + // Dso type will tell us that there is a JIT file. + // LLVM sources explain the logic about where we can find it. though we don't + // need that. The file is mmaped so we can get the path from there. + // + // We store in the DSOHdr the fact that we have a JITDump file for the pid. + // + // 2) Retrieve symbols + // Whenever we will come across the symbolisation of an unknown region, + // we use the runtime_symbol_lookup to check for existing symbols. + // If none are found, we parse the JITDump file if available. + // If not, we look for a perf-map file. + // Symbols are cached with the process's address. + // + DDRes fill_from_jitdump(std::string_view jitdump_path, pid_t pid, + SymbolMap &symbol_map, SymbolTable &symbol_info); + + DDRes fill_from_perfmap(int pid, SymbolMap &symbol_map, + SymbolTable &symbol_table); + FILE *perfmaps_open(int pid, const char *path_to_perfmap); + bool has_lookup_failure(const SymbolInfo &symbol_info, + std::string_view path) const { + const auto it = symbol_info._failed_cycle.find(path); + if (it != symbol_info._failed_cycle.end()) { + // failure during this cycle + return it->second == _cycle_counter; + } + return false; + } + + void flag_lookup_failure(SymbolInfo &symbol_info, std::string_view path) { + const auto it = symbol_info._failed_cycle.find(path); + // Written this way, we save up on creating strings + // only the slow path will create a string for the path + if (it != symbol_info._failed_cycle.end()) { + it->second = _cycle_counter; + } else { + symbol_info._failed_cycle[std::string(path)] = _cycle_counter; + } + ++_stats._nb_failed_lookups; + } + + bool should_skip_symbol(std::string_view symbol) const; + + bool insert_or_replace(std::string_view symbol, ProcessAddress_t address, + Offset_t code_size, SymbolMap &symbol_map, + SymbolTable &symbol_table); + + static constexpr std::array + _ignored_symbols_start = {{ + // dotnet symbols we skip all start by stub< + "stub<", + }}; + PidUnorderedMap _pid_map; std::string _path_to_proc; + Stats _stats; + uint32_t _cycle_counter; }; } // namespace ddprof diff --git a/include/stack_handler.hpp b/include/stack_handler.hpp deleted file mode 100644 index fe8c793fb..000000000 --- a/include/stack_handler.hpp +++ /dev/null @@ -1,18 +0,0 @@ - -// Unless explicitly stated otherwise all files in this repository are licensed -// under the Apache License Version 2.0. This product includes software -// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present -// Datadog, Inc. - -#pragma once - -#include "unwind_output.hpp" - -typedef struct DDProfContext DDProfContext; - -// Callback on every stack -typedef struct StackHandler { - bool (*apply)(const UnwindOutput *unwind_output, const DDProfContext *ctx, - void *callback_ctx, int perf_opt_idx); - void *callback_ctx; // user state to be used in callback -} StackHandler; diff --git a/include/symbol_hdr.hpp b/include/symbol_hdr.hpp index 574ca9b28..a83bed58a 100644 --- a/include/symbol_hdr.hpp +++ b/include/symbol_hdr.hpp @@ -14,6 +14,7 @@ #include "logger.hpp" #include "mapinfo_lookup.hpp" #include "runtime_symbol_lookup.hpp" +#include "austin_symbol_lookup.hpp" #include @@ -24,7 +25,17 @@ struct SymbolHdr { _dwfl_symbol_lookup._stats.display(_dwfl_symbol_lookup.size()); _dso_symbol_lookup.stats_display(); } - void cycle() { _dwfl_symbol_lookup._stats.reset(); } + void cycle() { + _dwfl_symbol_lookup._stats.reset(); + _runtime_symbol_lookup.cycle(); + } + + void clear(pid_t pid) { + _base_frame_symbol_lookup.erase(pid); + // mappings are only relevant in the context of a given pid. + _mapinfo_lookup.erase(pid); + _runtime_symbol_lookup.erase(pid); + } // Cache symbol associations ddprof::BaseFrameSymbolLookup _base_frame_symbol_lookup; @@ -32,6 +43,7 @@ struct SymbolHdr { ddprof::DsoSymbolLookup _dso_symbol_lookup; ddprof::DwflSymbolLookup _dwfl_symbol_lookup; ddprof::RuntimeSymbolLookup _runtime_symbol_lookup; + ddprof::AustinSymbolLookup _austin_symbol_lookup; // Symbol table (contains the references to strings) ddprof::SymbolTable _symbol_table; @@ -41,6 +53,4 @@ struct SymbolHdr { // The mapping table ddprof::MapInfoTable _mapinfo_table; - - struct ddprof::DwflSymbolLookupStats _stats; }; diff --git a/include/symbol_map.hpp b/include/symbol_map.hpp index b634e1b20..edd9a3470 100644 --- a/include/symbol_map.hpp +++ b/include/symbol_map.hpp @@ -48,6 +48,7 @@ class SymbolMap : private std::map { using Map::emplace_hint; using Map::empty; using Map::end; + using Map::erase; using Map::size; static bool is_within(const Offset_t &norm_pc, const ValueType &kv); diff --git a/include/tracepoint_config.hpp b/include/tracepoint_config.hpp new file mode 100644 index 000000000..87fbaa53a --- /dev/null +++ b/include/tracepoint_config.hpp @@ -0,0 +1,15 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#pragma once + +#include +#include + +namespace ddprof { +// Returns the ID of the given Linux tracepoint, or -1 if an error occurs. +int64_t tracepoint_get_id(std::string_view global_name, + std::string_view tracepoint_name); +} // namespace ddprof diff --git a/include/unwind_output.hpp b/include/unwind_output.hpp index 72e8e7bb6..1076e48d6 100644 --- a/include/unwind_output.hpp +++ b/include/unwind_output.hpp @@ -8,22 +8,27 @@ #pragma once #include +#include #include "ddprof_defs.hpp" -#include "string_view.hpp" typedef struct FunLoc { uint64_t ip; // Relative to file, not VMA SymbolIdx_t _symbol_idx; MapInfoIdx_t _map_info_idx; + + auto operator<=>(const FunLoc &) const = default; } FunLoc; -typedef struct UnwindOutput { - FunLoc locs[DD_MAX_STACK_DEPTH]; - uint64_t nb_locs; +struct UnwindOutput { + void clear() { + locs.clear(); + is_incomplete = true; + } + std::vector locs; int pid; int tid; bool is_incomplete; -} UnwindOutput; -void uw_output_clear(UnwindOutput *); + auto operator<=>(const UnwindOutput &) const = default; +}; diff --git a/include/unwind_output_hash.hpp b/include/unwind_output_hash.hpp new file mode 100644 index 000000000..604dbabb5 --- /dev/null +++ b/include/unwind_output_hash.hpp @@ -0,0 +1,29 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include "unwind_output.hpp" + +namespace ddprof { + +template inline void hash_combine(std::size_t &seed, const T &v) { + std::hash hasher; + seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2); +} + +struct UnwindOutputHash { + std::size_t operator()(const UnwindOutput &uo) const noexcept { + std::size_t seed = 0; + hash_combine(seed, uo.pid); + hash_combine(seed, uo.tid); + for (const auto &fl : uo.locs) { + hash_combine(seed, fl.ip); + hash_combine(seed, fl._symbol_idx); + hash_combine(seed, fl._map_info_idx); + } + return seed; + } +}; + +} // namespace ddprof \ No newline at end of file diff --git a/include/unwind_state.hpp b/include/unwind_state.hpp index 58b884be1..3be06eebe 100644 --- a/include/unwind_state.hpp +++ b/include/unwind_state.hpp @@ -15,6 +15,8 @@ #include "symbol_hdr.hpp" #include "unwind_output.hpp" +#include "libaustin.h" + #include typedef struct Dwfl Dwfl; @@ -37,9 +39,10 @@ struct UnwindRegisters { /// given through callbacks struct UnwindState { explicit UnwindState(int dd_profiling_fd = -1) - : _dwfl_wrapper(nullptr), dso_hdr(dd_profiling_fd), pid(-1), - stack(nullptr), stack_sz(0), current_ip(0) { - uw_output_clear(&output); + : _dwfl_wrapper(nullptr), dso_hdr("", dd_profiling_fd), pid(-1), + stack(nullptr), stack_sz(0), current_ip(0), austin_handle(nullptr) { + output.clear(); + output.locs.reserve(DD_MAX_STACK_DEPTH); } ddprof::DwflHdr dwfl_hdr; @@ -56,6 +59,8 @@ struct UnwindState { ProcessAddress_t current_ip; UnwindOutput output; + + austin_handle_t austin_handle; }; static inline bool unwind_registers_equal(const UnwindRegisters *lhs, diff --git a/lib/libaustin.so b/lib/libaustin.so new file mode 100755 index 000000000..68a6babe0 Binary files /dev/null and b/lib/libaustin.so differ diff --git a/setup_env.sh b/setup_env.sh index cccaaf7c1..069189d51 100755 --- a/setup_env.sh +++ b/setup_env.sh @@ -1,6 +1,8 @@ # Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0. # This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc. +echoerr() { echo "$@" 1>&2; } + # Run source ./setup_env.sh export PATH=$PATH:${PWD}/tools:${PWD}/bench/runners @@ -16,6 +18,7 @@ for cc_ver in gcc-{12..9}; do break fi done + for cxx_ver in g++-{12..9}; do if command -v "$cxx_ver" > /dev/null; then DDPROF_CXX_DEFAULT="$cxx_ver" @@ -23,70 +26,85 @@ for cxx_ver in g++-{12..9}; do fi done + SCRIPTDIR="$(cd -- $( dirname -- "${BASH_SOURCE[0]}" ) && pwd)" # no "$0" when sourcing DDPROF_INSTALL_PREFIX="../deliverables" DDPROF_BUILD_BENCH="ON" -NATIVE_LIB="ON" -COMPILER_SETTING="-DCMAKE_CXX_COMPILER=${CXX:-"${DDPROF_CXX_DEFAULT}"} -DCMAKE_C_COMPILER=${CC:-"${DDPROF_CC_DEFAULT}"}" +COMPILER_SETTING="-DCMAKE_CXX_COMPILER=\"${CXX:-${DDPROF_CXX_DEFAULT}}\" -DCMAKE_C_COMPILER=\"${CC:-${DDPROF_CC_DEFAULT}}\"" + +echoerr "Compiler can be overriden with CXX and CC variables when sourcing this script. Current value:" +echoerr "${COMPILER_SETTING}" + # Avoid having the vendors compiled in the same directory -EXTENSION_CC=${CC:-"gcc"} +DDPROF_EXTENSION_CC=${CC:-"gcc"} # strip version number from compiler -EXTENSION_CC=${EXTENSION_CC%-*} +DDPROF_EXTENSION_CC=${DDPROF_EXTENSION_CC%-*} LIBC_HAS_MUSL=$(ldd --version 2>&1 | grep musl || true) if [ ! -z "${LIBC_HAS_MUSL}" ]; then - LIBC_VERSION=$(${SCRIPTDIR}/tools/get_libc_version.sh musl) - EXTENSION_OS="alpine-linux-${LIBC_VERSION}" + DDPROF_LIBC_VERSION=$(${SCRIPTDIR}/tools/get_libc_version.sh musl) + DDPROF_EXTENSION_OS="alpine-linux-${DDPROF_LIBC_VERSION}" else - LIBC_VERSION=$(${SCRIPTDIR}/tools/get_libc_version.sh gnu) - EXTENSION_OS="unknown-linux-${LIBC_VERSION}" + DDPROF_LIBC_VERSION=$(${SCRIPTDIR}/tools/get_libc_version.sh gnu) + DDPROF_EXTENSION_OS="unknown-linux-${DDPROF_LIBC_VERSION}" fi -COMMON_OPT="${COMPILER_SETTING} -DACCURACY_TEST=ON -DCMAKE_INSTALL_PREFIX=${DDPROF_INSTALL_PREFIX} -DBUILD_BENCHMARKS=${DDPROF_BUILD_BENCH} -DBUILD_NATIVE_LIB=${NATIVE_LIB}" +DEFAULT_ALLOCATOR_OPT="-DDDPROF_ALLOCATOR=JEMALLOC" + +GetDefaultAllocatorOptions() { + echo ${DEFAULT_ALLOCATOR_OPT} +} GetDirectoryExtention() { - echo "_${EXTENSION_CC,,}_${EXTENSION_OS,,}_${1}" + echo "_${DDPROF_EXTENSION_CC}_${DDPROF_EXTENSION_OS}_${1}" } +COMMON_OPT="${COMPILER_SETTING} ${DEFAULT_ALLOCATOR_OPT} -DCMAKE_INSTALL_PREFIX=${DDPROF_INSTALL_PREFIX} -DBUILD_BENCHMARKS=${DDPROF_BUILD_BENCH}" + +# echoerr "Cmake settings--\n ${COMMON_OPT}" + CmakeWithOptions() { # Build mode # Extra Parameters to cmake - BUILD_TYPE=${1} + local BUILD_TYPE=${1} shift - VENDOR_EXTENSION=$(GetDirectoryExtention ${BUILD_TYPE}) + local VENDOR_EXTENSION=$(GetDirectoryExtention ${BUILD_TYPE}) # shellcheck disable=SC2086 - cmake ${COMMON_OPT} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DVENDOR_EXTENSION=${VENDOR_EXTENSION} $@ + cmake_cmd="cmake ${COMMON_OPT} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DVENDOR_EXTENSION=${VENDOR_EXTENSION} $@" + echoerr "-------------- cmake command -------------- " + echoerr ${cmake_cmd} + eval ${cmake_cmd} } RelCMake() { - BUILD_TYPE=Release + local BUILD_TYPE=Release CmakeWithOptions ${BUILD_TYPE} $@ } DebCMake() { - BUILD_TYPE=Debug + local BUILD_TYPE=Debug CmakeWithOptions ${BUILD_TYPE} $@ } SanCMake() { - BUILD_TYPE=SanitizedDebug + local BUILD_TYPE=SanitizedDebug CmakeWithOptions ${BUILD_TYPE} $@ } TSanCMake() { - BUILD_TYPE=ThreadSanitizedDebug + local BUILD_TYPE=ThreadSanitizedDebug CmakeWithOptions ${BUILD_TYPE} $@ } CovCMake() { - BUILD_TYPE=Coverage + local BUILD_TYPE=Coverage CmakeWithOptions ${BUILD_TYPE} $@ } ## Build a directory with a naming that reflects the OS / compiler we are using ## Example : mkBuildDir Rel --> build_UB18_clang_Rel MkBuildDir() { - BUILD_DIR_EXTENSION=$(GetDirectoryExtention ${1}) + local BUILD_DIR_EXTENSION=$(GetDirectoryExtention ${1}) echo ${BUILD_DIR_EXTENSION} mkdir -p build${BUILD_DIR_EXTENSION} && cd "$_" || exit 1 } diff --git a/src/austin_symbol_lookup.cc b/src/austin_symbol_lookup.cc new file mode 100644 index 000000000..091725bed --- /dev/null +++ b/src/austin_symbol_lookup.cc @@ -0,0 +1,35 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include +#include +#include +#include +#include + +#include "austin_symbol_lookup.hpp" + + +namespace ddprof { + + +SymbolIdx_t AustinSymbolLookup::get_or_insert(austin_frame_t * frame, SymbolTable &symbol_table) { + auto iter = _frame_key_map.find(frame->key); + + if (iter != _frame_key_map.end()) { + return iter->second; + } + + SymbolIdx_t index = symbol_table.size(); + std::string symname = std::string(frame->scope); + + symbol_table.push_back(Symbol(symname, symname, frame->line, std::string(frame->filename))); + + _frame_key_map.emplace(frame->key, index); + + return index; +} + +} // namespace ddprof diff --git a/src/build_id.cc b/src/build_id.cc new file mode 100644 index 000000000..168c19af8 --- /dev/null +++ b/src/build_id.cc @@ -0,0 +1,25 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include "build_id.hpp" + +#include + +namespace ddprof { + +BuildIdStr format_build_id(BuildIdSpan build_id_span) { + std::string build_id_str; + // We encode every char on 2 hexa string characters + build_id_str.resize(build_id_span.size() * 2 + 1); + for (unsigned i = 0; i < build_id_span.size(); ++i) { + snprintf(&build_id_str[static_cast(2 * i)], 3, "%02x", + static_cast(build_id_span[i])); + } + // remove trailing '\0' + build_id_str.resize(2 * build_id_span.size()); + return build_id_str; +} + +} // namespace ddprof diff --git a/src/ddprof.cc b/src/ddprof.cc index 6be0e1579..074186ad5 100644 --- a/src/ddprof.cc +++ b/src/ddprof.cc @@ -9,9 +9,7 @@ #include #include -#include #include -#include #include #include "cap_display.hpp" @@ -126,7 +124,6 @@ DDRes ddprof_teardown(DDProfContext *ctx) { return ddres_init(); } -#ifndef DDPROF_NATIVE_LIB /************************* Instrumentation Helpers **************************/ DDRes ddprof_start_profiler(DDProfContext *ctx) { const WorkerAttr perf_funs = { @@ -136,32 +133,5 @@ DDRes ddprof_start_profiler(DDProfContext *ctx) { // Enter the main loop -- this will not return unless there is an error. LG_NFO("Entering main loop"); - return main_loop(&perf_funs, ctx); -} -#endif - -void ddprof_attach_handler(DDProfContext *ctx, - const StackHandler *stack_handler) { - const WorkerAttr perf_funs = { - .init_fun = worker_library_init, - .finish_fun = worker_library_free, - }; - - if (IsDDResNotOK(ddprof_setup(ctx))) { - LG_ERR("Error setting up ddprof"); - return; - } - // User defined handler - ctx->stack_handler = stack_handler; - // Enter the main loop -- returns after a number of cycles. - LG_NFO("Initiating Profiling"); - main_loop_lib(&perf_funs, ctx); - if (errno) - LG_WRN("Profiling context no longer valid (%s)", strerror(errno)); - else - LG_WRN("Profiling context no longer valid"); - - if (IsDDResNotOK(ddprof_teardown(ctx))) - LG_ERR("Error when calling ddprof_teardown."); - return; + return ddprof::main_loop(&perf_funs, ctx); } diff --git a/src/ddprof_cmdline.cc b/src/ddprof_cmdline.cc index e41363b75..08662cc73 100644 --- a/src/ddprof_cmdline.cc +++ b/src/ddprof_cmdline.cc @@ -7,17 +7,11 @@ #include #include -#include -#include -#include -#include -#include -#include -#include - -#include "ddres_helpers.hpp" -#include "perf_archmap.hpp" + +#include "event_config.hpp" +#include "logger.hpp" #include "perf_watcher.hpp" +#include "tracepoint_config.hpp" int arg_which(const char *str, char const *const *set, int sz_set) { if (!str || !set) @@ -47,207 +41,100 @@ bool arg_yesno(const char *str, int mode) { } // If this returns false, then the passed watcher should be regarded as invalid -bool watcher_from_event(const char *str, PerfWatcher *watcher) { - const PerfWatcher *tmp_watcher; - if (!(tmp_watcher = ewatcher_from_str(str))) +constexpr int64_t kIgnoredWatcherID = -1l; +bool watcher_from_str(const char *str, PerfWatcher *watcher) { + EventConf *conf = EventConf_parse(str); + if (!conf) { return false; - - // Now we have to process options out of the string - char *str_chk; // for checking the result of parsing - const char *str_tmp = std::strchr(str, ','); // points to ',' or is nullptr - uint64_t value_tmp = tmp_watcher->sample_period; // get default val - - if (str_tmp) { - ++str_tmp; // nav to after ',' - value_tmp = strtoll(str_tmp, &str_chk, 10); - if (*str_chk) - return false; // If this is malformed, the whole thing is malformed? - } - - // If we're here, then we've processed the event specification correctly, so - // we copy the tmp_watcher into the storage given by the user and update the - // mutable field - *watcher = *tmp_watcher; - watcher->sample_period = value_tmp; - - // If an event doesn't have a well-defined profile type, then it gets - // registered as a tracepoint profile. Make sure it has a valid name for the - // label - static const char event_groupname[] = "custom_events"; - if (watcher->sample_type_id == DDPROF_PWT_TRACEPOINT) { - watcher->tracepoint_name = watcher->desc; - watcher->tracepoint_group = event_groupname; - } - return true; -} - -#define R(x) REGNAME(x) -#ifdef __x86_64__ -int arg2reg[] = {-1, R(RDI), R(RSI), R(RDX), R(RCX), R(R8), R(R9)}; -#elif __aarch64__ -int arg2reg[] = {-1, R(X0), R(X1), R(X2), R(X3), R(X4), R(X5), R(X6)}; -#else -# error Your architecture is not supported -#endif -#undef R -uint8_t get_register(const char *str) { - uint8_t reg = 0; - char *str_copy = (char *)str; - long reg_buf = strtol(str, &str_copy, 10); - if (!*str_copy) { - reg = reg_buf; - } else { - reg = 0; - LG_NTC("Could not parse register %s", str); } - // If we're here, then we have a register. - return arg2reg[reg]; -} - -bool get_trace_format(const char *str, uint8_t *trace_off, uint8_t *trace_sz) { - if (!str) - return false; - - const char *period = std::strchr(str, '.'); - if (!period) - return false; - - *trace_off = strtol(str, nullptr, 10); - *trace_sz = strtol(period + 1, nullptr, 10); - - // Error if the size is zero, otherwise fine probably - return !trace_sz; -} - -// If this returns false, then the passed watcher should be regarded as invalid -bool watcher_from_tracepoint(const char *_str, PerfWatcher *watcher) { - // minimum form; provides counts, samples every hit - // -t groupname:tracename - // Register-qualified form - // -t groupname:tracename%REG - // -t groupname:tracename$offset.size - // Sample-qualified form, sets a period value - // -t groupname:tracename@period - // full - // -t groupename:tracename%REG@period - // groupname, tracename, REG - strings - // REG - can be a number 1-6 - // period is a number - char *str = strdup(_str); - size_t sz_str = strlen(str); - const char *groupname; - const char *tracename; - uint8_t reg = 0; - uint64_t period = 1; - bool is_raw = false; - uint8_t trace_off = 0; - uint8_t trace_sz = 0; - - // Check format - if (!sz_str) { - free(str); + // If there's no eventname, then this configuration is invalid + if (conf->eventname.empty()) { return false; } - char *colon = strchr(str, ':'); - char *perc = strchr(str, '%'); - char *amp = strchr(str, '@'); - char *dollar = strchr(str, '$'); - if (!colon || (dollar && perc)) { - free(str); + // The watcher is templated; either from an existing Profiling template, + // keyed on the eventname, or it uses the generic template for Tracepoints + const PerfWatcher *tmp_watcher = ewatcher_from_str(conf->eventname.c_str()); + if (tmp_watcher) { + *watcher = *tmp_watcher; + conf->id = kIgnoredWatcherID; // matched, so invalidate Tracepoint checks + } else if (!conf->groupname.empty()) { + // If the event doesn't match an ewatcher, it is only valid if a group was + // also provided (splitting events on ':' is the responsibility of the + // parser) + auto *tmp_tracepoint_watcher = tracepoint_default_watcher(); + if (!tmp_tracepoint_watcher) { + return false; + } + *watcher = *tmp_tracepoint_watcher; + } else { return false; } - // Split strings - *colon = 0; // colon is true from previous check - if (perc) - *perc = 0; - if (amp) - *amp = 0; - if (dollar) - *dollar = 0; - - // Name checking - groupname = str; - tracename = colon + 1; - - // If a register is specified, process that - if (perc) - reg = get_register(perc + 1); - - // OTOH, if an offset into the raw event is specified, get that - if (dollar && !get_trace_format(dollar + 1, &trace_off, &trace_sz)) { - is_raw = true; - } else { - trace_off = 0; - trace_sz = 0; + if (conf->id != kIgnoredWatcherID) { + // The most likely thing to be invalid is the selection of the tracepoint + // from the trace events system. If the conf has a nonzero number for the + // id we assume the user has privileged information and knows what they + // want. Else, we use the group/event combination to extract that id from + // the tracefs filesystem in the canonical way. + int64_t tracepoint_id = 0; + if (conf->id > 0) { + tracepoint_id = conf->id; + } else { + tracepoint_id = + ddprof::tracepoint_get_id(conf->eventname, conf->groupname); + } + // At this point we needed to find a valid tracepoint id + if (tracepoint_id == kIgnoredWatcherID) { + return false; + } + watcher->config = tracepoint_id; } - // If the user specified a period, make sure it is valid - if (amp) { - char *str_check = (char *)str; - uint64_t buf = strtoll(amp + 1, &str_check, 10); - if (!*str_check) - period = buf; + // Configure the sampling strategy. If no valid conf, use template default + if (conf->cadence != 0) { + if (conf->cad_type == EventConfCadenceType::kPeriod) { + watcher->sample_period = conf->cadence; + } else if (conf->cad_type == EventConfCadenceType::kFrequency) { + watcher->sample_frequency = conf->cadence; + watcher->options.is_freq = true; + } } - char path[2048] = {0}; // somewhat arbitrarily - char buf[64] = {0}; - char *buf_copy = buf; - int pathsz = - snprintf(path, sizeof(path), "/sys/kernel/tracing/events/%s/%s/id", - groupname, tracename); - if (static_cast(pathsz) >= sizeof(path)) { - // Possibly ran out of room - free(str); - return false; - } - int fd = open(path, O_RDONLY); - if (-1 == fd) { - free(str); - return false; + // Configure value source + if (conf->value_source == EventConfValueSource::kRaw) { + watcher->value_source = EventConfValueSource::kRaw; + watcher->sample_type |= PERF_SAMPLE_RAW; + watcher->raw_off = conf->raw_offset; + if (conf->raw_size > 0) + watcher->raw_sz = conf->raw_size; + else + watcher->raw_sz = sizeof(uint64_t); // default raw entry + } else if (conf->value_source == EventConfValueSource::kRegister) { + watcher->regno = conf->register_num; + watcher->value_source = EventConfValueSource::kRegister; } - // Read the data in an eintr-safe way - int read_ret = -1; - long trace_id = 0; - do { - read_ret = read(fd, buf, sizeof(buf)); - } while (read_ret == -1 && errno == EINTR); - close(fd); - if (read_ret > 0) - trace_id = strtol(buf, &buf_copy, 10); - if (*buf_copy && *buf_copy != '\n') { - free(str); - return false; - } + if (conf->value_scale != 0.0) + watcher->value_scale = conf->value_scale; - // Check enablement, just to print a log. We still enable instrumentation. - snprintf(path, sizeof(path), "/sys/kernel/tracing/events/%s/%s/enable", - groupname, tracename); - fd = open(path, O_RDONLY); - if (-1 == fd || 1 != read(fd, buf, 1) || '0' != *buf) { - LG_NTC("Tracepint %s:%s is not enabled. Instrumentation will proceed, but " - "you may not have any events.", - groupname, tracename); + // The output mode isn't set as part of the configuration templates; we + // always default to callgraph mode + if (conf->mode != EventConfMode::kDisabled) { + watcher->output_mode = conf->mode; } else { - LG_NFO("Tracepoint %s:%s successfully enabled", groupname, tracename); + watcher->output_mode = EventConfMode::kCallgraph; } - // OK done - *watcher = *twatcher_default(); - watcher->config = trace_id; - watcher->sample_period = period; - if (is_raw) - watcher->sample_type |= PERF_SAMPLE_RAW; - if (reg) { - watcher->reg = reg; - } else { - watcher->trace_off = trace_off; - watcher->trace_sz = trace_sz; + watcher->tracepoint_event = conf->eventname; + watcher->tracepoint_group = conf->groupname; + watcher->tracepoint_label = conf->label; + + // Allocation watcher, has an extra field to ensure we capture address + if (watcher->config == kDDPROF_COUNT_ALLOCATIONS) { + watcher->sample_type |= PERF_SAMPLE_ADDR; } - watcher->tracepoint_group = groupname; - watcher->tracepoint_name = tracename; + return true; } diff --git a/src/ddprof_context_lib.cc b/src/ddprof_context_lib.cc index 9bda9c90d..13e3b670f 100644 --- a/src/ddprof_context_lib.cc +++ b/src/ddprof_context_lib.cc @@ -11,15 +11,15 @@ #include "ddprof_input.hpp" #include "logger.hpp" #include "logger_setup.hpp" +#include "presets.hpp" #include "span.hpp" #include #include -#include #include -#include #include +namespace ddprof { static const PerfWatcher * find_duplicate_event(ddprof::span watchers) { bool seen[DDPROF_PWE_LENGTH] = {}; @@ -42,66 +42,8 @@ static void order_watchers(ddprof::span watchers) { }); } -struct Preset { - static constexpr size_t k_max_events = 10; - const char *name; - const char *events[k_max_events]; -}; - -DDRes add_preset(DDProfContext *ctx, const char *preset, - bool pid_or_global_mode) { - using namespace std::literals; - static Preset presets[] = { - {"default", {"sCPU", "sALLOC"}}, - {"default-pid", {"sCPU"}}, - {"cpu_only", {"sCPU"}}, - {"alloc_only", {"sALLOC"}}, - }; - - if (preset == "default"sv && pid_or_global_mode) { - preset = "default-pid"; - } - - ddprof::span presets_span{presets}; - std::string_view preset_sv{preset}; - - auto it = std::find_if(presets_span.begin(), presets_span.end(), - [&preset_sv](auto &e) { return e.name == preset_sv; }); - if (it == presets_span.end()) { - DDRES_RETURN_ERROR_LOG(DD_WHAT_INPUT_PROCESS, "Unknown preset (%s)", - preset); - } - - for (const char *event : it->events) { - if (event == nullptr) { - break; - } - if (ctx->num_watchers == MAX_TYPE_WATCHER) { - DDRES_RETURN_ERROR_LOG(DD_WHAT_INPUT_PROCESS, "Too many input events"); - } - PerfWatcher *watcher = &ctx->watchers[ctx->num_watchers]; - if (!watcher_from_event(event, watcher) && - !watcher_from_tracepoint(event, watcher)) { - DDRES_RETURN_ERROR_LOG(DD_WHAT_INPUT_PROCESS, - "Invalid event/tracepoint (%s)", event); - } - ddprof::span watchers{ctx->watchers, - static_cast(ctx->num_watchers)}; - - // ignore event if it was already present in watchers - if (watcher->ddprof_event_type == DDPROF_PWE_TRACEPOINT || - std::find_if(watchers.begin(), watchers.end(), [&watcher](auto &w) { - return w.ddprof_event_type == watcher->ddprof_event_type; - }) == watchers.end()) { - ++ctx->num_watchers; - } - } - - return {}; -} - /**************************** Argument Processor ***************************/ -DDRes ddprof_context_set(DDProfInput *input, DDProfContext *ctx) { +DDRes context_set(DDProfInput *input, DDProfContext *ctx) { *ctx = {}; setup_logger(input->log_mode, input->log_level); @@ -120,8 +62,6 @@ DDRes ddprof_context_set(DDProfInput *input, DDProfContext *ctx) { } ctx->num_watchers = nwatchers; - DDRES_CHECK_FWD(exporter_input_copy(&input->exp_input, &ctx->exp_input)); - // Set defaults ctx->params.upload_period = 60.0; @@ -209,63 +149,6 @@ DDRes ddprof_context_set(DDProfInput *input, DDProfContext *ctx) { } } - // URL-based host/port override - if (input->url && *input->url) { - LG_NTC("Processing URL: %s", input->url); - char *delim = strchr(input->url, ':'); - char *host = input->url; - char *port = NULL; - if (delim && delim[1] == '/' && delim[2] == '/') { - // A colon was found. - // http://hostname:port -> (hostname, port) - // ftp://hostname:port -> error - // hostname:port -> (hostname, port) - // hostname: -> (hostname, default_port) - // hostname -> (hostname, default_port) - - // Drop the schema - *delim = '\0'; - if (!strncasecmp(input->url, "http", 4) || - !strncasecmp(input->url, "https", 5)) { - *delim = ':'; - host = delim + 3; // Navigate after schema - } - delim = strchr(host, ':'); - } - - if (delim) { - // Check to see if there is another colon for the port - // We're going to treat this as the port. This is slightly problematic, - // since an invalid port is going to invalidate the default and then throw - // an error later, but for now let's just do what the user told us even if - // it isn't what they wanted. :) - *delim = '\0'; - port = delim + 1; - } - - // Modify the input structure to reflect the values from the URL. This - // overwrites an otherwise immutable parameter, which is slightly - // unfortunate, but this way it harmonizes with the downstream movement of - // host/port and the input arg pretty-printer. - if (host) { - free((char *)input->exp_input.host); - free((char *)ctx->exp_input.host); - input->exp_input.host = strdup(host); // For the pretty-printer - ctx->exp_input.host = strdup(host); - } - if (port) { - free((char *)input->exp_input.port); - free((char *)ctx->exp_input.port); - input->exp_input.port = strdup(port); // Merely for the pretty-printer - ctx->exp_input.port = strdup(port); - } - - // Revert the delimiter in case we want to print the URL later - if (delim) { - *delim = ':'; - } - } - ctx->params.sockfd = -1; ctx->params.wait_on_socket = false; if (input->socket && strlen(input->socket) > 0) { @@ -299,6 +182,8 @@ DDRes ddprof_context_set(DDProfInput *input, DDProfContext *ctx) { } } + DDRES_CHECK_FWD(exporter_input_copy(&input->exp_input, &ctx->exp_input)); + ddprof::span watchers{ctx->watchers, static_cast(ctx->num_watchers)}; if (std::find_if(watchers.begin(), watchers.end(), [](const auto &watcher) { return watcher.type < PERF_TYPE_MAX; @@ -310,7 +195,8 @@ DDRes ddprof_context_set(DDProfInput *input, DDProfContext *ctx) { // if there are no perf active watcher, add a dummy watcher to be notified // on process exit - ctx->watchers[ctx->num_watchers++] = *ewatcher_from_str("sDUM"); + const PerfWatcher *tmpwatcher = ewatcher_from_str("sDUM"); + ctx->watchers[ctx->num_watchers++] = *tmpwatcher; } order_watchers({ctx->watchers, static_cast(ctx->num_watchers)}); @@ -332,9 +218,7 @@ DDRes ddprof_context_set(DDProfInput *input, DDProfContext *ctx) { // Show watchers PRINT_NFO(" Instrumented with %d watchers:", ctx->num_watchers); for (int i = 0; i < ctx->num_watchers; i++) { - PRINT_NFO(" ID: %s, Pos: %d, Index: %lu, Label: %s", - ctx->watchers[i].desc, i, ctx->watchers[i].config, - sample_type_name_from_idx(ctx->watchers[i].sample_type_id)); + log_watcher(&ctx->watchers[i], i); } } @@ -348,7 +232,7 @@ DDRes ddprof_context_set(DDProfInput *input, DDProfContext *ctx) { return ddres_init(); } -void ddprof_context_free(DDProfContext *ctx) { +void context_free(DDProfContext *ctx) { if (ctx->initialized) { exporter_input_free(&ctx->exp_input); free((char *)ctx->params.internal_stats); @@ -363,7 +247,7 @@ void ddprof_context_free(DDProfContext *ctx) { LOG_close(); } -int ddprof_context_allocation_profiling_watcher_idx(const DDProfContext *ctx) { +int context_allocation_profiling_watcher_idx(const DDProfContext *ctx) { ddprof::span watchers{ctx->watchers, static_cast(ctx->num_watchers)}; auto it = std::find_if(watchers.begin(), watchers.end(), [](const auto &watcher) { @@ -376,3 +260,5 @@ int ddprof_context_allocation_profiling_watcher_idx(const DDProfContext *ctx) { } return -1; } + +} // namespace ddprof diff --git a/src/ddprof_file_info.cc b/src/ddprof_file_info.cc deleted file mode 100644 index 15d7d1ad7..000000000 --- a/src/ddprof_file_info.cc +++ /dev/null @@ -1,73 +0,0 @@ -// Unless explicitly stated otherwise all files in this repository are licensed -// under the Apache License Version 2.0. This product includes software -// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present -// Datadog, Inc. - -#include "ddprof_file_info.hpp" - -#include "ddres_exception.hpp" -#include -#include - -#include "logger.hpp" - -namespace ddprof { - -bool FileInfoInodeKey::operator==(const FileInfoInodeKey &o) const { - // default comparison is c++20 - return _inode == o._inode && _sz == o._sz; -} - -FileInfoValue::FileInfoValue(FileInfo &&info, FileInfoId_t id, int fd) - : _info(info), _fd(-1), _id(id) { - if (fd >= 0) { - LG_DBG("[FileInfo] using existing file descriptor(%d) to %s", fd, - _info._path.c_str()); - _fd = dup(fd); - } - if (_fd < 0) { // acceptable value for dwfl - LG_WRN("[FileInfo] failed to duplicate %s", _info._path.c_str()); - _errored = true; - } -} - -FileInfoValue::FileInfoValue(FileInfo &&info, FileInfoId_t id) - : _info(info), _fd(-1), _id(id) { - if (!_info._path.empty()) { - _fd = open(_info._path.c_str(), O_RDONLY); - if (_fd < 0) { // acceptable value for dwfl - LG_WRN("[FileInfo] failed to open %s", _info._path.c_str()); - } else { - LG_DBG("[FileInfo] Success opening %s, ", _info._path.c_str()); - } - } - if (_fd < 0) { // acceptable value for dwfl - _errored = true; - } -} - -void FileInfoValue::copy_values(const FileInfoValue &other) { - _info = other._info; - _errored = other._errored; - _id = other._id; - _fd = other._fd; -} - -FileInfoValue::~FileInfoValue() { - if (this->_fd != -1) - close(this->_fd); -} - -FileInfoValue::FileInfoValue(FileInfoValue &&other) { - copy_values(other); - other._fd = -1; -} - -FileInfoValue &FileInfoValue::operator=(FileInfoValue &&other) { - // move assignment operator - close(this->_fd); - copy_values(other); - other._fd = -1; - return *this; -} -} // namespace ddprof diff --git a/src/ddprof_input.cc b/src/ddprof_input.cc index 4c86b6929..c33d92867 100644 --- a/src/ddprof_input.cc +++ b/src/ddprof_input.cc @@ -56,11 +56,27 @@ #define X_HLPK(a, b, c, d, e, f, g, h, i) \ " -" #c ", --" #b ", (envvar: " #a ")", -// Helpers for expanding the OPT_TABLE here +namespace { +std::string api_key_to_dbg_string(const std::string_view value) { + if (value.size() != k_size_api_key) { + return "invalid"; + } + size_t len = value.length(); + std::string masked(len, '*'); + masked.replace(len - 4, 4, value.substr(len - 4)); + return masked; +} +} // namespace + #define X_PRNT(a, b, c, d, e, f, g, h, i) \ { \ if ((f)->i b) { \ - PRINT_NFO(" " #b ": %s", (f)->i b); \ + if (strcmp(#b, "api_key") != 0) { \ + PRINT_NFO(" " #b ": %s", (f)->i b); \ + } else { \ + std::string masked_value = api_key_to_dbg_string((f)->i b); \ + PRINT_NFO(" " #b ": %s", masked_value.c_str()); \ + } \ } \ } @@ -75,7 +91,6 @@ const char* help_str[DD_KLEN] = { " The name of the environment to use in the Datadog UI.\n", [DD_AGENT_HOST] = " The hostname of the agent. Port should also be specified.\n", - [DD_SITE] = STR_UNDF, [DD_TRACE_AGENT_PORT] = " The communication port for the Datadog agent or backend system.\n", [DD_TRACE_AGENT_URL] = @@ -147,7 +162,7 @@ const char* help_str[DD_KLEN] = { [DD_PROFILING_NATIVE_SHOW_SAMPLES] = STR_UNDF, [DD_PROFILING_NATIVE_CPU_AFFINITY] = STR_UNDF, [DD_PROFILING_NATIVE_SWITCH_USER] = - " Run the target process under the given user.\n", + " Run the target process under the given user.\n" }; // clang-format on @@ -165,11 +180,9 @@ static void ddprof_input_default_events(DDProfInput *input) { continue; } - const char *event = event_str.c_str(); PerfWatcher *watcher = &input->watchers[input->num_watchers]; - if (!watcher_from_event(event, watcher) && - !watcher_from_tracepoint(event, watcher)) { - LG_WRN("Ignoring invalid event/tracepoint (%s)", optarg); + if (!watcher_from_str(event_str.c_str(), watcher)) { + LG_WRN("Ignoring invalid event/tracepoint (%s)", event_str.c_str()); } else { ++input->num_watchers; } @@ -202,7 +215,7 @@ void ddprof_print_help() { // fills the default parameters for the input structure DDRes ddprof_input_default(DDProfInput *input) { // avoid assuming that things were set to 0 by user - memset(input, 0, sizeof(DDProfInput)); + *input = DDProfInput{}; exporter_input_dflt(&input->exp_input); // Populate default values (mutates ctx) OPT_TABLE(X_DFLT); @@ -247,8 +260,7 @@ DDRes ddprof_input_parse(int argc, char **argv, DDProfInput *input, DDRES_RETURN_ERROR_LOG(DD_WHAT_INPUT_PROCESS, "Too many input events"); } PerfWatcher *watcher = &input->watchers[input->num_watchers]; - if (!watcher_from_event(optarg, watcher) && - !watcher_from_tracepoint(optarg, watcher)) { + if (!watcher_from_str(optarg, watcher)) { *continue_exec = false; DDRES_RETURN_ERROR_LOG(DD_WHAT_INPUT_PROCESS, "Invalid event/tracepoint (%s)", optarg); diff --git a/src/ddprof_module_lib.cc b/src/ddprof_module_lib.cc index 180a60dfc..8bca572e8 100644 --- a/src/ddprof_module_lib.cc +++ b/src/ddprof_module_lib.cc @@ -5,6 +5,7 @@ #include "ddprof_module_lib.hpp" +#include "build_id.hpp" #include "ddres.hpp" #include "defer.hpp" #include "failed_assumption.hpp" @@ -14,14 +15,34 @@ #include #include #include -#include -#include #include namespace ddprof { -static bool get_elf_offsets(int fd, Offset_t &start_offset, - const std::string &filepath, +class FileDescriptorHolder { +public: + FileDescriptorHolder() : _fd(-1) {} + DDRes open_file(std::string_view path) { + _fd = ::open(path.data(), O_RDONLY); + if (_fd < 0) { + LG_WRN("[Mod] Couldn't open fd to module (%s)", path.data()); + return ddres_warn(DD_WHAT_MODULE); + } + LG_DBG("[Mod] Success opening %s, ", path.data()); + return ddres_init(); + } + + void take_ownership() { _fd = -1; } + + ~FileDescriptorHolder() { + if (_fd > 0) { + close(_fd); + } + } + int _fd; +}; + +static bool get_elf_offsets(int fd, const std::string &filepath, Offset_t &bias_offset) { Elf *elf = elf_begin(fd, ELF_C_READ_MMAP, NULL); if (elf == NULL) { @@ -46,7 +67,6 @@ static bool get_elf_offsets(int fd, Offset_t &start_offset, LG_WRN("Invalid elf %s", filepath.c_str()); return false; } - Elf64_Addr first_load_segment_vaddr = -1; for (size_t i = 0; i < phnum; ++i) { GElf_Phdr phdr_mem; GElf_Phdr *ph = gelf_getphdr(elf, i, &phdr_mem); @@ -56,29 +76,9 @@ static bool get_elf_offsets(int fd, Offset_t &start_offset, } constexpr int rx = PF_X | PF_R; if (ph->p_type == PT_LOAD) { - if (first_load_segment_vaddr == -1UL) { - first_load_segment_vaddr = ph->p_vaddr; - if (ehdr->e_type == ET_DYN && first_load_segment_vaddr != 0) { - report_failed_assumption(ddprof::string_format( - "Non zero vaddr[%lx] for first load " - "segment of DYN elf (prelink?): %s", - first_load_segment_vaddr, filepath.c_str())); - } - if (ph->p_offset != 0) { - report_failed_assumption(ddprof::string_format( - "Non zero file offset[%lx] for first load segment: %s", - ph->p_offset, filepath.c_str())); - } - if ((ph->p_vaddr & (ph->p_align - 1)) != 0) { - report_failed_assumption(ddprof::string_format( - "Non aligned vaddr[%lx] file offset for first load segment: %s", - ph->p_vaddr, filepath.c_str())); - } - } if ((ph->p_flags & rx) == rx) { if (!found_exec) { bias_offset = ph->p_vaddr - ph->p_offset; - start_offset = bias_offset - first_load_segment_vaddr; found_exec = true; } else { report_failed_assumption(ddprof::string_format( @@ -115,7 +115,7 @@ DDRes report_module(Dwfl *dwfl, ProcessAddress_t pc, const Dso &dso, // There should not be a module already loaded at this address const char *main_name = nullptr; Dwarf_Addr low_addr, high_addr; - dwfl_module_info(mod, 0, &low_addr, &high_addr, 0, 0, &main_name, 0); + dwfl_module_info(mod, nullptr, &low_addr, &high_addr, 0, 0, &main_name, 0); LG_NTC("Incoherent modules[PID=%d]: module %s [%lx-%lx] is already " "loaded at %lx(%s[ID#%d])", dso._pid, main_name, low_addr, high_addr, pc, filepath.c_str(), @@ -124,29 +124,32 @@ DDRes report_module(Dwfl *dwfl, ProcessAddress_t pc, const Dso &dso, return ddres_warn(DD_WHAT_MODULE); } + FileDescriptorHolder fd_holder; + DDRES_CHECK_FWD_STRICT(fd_holder.open_file(filepath)); + // Load the file at a matching DSO address dwfl_errno(); // erase previous error - Offset_t start_offset, bias_offset; - if (!get_elf_offsets(fileInfoValue._fd, start_offset, filepath, - bias_offset)) { + Offset_t bias_offset{}; + if (!get_elf_offsets(fd_holder._fd, filepath, bias_offset)) { fileInfoValue._errored = true; LG_WRN("Couldn't retrieve offsets from %s(%s)", module_name, fileInfoValue.get_path().c_str()); return ddres_warn(DD_WHAT_MODULE); } - ProcessAddress_t start = dso._start - dso._pgoff - start_offset; Offset_t bias = dso._start - dso._pgoff - bias_offset; - - // libdwfl takes ownership (which is not 100% expected) - int fd = dup(fileInfoValue._fd); - if (fd < 0) { - LG_WRN("Couldn't duplicate fd to module %s(%s)", module_name, - fileInfoValue.get_path().c_str()); - return ddres_warn(DD_WHAT_MODULE); + ddprof_mod._mod = dwfl_report_elf(dwfl, module_name, filepath.c_str(), + fd_holder._fd, bias, true); + + // Retrieve build id + const unsigned char *bits = nullptr; + GElf_Addr vaddr; + if (int size = dwfl_module_build_id(ddprof_mod._mod, &bits, &vaddr); + size > 0) { + // ensure we called dwfl_module_getelf first (or this can fail) + // returns the size + ddprof_mod.set_build_id(BuildIdSpan{bits, static_cast(size)}); } - ddprof_mod._mod = - dwfl_report_elf(dwfl, module_name, filepath.c_str(), fd, start, false); if (!ddprof_mod._mod) { // Ideally we would differentiate pid errors from file errors. @@ -156,13 +159,16 @@ DDRes report_module(Dwfl *dwfl, ProcessAddress_t pc, const Dso &dso, module_name, fileInfoValue.get_path().c_str()); return ddres_warn(DD_WHAT_MODULE); } else { + // dwfl now has ownership of the file descriptor + fd_holder.take_ownership(); dwfl_module_info(ddprof_mod._mod, 0, &ddprof_mod._low_addr, &ddprof_mod._high_addr, 0, 0, 0, 0); - LG_DBG("Loaded mod from file (%s[ID#%d]), (%s) mod[%lx-%lx] bias[%lx]", + LG_DBG("Loaded mod from file (%s[ID#%d]), (%s) mod[%lx-%lx] bias[%lx], " + "build-id: %s", fileInfoValue.get_path().c_str(), fileInfoValue.get_id(), - dwfl_errmsg(-1), ddprof_mod._low_addr, ddprof_mod._high_addr, bias); + dwfl_errmsg(-1), ddprof_mod._low_addr, ddprof_mod._high_addr, bias, + ddprof_mod._build_id.c_str()); } - ddprof_mod._sym_bias = bias; return ddres_init(); } diff --git a/src/ddprof_worker.cc b/src/ddprof_worker.cc index c6341178b..182589f65 100644 --- a/src/ddprof_worker.cc +++ b/src/ddprof_worker.cc @@ -6,6 +6,7 @@ #include "ddprof_worker.hpp" #include "ddprof_context.hpp" +#include "ddprof_perf_event.hpp" #include "ddprof_stats.hpp" #include "dso_hdr.hpp" #include "dwfl_hdr.hpp" @@ -15,7 +16,6 @@ #include "pevent_lib.hpp" #include "pprof/ddprof_pprof.hpp" #include "procutils.hpp" -#include "stack_handler.hpp" #include "tags.hpp" #include "timer.hpp" #include "unwind.hpp" @@ -29,10 +29,6 @@ #include #include -#ifdef DBG_JEMALLOC -# include -#endif - #define DDPROF_EXPORT_TIMEOUT_MAX 60 using namespace ddprof; @@ -45,15 +41,16 @@ static const DDPROF_STATS s_cycled_stats[] = { static const long k_clock_ticks_per_sec = sysconf(_SC_CLK_TCK); +/// Remove all structures related to +static DDRes worker_pid_free(DDProfContext *ctx, pid_t el); + +static DDRes clear_unvisited_pids(DDProfContext *ctx); + /// Human readable runtime information static void print_diagnostics(const DsoHdr &dso_hdr) { LG_NFO("Printing internal diagnostics"); ddprof_stats_print(); dso_hdr._stats.log(); -#ifdef DBG_JEMALLOC - // jemalloc stats - malloc_stats_print(NULL, NULL, ""); -#endif } static inline int64_t now_nanos() { @@ -62,13 +59,12 @@ static inline int64_t now_nanos() { return (tv.tv_sec * 1000000 + tv.tv_usec) * 1000; } -#ifndef DDPROF_NATIVE_LIB static DDRes report_lost_events(DDProfContext *ctx) { for (int watcher_idx = 0; watcher_idx < ctx->num_watchers; ++watcher_idx) { if (ctx->worker_ctx.lost_events_per_watcher[watcher_idx] > 0) { PerfWatcher *watcher = &ctx->watchers[watcher_idx]; UnwindState *us = ctx->worker_ctx.us; - uw_output_clear(&us->output); + us->output.clear(); add_common_frame(us, SymbolErrors::lost_event); LG_WRN("Reporting #%lu -> [%lu] lost samples for watcher #%d", ctx->worker_ctx.lost_events_per_watcher[watcher_idx], @@ -76,7 +72,7 @@ static DDRes report_lost_events(DDProfContext *ctx) { watcher->sample_period, watcher_idx); DDRES_CHECK_FWD(pprof_aggregate( - &us->output, &us->symbol_hdr, watcher->sample_period, + &us->output, us->symbol_hdr, watcher->sample_period, ctx->worker_ctx.lost_events_per_watcher[watcher_idx], watcher, ctx->worker_ctx.pprof[ctx->worker_ctx.i_current_pprof])); ctx->worker_ctx.lost_events_per_watcher[watcher_idx] = 0; @@ -85,7 +81,6 @@ static DDRes report_lost_events(DDProfContext *ctx) { return {}; } -#endif static inline long export_time_convert(double upload_period) { return upload_period * 1000000000; @@ -159,9 +154,21 @@ DDRes worker_library_free(DDProfContext *ctx) { return {}; } +static DDRes symbols_update_stats(const SymbolHdr &symbol_hdr) { + const auto &stats = symbol_hdr._runtime_symbol_lookup.get_stats(); + DDRES_CHECK_FWD( + ddprof_stats_set(STATS_SYMBOLS_JIT_READS, stats._nb_jit_reads)); + DDRES_CHECK_FWD(ddprof_stats_set(STATS_SYMBOLS_JIT_FAILED_LOOKUPS, + stats._nb_failed_lookups)); + DDRES_CHECK_FWD( + ddprof_stats_set(STATS_SYMBOLS_JIT_SYMBOL_COUNT, stats._symbol_count)); + return ddres_init(); +} + /// Retrieve cpu / memory info -static DDRes worker_update_stats(ProcStatus *procstat, const DsoHdr *dso_hdr, +static DDRes worker_update_stats(ProcStatus *procstat, const UnwindState &us, std::chrono::nanoseconds cycle_duration) { + const DsoHdr &dso_hdr = us.dso_hdr; // Update the procstats, but first snapshot the utime so we can compute the // diff for the utime metric int64_t cpu_time_old = procstat->utime + procstat->stime; @@ -173,10 +180,13 @@ static DDRes worker_update_stats(ProcStatus *procstat, const DsoHdr *dso_hdr, ddprof_stats_set(STATS_PROFILER_RSS, get_page_size() * procstat->rss); ddprof_stats_set(STATS_PROFILER_CPU_USAGE, millicores); ddprof_stats_set(STATS_DSO_UNHANDLED_SECTIONS, - dso_hdr->_stats.sum_event_metric(DsoStats::kUnhandledDso)); + dso_hdr._stats.sum_event_metric(DsoStats::kUnhandledDso)); ddprof_stats_set(STATS_DSO_NEW_DSO, - dso_hdr->_stats.sum_event_metric(DsoStats::kNewDso)); - ddprof_stats_set(STATS_DSO_SIZE, dso_hdr->get_nb_dso()); + dso_hdr._stats.sum_event_metric(DsoStats::kNewDso)); + ddprof_stats_set(STATS_DSO_SIZE, dso_hdr.get_nb_dso()); + + // Symbol stats + DDRES_CHECK_FWD(symbols_update_stats(us.symbol_hdr)); long target_cpu_nsec; ddprof_stats_get(STATS_TARGET_CPU_USAGE, &target_cpu_nsec); @@ -214,17 +224,14 @@ static DDRes worker_update_stats(ProcStatus *procstat, const DsoHdr *dso_hdr, return ddres_init(); } -/************************* perf_event_open() helpers **************************/ -/// Entry point for sample aggregation -DDRes ddprof_pr_sample(DDProfContext *ctx, perf_event_sample *sample, - int watcher_pos) { - if (!sample) - return ddres_warn(DD_WHAT_PERFSAMP); +static DDRes ddprof_unwind_sample(DDProfContext *ctx, perf_event_sample *sample, + int watcher_pos) { struct UnwindState *us = ctx->worker_ctx.us; + PerfWatcher *watcher = &ctx->watchers[watcher_pos]; + ddprof_stats_add(STATS_SAMPLE_COUNT, 1, NULL); ddprof_stats_add(STATS_UNWIND_AVG_STACK_SIZE, sample->size_stack, nullptr); - auto ticks0 = ddprof::get_tsc_cycles(); // copy the sample context into the unwind structure unwind_init_sample(us, sample->regs, sample->pid, sample->size_stack, sample->data_stack); @@ -234,9 +241,13 @@ DDRes ddprof_pr_sample(DDProfContext *ctx, perf_event_sample *sample, us->output.tid = sample->tid; // If this is a SW_TASK_CLOCK-type event, then aggregate the time - if (ctx->watchers[watcher_pos].config == PERF_COUNT_SW_TASK_CLOCK) + if (watcher->config == PERF_COUNT_SW_TASK_CLOCK) ddprof_stats_add(STATS_TARGET_CPU_USAGE, sample->period, NULL); - DDRes res = unwindstate__unwind(us); + + // Attempt to fully unwind if the watcher has a callgraph type + DDRes res = {}; + if (AnyCallgraph(watcher->output_mode)) + res = unwindstate__unwind(us); /* This test is not 100% accurate: * Linux kernel does not take into account stack start (ie. end address since @@ -262,38 +273,60 @@ DDRes ddprof_pr_sample(DDProfContext *ctx, perf_event_sample *sample, ddprof_stats_add(STATS_UNWIND_TRUNCATED_INPUT, 1, nullptr); } + if (us->_dwfl_wrapper->_inconsistent) { + // Loaded modules were inconsistend, assume we should flush everything. + LG_WRN("(Inconsistent DWFL/DSOs)%d - Free associated objects", us->pid); + DDRES_CHECK_FWD(worker_pid_free(ctx, us->pid)); + } + return res; +} + +/************************* perf_event_open() helpers **************************/ +/// Entry point for sample aggregation +DDRes ddprof_pr_sample(DDProfContext *ctx, perf_event_sample *sample, + int watcher_pos) { + if (!sample) + return ddres_warn(DD_WHAT_PERFSAMP); + + // If this is a SW_TASK_CLOCK-type event, then aggregate the time + if (ctx->watchers[watcher_pos].config == PERF_COUNT_SW_TASK_CLOCK) + ddprof_stats_add(STATS_TARGET_CPU_USAGE, sample->period, NULL); + + auto ticks0 = ddprof::get_tsc_cycles(); + DDRes res = ddprof_unwind_sample(ctx, sample, watcher_pos); auto unwind_ticks = ddprof::get_tsc_cycles(); - DDRES_CHECK_FWD( - ddprof_stats_add(STATS_UNWIND_AVG_TIME, unwind_ticks - ticks0, NULL)); + ddprof_stats_add(STATS_UNWIND_AVG_TIME, unwind_ticks - ticks0, NULL); + + // Usually we want to send the sample_val, but sometimes we need to process + // the event to get the desired value + PerfWatcher *watcher = &ctx->watchers[watcher_pos]; // Aggregate if unwinding went well (todo : fatal error propagation) if (!IsDDResFatal(res)) { -#ifndef DDPROF_NATIVE_LIB - // in lib mode we don't aggregate (protect to avoid link failures) - PerfWatcher *watcher = &ctx->watchers[watcher_pos]; - int i_export = ctx->worker_ctx.i_current_pprof; - DDProfPProf *pprof = ctx->worker_ctx.pprof[i_export]; - DDRES_CHECK_FWD(pprof_aggregate(&us->output, &us->symbol_hdr, - sample->period, 1, watcher, pprof)); - if (ctx->params.show_samples) { - ddprof_print_sample(us->output, us->symbol_hdr, sample->period, *watcher); - } -#else - // Call the user's stack handler - if (ctx->stack_handler) { - if (!ctx->stack_handler->apply(&us->output, ctx, - ctx->stack_handler->callback_ctx, - watcher_pos)) { - DDRES_RETURN_ERROR_LOG(DD_WHAT_STACK_HANDLE, - "Stack handler returning errors"); + struct UnwindState *us = ctx->worker_ctx.us; + if (Any(EventConfMode::kLiveCallgraph & watcher->output_mode)) { + // Live callgraph mode + // for now we hard code the live aggregation mode + ctx->worker_ctx.live_allocation.register_allocation( + us->output, sample->addr, sample->period, watcher_pos, sample->pid); + } else if (Any(EventConfMode::kCallgraph & watcher->output_mode)) { + // Depending on the type of watcher, compute a value for sample + uint64_t sample_val = perf_value_from_sample(watcher, sample); + + // in lib mode we don't aggregate (protect to avoid link failures) + int i_export = ctx->worker_ctx.i_current_pprof; + DDProfPProf *pprof = ctx->worker_ctx.pprof[i_export]; + DDRES_CHECK_FWD(pprof_aggregate(&us->output, us->symbol_hdr, sample_val, + 1, watcher, pprof)); + if (ctx->params.show_samples) { + ddprof_print_sample(us->output, us->symbol_hdr, sample->period, + *watcher); } } -#endif } - DDRES_CHECK_FWD(ddprof_stats_add(STATS_AGGREGATION_AVG_TIME, - ddprof::get_tsc_cycles() - unwind_ticks, - NULL)); + ddprof_stats_add(STATS_AGGREGATION_AVG_TIME, + ddprof::get_tsc_cycles() - unwind_ticks, NULL); return {}; } @@ -304,7 +337,6 @@ static void ddprof_reset_worker_stats() { } } -#ifndef DDPROF_NATIVE_LIB void *ddprof_worker_export_thread(void *arg) { DDProfWorkerContext *worker = (DDProfWorkerContext *)arg; // export the one we are not writting to @@ -323,12 +355,91 @@ void *ddprof_worker_export_thread(void *arg) { return nullptr; } -#endif + +static DDRes aggregate_livealloc_stack( + const LiveAllocation::PprofStacks::value_type &alloc_info, + DDProfContext *ctx, const PerfWatcher *watcher, DDProfPProf *pprof, + const SymbolHdr &symbol_hdr) { + DDRES_CHECK_FWD(pprof_aggregate(&alloc_info.first, symbol_hdr, + alloc_info.second._value, + alloc_info.second._count, watcher, pprof)); + if (ctx->params.show_samples) { + ddprof_print_sample(alloc_info.first, symbol_hdr, alloc_info.second._value, + *watcher); + } + return ddres_init(); +} + +static DDRes aggregate_live_allocations_for_pid(DDProfContext *ctx, pid_t pid) { + struct UnwindState *us = ctx->worker_ctx.us; + int i_export = ctx->worker_ctx.i_current_pprof; + DDProfPProf *pprof = ctx->worker_ctx.pprof[i_export]; + const SymbolHdr &symbol_hdr = us->symbol_hdr; + LiveAllocation &live_allocations = ctx->worker_ctx.live_allocation; + for (unsigned watcher_pos = 0; + watcher_pos < live_allocations._watcher_vector.size(); ++watcher_pos) { + auto &pid_map = live_allocations._watcher_vector[watcher_pos]; + const PerfWatcher *watcher = &ctx->watchers[watcher_pos]; + auto &pid_stacks = pid_map[pid]; + for (const auto &alloc_info : pid_stacks._unique_stacks) { + DDRES_CHECK_FWD(aggregate_livealloc_stack(alloc_info, ctx, watcher, pprof, + symbol_hdr)); + } + } + return ddres_init(); +} + +static DDRes aggregate_live_allocations(DDProfContext *ctx) { + // this would be more efficient if we could reuse the same stacks in + // libdatadog + struct UnwindState *us = ctx->worker_ctx.us; + int i_export = ctx->worker_ctx.i_current_pprof; + DDProfPProf *pprof = ctx->worker_ctx.pprof[i_export]; + const SymbolHdr &symbol_hdr = us->symbol_hdr; + const LiveAllocation &live_allocations = ctx->worker_ctx.live_allocation; + for (unsigned watcher_pos = 0; + watcher_pos < live_allocations._watcher_vector.size(); ++watcher_pos) { + const auto &pid_map = live_allocations._watcher_vector[watcher_pos]; + const PerfWatcher *watcher = &ctx->watchers[watcher_pos]; + for (const auto &pid_vt : pid_map) { + for (const auto &alloc_info : pid_vt.second._unique_stacks) { + DDRES_CHECK_FWD(aggregate_livealloc_stack(alloc_info, ctx, watcher, + pprof, symbol_hdr)); + } + LG_NTC("<%u> Number of Live allocations for PID%d=%lu, Unique stacks=%lu", + watcher_pos, pid_vt.first, pid_vt.second._address_map.size(), + pid_vt.second._unique_stacks.size()); + } + } + return ddres_init(); +} + +static DDRes worker_pid_free(DDProfContext *ctx, pid_t el) { + DDRES_CHECK_FWD(aggregate_live_allocations_for_pid(ctx, el)); + UnwindState *us = ctx->worker_ctx.us; + unwind_pid_free(us, el); + ctx->worker_ctx.live_allocation.clear_pid(el); + return ddres_init(); +} + +static DDRes clear_unvisited_pids(DDProfContext *ctx) { + UnwindState *us = ctx->worker_ctx.us; + const std::vector pids_remove = us->dwfl_hdr.get_unvisited(); + for (pid_t el : pids_remove) { + DDRES_CHECK_FWD(worker_pid_free(ctx, el)); + } + us->dwfl_hdr.reset_unvisited(); + return ddres_init(); +} /// Cycle operations : export, sync metrics, update counters DDRes ddprof_worker_cycle(DDProfContext *ctx, int64_t now, [[maybe_unused]] bool synchronous_export) { -#ifndef DDPROF_NATIVE_LIB + + // Clearing unused PIDs will ensure we don't report them at next cycle + DDRES_CHECK_FWD(clear_unvisited_pids(ctx)); + DDRES_CHECK_FWD(aggregate_live_allocations(ctx)); + // Take the current pprof contents and ship them to the backend. This also // clears the pprof for reuse // Dispatch happens in a thread, with the underlying data structure for @@ -376,15 +487,13 @@ DDRes ddprof_worker_cycle(DDProfContext *ctx, int64_t now, return ddres_create(DD_SEVERROR, DD_WHAT_EXPORTER); } } -#endif auto cycle_now = std::chrono::steady_clock::now(); auto cycle_duration = cycle_now - ctx->worker_ctx.cycle_start_time; ctx->worker_ctx.cycle_start_time = cycle_now; // Scrape procfs for process usage statistics DDRES_CHECK_FWD(worker_update_stats(&ctx->worker_ctx.proc_status, - &ctx->worker_ctx.us->dso_hdr, - cycle_duration)); + *ctx->worker_ctx.us, cycle_duration)); // And emit diagnostic output (if it's enabled) print_diagnostics(ctx->worker_ctx.us->dso_hdr); @@ -435,22 +544,24 @@ void ddprof_pr_lost(DDProfContext *ctx, const perf_event_lost *lost, ctx->worker_ctx.lost_events_per_watcher[watcher_pos] += lost->lost; } -void ddprof_pr_comm(DDProfContext *ctx, const perf_event_comm *comm, - int watcher_pos) { +DDRes ddprof_pr_comm(DDProfContext *ctx, const perf_event_comm *comm, + int watcher_pos) { // Change in process name (assuming exec) : clear all associated dso if (comm->header.misc & PERF_RECORD_MISC_COMM_EXEC) { LG_DBG("<%d>(COMM)%d -> %s", watcher_pos, comm->pid, comm->comm); - unwind_pid_free(ctx->worker_ctx.us, comm->pid); + DDRES_CHECK_FWD(worker_pid_free(ctx, comm->pid)); } + return ddres_init(); } -void ddprof_pr_fork(DDProfContext *ctx, const perf_event_fork *frk, - int watcher_pos) { +DDRes ddprof_pr_fork(DDProfContext *ctx, const perf_event_fork *frk, + int watcher_pos) { LG_DBG("<%d>(FORK)%d -> %d/%d", watcher_pos, frk->ppid, frk->pid, frk->tid); if (frk->ppid != frk->pid) { // Clear everything and populate at next error or with coming samples - unwind_pid_free(ctx->worker_ctx.us, frk->pid); + DDRES_CHECK_FWD(worker_pid_free(ctx, frk->pid)); } + return ddres_init(); } void ddprof_pr_exit(DDProfContext *ctx, const perf_event_exit *ext, @@ -468,6 +579,20 @@ void ddprof_pr_exit(DDProfContext *ctx, const perf_event_exit *ext, } } +void ddprof_pr_clear_live_allocation(DDProfContext *ctx, + const ClearLiveAllocationEvent *event, + int watcher_pos) { + LG_DBG("<%d>(CLEAR LIVE)%d", watcher_pos, event->sample_id.pid); + ctx->worker_ctx.live_allocation.clear_pid_for_watcher(watcher_pos, + event->sample_id.pid); +} + +void ddprof_pr_deallocation(DDProfContext *ctx, const DeallocationEvent *event, + int watcher_pos) { + ctx->worker_ctx.live_allocation.register_deallocation(event->ptr, watcher_pos, + event->sample_id.pid); +} + /********************************** callbacks *********************************/ DDRes ddprof_worker_maybe_export(DDProfContext *ctx, int64_t now_ns) { try { @@ -485,7 +610,6 @@ DDRes ddprof_worker_maybe_export(DDProfContext *ctx, int64_t now_ns) { return ddres_init(); } -#ifndef DDPROF_NATIVE_LIB DDRes ddprof_worker_init(DDProfContext *ctx, PersistentWorkerState *persistent_worker_state) { try { @@ -553,7 +677,6 @@ DDRes ddprof_worker_free(DDProfContext *ctx) { CatchExcept2DDRes(); return ddres_init(); } -#endif // Simple wrapper over perf_event_hdr in order to filter by PID in a uniform // way. Whenver PID is a valid concept for the given event type, the @@ -570,11 +693,12 @@ DDRes ddprof_worker_process_event(const perf_event_header *hdr, int watcher_pos, ddprof_stats_add(STATS_EVENT_COUNT, 1, NULL); const perf_event_hdr_wpid *wpid = static_cast(hdr); + PerfWatcher *watcher = &ctx->watchers[watcher_pos]; switch (hdr->type) { /* Cases where the target type has a PID */ case PERF_RECORD_SAMPLE: if (wpid->pid) { - uint64_t mask = ctx->watchers[watcher_pos].sample_type; + uint64_t mask = watcher->sample_type; perf_event_sample *sample = hdr2samp(hdr, mask); if (sample) { DDRES_CHECK_FWD(ddprof_pr_sample(ctx, sample, watcher_pos)); @@ -588,8 +712,8 @@ DDRes ddprof_worker_process_event(const perf_event_header *hdr, int watcher_pos, break; case PERF_RECORD_COMM: if (wpid->pid) - ddprof_pr_comm(ctx, reinterpret_cast(hdr), - watcher_pos); + DDRES_CHECK_FWD(ddprof_pr_comm( + ctx, reinterpret_cast(hdr), watcher_pos)); break; case PERF_RECORD_EXIT: if (wpid->pid) @@ -598,8 +722,9 @@ DDRes ddprof_worker_process_event(const perf_event_header *hdr, int watcher_pos, break; case PERF_RECORD_FORK: if (wpid->pid) - ddprof_pr_fork(ctx, reinterpret_cast(hdr), - watcher_pos); + DDRES_CHECK_FWD(ddprof_pr_fork( + ctx, reinterpret_cast(hdr), watcher_pos)); + break; /* Cases where the target type might not have a PID */ @@ -607,6 +732,17 @@ DDRes ddprof_worker_process_event(const perf_event_header *hdr, int watcher_pos, ddprof_pr_lost(ctx, reinterpret_cast(hdr), watcher_pos); break; + case PERF_CUSTOM_EVENT_DEALLOCATION: + ddprof_pr_deallocation( + ctx, reinterpret_cast(hdr), watcher_pos); + break; + case PERF_CUSTOM_EVENT_CLEAR_LIVE_ALLOCATION: { + const ClearLiveAllocationEvent *event = + reinterpret_cast(hdr); + DDRES_CHECK_FWD( + aggregate_live_allocations_for_pid(ctx, event->sample_id.pid)); + ddprof_pr_clear_live_allocation(ctx, event, watcher_pos); + } break; default: break; } diff --git a/src/demangler/demangler.cc b/src/demangler/demangler.cc new file mode 100644 index 000000000..dcf3fd506 --- /dev/null +++ b/src/demangler/demangler.cc @@ -0,0 +1,165 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include "demangler/demangler.hpp" + +#include +#include +#include + +#include + +// With some exceptions we don't handle here, v0 Rust symbols can end in a +// prefix followed by a 16-hexdigit hash, which must be removed +constexpr std::string_view hash_pre = "::h"; +constexpr std::string_view hash_eg = "0123456789abcdef"; + +static inline bool is_hexdig(const char c) { + return (c >= 'a' && c <= 'f') || (c >= '0' && c <= '9'); +} + +// Minimal check that a string can end, and does end, in a hashlike substring +// Some tools check for entropy, we do not. +static inline bool has_hash(const std::string_view &str) { + // If the size can't conform, then the string is invalid + if (str.size() <= hash_pre.size() + hash_eg.size()) { + return false; + } + + // Check that the string contains the hash prefix in the right position + if (str.compare(str.size() - hash_eg.size() - hash_pre.size(), + hash_pre.size(), hash_pre)) { + return false; + } + + // Check that the string ends in lowercase hex digits + for (size_t i = str.size() - hash_eg.size(); i < str.size(); ++i) { + if (!is_hexdig(str[i])) + return false; + } + return true; +} + +// Rather than performing a strict check (which would be necessary for +// supporting the use of '$' on some platforms as an informative token), this +// implementation makes a minimal check indicating that a string is likely to +// be a mangled Rust name. +static bool is_probably_rust_legacy(const std::string_view &str) { + // Is the string too short to have a hash part in thefirst place? + if (!has_hash(str)) + return false; + + // Throw out `$$` and `$????$`, but not in-between + const char *ptr = str.data(); + const char *end = ptr + str.size() - hash_pre.size() - hash_eg.size(); + for (; ptr <= end; ++ptr) { + if (*ptr == '$') { + if (ptr[1] == '$') { + return false; + } else if (ptr[2] == '$' || ptr[3] == '$' || ptr[4] == '$') { + return true; + } else { + return false; + } + } else if (*ptr == '.') { + return !('.' == ptr[1] && + '.' == ptr[2]); // '.' and '..' are fine, '...' is not + } + } + return true; +} + +// Simple conversion from hex digit to integer +// Includes capitals out of completeness, but this should not be necessary for +// the implementation +inline static int hex_to_int(char dig) { + if (dig >= '0' && dig <= '9') + return dig - '0'; + else if (dig >= 'a' && dig <= 'f') + return dig - 'a' + 10; + else if (dig >= 'A' && dig <= 'F') + return dig - 'A' + 10; + else + return -1; +} + +// Demangles a Rust string by building a copy piece-by-piece +static std::string rust_demangle(const std::string_view &str) { + constexpr auto patterns = + std::to_array>({ + {"..", "::"}, + {"$C$", ","}, + {"$BP$", "*"}, + {"$GT$", ">"}, + {"$LT$", "<"}, + {"$LP$", "("}, + {"$RP$", ")"}, + {"$RF$", "&"}, + {"$SP$", "@"}, + }); + + std::string ret; + ret.reserve(str.size() - hash_eg.size() - hash_pre.size()); + + size_t i = 0; + + // Special-case for repairing C++ demangling defect for Rust + if (str[0] == '_' && str[1] == '$') + ++i; + + for (; i < str.size() - hash_pre.size() - hash_eg.size(); ++i) { + + // Fast sieve for pattern-matching, since we know first chars + if (str[i] == '.' || str[i] == '$') { + bool replaced = false; + + // Try to replace one of the patterns + for (const auto &pair : patterns) { + const std::string_view &pattern = pair.first; + const std::string_view &replacement = pair.second; + if (!str.compare(i, pattern.size(), pattern)) { + ret += replacement; + i += pattern.size() - 1; // -1 because iterator inc + replaced = true; + break; + } + } + + // If we failed to replace, try a few failovers. Notably, we recognize + // that Rust may insert Unicode code points in the function name (other + // implementations treat many individual points as patterns to search on) + if (!replaced && str[i] == '.') { + // Special-case for '.' + ret += '-'; + } else if (!replaced && !str.compare(i, 2, "$u") && str[i + 4] == '$') { + int hi = hex_to_int(str[i + 2]); + int lo = hex_to_int(str[i + 3]); + if (hi != -1 && lo != -1) { + ret += static_cast(lo + 16 * hi); + i += 5 - 1; // - 1 because iterator inc + } else { + // We didn't have valid unicode values, but we should still skip + // the $u??$ sequence + ret += str.substr(i, 5); + i += 5 - 1; // -1 because iterator inc + } + } else if (!replaced) { + ret += str[i]; + } + } else { + ret += str[i]; + } + } + + return ret; +} + +// If it quacks like Rust, treat it like Rust +std::string Demangler::demangle(const std::string &mangled) { + auto demangled = llvm::demangle(mangled); + if (is_probably_rust_legacy(demangled)) + return rust_demangle(demangled); + return demangled; +} diff --git a/src/dso.cc b/src/dso.cc index 1a58fa433..907c84724 100644 --- a/src/dso.cc +++ b/src/dso.cc @@ -14,23 +14,25 @@ namespace ddprof { -static const std::string_view s_vdso_str = "[vdso]"; -static const std::string_view s_vsyscall_str = "[vsyscall]"; -static const std::string_view s_stack_str = "[stack]"; -static const std::string_view s_heap_str = "[heap]"; +constexpr std::string_view s_vdso_str = "[vdso]"; +constexpr std::string_view s_vsyscall_str = "[vsyscall]"; +constexpr std::string_view s_stack_str = "[stack]"; +constexpr std::string_view s_heap_str = "[heap]"; // anon and empty are the same (one comes from perf, the other from proc maps) -static const std::string_view s_anon_str = "//anon"; -static const std::string_view s_jsa_str = ".jsa"; +constexpr std::string_view s_anon_str = "//anon"; +constexpr std::string_view s_anon_2_str = "[anon"; +constexpr std::string_view s_jsa_str = ".jsa"; +constexpr std::string_view s_mem_fd_str = "/memfd"; // Example of these include : anon_inode:[perf_event] -static const std::string_view s_anon_inode_str = "anon_inode"; +constexpr std::string_view s_anon_inode_str = "anon_inode"; // dll should not be considered as elf files -static const std::string_view s_dll_str = ".dll"; +constexpr std::string_view s_dll_str = ".dll"; // Example socket:[123456] -static const std::string_view s_socket_str = "socket"; +constexpr std::string_view s_socket_str = "socket"; // null elements -static const std::string_view s_dev_zero_str = "/dev/zero"; -static const std::string_view s_dev_null_str = "/dev/null"; -static const std::string_view s_dd_profiling_str = k_libdd_profiling_name; +constexpr std::string_view s_dev_zero_str = "/dev/zero"; +constexpr std::string_view s_dev_null_str = "/dev/null"; +constexpr std::string_view s_dd_profiling_str = k_libdd_profiling_name; // invalid element Dso::Dso() @@ -54,8 +56,10 @@ Dso::Dso(pid_t pid, ElfAddress_t start, ElfAddress_t end, ElfAddress_t pgoff, // Safeguard against other types of files we would not handle } else if (_filename.empty() || _filename.starts_with(s_anon_str) || _filename.starts_with(s_anon_inode_str) || + _filename.starts_with(s_anon_2_str) || _filename.starts_with(s_dev_zero_str) || - _filename.starts_with(s_dev_null_str)) { + _filename.starts_with(s_dev_null_str) || + _filename.starts_with(s_mem_fd_str)) { _type = dso::kAnon; } else if ( // ends with .jsa _filename.ends_with(s_jsa_str) || _filename.ends_with(s_dll_str)) { @@ -64,6 +68,8 @@ Dso::Dso(pid_t pid, ElfAddress_t start, ElfAddress_t end, ElfAddress_t pgoff, _type = dso::kSocket; } else if (_filename[0] == '[') { _type = dso::kUndef; + } else if (is_jit_dump_str(_filename, pid)) { + _type = dso::kJITDump; } else { // check if this standard dso matches our internal dd_profiling lib std::size_t pos = _filename.rfind('/'); if (pos != std::string::npos && @@ -74,6 +80,22 @@ Dso::Dso(pid_t pid, ElfAddress_t start, ElfAddress_t end, ElfAddress_t pgoff, } } +bool Dso::is_jit_dump_str(std::string_view file_path, pid_t pid) { + // test if we finish by .dump before creating a string + if (file_path.ends_with(".dump")) { + // llvm uses this format + std::string jit_dump_str = string_format("jit-%d.dump", pid); + // this is to remove a gcc warning + if (jit_dump_str.size() >= PTRDIFF_MAX) { + return false; + } + if (file_path.ends_with(jit_dump_str)) { + return true; + } + } + return false; +} + std::string Dso::to_string() const { return string_format("PID[%d] %lx-%lx %lx (%s)(T-%s)(%c)(ID#%d)", _pid, _start, _end, _pgoff, _filename.c_str(), @@ -135,10 +157,7 @@ bool Dso::intersects(const Dso &o) const { return true; } -bool Dso::is_within(pid_t pid, ElfAddress_t addr) const { - if (pid != _pid) { - return false; - } +bool Dso::is_within(ElfAddress_t addr) const { return (addr >= _start) && (addr <= _end); } diff --git a/src/dso_hdr.cc b/src/dso_hdr.cc index bec88c7db..23381464d 100644 --- a/src/dso_hdr.cc +++ b/src/dso_hdr.cc @@ -58,50 +58,6 @@ FileHolder open_proc_maps(int pid, const char *path_to_proc = "") { } return FileHolder{f}; } - -#ifndef NDEBUG -static bool ip_in_procline(char *line, uint64_t ip) { - static const char spec[] = "%lx-%lx %4c %lx %*x:%*x %*d%n"; - uint64_t m_start = 0; - uint64_t m_end = 0; - uint64_t m_off = 0; - char m_mode[4] = {0}; - int m_p = 0; - - if (4 != sscanf(line, spec, &m_start, &m_end, m_mode, &m_off, &m_p)) { - LG_WRN("Failed to scan mapfile line (search)"); - return false; - } - - return ip >= m_start && ip <= m_end; -} - -static void pid_find_ip(int pid, uint64_t ip, - const std::string &path_to_proc = "") { - auto proc_map_file_holder = open_proc_maps(pid, path_to_proc.c_str()); - if (!proc_map_file_holder) { - if (process_is_alive(pid)) - LG_DBG("Couldn't find ip:0x%lx for %d, process is dead", ip, pid); - else - LG_DBG("Couldn't find ip:0x%lx for %d, mysteriously", ip, pid); - return; - } - - char *buf = nullptr; - defer { free(buf); }; - size_t sz_buf = 0; - while (-1 != getline(&buf, &sz_buf, proc_map_file_holder.get())) { - if (ip_in_procline(buf, ip)) { - LG_DBG("[DSO] Found ip:0x%lx for %d", ip, pid); - LG_DBG("[DSO] %.*s", (int)strlen(buf) - 1, buf); - return; - } - } - - LG_DBG("[DSO] Couldn't find ip:0x%lx for %d", ip, pid); - return; -} -#endif } // namespace /***************/ @@ -133,16 +89,21 @@ uint64_t DsoStats::sum_event_metric(DsoEventType dso_event) const { /**********/ /* DsoHdr */ /**********/ -DsoHdr::DsoHdr(int dd_profiling_fd) : _dd_profiling_fd(dd_profiling_fd) { - // Test different places for existence of /proc - // A given procfs can only work if its PID namespace is the same as mine. - // Fortunately, `/proc/self` will return a symlink to my process ID in the - // corresponding namespace, so this is easy to check - char pid_str[sizeof("1073741824")] = {}; // Linux max pid/tid is 2^30 - if (-1 != readlink("/host/proc/self", pid_str, sizeof(pid_str)) && - getpid() == strtol(pid_str, NULL, 10)) { - // @Datadog we often mount to /host the /proc files - _path_to_proc = "/host"; +DsoHdr::DsoHdr(std::string_view path_to_proc, int dd_profiling_fd) + : _dd_profiling_fd(dd_profiling_fd) { + if (path_to_proc.empty()) { + // Test different places for existence of /proc + // A given procfs can only work if its PID namespace is the same as mine. + // Fortunately, `/proc/self` will return a symlink to my process ID in the + // corresponding namespace, so this is easy to check + char pid_str[sizeof("1073741824")] = {}; // Linux max pid/tid is 2^30 + if (-1 != readlink("/host/proc/self", pid_str, sizeof(pid_str)) && + getpid() == strtol(pid_str, NULL, 10)) { + // @Datadog we often mount to /host the /proc files + _path_to_proc = "/host"; + } + } else { + _path_to_proc = path_to_proc; } // 0 element is error element _file_info_vector.emplace_back(FileInfo(), 0); @@ -168,7 +129,7 @@ bool DsoHdr::find_exe_name(pid_t pid, std::string &exe_name) { } DsoFindRes DsoHdr::dso_find_first_std_executable(pid_t pid) { - const DsoMap &map = _map[pid]; + const DsoMap &map = _pid_map[pid]._map; DsoMapConstIt it = map.lower_bound(0); // look for the first executable standard region while (it != map.end() && !it->second._executable && @@ -181,13 +142,12 @@ DsoFindRes DsoHdr::dso_find_first_std_executable(pid_t pid) { return {it, true}; } -DsoFindRes DsoHdr::dso_find_closest(const DsoMap &map, pid_t pid, - ElfAddress_t addr) { +DsoFindRes DsoHdr::dso_find_closest(const DsoMap &map, ElfAddress_t addr) { bool is_within = false; // First element not less than (can match a start addr) DsoMapConstIt it = map.lower_bound(addr); if (it != map.end()) { - is_within = it->second.is_within(pid, addr); + is_within = it->second.is_within(addr); if (is_within) { // exact match return {it, is_within}; } @@ -198,13 +158,13 @@ DsoFindRes DsoHdr::dso_find_closest(const DsoMap &map, pid_t pid, } else { // map is empty return find_res_not_found(map); } - is_within = it->second.is_within(pid, addr); + is_within = it->second.is_within(addr); return {it, is_within}; } // Find the closest and indicate if we found a dso matching this address DsoFindRes DsoHdr::dso_find_closest(pid_t pid, ElfAddress_t addr) { - return dso_find_closest(_map[pid], pid, addr); + return dso_find_closest(_pid_map[pid]._map, addr); } DsoRange DsoHdr::get_intersection(DsoMap &map, const Dso &dso) { @@ -289,8 +249,7 @@ FileInfoId_t DsoHdr::update_id_dd_profiling(const Dso &dso) { // fd already exists --> lookup directly dso._id = _file_info_vector.size(); _dd_profiling_file_info = dso._id; - _file_info_vector.emplace_back(FileInfo(dso._filename, 0, 0), dso._id, - _dd_profiling_fd); + _file_info_vector.emplace_back(FileInfo(dso._filename, 0, 0), dso._id); return _dd_profiling_file_info; } _dd_profiling_file_info = update_id_from_path(dso); @@ -311,7 +270,6 @@ FileInfoId_t DsoHdr::update_id_from_path(const Dso &dso) { if (it == _file_info_inode_map.end()) { dso._id = _file_info_vector.size(); _file_info_inode_map.emplace(std::move(key), dso._id); - // open the file descriptor to this file _file_info_vector.emplace_back(std::move(file_info), dso._id); #ifdef DEBUG LG_NTC("New file %d - %s - %ld", dso._id, file_info._path.c_str(), @@ -320,8 +278,8 @@ FileInfoId_t DsoHdr::update_id_from_path(const Dso &dso) { } else { // already exists dso._id = it->second; // update with last location - if (_file_info_vector[dso._id]._errored && - file_info._path != _file_info_vector[dso._id]._info._path) { + // looking up the actual path using mountinfo would prevent this + if (file_info._path != _file_info_vector[dso._id]._info._path) { _file_info_vector[dso._id] = FileInfoValue(std::move(file_info), dso._id); } } @@ -341,17 +299,8 @@ FileInfoId_t DsoHdr::update_id_from_dso(const Dso &dso) { return update_id_from_path(dso); } -bool DsoHdr::erase_overlap(const Dso &dso) { - DsoMap &map = _map[dso._pid]; - DsoRange range = get_intersection(map, dso); - if (range.first != map.end()) { - erase_range(map, range); - return true; - } - return false; -} - -DsoFindRes DsoHdr::insert_erase_overlap(DsoMap &map, Dso &&dso) { +DsoFindRes DsoHdr::insert_erase_overlap(PidMapping &pid_mapping, Dso &&dso) { + DsoMap &map = pid_mapping._map; DsoFindRes find_res = dso_find_adjust_same(map, dso); // nothing to do if already exists if (find_res.second) { @@ -364,6 +313,10 @@ DsoFindRes DsoHdr::insert_erase_overlap(DsoMap &map, Dso &&dso) { if (range.first != map.end()) { erase_range(map, range); } + // JITDump Marker was detected for this PID + if (dso._type == dso::kJITDump) { + pid_mapping._jitdump_addr = dso._start; + } _stats.incr_metric(DsoStats::kNewDso, dso._type); LG_DBG("[DSO] : Insert %s", dso.to_string().c_str()); // warning rvalue : do not use dso after this line @@ -371,45 +324,46 @@ DsoFindRes DsoHdr::insert_erase_overlap(DsoMap &map, Dso &&dso) { } DsoFindRes DsoHdr::insert_erase_overlap(Dso &&dso) { - return insert_erase_overlap(_map[dso._pid], std::move(dso)); + return insert_erase_overlap(_pid_map[dso._pid], std::move(dso)); } -DsoFindRes DsoHdr::dso_find_or_backpopulate(pid_t pid, ElfAddress_t addr) { - DsoMap &map = _map[pid]; +DsoFindRes DsoHdr::dso_find_or_backpopulate(PidMapping &pid_mapping, pid_t pid, + ElfAddress_t addr) { if (addr < 4095) { LG_DBG("[DSO] Skipping 0 page"); - return find_res_not_found(map); + return find_res_not_found(pid_mapping._map); } - DsoFindRes find_res = dso_find_closest(map, pid, addr); + DsoFindRes find_res = dso_find_closest(pid_mapping._map, addr); if (!find_res.second) { // backpopulate LG_DBG("[DSO] Couldn't find DSO for [%d](0x%lx). backpopulate", pid, addr); int nb_elts_added = 0; - if (pid_backpopulate(map, pid, nb_elts_added) && nb_elts_added) { - find_res = dso_find_closest(map, pid, addr); + if (pid_backpopulate(pid_mapping, pid, nb_elts_added) && nb_elts_added) { + find_res = dso_find_closest(pid_mapping._map, addr); } -#ifndef NDEBUG - if (!find_res.second) { // debug info - pid_find_ip(pid, addr, _path_to_proc); - } -#endif } return find_res; } +DsoFindRes DsoHdr::dso_find_or_backpopulate(pid_t pid, ElfAddress_t addr) { + PidMapping &pid_mapping = _pid_map[pid]; + return dso_find_or_backpopulate(pid_mapping, pid, addr); +} + void DsoHdr::pid_free(int pid) { - _map.erase(pid); + _pid_map.erase(pid); _backpopulate_state_map.erase(pid); } bool DsoHdr::pid_backpopulate(pid_t pid, int &nb_elts_added) { - return pid_backpopulate(_map[pid], pid, nb_elts_added); + return pid_backpopulate(_pid_map[pid], pid, nb_elts_added); } // Return false if proc map is not available // Return true proc map was found, use nb_elts_added for number of added // elements -bool DsoHdr::pid_backpopulate(DsoMap &map, pid_t pid, int &nb_elts_added) { +bool DsoHdr::pid_backpopulate(PidMapping &pid_mapping, pid_t pid, + int &nb_elts_added) { // Following line creates the state for pid if it does not exist BackpopulateState &bp_state = _backpopulate_state_map[pid]; ++bp_state._nbUnfoundDsos; @@ -435,7 +389,7 @@ bool DsoHdr::pid_backpopulate(DsoMap &map, pid_t pid, int &nb_elts_added) { if (dso._pid == -1) { // invalid dso continue; } - if ((insert_erase_overlap(map, std::move(dso))).second) { + if ((insert_erase_overlap(pid_mapping, std::move(dso))).second) { ++nb_elts_added; } } @@ -515,16 +469,16 @@ FileInfo DsoHdr::find_file_info(const Dso &dso) { int DsoHdr::get_nb_dso() const { unsigned total_nb_elts = 0; - std::for_each(_map.begin(), _map.end(), [&](DsoPidMap::value_type const &el) { - total_nb_elts += el.second.size(); - }); + std::for_each(_pid_map.begin(), _pid_map.end(), + [&](DsoPidMap::value_type const &el) { + total_nb_elts += el.second._map.size(); + }); return total_nb_elts; } -void DsoHdr::reset_backpopulate_state() { +void DsoHdr::reset_backpopulate_state(int reset_threshold) { for (auto &el : _backpopulate_state_map) { - if (el.second._nbUnfoundDsos > - BackpopulateState::_k_nb_requests_between_backpopulates) { + if (el.second._nbUnfoundDsos >= reset_threshold) { el.second = BackpopulateState(); } } diff --git a/src/dwfl_hdr.cc b/src/dwfl_hdr.cc index 67ff4628b..ee93c4dea 100644 --- a/src/dwfl_hdr.cc +++ b/src/dwfl_hdr.cc @@ -81,7 +81,7 @@ DDProfMod *DwflWrapper::register_mod(ProcessAddress_t pc, const Dso &dso, .first->second; } -void DwflHdr::clear_unvisited() { +std::vector DwflHdr::get_unvisited() const { std::vector pids_remove; for (auto &el : _dwfl_map) { if (_visited_pid.find(el.first) == _visited_pid.end()) { @@ -89,11 +89,10 @@ void DwflHdr::clear_unvisited() { pids_remove.push_back(el.first); } } - for (pid_t el : pids_remove) { - _dwfl_map.erase(el); - LG_NFO("[DWFL] DWFL Map Clearing PID%d", el); - } + return pids_remove; +} +void DwflHdr::reset_unvisited() { // clear the list of visited for next cycle _visited_pid.clear(); } diff --git a/src/dwfl_symbol.cc b/src/dwfl_symbol.cc index 90f80ffa5..5234b3d55 100644 --- a/src/dwfl_symbol.cc +++ b/src/dwfl_symbol.cc @@ -9,7 +9,7 @@ #include "logger.hpp" #include -#include +#include #include namespace ddprof { @@ -24,12 +24,11 @@ bool symbol_get_from_dwfl(Dwfl_Module *mod, ProcessAddress_t process_pc, bool symbol_success = false; const char *lsymname = dwfl_module_addrinfo( mod, process_pc, &loffset, &elf_sym, &lshndxp, &lelfp, &lbias); - #ifdef DEBUG int dwfl_error_value = dwfl_errno(); if (unlikely(dwfl_error_value)) { - LG_DBG("[DWFL_SYMB] addrinfo error -- Error:%s -- %s", - dwfl_errmsg(dwfl_error_value), lsymname); + LG_DBG("[DWFL_SYMB] addrinfo error -- Error:%s -- %lx", + dwfl_errmsg(dwfl_error_value), process_pc); } #else dwfl_errno(); @@ -37,7 +36,7 @@ bool symbol_get_from_dwfl(Dwfl_Module *mod, ProcessAddress_t process_pc, if (lsymname) { symbol._symname = std::string(lsymname); - symbol._demangle_name = llvm::demangle(symbol._symname); + symbol._demangle_name = Demangler::demangle(symbol._symname); symbol_success = true; } else { return false; @@ -46,7 +45,7 @@ bool symbol_get_from_dwfl(Dwfl_Module *mod, ProcessAddress_t process_pc, // #define FLAG_SYMBOL // A small mechanism to create a trace around the expected function #ifdef FLAG_SYMBOL - static const std::string_view look_for_symb = "runtime.asmcgocall.abi0"; + static constexpr std::string_view look_for_symb = "$x"; if (symbol._demangle_name.find(look_for_symb) != std::string::npos) { LG_NFO("DGB:: GOING THROUGH EXPECTED FUNC: %s", look_for_symb.data()); } @@ -97,4 +96,4 @@ bool compute_elf_range(ElfAddress_t file_pc, const GElf_Sym &elf_sym, return file_pc >= start_sym && file_pc <= end_sym; } -} // namespace ddprof \ No newline at end of file +} // namespace ddprof diff --git a/src/dwfl_thread_callbacks.cc b/src/dwfl_thread_callbacks.cc index 103e0a5d1..8e1081fbb 100644 --- a/src/dwfl_thread_callbacks.cc +++ b/src/dwfl_thread_callbacks.cc @@ -1,4 +1,10 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + #include "dwfl_thread_callbacks.hpp" +#include "perf_archmap.hpp" #include "unwind_helpers.hpp" #include "unwind_state.hpp" @@ -19,70 +25,18 @@ pid_t next_thread(Dwfl *dwfl, void *arg, void **thread_argp) { // libdwfl/unwind-libdw.c bool set_initial_registers(Dwfl_Thread *thread, void *arg) { Dwarf_Word regs[PERF_REGS_COUNT] = {}; // max register count across all arcs - uint64_t n = 0; struct UnwindState *us = reinterpret_cast(arg); - -#ifdef __x86_64__ - // Substantial difference here in 32- and 64-bit x86; only support 64-bit now - regs[n++] = us->initial_regs.regs[REGNAME(RAX)]; - regs[n++] = us->initial_regs.regs[REGNAME(RDX)]; - regs[n++] = us->initial_regs.regs[REGNAME(RCX)]; - regs[n++] = us->initial_regs.regs[REGNAME(RBX)]; - regs[n++] = us->initial_regs.regs[REGNAME(RSI)]; - regs[n++] = us->initial_regs.regs[REGNAME(RDI)]; - regs[n++] = us->initial_regs.regs[REGNAME(RBP)]; - regs[n++] = us->initial_regs.regs[REGNAME(SP)]; - regs[n++] = us->initial_regs.regs[REGNAME(R8)]; - regs[n++] = us->initial_regs.regs[REGNAME(R9)]; - regs[n++] = us->initial_regs.regs[REGNAME(R10)]; - regs[n++] = us->initial_regs.regs[REGNAME(R11)]; - regs[n++] = us->initial_regs.regs[REGNAME(R12)]; - regs[n++] = us->initial_regs.regs[REGNAME(R13)]; - regs[n++] = us->initial_regs.regs[REGNAME(R14)]; - regs[n++] = us->initial_regs.regs[REGNAME(R15)]; - regs[n++] = us->initial_regs.regs[REGNAME(PC)]; -#elif __aarch64__ - regs[n++] = us->initial_regs.regs[REGNAME(X0)]; - regs[n++] = us->initial_regs.regs[REGNAME(X1)]; - regs[n++] = us->initial_regs.regs[REGNAME(X2)]; - regs[n++] = us->initial_regs.regs[REGNAME(X3)]; - regs[n++] = us->initial_regs.regs[REGNAME(X4)]; - regs[n++] = us->initial_regs.regs[REGNAME(X5)]; - regs[n++] = us->initial_regs.regs[REGNAME(X6)]; - regs[n++] = us->initial_regs.regs[REGNAME(X7)]; - regs[n++] = us->initial_regs.regs[REGNAME(X8)]; - regs[n++] = us->initial_regs.regs[REGNAME(X9)]; - regs[n++] = us->initial_regs.regs[REGNAME(X10)]; - regs[n++] = us->initial_regs.regs[REGNAME(X11)]; - regs[n++] = us->initial_regs.regs[REGNAME(X12)]; - regs[n++] = us->initial_regs.regs[REGNAME(X13)]; - regs[n++] = us->initial_regs.regs[REGNAME(X14)]; - regs[n++] = us->initial_regs.regs[REGNAME(X15)]; - regs[n++] = us->initial_regs.regs[REGNAME(X16)]; - regs[n++] = us->initial_regs.regs[REGNAME(X17)]; - regs[n++] = us->initial_regs.regs[REGNAME(X18)]; - regs[n++] = us->initial_regs.regs[REGNAME(X19)]; - regs[n++] = us->initial_regs.regs[REGNAME(X20)]; - regs[n++] = us->initial_regs.regs[REGNAME(X21)]; - regs[n++] = us->initial_regs.regs[REGNAME(X22)]; - regs[n++] = us->initial_regs.regs[REGNAME(X23)]; - regs[n++] = us->initial_regs.regs[REGNAME(X24)]; - regs[n++] = us->initial_regs.regs[REGNAME(X25)]; - regs[n++] = us->initial_regs.regs[REGNAME(X26)]; - regs[n++] = us->initial_regs.regs[REGNAME(X27)]; - regs[n++] = us->initial_regs.regs[REGNAME(X28)]; - regs[n++] = us->initial_regs.regs[REGNAME(FP)]; - regs[n++] = us->initial_regs.regs[REGNAME(LR)]; - regs[n++] = us->initial_regs.regs[REGNAME(SP)]; - + // clang-format off + unsigned int regs_num; + for (regs_num = 0; - 1u != dwarf_to_perf_regno(regs_num); ++regs_num) { + unsigned int regs_idx = dwarf_to_perf_regno(regs_num); + regs[regs_num] = us->initial_regs.regs[regs_idx]; + } + // clang-format on // Although the perf registers designate the register after SP as the PC, this // convention is not a documented convention of the DWARF registers. We set // the PC manually. -#else -# error Architecture not supported -#endif - - if (!dwfl_thread_state_registers(thread, 0, n, regs)) + if (!dwfl_thread_state_registers(thread, 0, regs_num, regs)) return false; dwfl_thread_state_register_pc(thread, us->initial_regs.regs[REGNAME(PC)]); diff --git a/src/event_parser/CMakeLists.txt b/src/event_parser/CMakeLists.txt new file mode 100644 index 000000000..4c05af008 --- /dev/null +++ b/src/event_parser/CMakeLists.txt @@ -0,0 +1,26 @@ +# Unless explicitly stated otherwise all files in this repository are licensed under the Apache +# License Version 2.0. This product includes software developed at Datadog +# (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc. + +find_package(BISON REQUIRED) +find_package(FLEX REQUIRED) + +set(EVENT_PARSER_DIR ${CMAKE_CURRENT_BINARY_DIR}/event_parser) +set(EVENT_PARSER_SRC ${EVENT_PARSER_DIR}/src) +set(EVENT_PARSER_INCLUDE ${EVENT_PARSER_DIR}/include) +file(MAKE_DIRECTORY ${EVENT_PARSER_DIR} ${EVENT_PARSER_SRC} ${EVENT_PARSER_INCLUDE}) + +bison_target(event_parser_yacc event_parser.y ${EVENT_PARSER_SRC}/event_parser.tab.cpp + DEFINES_FILE ${EVENT_PARSER_INCLUDE}/event_parser.h) +flex_target(event_parser_lex event_parser.l ${EVENT_PARSER_SRC}/event_parser.lex.cpp) +add_flex_bison_dependency(event_parser_lex event_parser_yacc) + +set(DD_EVENT_PARSER_SOURCES + # cmake-format: sortable + ${EVENT_PARSER_SRC}/event_parser.lex.cpp ${EVENT_PARSER_SRC}/event_parser.tab.cpp) + +add_library(event_parser STATIC ${DD_EVENT_PARSER_SOURCES}) +target_include_directories(event_parser PUBLIC ${EVENT_PARSER_INCLUDE} ../../include) +set_property(TARGET event_parser PROPERTY POSITION_INDEPENDENT_CODE ON) +set_property(TARGET event_parser PROPERTY CXX_CLANG_TIDY "") +add_library(DDProf::Parser ALIAS event_parser) diff --git a/src/event_parser/event_parser.l b/src/event_parser/event_parser.l new file mode 100644 index 000000000..0f82e14db --- /dev/null +++ b/src/event_parser/event_parser.l @@ -0,0 +1,94 @@ +/* + Unless explicitly stated otherwise all files in this repository are licensed + under the Apache License Version 2.0. This product includes software + developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present + Datadog, Inc. +*/ + +%option noyywrap nounput noinput +%option reentrant +%option bison-bridge + +%{ +#include +#include "event_config.hpp" +#include "event_parser.h" + +#define DISPATCH(type) \ +{ \ + yylval->field = (EventConfField::k##type); \ + return KEY; \ +} + +%} + +%x VALUE + +%% + +{ +[[:alpha:]_][[:alnum:]_]* { + yylval->str = new std::string{yytext}; + BEGIN 0; + return WORD; +} +[-+]?[[:digit:]]+ { + yylval->num = strtol(yytext, NULL, 10); + BEGIN 0; + return NUMBER; +} +[-+]?0x[[:digit:]]+ { + + yylval->num = strtol(yytext, NULL, 16); + BEGIN 0; + return HEXNUMBER; +} +[-+]?[[:digit:].]+[fFdD]? { + yylval->fpnum = strtod(yytext, NULL); + BEGIN 0; + return FLOAT; +} + +. { + BEGIN 0; + return (int) yytext[0]; +} +} + +s|value_scale|scale DISPATCH(ValueScale) +f|frequency|freq DISPATCH(Frequency) +e|event|eventname|ev DISPATCH(Event) +g|group|groupname|gr DISPATCH(Group) +i|id DISPATCH(Id) +l|label DISPATCH(Label) +m|mode DISPATCH(Mode) +n|arg_num|argno DISPATCH(Parameter) +o|raw_offset|rawoff DISPATCH(RawOffset) +p|period|per DISPATCH(Period) +r|register|regno DISPATCH(Register) +z|raw_size|rawsz DISPATCH(RawSize) + += { + BEGIN VALUE; + return EQ; +} + +[ ,\t][ \t]* { + BEGIN 0; + return OPTSEP; +} + +; { + BEGIN 0; + return CONFSEP; +} + +[[:alpha:]_][[:alnum:]_]* { + yylval->str = new std::string{yytext}; + BEGIN 0; + return WORD; +} + +. { + return (int) yytext[0]; +} diff --git a/src/event_parser/event_parser.y b/src/event_parser/event_parser.y new file mode 100644 index 000000000..0fa30b8e5 --- /dev/null +++ b/src/event_parser/event_parser.y @@ -0,0 +1,315 @@ +/* + Unless explicitly stated otherwise all files in this repository are licensed + under the Apache License Version 2.0. This product includes software + developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present + Datadog, Inc. +*/ + +%define api.pure +%lex-param {void *scanner} // actually yyscan_t +%parse-param {void *scanner} // actually yyscan_t + +%{ +#include +#include +#include +#include + +#include "event_config.hpp" +#include "event_parser.h" +#include "perf_archmap.hpp" + +#define YYDEBUG 0 + +#ifndef YY_TYPEDEF_YY_SCANNER_T +#define YY_TYPEDEF_YY_SCANNER_T +typedef struct yy_buffer_state * YY_BUFFER_STATE; +typedef void * yyscan_t; +#endif + +extern int yylex_init(yyscan_t * scanner); +extern int yylex(YYSTYPE * lvalp, void *scanner); +extern int yyparse(yyscan_t scanner); +extern int yylex_destroy(yyscan_t scanner); +extern YY_BUFFER_STATE yy_scan_string(const char * str, yyscan_t scanner); +extern void yy_delete_buffer(YY_BUFFER_STATE buffer, yyscan_t scanner); + +EventConfMode mode_from_str(const std::string &str) { + EventConfMode mode = EventConfMode::kDisabled; + if (str.empty()) + return mode; + const std::string a_str{"Aa*"}; + const std::string l_str{"Ll"}; + const std::string g_str{"Gg"}; + const std::string m_str{"Mm"}; + + for (const char &c : str) { + if (m_str.find(c) != std::string::npos) { + mode |= EventConfMode::kMetric; + } + if (g_str.find(c) != std::string::npos) { + mode |= EventConfMode::kCallgraph; + } + if (l_str.find(c) != std::string::npos) { + mode |= EventConfMode::kLiveCallgraph; + } + if (a_str.find(c) != std::string::npos) { + mode |= EventConfMode::kAll; + } + } + return mode; +} + +void conf_finalize(EventConf *conf) { + // Generate label if needed + // * if both, ":" + // * if only event, "" + // * if neither, but id, "id:" + // * if none, then this is an invalid event anyway + if (conf->label.empty()) { + if (!conf->eventname.empty() && !conf->groupname.empty()) { + conf->label = conf->groupname + ":" + conf->eventname; + } else if (!conf->eventname.empty() && conf->groupname.empty()) { + conf->label = conf->eventname; + } else if (conf->id) { + conf->label = "id:" + std::to_string(conf->id); + } + } + + // If no cadence type is explicitly set, then period=1 + if (conf->cad_type == EventConfCadenceType::kUndefined) { + conf->cad_type = EventConfCadenceType::kPeriod; + } +} + +void conf_print(const EventConf *tp) { + if (tp->id) + printf(" id: %lu\n", tp->id); + else if (!tp->groupname.empty()) + printf(" tracepoint: %s:%s\n", tp->groupname.c_str(), tp->eventname.c_str()); + else + printf(" event: %s\n", tp->eventname.c_str()); + + if (!tp->label.empty()) + printf(" label: %s\n", tp->label.c_str()); + else + printf(" label: \n"); + + const char *modenames[] = {"ILLEGAL", "callgraph", "metric", "live callgraph", "metric and callgraph"}; + printf(" type: %s\n", modenames[static_cast(tp->mode)]); + + + if (tp->value_source == EventConfValueSource::kSample) + printf(" location: value\n"); + else if (tp->value_source == EventConfValueSource::kRegister) + printf(" location: register (%d)\n", tp->register_num); + else if (tp->value_source == EventConfValueSource::kRaw) + printf(" location: raw event (%lu with size %d bytes)\n", tp->raw_offset, tp->raw_size); + + if (tp->value_scale != 0) + printf(" scaling factor: %f\n", tp->value_scale); + + printf("\n"); + +} + +EventConf g_accum_event_conf = {}; + +void yyerror(yyscan_t scanner, const char *str) { +#ifdef EVENT_PARSER_MAIN + fprintf(stderr, "err: %s\n", str); +#endif +} + +#define VAL_ERROR() \ + do { \ + yyerror(NULL, "Invalid value"); \ + YYABORT; \ + } while(0) + +EventConf *EventConf_parse(const char *msg) { + g_accum_event_conf.clear(); + int ret = -1; + yyscan_t scanner = NULL; + YY_BUFFER_STATE buffer = NULL; + + yylex_init(&scanner); + buffer = yy_scan_string(msg, scanner); + ret = yyparse(scanner); + yy_delete_buffer(buffer, scanner); + yylex_destroy(scanner); + return 0 == ret ? &g_accum_event_conf : NULL; +} + +#ifdef EVENT_PARSER_MAIN +bool g_debugout_enable = false; +int main(int c, char **v) { + g_debugout_enable = false; + if (c) { + printf(">\"%s\"\n", v[1]); + YY_BUFFER_STATE buffer = yy_scan_string(v[1]); + g_debugout_enable = true; + if (!yyparse()) + conf_print(&g_accum_event_conf); + else + fprintf(stderr, " ERROR\n"); + yy_delete_buffer(buffer); + } else { + yyparse(); + } + return 0; +} +#endif +%} + +%union { + int64_t num; + std::string *str; + char typ; + double fpnum; + EventConfField field; +}; + +%token EQ OPTSEP CONFSEP +%token FLOAT +%token NUMBER HEXNUMBER +%token WORD +%token KEY + +%type integer +%type conf +%type opt + +%destructor { delete $$; } WORD + +%% + +// this only allows a single config to be processed at a time +// ... and has ugly whitespace stripping +confs: + conf { conf_finalize(&g_accum_event_conf); } + | confs CONFSEP conf // Unchained, subsequent configs ignored + ; + +conf: + | opt | conf OPTSEP conf ; + +opt: + WORD { + g_accum_event_conf.eventname = *$1; + delete $1; + } + | KEY EQ WORD { + switch($$) { + case EventConfField::kEvent: + g_accum_event_conf.eventname = *$3; + break; + case EventConfField::kGroup: + g_accum_event_conf.groupname = *$3; + break; + case EventConfField::kLabel: + g_accum_event_conf.label = *$3; + break; + case EventConfField::kMode: + g_accum_event_conf.mode |= mode_from_str(*$3); + break; + default: + delete $3; + VAL_ERROR(); + break; + } + delete $3; + } + | KEY EQ WORD ':' WORD { + if ($$ == EventConfField::kEvent || $$ == EventConfField::kGroup) { + g_accum_event_conf.eventname = *$3; + g_accum_event_conf.groupname = *$5; + } + delete $3; + delete $5; + } + | KEY EQ integer { + // FIXME TODO HACK + // As a temporary measure, we're allowing integers to be negative ONLY + // for the period. + if ($3 < 0 && $$ != EventConfField::kPeriod && $$ != EventConfField::kValueScale) { + VAL_ERROR(); + break; + } + switch($$) { + case EventConfField::kId: + g_accum_event_conf.id = $3; + break; + case EventConfField::kRawSize: + // sz without a valid offset is ignored? + if ($3 != 1 && $3 != 2 && $3 != 4 && $3 != 8) { + VAL_ERROR(); + break; + } + g_accum_event_conf.raw_size= $3; + break; + case EventConfField::kValueScale: + g_accum_event_conf.value_scale = 0.0 + $3; + break; + case EventConfField::kMode: + g_accum_event_conf.mode = static_cast($3) & EventConfMode::kAll; + break; + + case EventConfField::kParameter: + case EventConfField::kRegister: + case EventConfField::kRawOffset: + // If the location type has already been set, then this is an error. + if (g_accum_event_conf.value_source != EventConfValueSource::kSample) { + VAL_ERROR(); + break; + } + if ($$ == EventConfField::kParameter) { + g_accum_event_conf.value_source = EventConfValueSource::kRegister; + unsigned int regno = param_to_perf_regno($3); + if (regno == -1u) { + VAL_ERROR(); + break; + } + g_accum_event_conf.register_num = regno; + } + if ($$ == EventConfField::kRegister) { + if ($3 >= PERF_REGS_COUNT) { + VAL_ERROR(); + break; + } + g_accum_event_conf.value_source = EventConfValueSource::kRegister; + g_accum_event_conf.register_num = $3; + } + if ($$ == EventConfField::kRawOffset) { + g_accum_event_conf.value_source = EventConfValueSource::kRaw; + g_accum_event_conf.raw_offset = $3; + } + break; + + case EventConfField::kPeriod: + case EventConfField::kFrequency: + // If the cadence has already been set, it's an error + if (g_accum_event_conf.cad_type != EventConfCadenceType::kUndefined) { + VAL_ERROR(); + break; + } + + g_accum_event_conf.cadence = $3; + if ($$ == EventConfField::kPeriod) + g_accum_event_conf.cad_type = EventConfCadenceType::kPeriod; + if ($$ == EventConfField::kFrequency) + g_accum_event_conf.cad_type = EventConfCadenceType::kFrequency; + break; + + default: VAL_ERROR(); break; + } + } + | KEY EQ FLOAT { + if ($$ == EventConfField::kValueScale) + g_accum_event_conf.value_scale = $3; + else + VAL_ERROR(); + } + ; + +integer: NUMBER | HEXNUMBER diff --git a/src/exe/main.cc b/src/exe/main.cc index 8bbc480be..840dd3617 100644 --- a/src/exe/main.cc +++ b/src/exe/main.cc @@ -172,13 +172,13 @@ static InputResult parse_input(int *argc, char ***argv, DDProfContext *ctx) { return IsDDResOK(res) ? InputResult::kStop : InputResult::kError; } - // logger can be closed (as it is opened in ddprof_context_set) + // logger can be closed (as it is opened in context_set) LOG_close(); // cmdline args have been processed. Set the ctx - if (IsDDResNotOK(ddprof_context_set(&input, ctx))) { + if (IsDDResNotOK(ddprof::context_set(&input, ctx))) { LG_ERR("Error setting up profiling context, exiting"); - ddprof_context_free(ctx); + ddprof::context_free(ctx); return InputResult::kError; } // Adjust input parameters for execvp() (we do this even if unnecessary) @@ -200,7 +200,7 @@ static InputResult parse_input(int *argc, char ***argv, DDProfContext *ctx) { return InputResult::kError; } - if (ddprof_context_allocation_profiling_watcher_idx(ctx) != -1 && + if (ddprof::context_allocation_profiling_watcher_idx(ctx) != -1 && ctx->params.pid && ctx->params.sockfd == -1) { LG_ERR("Memory allocation profiling is not supported in PID / global mode"); return InputResult::kError; @@ -210,7 +210,7 @@ static InputResult parse_input(int *argc, char ***argv, DDProfContext *ctx) { } static int start_profiler_internal(DDProfContext *ctx, bool &is_profiler) { - auto defer_context_free = make_defer([ctx] { ddprof_context_free(ctx); }); + auto defer_context_free = make_defer([ctx] { ddprof::context_free(ctx); }); is_profiler = false; @@ -229,7 +229,7 @@ static int start_profiler_internal(DDProfContext *ctx, bool &is_profiler) { // Determine if library should be injected into target process // (ie. only if allocation profiling is active) bool allocation_profiling_started_from_wrapper = - ddprof_context_allocation_profiling_watcher_idx(ctx) != -1; + ddprof::context_allocation_profiling_watcher_idx(ctx) != -1; enum { kParentIdx, kChildIdx }; int sockfds[2] = {-1, -1}; @@ -259,7 +259,8 @@ static int start_profiler_internal(DDProfContext *ctx, bool &is_profiler) { } ctx->params.pid = getpid(); - auto daemonize_res = ddprof::daemonize([ctx] { ddprof_context_free(ctx); }); + auto daemonize_res = + ddprof::daemonize([ctx] { ddprof::context_free(ctx); }); if (daemonize_res.temp_pid == -1) { return -1; @@ -339,7 +340,7 @@ static int start_profiler_internal(DDProfContext *ctx, bool &is_profiler) { reply.pid = getpid(); int alloc_watcher_idx = - ddprof_context_allocation_profiling_watcher_idx(ctx); + ddprof::context_allocation_profiling_watcher_idx(ctx); if (alloc_watcher_idx != -1) { ddprof::span pevents{ctx->worker_ctx.pevent_hdr.pes, ctx->worker_ctx.pevent_hdr.size}; @@ -356,6 +357,11 @@ static int start_profiler_internal(DDProfContext *ctx, bool &is_profiler) { static_cast(event_it->ring_buffer_type); reply.allocation_profiling_rate = ctx->watchers[alloc_watcher_idx].sample_period; + + if (ctx->watchers[alloc_watcher_idx].output_mode == + EventConfMode::kLiveCallgraph) { + reply.allocation_flags |= (1 << ddprof::ReplyMessage::kLiveCallgraph); + } } } @@ -431,7 +437,7 @@ int main(int argc, char *argv[]) { } { - defer { ddprof_context_free(&ctx); }; + defer { ddprof::context_free(&ctx); }; /****************************************************************************\ | Run the Profiler | \****************************************************************************/ @@ -459,7 +465,7 @@ int main(int argc, char *argv[]) { LG_ERR("%s: permission denied", argv[0]); break; default: - LG_WRN("%s: failed to execute (%s)", argv[0], strerror(errno)); + LG_ERR("%s: failed to execute (%s)", argv[0], strerror(errno)); break; } } diff --git a/src/exporter/ddprof_exporter.cc b/src/exporter/ddprof_exporter.cc index 74246c124..6f5ff971f 100644 --- a/src/exporter/ddprof_exporter.cc +++ b/src/exporter/ddprof_exporter.cc @@ -24,17 +24,25 @@ #include static const int k_timeout_ms = 10000; -static const int k_size_api_key = 32; static char *alloc_url_agent(const char *protocol, const char *host, const char *port) { - size_t expected_size = snprintf(NULL, 0, "%s%s:%s", protocol, host, port); - char *url = (char *)malloc(expected_size + 1); - if (!url) // Early exit on alloc failure - return NULL; - - snprintf(url, expected_size + 1, "%s%s:%s", protocol, host, port); - return url; + if (port) { + size_t expected_size = snprintf(NULL, 0, "%s%s:%s", protocol, host, port); + char *url = (char *)malloc(expected_size + 1); + if (!url) // Early exit on alloc failure + return NULL; + + snprintf(url, expected_size + 1, "%s%s:%s", protocol, host, port); + return url; + } else { + size_t expected_size = snprintf(NULL, 0, "%s%s", protocol, host); + char *url = (char *)malloc(expected_size + 1); + if (!url) // Early exit on alloc failure + return NULL; + snprintf(url, expected_size + 1, "%s%s", protocol, host); + return url; + } } static DDRes create_pprof_file(ddog_Timespec start, @@ -53,8 +61,9 @@ static DDRes create_pprof_file(ddog_Timespec start, } /// Write pprof to a valid file descriptor : allows to use pprof tools -static DDRes write_profile(const ddog_EncodedProfile *encoded_profile, int fd) { - const ddog_Vec_u8 *buffer = &encoded_profile->buffer; +static DDRes write_profile(const ddog_prof_EncodedProfile *encoded_profile, + int fd) { + const ddog_Vec_U8 *buffer = &encoded_profile->buffer; if (write(fd, buffer->ptr, buffer->len) == 0) { DDRES_RETURN_ERROR_LOG(DD_WHAT_EXPORTER, "Failed to write byte buffer to stdout! %s\n", @@ -63,7 +72,7 @@ static DDRes write_profile(const ddog_EncodedProfile *encoded_profile, int fd) { return ddres_init(); } -static DDRes write_pprof_file(const ddog_EncodedProfile *encoded_profile, +static DDRes write_pprof_file(const ddog_prof_EncodedProfile *encoded_profile, const char *dbg_pprof_prefix) { int fd = -1; DDRES_CHECK_FWD( @@ -73,6 +82,21 @@ static DDRes write_pprof_file(const ddog_EncodedProfile *encoded_profile, return {}; } +bool contains_port(const char *url) { + const char *port_ptr = strrchr(url, ':'); + if (port_ptr != NULL) { + // Check if the characters after the ':' are digits + for (const char *p = port_ptr + 1; *p != '\0'; p++) { + if (!isdigit(*p)) { + return false; + } + } + return true; + } else { + return false; + } +} + DDRes ddprof_exporter_init(const ExporterInput *exporter_input, DDProfExporter *exporter) { memset(exporter, 0, sizeof(DDProfExporter)); @@ -91,20 +115,43 @@ DDRes ddprof_exporter_init(const ExporterInput *exporter_input, } if (exporter->_agent) { - exporter->_url = - alloc_url_agent("http://", exporter_input->host, exporter_input->port); + const char *port_str = exporter_input->port; + + if (exporter_input->url) { + // uds -> no port + if (!strncasecmp(exporter_input->url, "unix", 4)) { + port_str = nullptr; + } + // already port -> no port + else if (contains_port(exporter_input->url)) { + port_str = nullptr; + } + // check if schema is already available + if (strstr(exporter_input->url, "://") != NULL) { + exporter->_url = alloc_url_agent("", exporter_input->url, port_str); + } else { + // not available, assume http + exporter->_url = + alloc_url_agent("http://", exporter_input->url, port_str); + } + } else { + // no url, use default host and port settings + exporter->_url = alloc_url_agent("http://", exporter_input->host, + exporter_input->port); + } } else { - // site is the usual option for intake - if (exporter->_input.site) { + // agentless mode + if (exporter->_input.url) { // warning : should not contain intake.profile. (prepended in // libdatadog_profiling) - exporter->_url = strdup(exporter_input->site); + exporter->_url = strdup(exporter_input->url); } else { LG_WRN( "[EXPORTER] Agentless - Attempting to use host (%s) instead of empty " - "site", + "url", exporter_input->host); - exporter->_url = strdup(exporter_input->host); + exporter->_url = alloc_url_agent("http://", exporter_input->host, + exporter_input->port); } } if (!exporter->_url) { @@ -121,14 +168,15 @@ DDRes ddprof_exporter_init(const ExporterInput *exporter_input, return ddres_init(); } -static DDRes add_single_tag(ddog_Vec_tag &tags_exporter, std::string_view key, +static DDRes add_single_tag(ddog_Vec_Tag &tags_exporter, std::string_view key, std::string_view value) { - ddog_PushTagResult push_tag_res = - ddog_Vec_tag_push(&tags_exporter, to_CharSlice(key), to_CharSlice(value)); - defer { ddog_PushTagResult_drop(push_tag_res); }; - if (push_tag_res.tag == DDOG_PUSH_TAG_RESULT_ERR) { - LG_ERR("[EXPORTER] Failure generate tag (%.*s)", (int)push_tag_res.err.len, - push_tag_res.err.ptr); + ddog_Vec_Tag_PushResult push_tag_res = + ddog_Vec_Tag_push(&tags_exporter, to_CharSlice(key), to_CharSlice(value)); + if (push_tag_res.tag == DDOG_VEC_TAG_PUSH_RESULT_ERR) { + defer { ddog_Error_drop(&push_tag_res.err); }; + + LG_ERR("[EXPORTER] Failure generate tag (%.*s)", + (int)push_tag_res.err.message.len, push_tag_res.err.message.ptr); DDRES_RETURN_ERROR_LOG(DD_WHAT_EXPORTER, "Failed to generate tags"); } return ddres_init(); @@ -136,7 +184,7 @@ static DDRes add_single_tag(ddog_Vec_tag &tags_exporter, std::string_view key, static DDRes fill_stable_tags(const UserTags *user_tags, const DDProfExporter *exporter, - ddog_Vec_tag &tags_exporter) { + ddog_Vec_Tag &tags_exporter) { // language is guaranteed to be filled DDRES_CHECK_FWD( @@ -169,7 +217,9 @@ static DDRes fill_stable_tags(const UserTags *user_tags, } DDRes ddprof_exporter_new(const UserTags *user_tags, DDProfExporter *exporter) { - ddog_Vec_tag tags_exporter = ddog_Vec_tag_new(); + ddog_Vec_Tag tags_exporter = ddog_Vec_Tag_new(); + defer { ddog_Vec_Tag_drop(tags_exporter); }; + fill_stable_tags(user_tags, exporter, tags_exporter); ddog_CharSlice base_url = to_CharSlice(exporter->_url); @@ -181,17 +231,18 @@ DDRes ddprof_exporter_new(const UserTags *user_tags, DDProfExporter *exporter) { endpoint = ddog_Endpoint_agentless(base_url, api_key); } - ddog_NewProfileExporterResult new_exporter = ddog_ProfileExporter_new( + ddog_prof_Exporter_NewResult res_exporter = ddog_prof_Exporter_new( + to_CharSlice(exporter->_input.user_agent), + to_CharSlice(exporter->_input.profiler_version), to_CharSlice(exporter->_input.family), &tags_exporter, endpoint); - if (new_exporter.tag == DDOG_NEW_PROFILE_EXPORTER_RESULT_OK) { - exporter->_exporter = new_exporter.ok; + if (res_exporter.tag == DDOG_PROF_EXPORTER_NEW_RESULT_OK) { + exporter->_exporter = res_exporter.ok; } else { + defer { ddog_Error_drop(&res_exporter.err); }; DDRES_RETURN_ERROR_LOG(DD_WHAT_EXPORTER, "Failure creating exporter - %s", - new_exporter.err.ptr); - ddog_NewProfileExporterResult_drop(new_exporter); + res_exporter.err.message.ptr); } - ddog_Vec_tag_drop(tags_exporter); return ddres_init(); } @@ -224,7 +275,7 @@ static DDRes check_send_response_code(uint16_t send_response_code) { static DDRes fill_cycle_tags(const ddprof::Tags &additional_tags, uint32_t profile_seq, - ddog_Vec_tag &ffi_additional_tags) { + ddog_Vec_Tag &ffi_additional_tags) { DDRES_CHECK_FWD(add_single_tag(ffi_additional_tags, "profile_seq", std::to_string(profile_seq))); @@ -235,18 +286,20 @@ static DDRes fill_cycle_tags(const ddprof::Tags &additional_tags, return ddres_init(); } -DDRes ddprof_exporter_export(const ddog_Profile *profile, +DDRes ddprof_exporter_export(const ddog_prof_Profile *profile, const ddprof::Tags &additional_tags, uint32_t profile_seq, DDProfExporter *exporter) { DDRes res = ddres_init(); - ddog_SerializeResult serialized_result = - ddog_Profile_serialize(profile, nullptr, nullptr); - defer { ddog_SerializeResult_drop(serialized_result); }; - if (serialized_result.tag != DDOG_SERIALIZE_RESULT_OK) { - DDRES_RETURN_ERROR_LOG(DD_WHAT_EXPORTER, "Failed to serialize"); + ddog_prof_Profile_SerializeResult serialized_result = + ddog_prof_Profile_serialize(profile, nullptr, nullptr); + if (serialized_result.tag != DDOG_PROF_PROFILE_SERIALIZE_RESULT_OK) { + defer { ddog_Error_drop(&serialized_result.err); }; + DDRES_RETURN_ERROR_LOG(DD_WHAT_EXPORTER, "Failed to serialize: %s", + serialized_result.err.message.ptr); } - ddog_EncodedProfile *encoded_profile = &serialized_result.ok; + ddog_prof_EncodedProfile *encoded_profile = &serialized_result.ok; + defer { ddog_prof_EncodedProfile_drop(encoded_profile); }; if (exporter->_debug_pprof_prefix) { write_pprof_file(encoded_profile, exporter->_debug_pprof_prefix); @@ -263,32 +316,42 @@ DDRes ddprof_exporter_export(const ddog_Profile *profile, exporter->_last_pprof_size = profile_data.len; if (exporter->_export) { - ddog_Vec_tag ffi_additional_tags = ddog_Vec_tag_new(); - defer { ddog_Vec_tag_drop(ffi_additional_tags); }; + ddog_Vec_Tag ffi_additional_tags = ddog_Vec_Tag_new(); + defer { ddog_Vec_Tag_drop(ffi_additional_tags); }; DDRES_CHECK_FWD( fill_cycle_tags(additional_tags, profile_seq, ffi_additional_tags);); LG_NTC("[EXPORTER] Export buffer of size %lu", profile_data.len); // Backend has some logic based on the following naming - ddog_File files_[] = {{ + ddog_prof_Exporter_File files_[] = {{ .name = to_CharSlice("auto.pprof"), .file = profile_data, }}; - ddog_Slice_file files = {.ptr = files_, .len = std::size(files_)}; + ddog_prof_Exporter_Slice_File files = {.ptr = files_, + .len = std::size(files_)}; + + ddog_prof_Exporter_Request_BuildResult res_request = + ddog_prof_Exporter_Request_build(exporter->_exporter, start, end, files, + &ffi_additional_tags, nullptr, + k_timeout_ms); + + if (res_request.tag == DDOG_PROF_EXPORTER_REQUEST_BUILD_RESULT_OK) { + ddog_prof_Exporter_Request *request = res_request.ok; + + // dropping the request is not useful if we have a send + // however the send will replace the request by null when it takes + // ownership + defer { ddog_prof_Exporter_Request_drop(&request); }; - ddog_Request *request = - ddog_ProfileExporter_build(exporter->_exporter, start, end, files, - &ffi_additional_tags, k_timeout_ms); - if (request) { - ddog_SendResult result = - ddog_ProfileExporter_send(exporter->_exporter, request, nullptr); - defer { ddog_SendResult_drop(result); }; + ddog_prof_Exporter_SendResult result = + ddog_prof_Exporter_send(exporter->_exporter, &request, nullptr); - if (result.tag == DDOG_SEND_RESULT_ERR) { + if (result.tag == DDOG_PROF_EXPORTER_SEND_RESULT_ERR) { + defer { ddog_Error_drop(&result.err); }; LG_WRN("Failure to establish connection, check url %s", exporter->_url); - LG_WRN("Failure to send profiles (%.*s)", (int)result.err.len, - result.err.ptr); + LG_WRN("Failure to send profiles (%.*s)", (int)result.err.message.len, + result.err.message.ptr); // Free error buffer (prefer this API to the free API) if (exporter->_nb_consecutive_errors++ >= K_NB_CONSECUTIVE_ERRORS_ALLOWED) { @@ -303,7 +366,9 @@ DDRes ddprof_exporter_export(const ddog_Profile *profile, res = check_send_response_code(result.http_response.code); } } else { - LG_ERR("[EXPORTER] Failure to build request"); + defer { ddog_Error_drop(&res_request.err); }; + LG_ERR("[EXPORTER] Failure to build request: %s", + res_request.err.message.ptr); res = ddres_error(DD_WHAT_EXPORTER); } } @@ -312,7 +377,7 @@ DDRes ddprof_exporter_export(const ddog_Profile *profile, DDRes ddprof_exporter_free(DDProfExporter *exporter) { if (exporter->_exporter) - ddog_ProfileExporter_delete(exporter->_exporter); + ddog_prof_Exporter_drop(exporter->_exporter); exporter->_exporter = nullptr; exporter_input_free(&exporter->_input); free(exporter->_url); diff --git a/src/ipc.cc b/src/ipc.cc index 6c7fd6d3e..5bf0199b2 100644 --- a/src/ipc.cc +++ b/src/ipc.cc @@ -24,6 +24,7 @@ struct InternalResponseMessage { int64_t mem_size; int64_t allocation_profiling_rate; int32_t ring_buffer_type; + int32_t allocation_flags; }; struct timeval to_timeval(std::chrono::microseconds duration) noexcept { @@ -100,7 +101,6 @@ size_t UnixSocket::send_partial(ConstBuffer buffer, error_wrapper(ret, ec); return ec ? 0 : ret; - ; } void UnixSocket::send(ConstBuffer buffer, ddprof::span fds, @@ -258,7 +258,8 @@ DDRes send(UnixSocket &socket, const ReplyMessage &msg) { .pid = msg.pid, .mem_size = msg.ring_buffer.mem_size, .allocation_profiling_rate = msg.allocation_profiling_rate, - .ring_buffer_type = msg.ring_buffer.ring_buffer_type}; + .ring_buffer_type = msg.ring_buffer.ring_buffer_type, + .allocation_flags = msg.allocation_flags}; socket.send(to_byte_span(&data), fd_span, ec); DDRES_CHECK_ERRORCODE(ec, DD_WHAT_SOCKET, "Unable to send response message"); return {}; @@ -292,6 +293,7 @@ DDRes receive(UnixSocket &socket, ReplyMessage &msg) { msg.ring_buffer.ring_buffer_type = data.ring_buffer_type; msg.ring_buffer.ring_fd = fds[0]; msg.ring_buffer.event_fd = fds[1]; + msg.allocation_flags = data.allocation_flags; return {}; } diff --git a/src/jit/jitdump.cc b/src/jit/jitdump.cc new file mode 100644 index 000000000..c5fe99961 --- /dev/null +++ b/src/jit/jitdump.cc @@ -0,0 +1,210 @@ +#include "jit/jitdump.hpp" + +#include "logger.hpp" +#include "span.hpp" + +#include +#include + +// If we want to consider big endian, we will need this +// has bswap_64/32/16 +// #include + +namespace ddprof { + +namespace { +static constexpr uint32_t k_header_magic = 0x4A695444; +static constexpr uint32_t k_header_magic_rev = 0x4454694A; + +// todo bitswap +template T load(const char **data) { + T ret = {}; + memcpy(&ret, *data, sizeof(T)); + *data += sizeof(T); + return ret; +} +} // namespace + +DDRes jit_read_header(std::ifstream &file_stream, JITHeader &header) { + if (!file_stream.read(reinterpret_cast(&header), sizeof(JITHeader))) { + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "incomplete jit file"); + } + if (header.magic == k_header_magic) { + // expected value (no need to swap data) + } else if (header.magic == k_header_magic_rev) { + // todo everything should be swapped throughout the parsing (not handled) + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "Swap data not handled"); + } else { + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "Unknown jit format"); + } + int64_t remaining_size = header.total_size - sizeof(header); + if (remaining_size > 0) { + if (!file_stream.seekg(remaining_size)) { + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "incomplete jit file"); + } + } else if (remaining_size == 0) { + // this is the expected code path + } else { // afaik this should never happen + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "incomplete jit file"); + } + if (header.version != k_jit_header_version) { + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "Version not handled"); + } + return ddres_init(); +} + +// true if we should continue +bool jit_read_prefix(std::ifstream &file_stream, JITRecordPrefix &prefix) { + if (!file_stream.read(reinterpret_cast(&prefix), + sizeof(JITRecordPrefix))) { + // It is expected that we reach EOF here + return false; + } + if (prefix.id == JITRecordType::JIT_CODE_CLOSE) { + return false; + } + if (prefix.id >= JIT_CODE_MAX) { + LG_WRN("Unknown JIT Prefix ID"); + return false; + } + return true; +} + +DDRes jit_read_code_load(std::ifstream &file_stream, + JITRecordCodeLoad &code_load, + std::vector &buff) { +#ifdef DEBUG + LG_DBG("---- Read code load ----"); +#endif + // we should at least have size for prefix / pid / tid / addr.. + if ((code_load.prefix.total_size) < + (sizeof(JITRecordPrefix) + JITRecordCodeLoad::k_size_integers)) { + // Unlikely unless the write was truncated + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "Invalid code load structure"); + } + buff.resize(code_load.prefix.total_size - sizeof(JITRecordPrefix)); + if (!file_stream.read( + buff.data(), code_load.prefix.total_size - sizeof(JITRecordPrefix))) { + // can happen if we are in the middle of a write + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "Incomplete code load structure"); + } + const char *buf = buff.data(); + code_load.pid = load(&buf); + code_load.tid = load(&buf); + + code_load.vma = load(&buf); + code_load.code_addr = load(&buf); + code_load.code_size = load(&buf); + code_load.code_index = load(&buf); + // remaining = total - (everything we read) + int remaining_size = code_load.prefix.total_size - sizeof(JITRecordPrefix) - + JITRecordCodeLoad::k_size_integers; + if (remaining_size < static_cast(code_load.code_size)) { + // inconsistency + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "Incomplete code load structure"); + } + int str_size = remaining_size - code_load.code_size; + if (str_size > 1) { + code_load.func_name = std::string(buf, str_size - 1); + } +#ifdef DEBUG + LG_DBG("Func name = %s, address = %lx (%lu) time=%lu", + code_load.func_name.c_str(), code_load.code_addr, code_load.code_size, + code_load.prefix.timestamp); +#endif + return ddres_init(); +} + +DDRes jit_read_debug_info(std::ifstream &file_stream, + JITRecordDebugInfo &debug_info, + std::vector &buff) { +#ifdef DEBUG + LG_DBG("---- Read debug info ----"); +#endif + if (debug_info.prefix.total_size < + (sizeof(JITRecordPrefix) + JITRecordDebugInfo::k_size_integers)) { + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "Invalid debug info size"); + } + buff.resize(debug_info.prefix.total_size - sizeof(JITRecordPrefix)); + if (!file_stream.read(buff.data(), buff.size())) { + DDRES_RETURN_WARN_LOG(DD_WHAT_JIT, "Incomplete debug info structure"); + } + const char *buf = buff.data(); + debug_info.code_addr = load(&buf); + debug_info.nr_entry = load(&buf); + debug_info.entries.resize(debug_info.nr_entry); + + for (unsigned i = 0; i < debug_info.nr_entry; ++i) { + debug_info.entries[i].addr = load(&buf); + debug_info.entries[i].lineno = load(&buf); + debug_info.entries[i].discrim = load(&buf); + if (static_cast(*buf) == 0xff && *(buf + 1) == '\0') { + if (i >= 1) { + debug_info.entries[i].name = debug_info.entries[i - 1].name; + } else { + LG_WRN("Invalid attempt to copy previous debug entry\n"); + } + } + debug_info.entries[i].name = std::string(buf); + buf += debug_info.entries[i].name.size() + 1; +#ifdef DEBUG + LG_DBG("Name:line = %s:%d / %lx / time=%lu", + debug_info.entries[i].name.c_str(), debug_info.entries[i].lineno, + debug_info.entries[i].addr, debug_info.prefix.timestamp); +#endif + } + return ddres_init(); +} + +DDRes jit_read_records(std::ifstream &file_stream, JITDump &jit_dump) { + // a buffer to copy the data + std::vector buff; + bool valid_entry = true; + do { + JITRecordPrefix prefix; + valid_entry = jit_read_prefix(file_stream, prefix); + if (valid_entry) { + switch (prefix.id) { + case JITRecordType::JIT_CODE_LOAD: { + JITRecordCodeLoad current; + current.prefix = prefix; + DDRES_CHECK_FWD_STRICT(jit_read_code_load(file_stream, current, buff)); + jit_dump.code_load.push_back(std::move(current)); + break; + } + case JITRecordType::JIT_CODE_DEBUG_INFO: { + JITRecordDebugInfo current; + current.prefix = prefix; + DDRES_CHECK_FWD_STRICT(jit_read_debug_info(file_stream, current, buff)); + jit_dump.debug_info.push_back(std::move(current)); + break; + } + default: { + // llvm seems to only emit the two above + DDRES_RETURN_ERROR_LOG(DD_WHAT_JIT, "jitdump record not handled"); + break; + } + } + } + } while (valid_entry); + return ddres_init(); +} + +DDRes jitdump_read(std::string_view file, JITDump &jit_dump) { + try { + std::ifstream file_stream(file.data(), std::ios::binary); + // We are not locking, assumption is that even if we fail to read a given + // section we can always retry later. The aim is not to slow down the app + if (!file_stream) { + // avoid logging as this can happen in standard path + return ddres_error(DD_WHAT_NO_JIT_FILE); + } + LG_DBG("JITDump starting parse of %s", file.data()); + DDRES_CHECK_FWD_STRICT(jit_read_header(file_stream, jit_dump.header)); + DDRES_CHECK_FWD_STRICT(jit_read_records(file_stream, jit_dump)); + } + // incomplete files can trigger exceptions + CatchExcept2DDRes(); + return ddres_init(); +} +} // namespace ddprof diff --git a/src/lib/allocation_tracker.cc b/src/lib/allocation_tracker.cc index 63ef0e026..3a9ee70e2 100644 --- a/src/lib/allocation_tracker.cc +++ b/src/lib/allocation_tracker.cc @@ -5,9 +5,11 @@ #include "allocation_tracker.hpp" +#include "ddprof_perf_event.hpp" #include "ddres.hpp" #include "defer.hpp" #include "ipc.hpp" +#include "live_allocation-c.hpp" #include "perf.hpp" #include "pevent_lib.hpp" #include "ringbuffer_utils.hpp" @@ -27,10 +29,10 @@ namespace ddprof { struct AllocationEvent { perf_event_header hdr; struct sample_id sample_id; + uint64_t addr; /* if PERF_SAMPLE_ADDR */ uint64_t period; - uint64_t abi; /* if PERF_SAMPLE_REGS_USER */ - uint64_t regs[PERF_REGS_COUNT]; - /* if PERF_SAMPLE_REGS_USER */ + uint64_t abi; /* if PERF_SAMPLE_REGS_USER */ + uint64_t regs[PERF_REGS_COUNT]; /* if PERF_SAMPLE_REGS_USER */ uint64_t size; /* if PERF_SAMPLE_STACK_USER */ std::byte data[PERF_SAMPLE_STACK_SIZE]; /* if PERF_SAMPLE_STACK_USER */ uint64_t dyn_size; /* if PERF_SAMPLE_STACK_USER && @@ -96,8 +98,8 @@ DDRes AllocationTracker::allocation_tracking_init( DDRES_CHECK_FWD(instance->init(allocation_profiling_rate, flags & kDeterministicSampling, ring_buffer)); _instance = instance; - state.track_allocations = true; - state.track_deallocations = flags & kTrackDeallocations; + + state.init(true, flags & kTrackDeallocations); return {}; } @@ -139,7 +141,21 @@ void AllocationTracker::allocation_tracking_free() { instance->free(); } -void AllocationTracker::track_allocation(uintptr_t, size_t size, +void AllocationTracker::free_on_consecutive_failures(bool success) { + if (!success) { + ++_state.failure_count; + if (_state.failure_count >= k_max_consecutive_failures) { + // Too many errors during ring buffer operation: stop allocation profiling + free(); + } + } else { + if (_state.failure_count.load(std::memory_order_relaxed) > 0) { + _state.failure_count = 0; + } + } +} + +void AllocationTracker::track_allocation(uintptr_t addr, size_t size, TrackerThreadLocalState &tl_state) { // Prevent reentrancy to avoid dead lock on mutex ReentryGuard guard(&tl_state.reentry_guard); @@ -184,19 +200,48 @@ void AllocationTracker::track_allocation(uintptr_t, size_t size, tl_state.remaining_bytes = remaining_bytes; uint64_t total_size = nsamples * sampling_interval; - if (!IsDDResOK(push_sample(total_size, tl_state))) { - ++_state.failure_count; - if (_state.failure_count >= k_max_consecutive_failures) { - // Too many errors during ring buffer operation: stop allocation profiling - free(); - } - } else { - if (_state.failure_count.load(std::memory_order_relaxed) > 0) { - _state.failure_count = 0; + bool success = IsDDResOK(push_alloc_sample(addr, total_size, tl_state)); + free_on_consecutive_failures(success); + + if (success && _state.track_deallocations) { + // ensure we track this dealloc if it occurs + _address_set.insert(addr); + if (unlikely(_address_set.size() > ddprof::liveallocation::kMaxTracked)) { + if (IsDDResOK(push_clear_live_allocation(tl_state))) { + _address_set.clear(); + } else { + fprintf( + stderr, + "Stop allocation profiling. Unable to clear live allocation \n"); + free(); + } } } } +void AllocationTracker::track_deallocation(uintptr_t addr, + TrackerThreadLocalState &tl_state) { + // Prevent reentrancy to avoid dead lock on mutex + ReentryGuard guard(&tl_state.reentry_guard); + + if (!guard) { + // This is an internal dealloc, so we don't need to keep track of this + return; + } + std::lock_guard lock{_state.mutex}; + + // recheck if profiling is enabled + if (!_state.track_deallocations) { + return; + } + + // Inserting / Erasing addresses is done within the lock + if (_address_set.erase(addr)) { + bool success = IsDDResOK(push_dealloc_sample(addr, tl_state)); + free_on_consecutive_failures(success); + } +} + DDRes AllocationTracker::push_lost_sample(MPSCRingBufferWriter &writer, bool ¬ify_needed) { auto lost_count = _state.lost_count.exchange(0, std::memory_order_acq_rel); @@ -225,8 +270,103 @@ DDRes AllocationTracker::push_lost_sample(MPSCRingBufferWriter &writer, return {}; } -DDRes AllocationTracker::push_sample(uint64_t allocated_size, - TrackerThreadLocalState &tl_state) { +// Return true if consumer should be notified +DDRes AllocationTracker::push_clear_live_allocation( + TrackerThreadLocalState &tl_state) { + MPSCRingBufferWriter writer{_pevent.rb}; + bool timeout = false; + + auto buffer = writer.reserve(sizeof(ClearLiveAllocationEvent), &timeout); + if (buffer.empty()) { + // unable to push a clear is an error (we don't want to grow too much) + // No use pushing a lost event. As this is a sync mechanism. + DDRES_RETURN_ERROR_LOG(DD_WHAT_PERFRB, + "Unable to get write lock on ring buffer"); + } + + ClearLiveAllocationEvent *event = + reinterpret_cast(buffer.data()); + event->hdr.misc = 0; + event->hdr.size = sizeof(ClearLiveAllocationEvent); + event->hdr.type = PERF_CUSTOM_EVENT_CLEAR_LIVE_ALLOCATION; + event->sample_id.time = 0; + if (_state.pid == 0) { + _state.pid = getpid(); + } + if (tl_state.tid == 0) { + tl_state.tid = ddprof::gettid(); + } + event->sample_id.pid = _state.pid; + event->sample_id.tid = tl_state.tid; + + if (writer.commit(buffer)) { + uint64_t count = 1; + if (write(_pevent.fd, &count, sizeof(count)) != sizeof(count)) { + DDRES_RETURN_ERROR_LOG(DD_WHAT_PERFRB, + "Error writing to memory allocation eventfd (%s)", + strerror(errno)); + } + } + + return {}; +} + +DDRes AllocationTracker::push_dealloc_sample( + uintptr_t addr, TrackerThreadLocalState &tl_state) { + MPSCRingBufferWriter writer{_pevent.rb}; + bool notify_consumer{false}; + + bool timeout = false; + if (unlikely(_state.lost_count.load(std::memory_order_relaxed))) { + DDRES_CHECK_FWD(push_lost_sample(writer, notify_consumer)); + } + + auto buffer = writer.reserve(sizeof(DeallocationEvent), &timeout); + if (buffer.empty()) { + // ring buffer is full, increase lost count + _state.lost_count.fetch_add(1, std::memory_order_acq_rel); + + if (timeout) { + DDRES_RETURN_ERROR_LOG(DD_WHAT_PERFRB, + "Unable to get write lock on ring buffer"); + } + // not an error + return {}; + } + + DeallocationEvent *event = + reinterpret_cast(buffer.data()); + event->hdr.misc = 0; + event->hdr.size = sizeof(DeallocationEvent); + event->hdr.type = PERF_CUSTOM_EVENT_DEALLOCATION; + event->sample_id.time = 0; + + if (_state.pid == 0) { + _state.pid = getpid(); + } + if (tl_state.tid == 0) { + tl_state.tid = ddprof::gettid(); + } + event->sample_id.pid = _state.pid; + event->sample_id.tid = tl_state.tid; + + // address of dealloc + event->ptr = addr; + + if (writer.commit(buffer) || notify_consumer) { + uint64_t count = 1; + if (write(_pevent.fd, &count, sizeof(count)) != sizeof(count)) { + DDRES_RETURN_ERROR_LOG(DD_WHAT_PERFRB, + "Error writing to memory allocation eventfd (%s)", + strerror(errno)); + } + } + return {}; +} + +DDRes AllocationTracker::push_alloc_sample(uintptr_t addr, + uint64_t allocated_size, + TrackerThreadLocalState &tl_state) { MPSCRingBufferWriter writer{_pevent.rb}; bool notify_consumer{false}; @@ -255,7 +395,7 @@ DDRes AllocationTracker::push_sample(uint64_t allocated_size, event->hdr.type = PERF_RECORD_SAMPLE; event->abi = PERF_SAMPLE_REGS_ABI_64; event->sample_id.time = 0; - + event->addr = addr; if (_state.pid == 0) { _state.pid = getpid(); } @@ -263,9 +403,12 @@ DDRes AllocationTracker::push_sample(uint64_t allocated_size, tl_state.tid = ddprof::gettid(); } - if (tl_state.stack_end == nullptr) { + if (tl_state.stack_bounds.empty()) { // This call should only occur on main thread - tl_state.stack_end = retrieve_stack_end_address(); + tl_state.stack_bounds = retrieve_stack_bounds(); + if (tl_state.stack_bounds.empty()) { + DDRES_RETURN_ERROR_LOG(DD_WHAT_PERFRB, "Unable to get thread bounds"); + } } event->sample_id.pid = _state.pid; @@ -273,9 +416,10 @@ DDRes AllocationTracker::push_sample(uint64_t allocated_size, event->period = allocated_size; event->size = PERF_SAMPLE_STACK_SIZE; - event->dyn_size = save_context(tl_state.stack_end, event->regs, + event->dyn_size = save_context(tl_state.stack_bounds, event->regs, ddprof::Buffer{event->data, event->size}); - + // Even if dyn_size == 0, we keep the sample + // This way, the overall accounting is correct (even with empty stacks) if (writer.commit(buffer) || notify_consumer) { uint64_t count = 1; if (write(_pevent.fd, &count, sizeof(count)) != sizeof(count)) { @@ -312,7 +456,8 @@ void AllocationTracker::notify_thread_start() { TrackerThreadLocalState &tl_state = AllocationTracker::_tl_state; ReentryGuard guard(&_tl_state.reentry_guard); - tl_state.stack_end = retrieve_stack_end_address(); + tl_state.stack_bounds = retrieve_stack_bounds(); + // error can not be propagated in thread create } void AllocationTracker::notify_fork() { diff --git a/src/lib/dd_profiling.cc b/src/lib/dd_profiling.cc index cb5493444..a38dbe0ee 100644 --- a/src/lib/dd_profiling.cc +++ b/src/lib/dd_profiling.cc @@ -249,6 +249,12 @@ int ddprof_start_profiling_internal() { flags |= ddprof::AllocationTracker::kDeterministicSampling; info.allocation_profiling_rate = -info.allocation_profiling_rate; } + + if (info.allocation_flags & (1 << ddprof::ReplyMessage::kLiveCallgraph)) { + // tracking deallocations to allow a live view + flags |= ddprof::AllocationTracker::kTrackDeallocations; + } + if (IsDDResOK(ddprof::AllocationTracker::allocation_tracking_init( info.allocation_profiling_rate, flags, info.ring_buffer))) { // \fixme{nsavoire} pthread_create should probably be overridden diff --git a/src/lib/elfutils.cc b/src/lib/elfutils.cc index 64d35e6a1..a56bae6d3 100644 --- a/src/lib/elfutils.cc +++ b/src/lib/elfutils.cc @@ -10,6 +10,7 @@ #include #include #include +#include #include #include diff --git a/src/lib/libc_compatibility.c b/src/lib/libc_compatibility.c new file mode 100644 index 000000000..82111f2b4 --- /dev/null +++ b/src/lib/libc_compatibility.c @@ -0,0 +1,39 @@ +#include +#include +#include +#include /* Definition of SYS_* constants */ +#include + +// This is a port from the libc implementations +// The aim is to guarantee that our library works even when depending on newer +// libc APIs (like this one). The symbol should be private not to change +// the behaviour of the application we are profiling +int getentropy(void *buffer, size_t len) { + int ret = 0; + char *pos = buffer; + + if (len > 256) { + return -1; + } + + // libc implementation prevents cancels. + // we should not depend on pthread, skipping this part + // pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs); + + while (len) { + ret = syscall(SYS_getrandom, pos, len, 0); + if (ret < 0) { + if (errno == EINTR) + continue; + else + break; + } + pos += ret; + len -= ret; + ret = 0; + } + + // pthread_setcancelstate(cs, 0); + + return ret; +} diff --git a/src/lib/loader.c b/src/lib/loader.c index 077fb35c0..8e289c8a8 100644 --- a/src/lib/loader.c +++ b/src/lib/loader.c @@ -43,6 +43,7 @@ * available, it falls back to using __libc_dlopen_mode, an internal libc.so.6 * function implementing dlopen, in that case. */ +char *dlerror(void) __attribute__((weak)); void *dlopen(const char *filename, int flags) __attribute__((weak)); void *dlsym(void *handle, const char *symbol) __attribute__((weak)); // NOLINTNEXTLINE cert-dcl51-cpp @@ -55,46 +56,27 @@ int timer_create(clockid_t clockid, struct sigevent *sevp, timer_t *timerid) __attribute__((weak)); static void *s_libdl_handle = NULL; +static __typeof(dlerror) *s_dlerror = &dlerror; +static __typeof(dlopen) *s_dlopen = &dlopen; -static void *my_dlopen(const char *filename, int flags) { - static __typeof(dlopen) *dlopen_ptr = &dlopen; +static void ensure_libdl_is_loaded(); - if (!dlopen_ptr) { +static void *my_dlopen(const char *filename, int flags) { + if (!s_dlopen) { // if libdl.so is not loaded, use __libc_dlopen_mode - dlopen_ptr = __libc_dlopen_mode; + s_dlopen = __libc_dlopen_mode; } - if (dlopen_ptr) { - return dlopen_ptr(filename, flags); + if (s_dlopen) { + void *ret = s_dlopen(filename, flags); + if (!ret && s_dlerror) { + fprintf(stderr, "Failed to dlopen %s (%s)\n", filename, s_dlerror()); + } + return ret; } - // Should not happen return NULL; } -static void ensure_libdl_is_loaded() { - if (!dlsym && !s_libdl_handle) { - s_libdl_handle = my_dlopen("libdl.so.2", RTLD_GLOBAL | RTLD_NOW); - } -} - -static void ensure_libm_is_loaded() { - if (!log) { - my_dlopen("libm.so.6", RTLD_GLOBAL | RTLD_NOW); - } -} - -static void ensure_libpthread_is_loaded() { - if (!pthread_cancel) { - my_dlopen("libpthread.so.0", RTLD_GLOBAL | RTLD_NOW); - } -} - -static void ensure_librt_is_loaded() { - if (!timer_create) { - my_dlopen("librt.so.1", RTLD_GLOBAL | RTLD_NOW); - } -} - static void *my_dlsym(void *handle, const char *symbol) { static __typeof(dlsym) *dlsym_ptr = &dlsym; if (!dlsym_ptr) { @@ -123,6 +105,41 @@ static void *my_dlsym(void *handle, const char *symbol) { return dlsym_ptr(handle, symbol); } +static void ensure_libdl_is_loaded() { + if (!dlsym && !s_libdl_handle) { + s_libdl_handle = my_dlopen("libdl.so.2", RTLD_GLOBAL | RTLD_NOW); + } + + if (s_libdl_handle) { + // now that we have loaded libdl, we can ensure that we use the real + // dlopen function (instead of internal libc function) + if (s_dlopen == __libc_dlopen_mode) { + s_dlopen = (__typeof(dlopen) *)my_dlsym(s_libdl_handle, "dlopen"); + } + if (!s_dlerror) { + s_dlerror = (__typeof(dlerror) *)my_dlsym(s_libdl_handle, "dlerror"); + } + } +} + +static void ensure_libm_is_loaded() { + if (!log) { + my_dlopen("libm.so.6", RTLD_GLOBAL | RTLD_NOW); + } +} + +static void ensure_libpthread_is_loaded() { + if (!pthread_cancel) { + my_dlopen("libpthread.so.0", RTLD_GLOBAL | RTLD_NOW); + } +} + +static void ensure_librt_is_loaded() { + if (!timer_create) { + my_dlopen("librt.so.1", RTLD_GLOBAL | RTLD_NOW); + } +} + static const char *temp_directory_path() { const char *tmpdir = NULL; const char *env[] = {"TMPDIR", "TMP", "TEMP", "TEMPDIR", NULL}; diff --git a/src/lib/pthread_fixes.cc b/src/lib/pthread_fixes.cc new file mode 100644 index 000000000..4668d944c --- /dev/null +++ b/src/lib/pthread_fixes.cc @@ -0,0 +1,59 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include "pthread_fixes.hpp" + +/* Some public libc structs don't have the same size between glibc and musl. + * On amd64, only `regoff_t` (used for regex API) has a different size ( 4 on + * glibc vs 8 on musl), size on glibc appears to depend on some + * [macro](https://github.com/gagern/gnulib/blob/master/lib/regex.h#L488). + * Since we don't use regex, this difference is not an issue. + * + * On arm64, on top of `regoff_t`, a bunch of struct related to pthreads have + * different sizes: + * - pthread_attr_t: 64 vs 56 + * - pthread_barrierattr_t: 8 vs 4 + * - pthread_cond_attr_t: 8 vs 4 + * - pthread_mutex_t: 48 vs 40 + * - pthread_mutexattr_t: 8 vs 4 + * - mtx_t: 48 vs 40 + * This is much more worrisome because space allocated at compile time for a + * member in a struct or for a variable on stack might be smaller than the space + * used at runtime by pthread functions consuming these types. + * For example, all init functions (such as pthread_attr_init / + * pthread_mutex_init / ...) when invoked in glibc with code compiled in musl + * will result in out-of-bounds writes when they memset their parameters to 0. + * That's also the case for pthread_getattr_np that calls pthread_attr_init. + * Luckily it seems that the 8 additional bytes in pthread_attr_t and + * pthread_mutex_t are not actually used, that makes pthread_mutex_t safe to use + * if not initialized with pthread_mutex_init. + * + * To avoid any issue, we must not use: + * - any pthread_xxx_init function + * - pthread_getattr_np + * - pthread_getattr_default_np / pthread_setattr_default_np + */ + +namespace { +union pthread_attr_safe_t { + pthread_attr_t attrs; + + // extra size to match glibc size + // cppcheck-suppress unusedStructMember + char reserved[64]; +}; +} // namespace + +// Safe version of pthread_getattr_np +int pthread_getattr_np_safe(pthread_t th, pthread_attr_t *attr) { + // pad pthread_getattr_np argument with extra space to avoid out-of-bound + // write on the stack + pthread_attr_safe_t safe_attrs; + int res = pthread_getattr_np(th, &safe_attrs.attrs); + if (!res) { + *attr = safe_attrs.attrs; + } + return res; +} diff --git a/src/lib/savecontext.cc b/src/lib/savecontext.cc index a0a6edc68..748a7be49 100644 --- a/src/lib/savecontext.cc +++ b/src/lib/savecontext.cc @@ -7,6 +7,7 @@ #include "ddprof_base.hpp" #include "defer.hpp" +#include "pthread_fixes.hpp" #include "saveregisters.hpp" #include "unlikely.hpp" @@ -14,21 +15,22 @@ #include #include -// Return stack end address (stack end address is the start of the stack since -// stack grows down) -DDPROF_NOINLINE const std::byte *retrieve_stack_end_address() { +// Returns an empty span in case of failure +// Fills start (low address, so closer to SP) and end (stack end address is the +// start of the stack since stack grows down) +DDPROF_NOINLINE ddprof::span retrieve_stack_bounds() { void *stack_addr; size_t stack_size; pthread_attr_t attrs; - if (pthread_getattr_np(pthread_self(), &attrs) != 0) { - return nullptr; + if (pthread_getattr_np_safe(pthread_self(), &attrs) != 0) { + return {}; } defer { pthread_attr_destroy(&attrs); }; if (pthread_attr_getstack(&attrs, &stack_addr, &stack_size) != 0) { - return nullptr; + return {}; } - - return static_cast(stack_addr) + stack_size; + return {static_cast(stack_addr), + static_cast(stack_addr) + stack_size}; } // Disable address sanitizer, otherwise it will report a stack-buffer-underflow @@ -36,11 +38,15 @@ DDPROF_NOINLINE const std::byte *retrieve_stack_end_address() { // intercepts memcpy and reports a satck underflow there, empirically it appears // that both attribute and a suppression are required. static DDPROF_NO_SANITIZER_ADDRESS size_t -save_stack(const std::byte *stack_end, const std::byte *stack_ptr, - ddprof::span buffer) { +save_stack(ddprof::span stack_bounds, + const std::byte *stack_ptr, ddprof::span buffer) { + // Safety check to ensure we are not in a fiber using a different stack + if (!(stack_ptr >= stack_bounds.begin() && stack_ptr < stack_bounds.end())) { + return 0; + } // take the min of current stack size and requested stack sample size~ - int64_t saved_stack_size = - std::min(static_cast(buffer.size()), stack_end - stack_ptr); + int64_t saved_stack_size = std::min(static_cast(buffer.size()), + stack_bounds.end() - stack_ptr); if (saved_stack_size <= 0) { return 0; @@ -51,13 +57,14 @@ save_stack(const std::byte *stack_end, const std::byte *stack_ptr, return saved_stack_size; } -size_t save_context(const std::byte *stack_end, +size_t save_context(ddprof::span stack_bounds, ddprof::span regs, ddprof::span buffer) { save_registers(regs); - // save the stack just after saving registers, stack part above saved SP must - // no be changed between call to save_registers and call to save_stack - return save_stack(stack_end, + // save the stack just after saving registers, stack part above saved SP + // must not be changed between call to save_registers and call to save_stack + return save_stack(stack_bounds, reinterpret_cast(regs[REGNAME(SP)]), buffer); + return 0; } diff --git a/src/lib/saveregisters.cc b/src/lib/saveregisters.cc index a81af25ac..453532819 100644 --- a/src/lib/saveregisters.cc +++ b/src/lib/saveregisters.cc @@ -46,11 +46,11 @@ void save_registers(ddprof::span) { "movq %%r14, %c[iR14]*8(%%rdi)\n" "movq %%r15, %c[iR15]*8(%%rdi)\n" // Bump the stack by 8 bytes to remove the return address, - // that way we will have the value of RSP after funtion return + // that way we will have the value of RSP after function return "leaq 8(%%rsp), %%rax\n" "movq %%rax, %c[iRSP]*8(%%rdi)\n" // 0(%rsp) contains the return address, this is the value of RIP after - // funtion return + // function return "movq 0(%%rsp), %%rax\n" "movq %%rax, %c[iRIP]*8(%%rdi)\n" "ret\n" diff --git a/src/lib/symbol_overrides.cc b/src/lib/symbol_overrides.cc index c30d3b478..991a6ac92 100644 --- a/src/lib/symbol_overrides.cc +++ b/src/lib/symbol_overrides.cc @@ -14,6 +14,7 @@ #include #include #include +#include #include #if defined(__GNUC__) && !defined(__clang__) @@ -43,6 +44,27 @@ timer_t g_timerid; int g_timer_sig = -1; int g_nb_loaded_libraries = -1; +// \fixme{nsavoire} The goal of this flag is to avoid double-counting +// mmaps that done inside malloc, not sure if it desirable or not. +// We should probably merge this TL state with AllocationTracker::tl_state +// to have a single TL state since accessing it is costly (call to tls_get_addr) +thread_local bool g_in_allocator_guard = false; + +class Guard { +public: + explicit Guard(bool *guard) : _guard(guard), _ok(!*guard) { *_guard = true; } + ~Guard() { + if (_ok) { + *_guard = false; + } + } + explicit operator bool() const { return _ok; } + +private: + bool *_guard; + bool _ok; +}; + DDPROF_NOINLINE bool loaded_libraries_have_changed() { int nb = ddprof::count_loaded_libraries(); if (nb != g_nb_loaded_libraries) { @@ -70,6 +92,7 @@ struct malloc { static void *hook(size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); auto ptr = ref(size); ddprof::AllocationTracker::track_allocation( reinterpret_cast(ptr), size); @@ -101,6 +124,7 @@ struct calloc { static void *hook(size_t nmemb, size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); auto ptr = ref(nmemb, size); ddprof::AllocationTracker::track_allocation( reinterpret_cast(ptr), size * nmemb); @@ -116,6 +140,7 @@ struct realloc { static void *hook(void *ptr, size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); if (likely(ptr)) { ddprof::AllocationTracker::track_deallocation( reinterpret_cast(ptr)); @@ -138,6 +163,7 @@ struct posix_memalign { static int hook(void **memptr, size_t alignment, size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); auto ret = ref(memptr, alignment, size); if (likely(!ret)) { ddprof::AllocationTracker::track_allocation( @@ -154,6 +180,7 @@ struct aligned_alloc { static void *hook(size_t alignment, size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); auto ptr = ref(alignment, size); ddprof::AllocationTracker::track_allocation( reinterpret_cast(ptr), size); @@ -169,6 +196,7 @@ struct memalign { static void *hook(size_t alignment, size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); auto ptr = ref(alignment, size); ddprof::AllocationTracker::track_allocation( reinterpret_cast(ptr), size); @@ -184,6 +212,7 @@ struct pvalloc { static void *hook(size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); auto ptr = ref(size); ddprof::AllocationTracker::track_allocation( reinterpret_cast(ptr), size); @@ -199,6 +228,7 @@ struct valloc { static void *hook(size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); auto ptr = ref(size); ddprof::AllocationTracker::track_allocation( reinterpret_cast(ptr), size); @@ -214,6 +244,7 @@ struct reallocarray { static void *hook(void *ptr, size_t nmemb, size_t size) noexcept { check_libraries(); + Guard guard(&g_in_allocator_guard); if (ptr) { ddprof::AllocationTracker::track_deallocation( reinterpret_cast(ptr)); @@ -277,6 +308,88 @@ struct pthread_create { } }; +struct mmap { + static constexpr auto name = "mmap"; + static inline auto ref = &::mmap; + static inline bool ref_checked = false; + + static void *hook(void *addr, size_t length, int prot, int flags, int fd, + off_t offset) noexcept { + void *ptr = ref(addr, length, prot, flags, fd, offset); + + if (addr == nullptr && fd == -1 && ptr != nullptr && + !g_in_allocator_guard) { + ddprof::AllocationTracker::track_allocation( + reinterpret_cast(ptr), length); + } + return ptr; + } +}; + +struct mmap_ { + static constexpr auto name = "__mmap"; + static inline auto ref = &::mmap; + static inline bool ref_checked = false; + + static void *hook(void *addr, size_t length, int prot, int flags, int fd, + off_t offset) noexcept { + void *ptr = ref(addr, length, prot, flags, fd, offset); + + if (addr == nullptr && fd == -1 && ptr != nullptr && + !g_in_allocator_guard) { + ddprof::AllocationTracker::track_allocation( + reinterpret_cast(ptr), length); + } + return ptr; + } +}; + +struct mmap64_ { + static constexpr auto name = "mmap64"; + static inline auto ref = &::mmap64; + static inline bool ref_checked = false; + + static void *hook(void *addr, size_t length, int prot, int flags, int fd, + off_t offset) noexcept { + void *ptr = ref(addr, length, prot, flags, fd, offset); + + if (addr == nullptr && fd == -1 && ptr != nullptr && + !g_in_allocator_guard) { + ddprof::AllocationTracker::track_allocation( + reinterpret_cast(ptr), length); + } + return ptr; + } +}; + +struct munmap { + static constexpr auto name = "munmap"; + static inline auto ref = &::munmap; + static inline bool ref_checked = false; + + static int hook(void *addr, size_t length) noexcept { + if (!g_in_allocator_guard) { + ddprof::AllocationTracker::track_deallocation( + reinterpret_cast(addr)); + } + return ref(addr, length); + } +}; + +struct munmap_ { + static constexpr auto name = "__munmap"; + static inline auto ref = &::munmap; + static inline bool ref_checked = false; + + static int hook(void *addr, size_t length) noexcept { + if (!g_in_allocator_guard) { + ddprof::AllocationTracker::track_deallocation( + reinterpret_cast(addr)); + } + return ref(addr, length); + } +}; + template void install_hook(bool restore) { // On ubuntu 16, some symbols might be bound to @plt symbols // in exe and since we override the symbols in the exe, this would cause @@ -375,6 +488,12 @@ void setup_hooks(bool restore) { install_hook(restore); install_hook(restore); + install_hook(restore); + install_hook(restore); + install_hook(restore); + install_hook(restore); + install_hook(restore); + if (reallocarray::ref) { install_hook(restore); } diff --git a/src/live_allocation.cc b/src/live_allocation.cc new file mode 100644 index 000000000..b2822b9ba --- /dev/null +++ b/src/live_allocation.cc @@ -0,0 +1,86 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include "live_allocation.hpp" + +#include "logger.hpp" + +namespace ddprof { + +void LiveAllocation::register_deallocation(uintptr_t address, + PprofStacks &stacks, + AddressMap &address_map) { + // Find the ValuePerAddress object corresponding to the address + auto map_iter = address_map.find(address); + if (map_iter == address_map.end()) { + // No element found, nothing to do + // This means we lost previous events, leading to de-sync between + // the state of the profiler and the state of the library. + LG_DBG("Unmatched de-allocation at %lx", address); + return; + } + ValuePerAddress &v = map_iter->second; + + // Decrement count and value of the corresponding PprofStacks::value_type + // object + if (v._unique_stack) { + v._unique_stack->second._value -= v._value; + if (v._unique_stack->second._count) { + --(v._unique_stack->second._count); + } + if (!v._unique_stack->second._count) { + // If count reaches 0, remove the UnwindOutput from stacks + stacks.erase(v._unique_stack->first); + } + } + + // Remove the element from the address map + address_map.erase(map_iter); +} + +void LiveAllocation::register_allocation(const UnwindOutput &uo, + uintptr_t address, int64_t value, + PprofStacks &stacks, + AddressMap &address_map) { + if (!uo.locs.size()) { + // avoid sending empty stacks + LG_DBG("(LIVE_ALLOC) Avoid registering empty stack"); + return; + } + // Find or create the PprofStacks::value_type object corresponding to the + // UnwindOutput + auto iter = stacks.find(uo); + if (iter == stacks.end()) { + iter = stacks.emplace(uo, ValueAndCount{}).first; + } + PprofStacks::value_type &unique_stack = *iter; + + // Add the value to the address map + ValuePerAddress &v = address_map[address]; + if (v._value) { + // unexpected, we already have an allocation here + // This means we missed a previous free + LG_DBG("Existing allocation: %lx (cleaning up)", address); + if (v._unique_stack) { + // we should decrement count / value + v._unique_stack->second._value -= v._value; + if (v._unique_stack->second._count) { + --(v._unique_stack->second._count); + } + // Should we erase the element here ? + // only if we are sure it is not the same as the one we are inserting. + if (v._unique_stack != &unique_stack && !v._unique_stack->second._count) { + stacks.erase(v._unique_stack->first); + } + } + } + + v._value = value; + v._unique_stack = &unique_stack; + v._unique_stack->second._value += value; + ++(v._unique_stack->second._count); +} + +} // namespace ddprof diff --git a/src/mapinfo_lookup.cc b/src/mapinfo_lookup.cc index 8d3800c3a..4a128b057 100644 --- a/src/mapinfo_lookup.cc +++ b/src/mapinfo_lookup.cc @@ -11,7 +11,8 @@ namespace ddprof { MapInfoIdx_t MapInfoLookup::get_or_insert(pid_t pid, MapInfoTable &mapinfo_table, - const Dso &dso) { + const Dso &dso, + std::optional build_id) { MapInfoAddrMap &addr_map = _mapinfo_pidmap[pid]; auto it = addr_map.find(dso._start); @@ -22,7 +23,8 @@ MapInfoIdx_t MapInfoLookup::get_or_insert(pid_t pid, : dso._filename.substr(pos + 1); MapInfoIdx_t map_info_idx = mapinfo_table.size(); mapinfo_table.emplace_back(dso._start, dso._end, dso._pgoff, - std::move(sname_str)); + std::move(sname_str), + build_id ? *build_id : BuildIdStr{}); addr_map.emplace(dso._start, map_info_idx); return map_info_idx; } else { diff --git a/src/perf.cc b/src/perf.cc index aa7d9e263..931dd126c 100644 --- a/src/perf.cc +++ b/src/perf.cc @@ -10,6 +10,7 @@ #include "perf.hpp" #include "user_override.hpp" +#include #include #include #include @@ -89,8 +90,9 @@ perf_event_attr perf_config_from_watcher(const PerfWatcher *watcher, attr.sample_type = watcher->sample_type; attr.sample_stack_user = watcher->sample_stack_size; - // If is_kernel is requested false --> exclude_kernel == true - attr.exclude_kernel = (watcher->options.is_kernel == kPerfWatcher_Off); + // If use_kernel is requested false --> exclude_kernel == true + if (watcher->options.use_kernel == PerfWatcherUseKernel::kTry) + attr.exclude_kernel = true; // Extras (metadata for tracking process state) if (extras) { @@ -164,11 +166,61 @@ std::vector all_perf_configs_from_watcher(const PerfWatcher *watcher, bool extras) { std::vector ret_attr; ret_attr.push_back(perf_config_from_watcher(watcher, extras)); - if (watcher->options.is_kernel == kPerfWatcher_Try) { + if (watcher->options.use_kernel == PerfWatcherUseKernel::kTry) { // duplicate the config, while excluding kernel ret_attr.push_back(ret_attr.back()); ret_attr.back().exclude_kernel = true; } return ret_attr; } + +uint64_t perf_value_from_sample(const PerfWatcher *watcher, + const perf_event_sample *sample) { + uint64_t val = 0; + if (watcher->value_source == EventConfValueSource::kRaw) { + if (PERF_SAMPLE_RAW & watcher->sample_type) { + uint64_t raw_offset = watcher->raw_off; + uint64_t raw_sz = watcher->raw_sz; + if (raw_sz + raw_offset <= sample->size_raw) { + assert(0 && "Overflow in raw event access"); + LG_WRN("Overflow in raw event access"); + return 0; + } + switch (raw_sz) { + case 1: + val = *(uint8_t *)(sample->data_raw + raw_offset); + break; + case 2: + val = *(uint16_t *)(sample->data_raw + raw_offset); + break; + case 4: + val = *(uint32_t *)(sample->data_raw + raw_offset); + break; + case 8: + val = *(uint64_t *)(sample->data_raw + raw_offset); + break; + default: + assert(0 && "Non-integral size for raw value"); + LG_WRN("Non-integral size for raw value"); + val = 0; + break; + } + return val; + } else { // unexpected config + assert(0 && "Inconsistent raw config between watcher and perf event"); + LG_WRN("Unexpected watcher configuration -- No Raw events"); + return 0; + } + } + // Register value + if (watcher->value_source == EventConfValueSource::kRegister) { + return sample->regs[watcher->regno]; + } + + // period by default + assert(watcher->value_source == EventConfValueSource::kSample && + "All watcher types were considered"); + return sample->period; +} + } // namespace ddprof diff --git a/src/perf_mainloop.cc b/src/perf_mainloop.cc index 0a6ac216a..6bcacbbe7 100644 --- a/src/perf_mainloop.cc +++ b/src/perf_mainloop.cc @@ -30,6 +30,7 @@ #include #include +namespace ddprof { static pid_t g_child_pid = 0; static bool g_termination_requested = false; @@ -321,7 +322,7 @@ DDRes main_loop(const WorkerAttr *attr, DDProfContext *ctx) { // Ensure worker does not return, // because we don't want to free resources (perf_event fds,...) that are // shared between processes. Only free the context. - ddprof_context_free(ctx); + context_free(ctx); exit(0); } return {}; @@ -335,3 +336,5 @@ void main_loop_lib(const WorkerAttr *attr, DDProfContext *ctx) { LG_NFO("Request to exit"); } } + +} // namespace ddprof diff --git a/src/perf_ringbuffer.cc b/src/perf_ringbuffer.cc index a9d386271..a4e000356 100644 --- a/src/perf_ringbuffer.cc +++ b/src/perf_ringbuffer.cc @@ -128,7 +128,12 @@ bool samp2hdr(perf_event_header *hdr, const perf_event_sample *sample, memcpy(buf, sample->ips, sample->nr); buf += sample->nr; } - if (PERF_SAMPLE_RAW & mask) {} + if (PERF_SAMPLE_RAW & mask) { + ((flipper *)buf)->half[0] = sample->size_raw; + memcpy(&((flipper *)buf)->half[1], sample->data_raw, sample->size_raw); + buf += 1 + (sample->size_raw / sizeof(*buf)); + SZ_CHECK; + } if (PERF_SAMPLE_BRANCH_STACK & mask) {} if (PERF_SAMPLE_REGS_USER & mask) { *buf++ = sample->abi; @@ -167,8 +172,6 @@ bool samp2hdr(perf_event_header *hdr, const perf_event_sample *sample, perf_event_sample *hdr2samp(const perf_event_header *hdr, uint64_t mask) { static perf_event_sample sample = {}; - memset(&sample, 0, sizeof(sample)); - sample.header = *hdr; uint64_t *buf = (uint64_t *)&hdr[1]; // sample starts after header @@ -213,12 +216,19 @@ perf_event_sample *hdr2samp(const perf_event_header *hdr, uint64_t mask) { sample.ips = buf; buf += sample.nr; } - if (PERF_SAMPLE_RAW & mask) {} + if (PERF_SAMPLE_RAW & mask) { + // size_raw is a 32-bit integer! + sample.size_raw = ((flipper *)buf)->half[0]; + sample.data_raw = + sample.size_raw ? (char *)&((flipper *)buf)->half[1] : NULL; + buf += 1 + (sample.size_raw / sizeof(*buf)); // Advance + align + } if (PERF_SAMPLE_BRANCH_STACK & mask) {} if (PERF_SAMPLE_REGS_USER & mask) { sample.abi = *buf++; - // In case regs are not available, ignore this sample - if (sample.abi == PERF_SAMPLE_REGS_ABI_NONE) { + // ddprof only has register definitions for 64-bit processors. Reject + // everything else for now. + if (sample.abi != PERF_SAMPLE_REGS_ABI_64) { return NULL; } sample.regs = buf; diff --git a/src/perf_watcher.cc b/src/perf_watcher.cc index bfa9a8367..715036325 100644 --- a/src/perf_watcher.cc +++ b/src/perf_watcher.cc @@ -5,6 +5,7 @@ #include "perf_watcher.hpp" +#include "logger.hpp" #include "perf.hpp" #include @@ -52,17 +53,6 @@ bool watcher_has_countable_sample_type(const PerfWatcher *watcher) { #define X_EVENTS(a, b, c, d, e, f, g) \ {DDPROF_PWE_##a, b, BASE_STYPES, c, d, {e}, f, PERF_SAMPLE_STACK_SIZE, g}, -const PerfWatcher events_templates[] = {EVENT_CONFIG_TABLE(X_EVENTS)}; -const PerfWatcher tracepoint_templates[] = {{ - .ddprof_event_type = DDPROF_PWE_TRACEPOINT, - .desc = "Tracepoint", - .sample_type = BASE_STYPES, - .type = PERF_TYPE_TRACEPOINT, - .sample_period = 1, - .sample_type_id = DDPROF_PWT_TRACEPOINT, - .options = {.is_kernel = kPerfWatcher_Required}, -}}; -#undef X_PWATCH #define X_STR(a, b, c, d, e, f, g) #a, const char *event_type_name_from_idx(int idx) { @@ -74,20 +64,13 @@ const char *event_type_name_from_idx(int idx) { #undef X_STR int str_to_event_idx(const char *str) { - int type; - if (!str) + if (!str || !*str) return -1; - size_t sz_str = strlen(str); - for (type = 0; type < DDPROF_PWE_LENGTH; ++type) { + size_t sz_input = strlen(str); + for (int type = 0; type < DDPROF_PWE_LENGTH; ++type) { const char *event_name = event_type_name_from_idx(type); - size_t sz_thistype = strlen(event_name); - - // We don't want to match partial events, and the event specification - // demands that events are either whole or immediately preceeded by a comma. - if ((sz_str < sz_thistype) || - (sz_str > sz_thistype && str[sz_thistype] != ',')) - continue; - if (!strncmp(str, event_name, sz_thistype)) + size_t sz_this = strlen(event_name); + if (sz_input == sz_this && !strncmp(str, event_name, sz_this)) return type; } return -1; @@ -96,18 +79,64 @@ int str_to_event_idx(const char *str) { const PerfWatcher *ewatcher_from_idx(int idx) { if (idx < 0 || idx >= DDPROF_PWE_LENGTH) return NULL; - return &events_templates[idx]; + static const PerfWatcher events[] = {EVENT_CONFIG_TABLE(X_EVENTS)}; + return &events[idx]; } const PerfWatcher *ewatcher_from_str(const char *str) { return ewatcher_from_idx(str_to_event_idx(str)); } -const PerfWatcher *twatcher_default() { - // Only the one (for now?!) - return &tracepoint_templates[0]; +const PerfWatcher *tracepoint_default_watcher() { + static const PerfWatcher tracepoint_template = { + .ddprof_event_type = DDPROF_PWE_TRACEPOINT, + .desc = "Tracepoint", + .sample_type = BASE_STYPES, + .type = PERF_TYPE_TRACEPOINT, + .sample_period = 1, + .sample_type_id = DDPROF_PWT_TRACEPOINT, + .sample_stack_size = PERF_SAMPLE_STACK_SIZE, + .options = {.use_kernel = PerfWatcherUseKernel::kRequired}, + .value_scale = 1.0, + }; + return &tracepoint_template; } bool watcher_has_tracepoint(const PerfWatcher *watcher) { return DDPROF_PWT_TRACEPOINT == watcher->sample_type_id; } + +void log_watcher(const PerfWatcher *w, int idx) { + PRINT_NFO(" ID: %s, Pos: %d, Index: %lu", w->desc.c_str(), idx, w->config); + switch (w->value_source) { + case EventConfValueSource::kSample: + PRINT_NFO(" Location: Sample"); + break; + case EventConfValueSource::kRegister: + PRINT_NFO(" Location: Register, regno: %d", w->regno); + break; + case EventConfValueSource::kRaw: + PRINT_NFO(" Location: Raw event, offset: %d, size: %d", w->raw_off, + w->raw_sz); + break; + default: + PRINT_NFO(" ILLEGAL LOCATION"); + break; + } + + PRINT_NFO(" Category: %s, EventName: %s, GroupName: %s, Label: %s", + sample_type_name_from_idx(w->sample_type_id), + w->tracepoint_event.c_str(), w->tracepoint_group.c_str(), + w->tracepoint_label.c_str()); + + if (w->options.is_freq) + PRINT_NFO(" Cadence: Freq, Freq: %lu", w->sample_frequency); + else + PRINT_NFO(" Cadence: Period, Period: %lu", w->sample_period); + if (Any(EventConfMode::kCallgraph & w->output_mode)) + PRINT_NFO(" Outputting to callgraph (flamegraph)"); + if (Any(EventConfMode::kMetric & w->output_mode)) + PRINT_NFO(" Outputting to metric"); + if (Any(EventConfMode::kLiveCallgraph & w->output_mode)) + PRINT_NFO(" Outputting to live callgraph"); +} diff --git a/src/pevent_lib.cc b/src/pevent_lib.cc index bed7a28be..b164c3742 100644 --- a/src/pevent_lib.cc +++ b/src/pevent_lib.cc @@ -5,12 +5,14 @@ #include "pevent_lib.hpp" +#include "ddprof_cmdline.hpp" #include "ddres.hpp" #include "defer.hpp" #include "perf.hpp" #include "ringbuffer_utils.hpp" #include "sys_utils.hpp" #include "syscalls.hpp" +#include "tracepoint_config.hpp" #include "user_override.hpp" #include @@ -86,7 +88,7 @@ static DDRes pevent_register_cpu_0(const PerfWatcher *watcher, int watcher_idx, } else { LG_NFO("Failed to perf_event_open for watcher: %s - with attr.type=%s, " "exclude_kernel=%d", - watcher->desc, perf_type_str(attr.type), + watcher->desc.c_str(), perf_type_str(attr.type), static_cast(attr.exclude_kernel)); } } @@ -131,7 +133,8 @@ DDRes pevent_open(DDProfContext *ctx, pid_t pid, int num_cpu, PEventHdr *pevent_hdr) { assert(pevent_hdr->size == 0); // check for previous init for (int watcher_idx = 0; watcher_idx < ctx->num_watchers; ++watcher_idx) { - if (ctx->watchers[watcher_idx].type < kDDPROF_TYPE_CUSTOM) { + PerfWatcher *watcher = &ctx->watchers[watcher_idx]; + if (watcher->type < kDDPROF_TYPE_CUSTOM) { DDRES_CHECK_FWD(pevent_open_all_cpus( &ctx->watchers[watcher_idx], watcher_idx, pid, num_cpu, pevent_hdr)); } else { @@ -139,7 +142,7 @@ DDRes pevent_open(DDProfContext *ctx, pid_t pid, int num_cpu, size_t pevent_idx = 0; DDRES_CHECK_FWD(pevent_create(pevent_hdr, watcher_idx, &pevent_idx)); DDRES_CHECK_FWD(ddprof::ring_buffer_create( - DEFAULT_BUFF_SIZE_SHIFT, RingBufferType::kMPSCRingBuffer, true, + MPSC_BUFF_SIZE_SHIFT, RingBufferType::kMPSCRingBuffer, true, &pevent_hdr->pes[pevent_idx])); } } @@ -201,6 +204,23 @@ DDRes pevent_setup(DDProfContext *ctx, pid_t pid, int num_cpu, LG_NTC("Retrying attachment without user override"); DDRES_CHECK_FWD(pevent_mmap(pevent_hdr, false)); } + + // If any watchers have self-instrumentation, then they may have set up child + // fds which now need to be consolidated via ioctl. These fds cannot be + // closed until profiling is completed. + for (unsigned i = 0; i < pevent_hdr->size; i++) { + PEvent *pes = &pevent_hdr->pes[i]; + if (ctx->watchers[pes->watcher_pos].instrument_self) { + int fd = pes->fd; + for (int j = 0; j < pes->current_child_fd; ++j) { + int child_fd = pes->child_fds[j]; + if (ioctl(child_fd, PERF_EVENT_IOC_SET_OUTPUT, fd)) { + DDRES_RETURN_ERROR_LOG(DD_WHAT_PERFOPEN, + "Could not ioctl() tALLOCSYS1"); + } + } + } + } return ddres_init(); } diff --git a/src/pprof/ddprof_pprof.cc b/src/pprof/ddprof_pprof.cc index 6eb472ce3..995dd5cc1 100644 --- a/src/pprof/ddprof_pprof.cc +++ b/src/pprof/ddprof_pprof.cc @@ -8,6 +8,7 @@ #include "ddog_profiling_utils.hpp" #include "ddprof_defs.hpp" #include "ddres.hpp" +#include "defer.hpp" #include "pevent_lib.hpp" #include "span.hpp" #include "string_format.hpp" @@ -23,7 +24,7 @@ DDRes pprof_create_profile(DDProfPProf *pprof, DDProfContext *ctx) { PerfWatcher *watchers = ctx->watchers; size_t num_watchers = ctx->num_watchers; - ddog_ValueType perf_value_type[DDPROF_PWT_LENGTH]; + ddog_prof_ValueType perf_value_type[DDPROF_PWT_LENGTH]; // Figure out which sample_type_ids are used by active watchers // We also record the watcher with the lowest valid sample_type id, since that @@ -38,7 +39,7 @@ DDRes pprof_create_profile(DDProfPProf *pprof, DDProfContext *ctx) { if (this_id != DDPROF_PWT_NOCOUNT) { DDRES_RETURN_ERROR_LOG( DD_WHAT_PPROF, "Watcher \"%s\" (%d) has invalid sample_type_id %d", - watchers[i].desc, i, this_id); + watchers[i].desc.c_str(), i, this_id); } continue; } @@ -90,10 +91,10 @@ DDRes pprof_create_profile(DDProfPProf *pprof, DDProfContext *ctx) { } pprof->_nb_values = num_sample_type_ids; - ddog_Slice_value_type sample_types = {.ptr = perf_value_type, - .len = pprof->_nb_values}; + ddog_prof_Slice_ValueType sample_types = {.ptr = perf_value_type, + .len = pprof->_nb_values}; - ddog_Period period; + ddog_prof_Period period; if (num_sample_type_ids > 0) { // Populate the default. If we have a frequency, assume it is given in // hertz and convert to a period in nanoseconds. This is broken for many @@ -108,7 +109,7 @@ DDRes pprof_create_profile(DDProfPProf *pprof, DDProfContext *ctx) { .value = default_period, }; } - pprof->_profile = ddog_Profile_new( + pprof->_profile = ddog_prof_Profile_new( sample_types, num_sample_type_ids > 0 ? &period : nullptr, nullptr); if (!pprof->_profile) { DDRES_RETURN_ERROR_LOG(DD_WHAT_PPROF, "Unable to create profile"); @@ -127,16 +128,14 @@ DDRes pprof_create_profile(DDProfPProf *pprof, DDProfContext *ctx) { } DDRes pprof_free_profile(DDProfPProf *pprof) { - if (pprof->_profile) { - ddog_Profile_free(pprof->_profile); - } + ddog_prof_Profile_drop(pprof->_profile); pprof->_profile = NULL; pprof->_nb_values = 0; return ddres_init(); } static void write_function(const ddprof::Symbol &symbol, - ddog_Function *ffi_func) { + ddog_prof_Function *ffi_func) { ffi_func->name = to_CharSlice(symbol._demangle_name); ffi_func->system_name = to_CharSlice(symbol._symname); ffi_func->filename = to_CharSlice(symbol._srcpath); @@ -145,17 +144,17 @@ static void write_function(const ddprof::Symbol &symbol, } static void write_mapping(const ddprof::MapInfo &mapinfo, - ddog_Mapping *ffi_mapping) { + ddog_prof_Mapping *ffi_mapping) { ffi_mapping->memory_start = mapinfo._low_addr; ffi_mapping->memory_limit = mapinfo._high_addr; ffi_mapping->file_offset = mapinfo._offset; ffi_mapping->filename = to_CharSlice(mapinfo._sopath); - ffi_mapping->build_id = {}; + ffi_mapping->build_id = to_CharSlice(mapinfo._build_id); } static void write_location(const FunLoc *loc, const ddprof::MapInfo &mapinfo, - const ddog_Slice_line *lines, - ddog_Location *ffi_location) { + const ddog_prof_Slice_Line *lines, + ddog_prof_Location *ffi_location) { write_mapping(mapinfo, &ffi_location->mapping); ffi_location->address = loc->ip; ffi_location->lines = *lines; @@ -163,20 +162,20 @@ static void write_location(const FunLoc *loc, const ddprof::MapInfo &mapinfo, ffi_location->is_folded = false; } -static void write_line(const ddprof::Symbol &symbol, ddog_Line *ffi_line) { +static void write_line(const ddprof::Symbol &symbol, ddog_prof_Line *ffi_line) { write_function(symbol, &ffi_line->function); ffi_line->line = symbol._lineno; } // Assumption of API is that sample is valid in a single type DDRes pprof_aggregate(const UnwindOutput *uw_output, - const SymbolHdr *symbol_hdr, uint64_t value, + const SymbolHdr &symbol_hdr, uint64_t value, uint64_t count, const PerfWatcher *watcher, DDProfPProf *pprof) { - const ddprof::SymbolTable &symbol_table = symbol_hdr->_symbol_table; - const ddprof::MapInfoTable &mapinfo_table = symbol_hdr->_mapinfo_table; - ddog_Profile *profile = pprof->_profile; + const ddprof::SymbolTable &symbol_table = symbol_hdr._symbol_table; + const ddprof::MapInfoTable &mapinfo_table = symbol_hdr._mapinfo_table; + ddog_prof_Profile *profile = pprof->_profile; int64_t values[DDPROF_PWT_LENGTH] = {}; values[watcher->pprof_sample_idx] = value * count; @@ -184,21 +183,27 @@ DDRes pprof_aggregate(const UnwindOutput *uw_output, values[watcher->pprof_count_sample_idx] = count; } - ddog_Location locations_buff[DD_MAX_STACK_DEPTH]; + ddog_prof_Location locations_buff[DD_MAX_STACK_DEPTH]; // assumption of single line per loc for now - ddog_Line line_buff[DD_MAX_STACK_DEPTH]; + ddog_prof_Line line_buff[DD_MAX_STACK_DEPTH]; - ddprof::span locs{uw_output->locs, uw_output->nb_locs}; + ddprof::span locs{uw_output->locs}; if (watcher->options.nb_frames_to_skip < locs.size()) { locs = locs.subspan(watcher->options.nb_frames_to_skip); + } else { + // Keep the last two frames. In the case of stacks that we could not unwind + // We will have the following stack: binary_name; [incomplete] + if (locs.size() >= 3) { + locs = locs.subspan(locs.size() - 2); + } } unsigned cur_loc = 0; for (const FunLoc &loc : locs) { // possibly several lines to handle inlined function (not handled for now) write_line(symbol_table[loc._symbol_idx], &line_buff[cur_loc]); - ddog_Slice_line lines = {.ptr = &line_buff[cur_loc], .len = 1}; + ddog_prof_Slice_Line lines = {.ptr = &line_buff[cur_loc], .len = 1}; write_location(&loc, mapinfo_table[loc._map_info_idx], &lines, &locations_buff[cur_loc]); ++cur_loc; @@ -207,7 +212,7 @@ DDRes pprof_aggregate(const UnwindOutput *uw_output, // Create the labels for the sample. Two samples are the same only when // their locations _and_ all labels are identical, so we admit a very limited // number of labels at present - ddog_Label labels[PPROF_MAX_LABELS] = {}; + ddog_prof_Label labels[PPROF_MAX_LABELS] = {}; size_t labels_num = 0; char pid_str[sizeof("536870912")] = {}; // reserve space up to 2^29 base-10 char tid_str[sizeof("536870912")] = {}; // reserve space up to 2^29 base-10 @@ -230,27 +235,36 @@ DDRes pprof_aggregate(const UnwindOutput *uw_output, ++labels_num; } if (watcher_has_tracepoint(watcher)) { - // This adds only the trace name. Maybe we should have group + tracenames? labels[labels_num].key = to_CharSlice("tracepoint_type"); - labels[labels_num].str = to_CharSlice(watcher->tracepoint_name); + + // If the label is given, use that as the tracepoint type. Otherwise + // default to the event name + if (!watcher->tracepoint_label.empty()) { + labels[labels_num].str = to_CharSlice(watcher->tracepoint_label.c_str()); + } else { + labels[labels_num].str = to_CharSlice(watcher->tracepoint_event.c_str()); + } ++labels_num; } - ddog_Sample sample = { + ddog_prof_Sample sample = { .locations = {.ptr = locations_buff, .len = cur_loc}, .values = {.ptr = values, .len = pprof->_nb_values}, .labels = {.ptr = labels, .len = labels_num}, }; - uint64_t id_sample = ddog_Profile_add(profile, sample); - if (id_sample == 0) { - DDRES_RETURN_ERROR_LOG(DD_WHAT_PPROF, "Unable to add profile"); + // uint64_t id_sample = ddog_prof_Profile_add(profile, sample); + ddog_prof_Profile_AddResult add_res = ddog_prof_Profile_add(profile, sample); + if (add_res.tag == DDOG_PROF_PROFILE_ADD_RESULT_ERR) { + defer { ddog_Error_drop(&add_res.err); }; + DDRES_RETURN_ERROR_LOG(DD_WHAT_PPROF, "Unable to add profile: %s", + add_res.err.message.ptr); } return ddres_init(); } DDRes pprof_reset(DDProfPProf *pprof) { - if (!ddog_Profile_reset(pprof->_profile, nullptr)) { + if (!ddog_prof_Profile_reset(pprof->_profile, nullptr)) { DDRES_RETURN_ERROR_LOG(DD_WHAT_PPROF, "Unable to reset profile"); } return ddres_init(); @@ -261,7 +275,7 @@ void ddprof_print_sample(const UnwindOutput &uw_output, const PerfWatcher &watcher) { auto &symbol_table = symbol_hdr._symbol_table; - ddprof::span locs{uw_output.locs, uw_output.nb_locs}; + ddprof::span locs{uw_output.locs}; const char *sample_name = sample_type_name_from_idx( sample_type_id_to_count_sample_type_id(watcher.sample_type_id)); diff --git a/src/presets.cc b/src/presets.cc new file mode 100644 index 000000000..174c2fe46 --- /dev/null +++ b/src/presets.cc @@ -0,0 +1,69 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include "presets.hpp" + +#include "ddres.hpp" + +#include "ddprof_cmdline.hpp" +#include "span.hpp" + +#include +#include + +namespace ddprof { + +DDRes add_preset(DDProfContext *ctx, const char *preset, + bool pid_or_global_mode) { + using namespace std::literals; + static Preset presets[] = { + {"default", {"sCPU", "sALLOC"}}, + {"default-pid", {"sCPU"}}, + {"cpu_only", {"sCPU"}}, + {"alloc_only", {"sALLOC"}}, + {"cpu_live_heap", {"sCPU", "sALLOC mode=l"}}, + }; + + if (preset == "default"sv && pid_or_global_mode) { + preset = "default-pid"; + } + + ddprof::span presets_span{presets}; + std::string_view preset_sv{preset}; + + auto it = std::find_if(presets_span.begin(), presets_span.end(), + [&preset_sv](auto &e) { return e.name == preset_sv; }); + if (it == presets_span.end()) { + DDRES_RETURN_ERROR_LOG(DD_WHAT_INPUT_PROCESS, "Unknown preset (%s)", + preset); + } + + for (const char *event : it->events) { + if (event == nullptr) { + break; + } + if (ctx->num_watchers == MAX_TYPE_WATCHER) { + DDRES_RETURN_ERROR_LOG(DD_WHAT_INPUT_PROCESS, "Too many input events"); + } + PerfWatcher *watcher = &ctx->watchers[ctx->num_watchers]; + if (!watcher_from_str(event, watcher)) { + DDRES_RETURN_ERROR_LOG(DD_WHAT_INPUT_PROCESS, + "Invalid event/tracepoint (%s)", event); + } + ddprof::span watchers{ctx->watchers, + static_cast(ctx->num_watchers)}; + + // ignore event if it was already present in watchers + if (watcher->ddprof_event_type == DDPROF_PWE_TRACEPOINT || + std::find_if(watchers.begin(), watchers.end(), [&watcher](auto &w) { + return w.ddprof_event_type == watcher->ddprof_event_type; + }) == watchers.end()) { + ++ctx->num_watchers; + } + } + + return {}; +} +} // namespace ddprof diff --git a/src/runtime_symbol_lookup.cc b/src/runtime_symbol_lookup.cc index 0b844c900..8fefcf6dd 100644 --- a/src/runtime_symbol_lookup.cc +++ b/src/runtime_symbol_lookup.cc @@ -10,19 +10,26 @@ #include #include +#include "ddres.hpp" #include "defer.hpp" #include "logger.hpp" #include "runtime_symbol_lookup.hpp" #include "unlikely.hpp" +#include "jit/jitdump.hpp" + namespace ddprof { +// 00007F78F5230000 d8 stub<1> AllocateTemporaryEntryPoints +// 00007F78F52300D8 78 stub<2> AllocateTemporaryEntryPoints +// 00007F78F5230150 18 stub<3> AllocateTemporaryEntryPoints + FILE *RuntimeSymbolLookup::perfmaps_open(int pid, const char *path_to_perfmap = "") { - char buf[1024] = {0}; - auto n = snprintf(buf, 1024, "%s/proc/%d/root%s/perf-%d.map", + char buf[1024]; + auto n = snprintf(buf, std::size(buf), "%s/proc/%d/root%s/perf-%d.map", _path_to_proc.c_str(), pid, path_to_perfmap, pid); - if (n >= 1024) { // unable to snprintf everything + if (unsigned(n) >= std::size(buf)) { // unable to snprintf everything return nullptr; } FILE *perfmap_file = fopen(buf, "r"); @@ -30,26 +37,108 @@ FILE *RuntimeSymbolLookup::perfmaps_open(int pid, return perfmap_file; } // attempt in local namespace - snprintf(buf, 1024, "%s/perf-%d.map", path_to_perfmap, pid); + snprintf(buf, std::size(buf), "%s/perf-%d.map", path_to_perfmap, pid); + LG_DBG("Open perf-map %s", buf); return fopen(buf, "r"); } -bool should_skip_symbol(const char *symbol) { - return strstr(symbol, "GenerateResolveStub") != nullptr || - strstr(symbol, "GenerateDispatchStub") != nullptr || - strstr(symbol, "GenerateLookupStub") != nullptr || - strstr(symbol, "AllocateTemporaryEntryPoints") != nullptr; +bool RuntimeSymbolLookup::insert_or_replace(std::string_view symbol, + ProcessAddress_t address, + Offset_t code_size, + SymbolMap &symbol_map, + SymbolTable &symbol_table) { + if (should_skip_symbol(symbol)) { + return false; + } + + if (!address || !code_size || + address == std::numeric_limits::max() || + code_size == std::numeric_limits::max()) { + return false; + } + + if (unlikely(address > + std::numeric_limits::max() - code_size)) { + return false; + } + + SymbolMap::FindRes find_res = symbol_map.find_closest(address); + if (!find_res.second) { + symbol_map.emplace_hint( + find_res.first, address, + SymbolSpan(address + code_size - 1, symbol_table.size())); + symbol_table.emplace_back( + Symbol(std::string(symbol), std::string(symbol), 0, "jit")); + } else { + // todo managing range erase (we can overal with other syms) + SymbolIdx_t existing = find_res.first->second.get_symbol_idx(); +#ifdef DEBUG + LG_DBG("Existyng sym -- %s (%lx-%lx)", + symbol_table[existing]._demangle_name.c_str(), find_res.first->first, + find_res.first->second.get_end()); + LG_DBG("New sym -- %s (%lx-%lx)", code_load.func_name.c_str(), + code_load.code_addr, code_load.code_size + code_load.code_addr); +#endif + if (symbol_table[existing]._demangle_name == symbol) { + // nothing to do (unlikely size would change ?) + } else { + // remove current element (as start can be different) + symbol_map.erase(find_res.first); + symbol_map.emplace( + address, SymbolSpan(address + code_size - 1, symbol_table.size())); + symbol_table[existing]._demangle_name = symbol; + symbol_table[existing]._symname = symbol; + } + } + + return true; +} + +DDRes RuntimeSymbolLookup::fill_from_jitdump(std::string_view jitdump_path, + pid_t pid, SymbolMap &symbol_map, + SymbolTable &symbol_table) { + char buf[1024]; + auto n = snprintf(buf, std::size(buf), "%s/proc/%d/root%s", + _path_to_proc.c_str(), pid, jitdump_path.data()); + if (unsigned(n) >= std::size(buf)) { // unable to snprintf everything + DDRES_RETURN_ERROR_LOG(DD_WHAT_JIT, "Unable to create path to jitdump"); + } + + JITDump jitdump; + DDRes res = jitdump_read(std::string_view(buf, n), jitdump); + if (IsDDResNotOK(res) && res._what == DD_WHAT_NO_JIT_FILE) { + // retry different path + res = jitdump_read(jitdump_path, jitdump); + if (IsDDResFatal(res)) { + // Stop if fatal error + return res; + } + } + + for (const JITRecordCodeLoad &code_load : jitdump.code_load) { + insert_or_replace(code_load.func_name, code_load.code_addr, + code_load.code_size, symbol_map, symbol_table); + } + // todo we can add file and inlined functions with debug info + return ddres_init(); +} + +bool RuntimeSymbolLookup::should_skip_symbol(std::string_view symbol) const { + // we could consider making this more efficient if the table grows + for (const auto &el : _ignored_symbols_start) { + if (symbol.starts_with(el)) { + return true; + } + } + return false; } -void RuntimeSymbolLookup::fill_perfmap_from_file(int pid, SymbolMap &symbol_map, - SymbolTable &symbol_table) { +DDRes RuntimeSymbolLookup::fill_from_perfmap(int pid, SymbolMap &symbol_map, + SymbolTable &symbol_table) { FILE *pmf = perfmaps_open(pid, "/tmp"); - symbol_map.clear(); if (pmf == nullptr) { - // Add a single fake symbol to avoid bouncing - symbol_map.emplace(0, SymbolSpan()); - LG_DBG("No runtime symbols (PID%d)", pid); - return; + LG_DBG("Unable to read perfmap file (PID%d)", pid); + return ddres_error(DD_WHAT_NO_JIT_FILE); } defer { fclose(pmf); }; @@ -57,60 +146,63 @@ void RuntimeSymbolLookup::fill_perfmap_from_file(int pid, SymbolMap &symbol_map, char *line = NULL; size_t sz_buf = 0; char buffer[2048]; - auto it = symbol_map.end(); while (-1 != getline(&line, &sz_buf, pmf)) { char address_buff[33]; // max size of 16 (as it should be hexa for uint64) char size_buff[33]; // Avoid considering any symbols beyond 300 chars if (3 != - sscanf(line, "%16s %8s %300[^\t\n]", address_buff, size_buff, - buffer) || - should_skip_symbol(buffer)) { + sscanf(line, "%16s %8s %300[^\t\n]", address_buff, size_buff, buffer)) { continue; } ProcessAddress_t address = std::strtoul(address_buff, nullptr, 16); Offset_t code_size = std::strtoul(size_buff, nullptr, 16); - // check for conversion issues - if (!address || !code_size || - address == std::numeric_limits::max() || - code_size == std::numeric_limits::max()) { - continue; - } - ProcessAddress_t end = address + code_size - 1; -#ifdef DEBUG - LG_NFO("Attempt insert at %lx --> %lx / %s", address, end, buffer); -#endif - if (unlikely(address > - std::numeric_limits::max() - code_size)) { - // Ignore overflow - continue; - } - - // elements are ordered - it = symbol_map.emplace_hint(it, address, - SymbolSpan(end, symbol_table.size())); - symbol_table.emplace_back( - Symbol(std::string(buffer), std::string(buffer), 0, "unknown")); + insert_or_replace(buffer, address, code_size, symbol_map, symbol_table); } free(line); + return ddres_init(); +} + +SymbolIdx_t +RuntimeSymbolLookup::get_or_insert_jitdump(pid_t pid, ProcessAddress_t pc, + SymbolTable &symbol_table, + std::string_view jitdump_path) { + SymbolInfo &symbol_info = _pid_map[pid]; + SymbolMap::FindRes find_res = symbol_info._map.find_closest(pc); + if (!find_res.second && !has_lookup_failure(symbol_info, jitdump_path)) { + // refresh as we expect there to be new symbols + ++_stats._nb_jit_reads; + if (IsDDResFatal(fill_from_jitdump(jitdump_path, pid, symbol_info._map, + symbol_table))) { + // Some warnings can be expected with incomplete files + flag_lookup_failure(symbol_info, jitdump_path); + return -1; + } + find_res = symbol_info._map.find_closest(pc); + } + // Avoid bouncing when we are failing lookups. + // !This could have a negative impact on symbolisation. To be studied + if (!find_res.second) { + flag_lookup_failure(symbol_info, jitdump_path); + } + return find_res.second ? find_res.first->second.get_symbol_idx() : -1; } SymbolIdx_t RuntimeSymbolLookup::get_or_insert(pid_t pid, ProcessAddress_t pc, SymbolTable &symbol_table) { - SymbolMap &symbol_map = _pid_map[pid]; - // TODO : how do we know we need to refresh the symbol map ? - // A solution can be to poll + inotify ? Though where would this poll be - // handled ? + SymbolInfo &symbol_info = _pid_map[pid]; + SymbolMap::FindRes find_res = symbol_info._map.find_closest(pc); - if (symbol_map.empty()) { - fill_perfmap_from_file(pid, symbol_map, symbol_table); + // Only check the file if we did not get failures in this cycle (for this pid) + if (!find_res.second && + !has_lookup_failure(symbol_info, std::string("perfmap"))) { + ++_stats._nb_jit_reads; + fill_from_perfmap(pid, symbol_info._map, symbol_table); + find_res = symbol_info._map.find_closest(pc); } - - SymbolMap::FindRes find_res = symbol_map.find_closest(pc); - if (find_res.second) { - return find_res.first->second.get_symbol_idx(); + if (!find_res.second) { + flag_lookup_failure(symbol_info, "perfmap"); } - return -1; + return find_res.second ? find_res.first->second.get_symbol_idx() : -1; } } // namespace ddprof diff --git a/src/tags.cc b/src/tags.cc index 983adb43e..43cec9b49 100644 --- a/src/tags.cc +++ b/src/tags.cc @@ -13,24 +13,24 @@ namespace { // From the DogFood repo. Credit goes to Garrett Sickles, who has an awesome // DogStatsD C++ library : https://github.com/garrettsickles/DogFood.git -inline bool ValidateTags(const std::string &_tag) { - if (_tag.length() == 0 || _tag.length() > 200) +inline bool ValidateTags(std::string_view tag) { + if (tag.length() == 0 || tag.length() > 200) return false; //////////////////////////////////////////////////////// // Verify the first character is a letter - if (!std::isalpha(_tag.at(0))) + if (!std::isalpha(tag.at(0))) return false; //////////////////////////////////////////////////////// // Verify end is not a colon - if (_tag.back() == ':') + if (tag.back() == ':') return false; //////////////////////////////////////////////////////// // Verify each character - for (size_t n = 0; n < _tag.length(); n++) { - const char c = _tag.at(n); + for (size_t n = 0; n < tag.length(); n++) { + const char c = tag.at(n); if (std::isalnum(c) || c == '_' || c == '-' || c == ':' || c == '.' || c == '/' || c == '\\') continue; @@ -67,17 +67,17 @@ void split(const char *str, Tags &tags, char c) { while (*str != c && *str != '\0') str++; // no need to +1 with size as we don't include the comma + if (!ValidateTags(std::string_view(begin, str - begin))) { + LG_WRN("[TAGS] Bad tag value - skip %s", + std::string_view(begin, str - begin).data()); + continue; + } Tag current_tag = split_kv(begin, str - begin); if (current_tag == Tag()) { // skip this empty tag continue; } - if (!ValidateTags(current_tag.first) || !ValidateTags(current_tag.second)) { - LG_WRN("[TAGS] Bad tag value - skip %s:%s", current_tag.first.c_str(), - current_tag.second.c_str()); - } else { - tags.push_back(std::move(current_tag)); - } + tags.push_back(std::move(current_tag)); } while ('\0' != *str++); } diff --git a/src/tracepoint_config.cc b/src/tracepoint_config.cc new file mode 100644 index 000000000..209c9bb2d --- /dev/null +++ b/src/tracepoint_config.cc @@ -0,0 +1,45 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include +#include +#include +#include + +namespace ddprof { +// Returns the ID of the given Linux tracepoint, or -1 if an error occurs. +int64_t tracepoint_get_id(std::string_view global_name, + std::string_view tracepoint_name) { + if (global_name.empty() || tracepoint_name.empty()) { + return -1; + } + + // todo: should we even consider the debug path ? (is it not deprecated?) + std::string fs_path; + struct stat sb; + if (stat("/sys/kernel/tracing/events", &sb) == 0) { + fs_path = "/sys/kernel/tracing/events"; + } else if (stat("/sys/kernel/debug/tracing/events", &sb) == 0) { + fs_path = "/sys/kernel/debug/tracing/events"; + } else { + return -1; // Neither debugfs nor tracefs is available. + } + + // todo this path could change (from user overrides) + std::stringstream id_path; + id_path << fs_path << "/" << global_name << "/" << tracepoint_name << "/id"; + + // Read the ID from the file. + std::ifstream id_file(id_path.str()); + if (!id_file) { + return -1; + } + long trace_id; + if (!(id_file >> trace_id)) { + return -1; + } + return trace_id; +} +} // namespace ddprof diff --git a/src/unwind.cc b/src/unwind.cc index 0d44f9bf6..f5297f4c8 100644 --- a/src/unwind.cc +++ b/src/unwind.cc @@ -17,6 +17,8 @@ #include "unwind_metrics.hpp" #include "unwind_state.hpp" +#include "libaustin.h" + #include #include #include @@ -31,18 +33,20 @@ static void find_dso_add_error_frame(UnwindState *us) { us->dso_hdr.dso_find_closest(us->pid, us->current_ip); add_error_frame(find_res.second ? &(find_res.first->second) : nullptr, us, us->current_ip); + austin_up(); // Idempotent } void unwind_init_sample(UnwindState *us, uint64_t *sample_regs, pid_t sample_pid, uint64_t sample_size_stack, char *sample_data_stack) { - uw_output_clear(&us->output); + us->output.clear(); memcpy(&us->initial_regs.regs[0], sample_regs, K_NB_REGS_UNWIND * sizeof(uint64_t)); us->current_ip = us->initial_regs.regs[REGNAME(PC)]; us->pid = sample_pid; us->stack_sz = sample_size_stack; us->stack = sample_data_stack; + us->austin_handle = austin_attach(sample_pid); } static bool is_ld(const std::string &path) { @@ -53,14 +57,21 @@ static bool is_ld(const std::string &path) { } static bool is_stack_complete(UnwindState *us) { - static constexpr std::array s_expected_root_frames{"_start"sv, "__clone"sv, - "_exit"sv}; - - if (us->output.nb_locs == 0) { + static constexpr std::array s_expected_root_frames{ + "__clone"sv, + "__clone3"sv, + "_exit"sv, + "main"sv, + "runtime.goexit.abi0"sv, + "runtime.systemstack.abi0"sv, + "_start"sv, + "start_thread"sv}; + + if (us->output.locs.size() == 0) { return false; } - const auto &root_loc = us->output.locs[us->output.nb_locs - 1]; + const auto &root_loc = us->output.locs.back(); const auto &root_mapping = us->symbol_hdr._mapinfo_table[root_loc._map_info_idx]; @@ -96,22 +107,18 @@ DDRes unwindstate__unwind(UnwindState *us) { } else { us->output.is_incomplete = false; } - ddprof_stats_add(STATS_UNWIND_AVG_STACK_DEPTH, us->output.nb_locs, nullptr); + ddprof_stats_add(STATS_UNWIND_AVG_STACK_DEPTH, us->output.locs.size(), + nullptr); // Add a frame that identifies executable to which these belong add_virtual_base_frame(us); - if (us->_dwfl_wrapper->_inconsistent) { - // error detected on this pid - LG_WRN("(Inconsistent DWFL/DSOs)%d - Free associated objects", us->pid); - unwind_pid_free(us, us->pid); - } return res; } void unwind_pid_free(UnwindState *us, pid_t pid) { us->dso_hdr.pid_free(pid); us->dwfl_hdr.clear_pid(pid); - us->symbol_hdr._base_frame_symbol_lookup.erase(pid); + us->symbol_hdr.clear(pid); } void unwind_cycle(UnwindState *us) { @@ -119,7 +126,6 @@ void unwind_cycle(UnwindState *us) { us->symbol_hdr.cycle(); // clean up pids that we did not see recently us->dwfl_hdr.display_stats(); - us->dwfl_hdr.clear_unvisited(); us->dso_hdr._stats.reset(); unwind_metrics_reset(); diff --git a/src/unwind_dwfl.cc b/src/unwind_dwfl.cc index 97ea3b0c5..4397b8a80 100644 --- a/src/unwind_dwfl.cc +++ b/src/unwind_dwfl.cc @@ -5,15 +5,95 @@ #include "unwind_dwfl.hpp" +#include "austin_symbol_lookup.hpp" #include "ddprof_stats.hpp" #include "ddres.hpp" #include "dwfl_internals.hpp" #include "dwfl_thread_callbacks.hpp" +#include "libaustin.h" #include "logger.hpp" #include "runtime_symbol_lookup.hpp" #include "symbol_hdr.hpp" #include "unwind_helpers.hpp" #include "unwind_state.hpp" +extern "C" { +#include "libebl.h" +} + +// clang-format off + +/// Hacky way of accessing registers +// --> imported definition from the libdwflP.h + +struct Dwfl_Process +{ + struct Dwfl *dwfl; + pid_t pid; + const Dwfl_Thread_Callbacks *callbacks; + void *callbacks_arg; + struct ebl *ebl; + bool ebl_close:1; +}; + +/* See its typedef in libdwfl.h. */ + +struct Dwfl_Thread +{ + Dwfl_Process *process; + pid_t tid; + /* Bottom (innermost) frame while we're initializing, NULL afterwards. */ + Dwfl_Frame *unwound; + void *callbacks_arg; +}; + + +struct Dwfl_Frame +{ + Dwfl_Thread *thread; + /* Previous (outer) frame. */ + Dwfl_Frame *unwound; + bool signal_frame : 1; + bool initial_frame : 1; + enum + { + /* This structure is still being initialized or there was an error + initializing it. */ + DWFL_FRAME_STATE_ERROR, + /* PC field is valid. */ + DWFL_FRAME_STATE_PC_SET, + /* PC field is undefined, this means the next (inner) frame was the + outermost frame. */ + DWFL_FRAME_STATE_PC_UNDEFINED + } pc_state; + /* Either initialized from appropriate REGS element or on some archs + initialized separately as the return address has no DWARF register. */ + Dwarf_Addr pc; + /* (1 << X) bitmask where 0 <= X < ebl_frame_nregs. */ + uint64_t regs_set[3]; + /* REGS array size is ebl_frame_nregs. + REGS_SET tells which of the REGS are valid. */ + Dwarf_Addr regs[]; +}; + +/* Fetch value from Dwfl_Frame->regs indexed by DWARF REGNO. + No error code is set if the function returns FALSE. */ +static bool +__libdwfl_frame_reg_get (Dwfl_Frame *state, unsigned regno, Dwarf_Addr *val) +{ + Ebl *ebl = state->thread->process->ebl; + if (! ebl_dwarf_to_regno (ebl, ®no)) + return false; + if (regno >= ebl_frame_nregs (ebl)) + return false; + if ((state->regs_set[regno / sizeof (*state->regs_set) / 8] + & ((uint64_t) 1U << (regno % (sizeof (*state->regs_set) * 8)))) == 0) + return false; + if (val) + *val = state->regs[regno]; + return true; +} + +// clang-format on int frame_cb(Dwfl_Frame *, void *); @@ -26,7 +106,7 @@ DDRes unwind_init_dwfl(UnwindState *us) { // we need to add at least one module to figure out the architecture (to // create the unwinding backend) - DsoHdr::DsoMap &map = us->dso_hdr._map[us->pid]; + DsoHdr::DsoMap &map = us->dso_hdr._pid_map[us->pid]._map; if (map.empty()) { int nb_elts; us->dso_hdr.pid_backpopulate(us->pid, nb_elts); @@ -77,27 +157,46 @@ static void trace_unwinding_end(UnwindState *us) { if (LL_DEBUG <= LOG_getlevel()) { DsoHdr::DsoFindRes find_res = us->dso_hdr.dso_find_closest(us->pid, us->current_ip); + SymbolIdx_t symIdx = + us->output.locs[us->output.locs.size() - 1]._symbol_idx; if (find_res.second) { - LG_DBG("Stopped at %lx - dso %s - error %s", us->current_ip, - find_res.first->second.to_string().c_str(), dwfl_errmsg(-1)); + const std::string &last_func = + us->symbol_hdr._symbol_table[symIdx]._symname; + LG_DBG("Stopped at %lx - dso %s - error %s (%s)", us->current_ip, + find_res.first->second.to_string().c_str(), dwfl_errmsg(-1), + last_func.c_str()); } else { LG_DBG("Unknown DSO %lx - error %s", us->current_ip, dwfl_errmsg(-1)); } } } + +void print_all_registers(Dwfl_Frame *dwfl_frame) { + for (int i = 0; i != PERF_REGS_COUNT; ++i) { + uint64_t val; + if (__libdwfl_frame_reg_get(dwfl_frame, i, &val)) { + LG_DBG("Register %i = %lx", i, val); + } + } +} + static DDRes add_dwfl_frame(UnwindState *us, const Dso &dso, ElfAddress_t pc, - DDProfMod *ddprof_mod, FileInfoId_t file_info_id); + const DDProfMod &ddprof_mod, FileInfoId_t file_info_id, + Dwfl_Frame *dwfl_frame); // check for runtime symbols provided in /tmp files static DDRes add_runtime_symbol_frame(UnwindState *us, const Dso &dso, - ElfAddress_t pc); + ElfAddress_t pc, + std::string_view jitdump_path); + +static DDRes add_python_frame(UnwindState *us, SymbolIdx_t symbol_idx, + ElfAddress_t pc, Dwfl_Frame *dwfl_frame); // returns an OK status if we should continue unwinding static DDRes add_symbol(Dwfl_Frame *dwfl_frame, UnwindState *us) { - if (is_max_stack_depth_reached(*us)) { add_common_frame(us, SymbolErrors::truncated_stack); - LG_DBG("Max stack depth reached (depth#%lu)", us->output.nb_locs); + LG_DBG("Max stack depth reached (depth#%lu)", us->output.locs.size()); ddprof_stats_add(STATS_UNWIND_TRUNCATED_OUTPUT, 1, nullptr); return ddres_warn(DD_WHAT_UW_MAX_DEPTH); } @@ -105,25 +204,43 @@ static DDRes add_symbol(Dwfl_Frame *dwfl_frame, UnwindState *us) { Dwarf_Addr pc = 0; if (!dwfl_frame_pc(dwfl_frame, &pc, nullptr)) { LG_DBG("Failure to compute frame PC: %s (depth#%lu)", dwfl_errmsg(-1), - us->output.nb_locs); + us->output.locs.size()); add_error_frame(nullptr, us, pc, SymbolErrors::dwfl_frame); return ddres_init(); // invalid pc : do not add frame } us->current_ip = pc; - + DsoHdr &dsoHdr = us->dso_hdr; + DsoHdr::PidMapping &pid_mapping = dsoHdr._pid_map[us->pid]; + if (!pc) { + // Unwinding can end on a null address + // Example: alpine 3.17 + return ddres_init(); + } DsoHdr::DsoFindRes find_res = - us->dso_hdr.dso_find_or_backpopulate(us->pid, pc); + dsoHdr.dso_find_or_backpopulate(pid_mapping, us->pid, pc); if (!find_res.second) { // no matching file was found LG_DBG("[UW] (PID%d) DSO not found at 0x%lx (depth#%lu)", us->pid, pc, - us->output.nb_locs); + us->output.locs.size()); add_error_frame(nullptr, us, pc, SymbolErrors::unknown_dso); return ddres_init(); } + + // print_all_registers(dwfl_frame); + const Dso &dso = find_res.first->second; + std::string_view jitdump_path = {}; if (dso::has_runtime_symbols(dso._type)) { - return add_runtime_symbol_frame(us, dso, pc); + if (pid_mapping._jitdump_addr) { + DsoHdr::DsoFindRes find_mapping = + DsoHdr::dso_find_closest(pid_mapping._map, pid_mapping._jitdump_addr); + if (find_mapping.second) { // jitdump exists + jitdump_path = find_mapping.first->second._filename; + } + } + return add_runtime_symbol_frame(us, dso, pc, jitdump_path); } + // if not encountered previously, update file location / key FileInfoId_t file_info_id = us->dso_hdr.get_or_insert_file_info(dso); if (file_info_id <= k_file_info_error) { @@ -154,7 +271,7 @@ static DDRes add_symbol(Dwfl_Frame *dwfl_frame, UnwindState *us) { if (!dwfl_frame_pc(dwfl_frame, &pc, &isactivation)) { LG_DBG("Failure to compute frame PC: %s (depth#%lu)", dwfl_errmsg(-1), - us->output.nb_locs); + us->output.locs.size()); add_error_frame(nullptr, us, pc, SymbolErrors::dwfl_frame); return ddres_init(); // invalid pc : do not add frame } @@ -163,7 +280,7 @@ static DDRes add_symbol(Dwfl_Frame *dwfl_frame, UnwindState *us) { us->current_ip = pc; // Now we register - if (IsDDResNotOK(add_dwfl_frame(us, dso, pc, ddprof_mod, file_info_id))) { + if (IsDDResNotOK(add_dwfl_frame(us, dso, pc, *ddprof_mod, file_info_id, dwfl_frame))) { return ddres_warn(DD_WHAT_UW_ERROR); } return ddres_init(); @@ -171,12 +288,12 @@ static DDRes add_symbol(Dwfl_Frame *dwfl_frame, UnwindState *us) { bool is_infinite_loop(UnwindState *us) { UnwindOutput &output = us->output; - uint64_t nb_locs = output.nb_locs; + uint64_t nb_locs = output.locs.size(); unsigned nb_frames_to_check = 3; if (nb_locs <= nb_frames_to_check) { return false; } - for (unsigned i = 0; i < nb_frames_to_check; ++i) { + for (unsigned i = 1; i < nb_frames_to_check; ++i) { FunLoc &n_minus_one_loc = output.locs[nb_locs - i]; FunLoc &n_minus_two_loc = output.locs[nb_locs - i - 1]; if (n_minus_one_loc.ip != n_minus_two_loc.ip) { @@ -190,7 +307,7 @@ bool is_infinite_loop(UnwindState *us) { static int frame_cb(Dwfl_Frame *dwfl_frame, void *arg) { UnwindState *us = (UnwindState *)arg; #ifdef DEBUG - LG_NFO("Beging depth %lu", us->output.nb_locs); + LG_NFO("Beging depth %lu", us->output.locs.size()); #endif int dwfl_error_value = dwfl_errno(); if (dwfl_error_value) { @@ -203,11 +320,11 @@ static int frame_cb(Dwfl_Frame *dwfl_frame, void *arg) { #ifdef DEBUG // We often fallback to frame pointer unwinding (which logs an error) if (dwfl_error_value) { - LG_DBG("Error flagged at depth = %lu -- Error:%s ", us->output.nb_locs, + LG_DBG("Error flagged at depth = %lu -- %d Error:%s ", + us->output.locs.size(), dwfl_error_value, dwfl_errmsg(dwfl_error_value)); } #endif - // Before we potentially exit, record the fact that we're processing a frame ddprof_stats_add(STATS_UNWIND_FRAMES, 1, NULL); @@ -230,43 +347,87 @@ DDRes unwind_dwfl(UnwindState *us) { 0) { trace_unwinding_end(us); } - res = us->output.nb_locs > 0 ? ddres_init() - : ddres_warn(DD_WHAT_DWFL_LIB_ERROR); + res = us->output.locs.size() > 0 ? ddres_init() + : ddres_warn(DD_WHAT_DWFL_LIB_ERROR); return res; } static DDRes add_dwfl_frame(UnwindState *us, const Dso &dso, ElfAddress_t pc, - DDProfMod *ddprof_mod, FileInfoId_t file_info_id) { - + const DDProfMod &ddprof_mod, FileInfoId_t file_info_id, + Dwfl_Frame *dwfl_frame) { SymbolHdr &unwind_symbol_hdr = us->symbol_hdr; // get or create the dwfl symbol SymbolIdx_t symbol_idx = unwind_symbol_hdr._dwfl_symbol_lookup.get_or_insert( - *ddprof_mod, unwind_symbol_hdr._symbol_table, + ddprof_mod, unwind_symbol_hdr._symbol_table, unwind_symbol_hdr._dso_symbol_lookup, file_info_id, pc, dso); + + if (IsDDResOK(add_python_frame(us, symbol_idx, pc, dwfl_frame))) { + return ddres_init(); + } + MapInfoIdx_t map_idx = us->symbol_hdr._mapinfo_lookup.get_or_insert( - us->pid, us->symbol_hdr._mapinfo_table, dso); + us->pid, us->symbol_hdr._mapinfo_table, dso, ddprof_mod._build_id); return add_frame(symbol_idx, map_idx, pc, us); } // check for runtime symbols provided in /tmp files static DDRes add_runtime_symbol_frame(UnwindState *us, const Dso &dso, - ElfAddress_t pc) { + ElfAddress_t pc, + std::string_view jitdump_path) { SymbolHdr &unwind_symbol_hdr = us->symbol_hdr; SymbolTable &symbol_table = unwind_symbol_hdr._symbol_table; RuntimeSymbolLookup &runtime_symbol_lookup = unwind_symbol_hdr._runtime_symbol_lookup; - SymbolIdx_t symbol_idx = - runtime_symbol_lookup.get_or_insert(dso._pid, pc, symbol_table); + SymbolIdx_t symbol_idx = -1; + if (jitdump_path.empty()) { + symbol_idx = + runtime_symbol_lookup.get_or_insert(dso._pid, pc, symbol_table); + } else { + symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + dso._pid, pc, symbol_table, jitdump_path); + } if (symbol_idx == -1) { add_dso_frame(us, dso, pc, "pc"); return ddres_init(); } MapInfoIdx_t map_idx = us->symbol_hdr._mapinfo_lookup.get_or_insert( - us->pid, us->symbol_hdr._mapinfo_table, dso); + us->pid, us->symbol_hdr._mapinfo_table, dso, {}); return add_frame(symbol_idx, map_idx, pc, us); } +// check for Python frame evaluation symbols +static DDRes add_python_frame(UnwindState *us, SymbolIdx_t symbol_idx, + ElfAddress_t pc, Dwfl_Frame *dwfl_frame) { + SymbolHdr &unwind_symbol_hdr = us->symbol_hdr; + SymbolTable &symbol_table = unwind_symbol_hdr._symbol_table; + + std::string symname = symbol_table.at(symbol_idx)._symname; + if (us->austin_handle && + (symname.find("PyEval_EvalFrameDefault") != std::string::npos || + symname.find("PyEval_EvalFrameEx") != std::string::npos)) { + AustinSymbolLookup &austin_symbol_lookup = + unwind_symbol_hdr._austin_symbol_lookup; + + // The register we are interested in is RSI, but it doesn't seem to be + // available. So we loop over the first 64 registers and stop if we find + // a register value that resolves correctly to a Python frame. + uint64_t val; + for (int i = 0; i < (int)sizeof(*dwfl_frame->regs_set) * 8; i++) { + if (__libdwfl_frame_reg_get(dwfl_frame, i, &val)) { + austin_frame_t *frame = + austin_read_frame(us->austin_handle, (void *)val); + if (frame) { + symbol_idx = austin_symbol_lookup.get_or_insert(frame, symbol_table); + return add_frame(symbol_idx, -1, pc, us); + } + } + } + } + + return ddres_error(1); +} + } // namespace ddprof diff --git a/src/unwind_helpers.cc b/src/unwind_helpers.cc index 7630977c1..270b6ad03 100644 --- a/src/unwind_helpers.cc +++ b/src/unwind_helpers.cc @@ -15,35 +15,33 @@ namespace ddprof { bool is_max_stack_depth_reached(const UnwindState &us) { // +2 to keep room for common base frame - return us.output.nb_locs + 2 >= DD_MAX_STACK_DEPTH; + return us.output.locs.size() + 2 >= DD_MAX_STACK_DEPTH; } DDRes add_frame(SymbolIdx_t symbol_idx, MapInfoIdx_t map_idx, ElfAddress_t pc, UnwindState *us) { UnwindOutput *output = &us->output; - int64_t current_loc_idx = output->nb_locs; - if (output->nb_locs >= DD_MAX_STACK_DEPTH) { + if (output->locs.size() >= DD_MAX_STACK_DEPTH) { DDRES_RETURN_WARN_LOG(DD_WHAT_UW_MAX_DEPTH, "Max stack depth reached"); // avoid overflow } - - output->locs[current_loc_idx]._symbol_idx = symbol_idx; - output->locs[current_loc_idx].ip = pc; + FunLoc current; + current._symbol_idx = symbol_idx; + current.ip = pc; if (map_idx == -1) { // just add an empty element for mapping info - output->locs[current_loc_idx]._map_info_idx = - us->symbol_hdr._common_mapinfo_lookup.get_or_insert( - CommonMapInfoLookup::MappingErrors::empty, - us->symbol_hdr._mapinfo_table); + current._map_info_idx = us->symbol_hdr._common_mapinfo_lookup.get_or_insert( + CommonMapInfoLookup::MappingErrors::empty, + us->symbol_hdr._mapinfo_table); } else { - output->locs[current_loc_idx]._map_info_idx = map_idx; + current._map_info_idx = map_idx; } #ifdef DEBUG LG_NTC("Considering frame with IP : %lx / %s ", pc, - us->symbol_hdr._symbol_table[output->locs[current_loc_idx]._symbol_idx] - ._symname.c_str()); + us->symbol_hdr._symbol_table[current._symbol_idx]._symname.c_str()); #endif - output->nb_locs++; + output->locs.push_back(current); + return ddres_init(); } @@ -178,7 +176,7 @@ bool memory_read(ProcessAddress_t addr, ElfWord_t *result, int regno, // requested when unwinding the leaf function for a register, we simply // return the initial register value. constexpr uint64_t k_red_zone_size = 128; - if (us->output.nb_locs <= 1 && regno != -1 && + if (us->output.locs.size() <= 1 && regno != -1 && addr >= sp_start - k_red_zone_size) { *result = us->initial_regs.regs[regno]; return true; @@ -223,7 +221,7 @@ void add_error_frame(const Dso *dso, UnwindState *us, ddprof_stats_add(STATS_UNWIND_ERRORS, 1, NULL); if (dso) { // #define ADD_ADDR_IN_SYMB // creates more elements (but adds info on -// addresses) +// addresses) #ifdef ADD_ADDR_IN_SYMB add_dso_frame(us, *dso, pc, "pc"); #else @@ -232,6 +230,6 @@ void add_error_frame(const Dso *dso, UnwindState *us, } else { add_common_frame(us, error_case); } - LG_DBG("Error frame (depth#%lu)", us->output.nb_locs); + LG_DBG("Error frame (depth#%lu)", us->output.locs.size()); } } // namespace ddprof diff --git a/src/unwind_output.cc b/src/unwind_output.cc deleted file mode 100644 index 34a927dbb..000000000 --- a/src/unwind_output.cc +++ /dev/null @@ -1,19 +0,0 @@ -// Unless explicitly stated otherwise all files in this repository are licensed -// under the Apache License Version 2.0. This product includes software -// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present -// Datadog, Inc. - -#include -#include - -#include "unwind_output.hpp" - -static void FunLoc_clear(FunLoc *locs) { - memset(locs, 0, sizeof(*locs) * DD_MAX_STACK_DEPTH); -} - -void uw_output_clear(UnwindOutput *output) { - FunLoc_clear(output->locs); - output->nb_locs = 0; - output->is_incomplete = true; -} diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index b6ba97ebf..214e7a04b 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -43,7 +43,7 @@ function(add_unit_test name) # # Create exe with sources. Always add logger and error management in the unit tests add_exe(${name} ../src/ddres_list.cc ../src/logger.cc ${MY_UNPARSED_ARGUMENTS}) - target_link_libraries(${name} PRIVATE gtest Threads::Threads gmock_main gmock) + target_link_libraries(${name} PRIVATE gtest Threads::Threads gmock_main gmock austin) target_include_directories(${name} PRIVATE ${DDPROF_INCLUDE_LIST} ${GTEST_INCLUDE_DIRS} ${CMAKE_SOURCE_DIR}/include/lib) @@ -87,7 +87,8 @@ endfunction() # Definition of unit tests add_compile_definitions("UNIT_TEST_DATA=\"${CMAKE_CURRENT_SOURCE_DIR}/data\"") -add_unit_test(ddprofcmdline-ut ../src/ddprof_cmdline.cc ../src/perf_watcher.cc ddprofcmdline-ut.cc) +add_unit_test(ddprofcmdline-ut ../src/ddprof_cmdline.cc ../src/perf_watcher.cc + ../src/tracepoint_config.cc ddprofcmdline-ut.cc LIBRARIES DDProf::Parser) add_unit_test(logger-ut logger-ut.cc) @@ -101,7 +102,7 @@ add_unit_test(statsd-ut ../src/statsd.cc statsd-ut.cc) add_unit_test(ddprof_stats-ut ../src/ddprof_stats.cc ../src/statsd.cc ddprof_stats-ut.cc) add_unit_test( - demangle-ut demangle-ut.cc + demangle-ut demangle-ut.cc ../src/demangler/demangler.cc LIBRARIES llvm-demangle DEFINITIONS MYNAME="demangle-ut") @@ -130,14 +131,20 @@ add_unit_test( ../src/ddprof_cpumask.cc ../src/logger_setup.cc ../src/perf_watcher.cc + ../src/presets.cc + ../src/tracepoint_config.cc ddprof_input-ut.cc + LIBRARIES DDProf::Parser DEFINITIONS MYNAME="ddprof_input-ut") -add_unit_test(perf_ringbuffer-ut ../src/perf.cc ../src/perf_watcher.cc ../src/perf_ringbuffer.cc - perf_ringbuffer-ut.cc DEFINITIONS MYNAME="perf_ringbuffer-ut") +add_unit_test( + perf_ringbuffer-ut ../src/perf.cc ../src/perf_watcher.cc ../src/perf_ringbuffer.cc + ../src/tracepoint_config.cc perf_ringbuffer-ut.cc DEFINITIONS MYNAME="perf_ringbuffer-ut") add_unit_test( pevent-ut + ../src/ddprof_cmdline.cc + ../src/tracepoint_config.cc ../src/pevent_lib.cc ../src/user_override.cc ../src/perf.cc @@ -146,31 +153,30 @@ add_unit_test( ../src/ringbuffer_utils.cc ../src/sys_utils.cc pevent-ut.cc + LIBRARIES DDProf::Parser DEFINITIONS MYNAME="pevent-ut") add_unit_test( - ddprof_pprof-ut ../src/pprof/ddprof_pprof.cc ../src/unwind_output.cc ../src/perf_watcher.cc - ddprof_pprof-ut.cc - LIBRARIES Datadog::Profiling + ddprof_pprof-ut ../src/pprof/ddprof_pprof.cc ../src/perf_watcher.cc ddprof_pprof-ut.cc + LIBRARIES Datadog::Profiling DDProf::Parser DEFINITIONS MYNAME="ddprof_pprof-ut") add_unit_test( ddprof_exporter-ut ../src/exporter/ddprof_exporter.cc ../src/ddprof_cmdline.cc + ../src/tracepoint_config.cc ../src/pprof/ddprof_pprof.cc - ../src/unwind_output.cc ../src/perf_watcher.cc ../src/tags.cc ddprof_exporter-ut.cc - LIBRARIES Datadog::Profiling + LIBRARIES Datadog::Profiling DDProf::Parser DEFINITIONS MYNAME="ddprof_exporter-ut") add_unit_test( dso-ut ../src/dso.cc ../src/dso_hdr.cc - ../src/ddprof_file_info.cc ../src/procutils.cc ../src/signal_helper.cc ../src/user_override.cc @@ -182,19 +188,20 @@ add_unit_test(tags-ut tags-ut.cc ../src/tags.cc ../src/thread_info.cc DEFINITION target_include_directories(tags-ut PRIVATE ${DOGFOOD_INCLUDE_DIR}) add_unit_test( - dwfl_symbol-ut dwfl_symbol-ut.cc ../src/dwfl_symbol.cc + dwfl_symbol-ut dwfl_symbol-ut.cc ../src/dwfl_symbol.cc ../src/demangler/demangler.cc LIBRARIES llvm-demangle ${ELFUTILS_LIBRARIES} DEFINITIONS MYNAME="dwfl_symbol-ut") add_unit_test( dwfl_module-ut dwfl_module-ut.cc + ../src/build_id.cc ../src/dwfl_hdr.cc ../src/ddprof_module_lib.cc ../src/dwfl_symbol.cc + ../src/demangler/demangler.cc ../src/dso.cc ../src/dso_hdr.cc - ../src/ddprof_file_info.cc ../src/failed_assumption.cc ../src/procutils.cc ../src/signal_helper.cc @@ -208,9 +215,9 @@ add_unit_test( savecontext-ut savecontext-ut.cc ../src/base_frame_symbol_lookup.cc + ../src/build_id.cc ../src/common_mapinfo_lookup.cc ../src/common_symbol_lookup.cc - ../src/ddprof_file_info.cc ../src/ddprof_stats.cc ../src/dso.cc ../src/dso_hdr.cc @@ -220,12 +227,16 @@ add_unit_test( ../src/dwfl_symbol.cc ../src/dwfl_symbol_lookup.cc ../src/dwfl_thread_callbacks.cc + ../src/demangler/demangler.cc + ../src/jit/jitdump.cc ../src/failed_assumption.cc + ../src/lib/pthread_fixes.cc ../src/lib/savecontext.cc ../src/lib/saveregisters.cc ../src/mapinfo_lookup.cc ../src/procutils.cc ../src/runtime_symbol_lookup.cc + ../src/austin_symbol_lookup.cc ../src/symbol_map.cc ../src/signal_helper.cc ../src/statsd.cc @@ -233,7 +244,6 @@ add_unit_test( ../src/unwind_dwfl.cc ../src/unwind_helpers.cc ../src/unwind_metrics.cc - ../src/unwind_output.cc ../src/user_override.cc LIBRARIES ${ELFUTILS_LIBRARIES} llvm-demangle DEFINITIONS MYNAME="savecontext-ut") @@ -243,9 +253,10 @@ add_unit_test( allocation_tracker-ut.cc ../src/lib/allocation_tracker.cc ../src/base_frame_symbol_lookup.cc + ../src/build_id.cc ../src/common_mapinfo_lookup.cc ../src/common_symbol_lookup.cc - ../src/ddprof_file_info.cc + ../src/ddprof_cmdline.cc ../src/ddprof_stats.cc ../src/dso.cc ../src/dso_hdr.cc @@ -255,55 +266,72 @@ add_unit_test( ../src/dwfl_symbol.cc ../src/dwfl_symbol_lookup.cc ../src/dwfl_thread_callbacks.cc + ../src/demangler/demangler.cc + ../src/jit/jitdump.cc ../src/failed_assumption.cc ../src/pevent_lib.cc ../src/perf.cc ../src/perf_ringbuffer.cc ../src/perf_watcher.cc ../src/ringbuffer_utils.cc + ../src/lib/pthread_fixes.cc ../src/lib/savecontext.cc ../src/lib/saveregisters.cc ../src/mapinfo_lookup.cc ../src/procutils.cc ../src/runtime_symbol_lookup.cc + ../src/austin_symbol_lookup.cc ../src/symbol_map.cc ../src/signal_helper.cc ../src/statsd.cc ../src/sys_utils.cc + ../src/tracepoint_config.cc ../src/user_override.cc ../src/unwind.cc ../src/unwind_dwfl.cc ../src/unwind_helpers.cc ../src/unwind_metrics.cc - ../src/unwind_output.cc - LIBRARIES ${ELFUTILS_LIBRARIES} llvm-demangle - DEFINITIONS ${DDPROF_DEFINITION_LIST}) + LIBRARIES ${ELFUTILS_LIBRARIES} llvm-demangle DDProf::Parser + DEFINITIONS ${DDPROF_DEFINITION_LIST} KMAX_TRACKED_ALLOCATIONS=100) add_unit_test(sys_utils-ut sys_utils-ut.cc ../src/sys_utils.cc) add_unit_test( ringbuffer-ut ringbuffer-ut.cc + ../src/ddprof_cmdline.cc + ../src/tracepoint_config.cc ../src/perf.cc ../src/perf_ringbuffer.cc + ../src/perf_watcher.cc ../src/pevent_lib.cc ../src/ringbuffer_utils.cc ../src/sys_utils.cc - ../src/user_override.cc) + ../src/user_override.cc + LIBRARIES DDProf::Parser) add_unit_test(timer-ut timer-ut.cc ../src/timer.cc ../src/perf.cc) -add_unit_test(ddprof_file_info-ut ddprof_file_info-ut.cc ../src/ddprof_file_info.cc) +add_unit_test(ddprof_file_info-ut ddprof_file_info-ut.cc) add_unit_test(runtime_symbol_lookup-ut runtime_symbol_lookup-ut.cc ../src/runtime_symbol_lookup.cc - ../src/symbol_map.cc) + ../src/symbol_map.cc ../src/jit/jitdump.cc) add_unit_test(ddprof_cpumask-ut ddprof_cpumask-ut.cc ../src/ddprof_cpumask.cc) add_unit_test(symbol_map-ut symbol_map-ut.cc ../src/symbol_map.cc) -add_benchmark(savecontext-bench savecontext-bench.cc ../src/lib/savecontext.cc - ../src/lib/saveregisters.cc) +add_unit_test(build_id-ut build_id-ut.cc ../src/build_id.cc) + +add_unit_test(jitdump-ut jitdump-ut.cc ../src/jit/jitdump.cc) + +add_unit_test(tracepoint_config-ut tracepoint_config-ut.cc ../src/tracepoint_config.cc) + +add_unit_test(live_allocation-ut live_allocation-ut.cc ../src/live_allocation.cc) + +add_benchmark(savecontext-bench savecontext-bench.cc ../src/lib/pthread_fixes.cc + ../src/lib/savecontext.cc ../src/lib/saveregisters.cc) + add_benchmark(timer-bench timer-bench.cc ../src/timer.cc ../src/perf.cc) if(NOT CMAKE_BUILD_TYPE STREQUAL "SanitizedDebug") @@ -329,6 +357,12 @@ if(NOT CMAKE_BUILD_TYPE STREQUAL "SanitizedDebug") NAME simple_malloc COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/simple_malloc-ut.sh WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) + + if(BUILD_UNIVERSAL_DDPROF) + add_test(NAME check-injected-lib + COMMAND ${CMAKE_SOURCE_DIR}/tools/check_for_unsafe_libc_functions.py + $) + endif() endif() if(NOT CMAKE_BUILD_TYPE STREQUAL "SanitizedDebug") diff --git a/test/allocation_tracker-ut.cc b/test/allocation_tracker-ut.cc index e8307486f..ba646ccc8 100644 --- a/test/allocation_tracker-ut.cc +++ b/test/allocation_tracker-ut.cc @@ -5,7 +5,10 @@ #include "allocation_tracker.hpp" #include "ddprof_base.hpp" +#include "ddprof_perf_event.hpp" #include "ipc.hpp" +#include "live_allocation-c.hpp" +#include "loghandle.hpp" #include "perf_watcher.hpp" #include "pevent_lib.hpp" #include "ringbuffer_holder.hpp" @@ -18,8 +21,14 @@ #include #include -DDPROF_NOINLINE void my_malloc(size_t size) { - ddprof::AllocationTracker::track_allocation(0xdeadbeef, size); +DDPROF_NOINLINE void my_malloc(size_t size, uintptr_t addr = 0xdeadbeef) { + ddprof::AllocationTracker::track_allocation(addr, size); + // prevent tail call optimization + getpid(); +} + +DDPROF_NOINLINE void my_free(uintptr_t addr) { + ddprof::AllocationTracker::track_deallocation(addr); // prevent tail call optimization getpid(); } @@ -38,49 +47,76 @@ TEST(allocation_tracker, start_stop) { ddprof::RingBufferHolder ring_buffer{buf_size_order, RingBufferType::kMPSCRingBuffer}; ddprof::AllocationTracker::allocation_tracking_init( - rate, ddprof::AllocationTracker::kDeterministicSampling, + rate, + ddprof::AllocationTracker::kDeterministicSampling | + ddprof::AllocationTracker::kTrackDeallocations, ring_buffer.get_buffer_info()); ASSERT_TRUE(ddprof::AllocationTracker::is_active()); my_func_calling_malloc(1); - - ddprof::MPSCRingBufferReader reader{ring_buffer.get_ring_buffer()}; - ASSERT_GT(reader.available_size(), 0); - - auto buf = reader.read_sample(); - ASSERT_FALSE(buf.empty()); - const perf_event_header *hdr = - reinterpret_cast(buf.data()); - ASSERT_EQ(hdr->type, PERF_RECORD_SAMPLE); - - perf_event_sample *sample = hdr2samp(hdr, perf_event_default_sample_type()); - - ASSERT_EQ(sample->period, 1); - ASSERT_EQ(sample->pid, getpid()); - ASSERT_EQ(sample->tid, ddprof::gettid()); - - UnwindState state; - ddprof::unwind_init_sample(&state, sample->regs, sample->pid, - sample->size_stack, sample->data_stack); - ddprof::unwindstate__unwind(&state); - - const auto &symbol_table = state.symbol_hdr._symbol_table; - ASSERT_GT(state.output.nb_locs, NB_FRAMES_TO_SKIP); - const auto &symbol = - symbol_table[state.output.locs[NB_FRAMES_TO_SKIP]._symbol_idx]; - ASSERT_EQ(symbol._symname, "my_func_calling_malloc"); - + { // check that we get the relevant info for this allocation + ddprof::MPSCRingBufferReader reader{ring_buffer.get_ring_buffer()}; + ASSERT_GT(reader.available_size(), 0); + + auto buf = reader.read_sample(); + ASSERT_FALSE(buf.empty()); + const perf_event_header *hdr = + reinterpret_cast(buf.data()); + ASSERT_EQ(hdr->type, PERF_RECORD_SAMPLE); + + perf_event_sample *sample = + hdr2samp(hdr, perf_event_default_sample_type() | PERF_SAMPLE_ADDR); + + ASSERT_EQ(sample->period, 1); + ASSERT_EQ(sample->pid, getpid()); + ASSERT_EQ(sample->tid, ddprof::gettid()); + ASSERT_EQ(sample->addr, 0xdeadbeef); + + UnwindState state; + ddprof::unwind_init_sample(&state, sample->regs, sample->pid, + sample->size_stack, sample->data_stack); + ddprof::unwindstate__unwind(&state); + + const auto &symbol_table = state.symbol_hdr._symbol_table; + ASSERT_GT(state.output.locs.size(), NB_FRAMES_TO_SKIP); + const auto &symbol = + symbol_table[state.output.locs[NB_FRAMES_TO_SKIP]._symbol_idx]; + ASSERT_EQ(symbol._symname, "my_func_calling_malloc"); + } + my_free(0xdeadbeef); + // ensure we get a deallocation event + { + ddprof::MPSCRingBufferReader reader{ring_buffer.get_ring_buffer()}; + ASSERT_GT(reader.available_size(), 0); + + auto buf = reader.read_sample(); + ASSERT_FALSE(buf.empty()); + const perf_event_header *hdr = + reinterpret_cast(buf.data()); + ASSERT_EQ(hdr->type, PERF_CUSTOM_EVENT_DEALLOCATION); + const ddprof::DeallocationEvent *sample = + reinterpret_cast(hdr); + ASSERT_EQ(sample->ptr, 0xdeadbeef); + } + my_free(0xcafebabe); + { + ddprof::MPSCRingBufferReader reader{ring_buffer.get_ring_buffer()}; + ASSERT_EQ(reader.available_size(), 0); + } ddprof::AllocationTracker::allocation_tracking_free(); ASSERT_FALSE(ddprof::AllocationTracker::is_active()); } TEST(allocation_tracker, stale_lock) { + LogHandle log_handle; const uint64_t rate = 1; const size_t buf_size_order = 5; ddprof::RingBufferHolder ring_buffer{buf_size_order, RingBufferType::kMPSCRingBuffer}; ddprof::AllocationTracker::allocation_tracking_init( - rate, ddprof::AllocationTracker::kDeterministicSampling, + rate, + ddprof::AllocationTracker::kDeterministicSampling | + ddprof::AllocationTracker::kTrackDeallocations, ring_buffer.get_buffer_info()); // simulate stale lock @@ -92,4 +128,58 @@ TEST(allocation_tracker, stale_lock) { } ASSERT_FALSE(ddprof::AllocationTracker::is_active()); ddprof::AllocationTracker::allocation_tracking_free(); -} \ No newline at end of file +} + +TEST(allocation_tracker, max_tracked_allocs) { + const uint64_t rate = 1; + const size_t buf_size_order = 9; + ddprof::RingBufferHolder ring_buffer{buf_size_order, + RingBufferType::kMPSCRingBuffer}; + ddprof::AllocationTracker::allocation_tracking_init( + rate, + ddprof::AllocationTracker::kDeterministicSampling | + ddprof::AllocationTracker::kTrackDeallocations, + ring_buffer.get_buffer_info()); + + ASSERT_TRUE(ddprof::AllocationTracker::is_active()); + + for (int i = 0; i <= ddprof::liveallocation::kMaxTracked + 1; ++i) { + my_malloc(1, 0x1000 + i); + ddprof::MPSCRingBufferReader reader{ring_buffer.get_ring_buffer()}; + if (i <= + ddprof::liveallocation::kMaxTracked) { // check that we get the relevant + // info for this allocation + ASSERT_GT(reader.available_size(), 0); + auto buf = reader.read_sample(); + ASSERT_FALSE(buf.empty()); + const perf_event_header *hdr = + reinterpret_cast(buf.data()); + ASSERT_EQ(hdr->type, PERF_RECORD_SAMPLE); + + perf_event_sample *sample = + hdr2samp(hdr, perf_event_default_sample_type() | PERF_SAMPLE_ADDR); + + ASSERT_EQ(sample->period, 1); + ASSERT_EQ(sample->pid, getpid()); + ASSERT_EQ(sample->tid, ddprof::gettid()); + ASSERT_EQ(sample->addr, 0x1000 + i); + } else { + bool clear_found = false; + int nb_read = 0; + ddprof::ConstBuffer buf; + do { + buf = reader.read_sample(); + ++nb_read; + if (buf.empty()) + break; + const perf_event_header *hdr = + reinterpret_cast(buf.data()); + if (hdr->type == PERF_CUSTOM_EVENT_CLEAR_LIVE_ALLOCATION) { + clear_found = true; + } + } while (true); + EXPECT_EQ(nb_read, 3); + EXPECT_TRUE(clear_found); + } + } +} diff --git a/test/build_id-ut.cc b/test/build_id-ut.cc new file mode 100644 index 000000000..f2167638f --- /dev/null +++ b/test/build_id-ut.cc @@ -0,0 +1,32 @@ +#include + +#include "build_id.hpp" +#include "loghandle.hpp" + +namespace ddprof { + +// Example +// 9432ac939c015159ea375ec0a8750df908058a5a + +TEST(build_id, format) { + LogHandle handle; + { + const unsigned char build_id_tab[2] = {0x01, 0x01}; + BuildIdSpan build_id_span(build_id_tab); + BuildIdStr build_id_str(format_build_id(build_id_tab)); + EXPECT_EQ(build_id_str, std::string("0101")); + LG_DBG("format = %s", build_id_str.c_str()); + } + { + const unsigned char build_id_tab[] = { + 0x94, 0x32, 0xac, 0x93, 0x9c, 0x01, 0x51, 0x59, 0xea, 0x37, + 0x5e, 0xc0, 0xa8, 0x75, 0x0d, 0xf9, 0x08, 0x05, 0x8a, 0x5a}; + BuildIdSpan build_id_span(build_id_tab); + BuildIdStr build_id_str(format_build_id(build_id_tab)); + LG_DBG("format = %s", build_id_str.c_str()); + EXPECT_EQ(build_id_str, + std::string("9432ac939c015159ea375ec0a8750df908058a5a")); + } +} + +} // namespace ddprof diff --git a/test/data/dso-ut/step-1/proc/2/maps b/test/data/dso-ut/step-1/proc/2/maps new file mode 100644 index 000000000..7959161d7 --- /dev/null +++ b/test/data/dso-ut/step-1/proc/2/maps @@ -0,0 +1,1759 @@ +380000000-800000000 rw-p 00000000 00:00 0 +800000000-800453000 rw-p 00001000 00:10d 1566445 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/classes.jsa +800453000-800bd5000 rw-p 00454000 00:10d 1566445 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/classes.jsa +800bd5000-800c00000 ---p 00000000 00:00 0 +800c00000-800c40000 rw-p 00000000 00:00 0 +800c40000-800cc0000 rw-p 00000000 00:00 0 +800cc0000-800d00000 rw-p 00000000 00:00 0 +800d00000-800e40000 rw-p 00000000 00:00 0 +800e40000-800e80000 rw-p 00000000 00:00 0 +800e80000-800ee0000 rw-p 00000000 00:00 0 +800ee0000-800f80000 rw-p 00000000 00:00 0 +800f80000-8010e0000 rw-p 00000000 00:00 0 +8010e0000-801100000 rw-p 00000000 00:00 0 +801100000-801240000 rw-p 00000000 00:00 0 +801240000-801280000 rw-p 00000000 00:00 0 +801280000-801300000 rw-p 00000000 00:00 0 +801300000-801700000 rw-p 00000000 00:00 0 +801700000-801900000 rw-p 00000000 00:00 0 +801900000-801a50000 rw-p 00000000 00:00 0 +801a50000-840c00000 ---p 00000000 00:00 0 +5612bbd64000-5612bbd65000 r--p 00000000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bbd65000-5612bbd66000 r-xp 00001000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bbd66000-5612bbd67000 r--p 00002000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bbd67000-5612bbd68000 r--p 00002000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bbd68000-5612bbd69000 rw-p 00003000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bc2e1000-5612bc5ad000 rw-p 00000000 00:00 0 [heap] +7fea197ff000-7fea1db80000 rw-p 00000000 00:00 0 +7fea1db80000-7fea1e000000 ---p 00000000 00:00 0 +7fea1e043000-7fea1e843000 rw-p 00000000 00:00 0 +7fea1ec00000-7fea1f5c0000 rw-p 00000000 00:00 0 +7fea1f5c0000-7fea1f600000 rw-p 00000000 00:00 0 +7fea1f600000-7fea1f780000 rw-p 00000000 00:00 0 +7fea1f780000-7fea1f800000 rw-p 00000000 00:00 0 +7fea1f800000-7fea1f980000 rw-p 00000000 00:00 0 +7fea1f980000-7fea1fa00000 rw-p 00000000 00:00 0 +7fea1fa00000-7fea1fb00000 rw-p 00000000 00:00 0 +7fea1fb00000-7fea1fb80000 rw-p 00000000 00:00 0 +7fea1fb80000-7fea1fc00000 ---p 00000000 00:00 0 +7fea1fcff000-7fea1ffff000 rw-p 00000000 00:00 0 +7fea1ffff000-7fea24000000 rw-p 00000000 00:00 0 +7fea24000000-7fea25807000 rw-p 00000000 00:00 0 +7fea25807000-7fea28000000 ---p 00000000 00:00 0 +7fea28000000-7fea2b493000 rw-p 00000000 00:00 0 +7fea2b493000-7fea2c000000 ---p 00000000 00:00 0 +7fea2c000000-7fea2d9be000 rw-p 00000000 00:00 0 +7fea2d9be000-7fea30000000 ---p 00000000 00:00 0 +7fea30228000-7fea3022c000 ---p 00000000 00:00 0 +7fea3022c000-7fea30729000 rw-p 00000000 00:00 0 +7fea30729000-7fea309a9000 rw-p 00000000 00:00 0 +7fea309a9000-7fea309aa000 ---p 00000000 00:00 0 +7fea309aa000-7fea311aa000 rw-p 00000000 00:00 0 +7fea311aa000-7fea311ab000 ---p 00000000 00:00 0 +7fea311ab000-7fea319ab000 rw-p 00000000 00:00 0 +7fea319ab000-7fea319af000 ---p 00000000 00:00 0 +7fea319af000-7fea31aab000 rw-p 00000000 00:00 0 +7fea31ae1000-7fea31ae5000 ---p 00000000 00:00 0 +7fea31ae5000-7fea31be1000 rw-p 00000000 00:00 0 +7fea31be1000-7fea320e1000 rw-p 00000000 00:00 0 +7fea320e1000-7fea320e5000 ---p 00000000 00:00 0 +7fea320e5000-7fea321e1000 rw-p 00000000 00:00 0 +7fea321e1000-7fea321e5000 ---p 00000000 00:00 0 +7fea321e5000-7fea322e1000 rw-p 00000000 00:00 0 +7fea322e1000-7fea322e5000 ---p 00000000 00:00 0 +7fea322e5000-7fea323e1000 rw-p 00000000 00:00 0 +7fea323e1000-7fea323e5000 ---p 00000000 00:00 0 +7fea323e5000-7fea324e1000 rw-p 00000000 00:00 0 +7fea324e1000-7fea324e5000 ---p 00000000 00:00 0 +7fea324e5000-7fea325e1000 rw-p 00000000 00:00 0 +7fea325e1000-7fea325e5000 ---p 00000000 00:00 0 +7fea325e5000-7fea326e1000 rw-p 00000000 00:00 0 +7fea326e1000-7fea32be1000 rw-p 00000000 00:00 0 +7fea32be1000-7fea32be5000 ---p 00000000 00:00 0 +7fea32be5000-7fea32ce1000 rw-p 00000000 00:00 0 +7fea32ce1000-7fea32ce5000 ---p 00000000 00:00 0 +7fea32ce5000-7fea32de1000 rw-p 00000000 00:00 0 +7fea32de1000-7fea32de5000 ---p 00000000 00:00 0 +7fea32de5000-7fea32ee1000 rw-p 00000000 00:00 0 +7fea32ee1000-7fea33161000 rw-p 00000000 00:00 0 +7fea331a8000-7fea331ac000 ---p 00000000 00:00 0 +7fea331ac000-7fea332a8000 rw-p 00000000 00:00 0 +7fea332a8000-7fea332ac000 ---p 00000000 00:00 0 +7fea332ac000-7fea333a8000 rw-p 00000000 00:00 0 +7fea333a8000-7fea336a8000 rw-p 00000000 00:00 0 +7fea336a8000-7fea336ac000 ---p 00000000 00:00 0 +7fea336ac000-7fea337a8000 rw-p 00000000 00:00 0 +7fea337a8000-7fea337ac000 ---p 00000000 00:00 0 +7fea337ac000-7fea338a8000 rw-p 00000000 00:00 0 +7fea338a8000-7fea338ac000 ---p 00000000 00:00 0 +7fea338ac000-7fea339a8000 rw-p 00000000 00:00 0 +7fea339a8000-7fea339ac000 ---p 00000000 00:00 0 +7fea339ac000-7fea33aa8000 rw-p 00000000 00:00 0 +7fea33aa8000-7fea33aac000 ---p 00000000 00:00 0 +7fea33aac000-7fea33ba8000 rw-p 00000000 00:00 0 +7fea33ba8000-7fea33bac000 ---p 00000000 00:00 0 +7fea33bac000-7fea33ca8000 rw-p 00000000 00:00 0 +7fea33ca8000-7fea33cac000 ---p 00000000 00:00 0 +7fea33cac000-7fea33da8000 rw-p 00000000 00:00 0 +7fea33da8000-7fea33dac000 ---p 00000000 00:00 0 +7fea33dac000-7fea33ea8000 rw-p 00000000 00:00 0 +7fea33ea8000-7fea33eac000 ---p 00000000 00:00 0 +7fea33eac000-7fea33fa8000 rw-p 00000000 00:00 0 +7fea33fa8000-7fea33fac000 ---p 00000000 00:00 0 +7fea33fac000-7fea340a8000 rw-p 00000000 00:00 0 +7fea340a8000-7fea340ac000 ---p 00000000 00:00 0 +7fea340ac000-7fea341a8000 rw-p 00000000 00:00 0 +7fea341a8000-7fea341ac000 ---p 00000000 00:00 0 +7fea341ac000-7fea342a8000 rw-p 00000000 00:00 0 +7fea342a8000-7fea342ac000 ---p 00000000 00:00 0 +7fea342ac000-7fea343a8000 rw-p 00000000 00:00 0 +7fea343a8000-7fea343ac000 ---p 00000000 00:00 0 +7fea343ac000-7fea344a8000 rw-p 00000000 00:00 0 +7fea344a8000-7fea344ac000 ---p 00000000 00:00 0 +7fea344ac000-7fea345a8000 rw-p 00000000 00:00 0 +7fea345a8000-7fea345ac000 ---p 00000000 00:00 0 +7fea345ac000-7fea346a8000 rw-p 00000000 00:00 0 +7fea346a8000-7fea346ac000 ---p 00000000 00:00 0 +7fea346ac000-7fea347a8000 rw-p 00000000 00:00 0 +7fea347a8000-7fea347ac000 ---p 00000000 00:00 0 +7fea347ac000-7fea348a8000 rw-p 00000000 00:00 0 +7fea348a8000-7fea348ac000 ---p 00000000 00:00 0 +7fea348ac000-7fea349a8000 rw-p 00000000 00:00 0 +7fea349a8000-7fea349ac000 ---p 00000000 00:00 0 +7fea349ac000-7fea34aa8000 rw-p 00000000 00:00 0 +7fea34aa8000-7fea34aac000 ---p 00000000 00:00 0 +7fea34aac000-7fea34ba8000 rw-p 00000000 00:00 0 +7fea34ba8000-7fea34bac000 ---p 00000000 00:00 0 +7fea34bac000-7fea34ca8000 rw-p 00000000 00:00 0 +7fea34ca8000-7fea34cac000 ---p 00000000 00:00 0 +7fea34cac000-7fea34da8000 rw-p 00000000 00:00 0 +7fea34da8000-7fea34dac000 ---p 00000000 00:00 0 +7fea34dac000-7fea356aa000 rw-p 00000000 00:00 0 +7fea356aa000-7fea356ae000 ---p 00000000 00:00 0 +7fea356ae000-7fea357aa000 rw-p 00000000 00:00 0 +7fea357aa000-7fea357ae000 ---p 00000000 00:00 0 +7fea357ae000-7fea358aa000 rw-p 00000000 00:00 0 +7fea358aa000-7fea358ae000 ---p 00000000 00:00 0 +7fea358ae000-7fea359aa000 rw-p 00000000 00:00 0 +7fea359aa000-7fea359ae000 ---p 00000000 00:00 0 +7fea359ae000-7fea35aaa000 rw-p 00000000 00:00 0 +7fea35aaa000-7fea35aae000 ---p 00000000 00:00 0 +7fea35aae000-7fea35baa000 rw-p 00000000 00:00 0 +7fea35baa000-7fea35bae000 ---p 00000000 00:00 0 +7fea35bae000-7fea35caa000 rw-p 00000000 00:00 0 +7fea35caa000-7fea35cae000 ---p 00000000 00:00 0 +7fea35cae000-7fea361ab000 rw-p 00000000 00:00 0 +7fea361ab000-7fea361af000 ---p 00000000 00:00 0 +7fea361af000-7fea362ab000 rw-p 00000000 00:00 0 +7fea362ab000-7fea362af000 ---p 00000000 00:00 0 +7fea362af000-7fea363ab000 rw-p 00000000 00:00 0 +7fea363ab000-7fea363af000 ---p 00000000 00:00 0 +7fea363af000-7fea368ac000 rw-p 00000000 00:00 0 +7fea368ac000-7fea368b0000 ---p 00000000 00:00 0 +7fea368b0000-7fea369ac000 rw-p 00000000 00:00 0 +7fea369ac000-7fea369b0000 ---p 00000000 00:00 0 +7fea369b0000-7fea36aac000 rw-p 00000000 00:00 0 +7fea36aac000-7fea36ab0000 ---p 00000000 00:00 0 +7fea36ab0000-7fea36bac000 rw-p 00000000 00:00 0 +7fea36bac000-7fea36bb0000 ---p 00000000 00:00 0 +7fea36bb0000-7fea36cac000 rw-p 00000000 00:00 0 +7fea36cac000-7fea36cb0000 ---p 00000000 00:00 0 +7fea36cb0000-7fea36dac000 rw-p 00000000 00:00 0 +7fea36dac000-7fea36db0000 ---p 00000000 00:00 0 +7fea36db0000-7fea36eac000 rw-p 00000000 00:00 0 +7fea36eac000-7fea36eb0000 ---p 00000000 00:00 0 +7fea36eb0000-7fea36fac000 rw-p 00000000 00:00 0 +7fea36fac000-7fea36fb0000 ---p 00000000 00:00 0 +7fea36fb0000-7fea370ac000 rw-p 00000000 00:00 0 +7fea370ac000-7fea370b0000 ---p 00000000 00:00 0 +7fea370b0000-7fea371ac000 rw-p 00000000 00:00 0 +7fea371ac000-7fea371b0000 ---p 00000000 00:00 0 +7fea371b0000-7fea372ac000 rw-p 00000000 00:00 0 +7fea372ac000-7fea372b0000 ---p 00000000 00:00 0 +7fea372b0000-7fea373ac000 rw-p 00000000 00:00 0 +7fea373ac000-7fea373b0000 ---p 00000000 00:00 0 +7fea373b0000-7fea374ac000 rw-p 00000000 00:00 0 +7fea374ac000-7fea374b0000 ---p 00000000 00:00 0 +7fea374b0000-7fea375ac000 rw-p 00000000 00:00 0 +7fea375ac000-7fea375b0000 ---p 00000000 00:00 0 +7fea375b0000-7fea376ac000 rw-p 00000000 00:00 0 +7fea376ac000-7fea376b0000 ---p 00000000 00:00 0 +7fea376b0000-7fea377ac000 rw-p 00000000 00:00 0 +7fea377d3000-7fea377d7000 ---p 00000000 00:00 0 +7fea377d7000-7fea378d3000 rw-p 00000000 00:00 0 +7fea378d3000-7fea378d7000 ---p 00000000 00:00 0 +7fea378d7000-7fea379d3000 rw-p 00000000 00:00 0 +7fea379d9000-7fea379dd000 ---p 00000000 00:00 0 +7fea379dd000-7fea37ad9000 rw-p 00000000 00:00 0 +7fea37ad9000-7fea37add000 ---p 00000000 00:00 0 +7fea37add000-7fea37bd9000 rw-p 00000000 00:00 0 +7fea37bd9000-7fea37bdd000 ---p 00000000 00:00 0 +7fea37bdd000-7fea37cd9000 rw-p 00000000 00:00 0 +7fea37cd9000-7fea37cdd000 ---p 00000000 00:00 0 +7fea37cdd000-7fea37dd9000 rw-p 00000000 00:00 0 +7fea37dd9000-7fea37ddd000 ---p 00000000 00:00 0 +7fea37ddd000-7fea37ed9000 rw-p 00000000 00:00 0 +7fea37ed9000-7fea37edd000 ---p 00000000 00:00 0 +7fea37edd000-7fea37fd9000 rw-p 00000000 00:00 0 +7fea37fd9000-7fea383d9000 rw-p 00000000 00:00 0 +7fea383d9000-7fea383da000 ---p 00000000 00:00 0 +7fea383da000-7fea38bda000 rw-p 00000000 00:00 0 +7fea38bda000-7fea38bdb000 ---p 00000000 00:00 0 +7fea38bdb000-7fea393db000 rw-p 00000000 00:00 0 +7fea393db000-7fea393dc000 ---p 00000000 00:00 0 +7fea393dc000-7fea39bdc000 rw-p 00000000 00:00 0 +7fea39bdc000-7fea39bdd000 ---p 00000000 00:00 0 +7fea39bdd000-7fea3a3dd000 rw-p 00000000 00:00 0 +7fea3a3dd000-7fea3a3de000 ---p 00000000 00:00 0 +7fea3a3de000-7fea3abde000 rw-p 00000000 00:00 0 +7fea3abde000-7fea3abdf000 ---p 00000000 00:00 0 +7fea3abdf000-7fea3b3df000 rw-p 00000000 00:00 0 +7fea3b3df000-7fea3b3e0000 ---p 00000000 00:00 0 +7fea3b3e0000-7fea3bbe0000 rw-p 00000000 00:00 0 +7fea3bbe0000-7fea3bbe1000 ---p 00000000 00:00 0 +7fea3bbe1000-7fea3c3e1000 rw-p 00000000 00:00 0 +7fea3c3e1000-7fea3c3e2000 ---p 00000000 00:00 0 +7fea3c3e2000-7fea3cbe2000 rw-p 00000000 00:00 0 +7fea3cbe2000-7fea3cbe3000 ---p 00000000 00:00 0 +7fea3cbe3000-7fea3d3e3000 rw-p 00000000 00:00 0 +7fea3d3e3000-7fea3d3e4000 ---p 00000000 00:00 0 +7fea3d3e4000-7fea3dbe4000 rw-p 00000000 00:00 0 +7fea3dbe4000-7fea3dbe5000 ---p 00000000 00:00 0 +7fea3dbe5000-7fea3e3e5000 rw-p 00000000 00:00 0 +7fea3e3e5000-7fea3e3e6000 ---p 00000000 00:00 0 +7fea3e3e6000-7fea3ebe6000 rw-p 00000000 00:00 0 +7fea3ebe6000-7fea3ebe7000 ---p 00000000 00:00 0 +7fea3ebe7000-7fea3f3e7000 rw-p 00000000 00:00 0 +7fea3f3e7000-7fea3f3e8000 ---p 00000000 00:00 0 +7fea3f3e8000-7fea3fbe8000 rw-p 00000000 00:00 0 +7fea3fbe8000-7fea3fbe9000 ---p 00000000 00:00 0 +7fea3fbe9000-7fea403e9000 rw-p 00000000 00:00 0 +7fea403e9000-7fea403ea000 ---p 00000000 00:00 0 +7fea403ea000-7fea40bea000 rw-p 00000000 00:00 0 +7fea40bea000-7fea40beb000 ---p 00000000 00:00 0 +7fea40beb000-7fea413eb000 rw-p 00000000 00:00 0 +7fea413eb000-7fea413ec000 ---p 00000000 00:00 0 +7fea413ec000-7fea41bec000 rw-p 00000000 00:00 0 +7fea41bec000-7fea41bed000 ---p 00000000 00:00 0 +7fea41bed000-7fea423ed000 rw-p 00000000 00:00 0 +7fea423ed000-7fea423ee000 ---p 00000000 00:00 0 +7fea423ee000-7fea42bee000 rw-p 00000000 00:00 0 +7fea42bee000-7fea42bef000 ---p 00000000 00:00 0 +7fea42bef000-7fea433ef000 rw-p 00000000 00:00 0 +7fea433ef000-7fea433f0000 ---p 00000000 00:00 0 +7fea433f0000-7fea43bf0000 rw-p 00000000 00:00 0 +7fea43bf0000-7fea43bf1000 ---p 00000000 00:00 0 +7fea43bf1000-7fea443f1000 rw-p 00000000 00:00 0 +7fea443f1000-7fea443f2000 ---p 00000000 00:00 0 +7fea443f2000-7fea44bf2000 rw-p 00000000 00:00 0 +7fea44bf2000-7fea44bf3000 ---p 00000000 00:00 0 +7fea44bf3000-7fea453f3000 rw-p 00000000 00:00 0 +7fea453f3000-7fea453f4000 ---p 00000000 00:00 0 +7fea453f4000-7fea45bf4000 rw-p 00000000 00:00 0 +7fea45bf4000-7fea45bf5000 ---p 00000000 00:00 0 +7fea45bf5000-7fea463f5000 rw-p 00000000 00:00 0 +7fea463f5000-7fea463f6000 ---p 00000000 00:00 0 +7fea463f6000-7fea46bf6000 rw-p 00000000 00:00 0 +7fea46bf6000-7fea46bf7000 ---p 00000000 00:00 0 +7fea46bf7000-7fea473f7000 rw-p 00000000 00:00 0 +7fea473f7000-7fea473f8000 ---p 00000000 00:00 0 +7fea473f8000-7fea47bf8000 rw-p 00000000 00:00 0 +7fea47bf8000-7fea47bf9000 ---p 00000000 00:00 0 +7fea47bf9000-7fea483f9000 rw-p 00000000 00:00 0 +7fea483f9000-7fea483fa000 ---p 00000000 00:00 0 +7fea483fa000-7fea48bfa000 rw-p 00000000 00:00 0 +7fea48bfa000-7fea48bfb000 ---p 00000000 00:00 0 +7fea48bfb000-7fea493fb000 rw-p 00000000 00:00 0 +7fea493fb000-7fea493fc000 ---p 00000000 00:00 0 +7fea493fc000-7fea49bfc000 rw-p 00000000 00:00 0 +7fea49bfc000-7fea49bfd000 ---p 00000000 00:00 0 +7fea49bfd000-7fea4a3fd000 rw-p 00000000 00:00 0 +7fea4a3fd000-7fea4a3fe000 ---p 00000000 00:00 0 +7fea4a3fe000-7fea4abfe000 rw-p 00000000 00:00 0 +7fea4abfe000-7fea4abff000 ---p 00000000 00:00 0 +7fea4abff000-7fea4b3ff000 rw-p 00000000 00:00 0 +7fea4b3ff000-7fea4b400000 ---p 00000000 00:00 0 +7fea4b400000-7fea4bc00000 rw-p 00000000 00:00 0 +7fea4bc00000-7fea4c400000 rw-p 00000000 00:00 0 +7fea4c400000-7fea4c404000 ---p 00000000 00:00 0 +7fea4c404000-7fea4c500000 rw-p 00000000 00:00 0 +7fea4c500000-7fea4c504000 ---p 00000000 00:00 0 +7fea4c504000-7fea4c600000 rw-p 00000000 00:00 0 +7fea4c600000-7fea4c604000 ---p 00000000 00:00 0 +7fea4c604000-7fea4c700000 rw-p 00000000 00:00 0 +7fea4c700000-7fea4c704000 ---p 00000000 00:00 0 +7fea4c704000-7fea4c800000 rw-p 00000000 00:00 0 +7fea4c800000-7fea4c804000 ---p 00000000 00:00 0 +7fea4c804000-7fea4c900000 rw-p 00000000 00:00 0 +7fea4c900000-7fea4c904000 ---p 00000000 00:00 0 +7fea4c904000-7fea4ca00000 rw-p 00000000 00:00 0 +7fea4ca00000-7fea4ca04000 ---p 00000000 00:00 0 +7fea4ca04000-7fea4cb00000 rw-p 00000000 00:00 0 +7fea4cb00000-7fea4cb04000 ---p 00000000 00:00 0 +7fea4cb04000-7fea4cc00000 rw-p 00000000 00:00 0 +7fea4cc00000-7fea4cc04000 ---p 00000000 00:00 0 +7fea4cc04000-7fea4cd00000 rw-p 00000000 00:00 0 +7fea4cd00000-7fea4cd04000 ---p 00000000 00:00 0 +7fea4cd04000-7fea4ce00000 rw-p 00000000 00:00 0 +7fea4ce00000-7fea4ce04000 ---p 00000000 00:00 0 +7fea4ce04000-7fea4cf00000 rw-p 00000000 00:00 0 +7fea4cf00000-7fea4cf04000 ---p 00000000 00:00 0 +7fea4cf04000-7fea4d1c0000 rw-p 00000000 00:00 0 +7fea4d1c0000-7fea4d200000 rw-p 00000000 00:00 0 +7fea4d200000-7fea4d300000 rw-p 00000000 00:00 0 +7fea4d300000-7fea4d400000 rw-p 00000000 00:00 0 +7fea4d400000-7fea4d700000 rw-p 00000000 00:00 0 +7fea4d700000-7fea4d800000 rw-p 00000000 00:00 0 +7fea4d800000-7fea4d804000 ---p 00000000 00:00 0 +7fea4d804000-7fea4d900000 rw-p 00000000 00:00 0 +7fea4d900000-7fea4d904000 ---p 00000000 00:00 0 +7fea4d904000-7fea4da00000 rw-p 00000000 00:00 0 +7fea4da00000-7fea4da04000 ---p 00000000 00:00 0 +7fea4da04000-7fea4db00000 rw-p 00000000 00:00 0 +7fea4db00000-7fea4db04000 ---p 00000000 00:00 0 +7fea4db04000-7fea4dc00000 rw-p 00000000 00:00 0 +7fea4dc00000-7fea4dc04000 ---p 00000000 00:00 0 +7fea4dc04000-7fea4dd00000 rw-p 00000000 00:00 0 +7fea4dd00000-7fea4dd04000 ---p 00000000 00:00 0 +7fea4dd04000-7fea4de00000 rw-p 00000000 00:00 0 +7fea4de00000-7fea4de04000 ---p 00000000 00:00 0 +7fea4de04000-7fea4df00000 rw-p 00000000 00:00 0 +7fea4df00000-7fea4df04000 ---p 00000000 00:00 0 +7fea4df04000-7fea4e000000 rw-p 00000000 00:00 0 +7fea4e000000-7fea4e400000 rw-p 00000000 00:00 0 +7fea4e400000-7fea4e404000 ---p 00000000 00:00 0 +7fea4e404000-7fea4e500000 rw-p 00000000 00:00 0 +7fea4e500000-7fea4e504000 ---p 00000000 00:00 0 +7fea4e504000-7fea4e600000 rw-p 00000000 00:00 0 +7fea4e600000-7fea4e604000 ---p 00000000 00:00 0 +7fea4e604000-7fea4e700000 rw-p 00000000 00:00 0 +7fea4e700000-7fea4e704000 ---p 00000000 00:00 0 +7fea4e704000-7fea4e800000 rw-p 00000000 00:00 0 +7fea4e800000-7fea4e804000 ---p 00000000 00:00 0 +7fea4e804000-7fea4e900000 rw-p 00000000 00:00 0 +7fea4e900000-7fea4e904000 ---p 00000000 00:00 0 +7fea4e904000-7fea4ea00000 rw-p 00000000 00:00 0 +7fea4ea00000-7fea4ea04000 ---p 00000000 00:00 0 +7fea4ea04000-7fea4eb00000 rw-p 00000000 00:00 0 +7fea4eb00000-7fea4eb04000 ---p 00000000 00:00 0 +7fea4eb04000-7fea4ec00000 rw-p 00000000 00:00 0 +7fea4ec00000-7fea4ec04000 ---p 00000000 00:00 0 +7fea4ec04000-7fea4ed00000 rw-p 00000000 00:00 0 +7fea4ed00000-7fea4ed04000 ---p 00000000 00:00 0 +7fea4ed04000-7fea4ee00000 rw-p 00000000 00:00 0 +7fea4ee00000-7fea4ee04000 ---p 00000000 00:00 0 +7fea4ee04000-7fea4ef00000 rw-p 00000000 00:00 0 +7fea4ef00000-7fea4ef04000 ---p 00000000 00:00 0 +7fea4ef04000-7fea4f500000 rw-p 00000000 00:00 0 +7fea4f500000-7fea4f800000 rw-p 00000000 00:00 0 +7fea4f800000-7fea4f804000 ---p 00000000 00:00 0 +7fea4f804000-7fea4f900000 rw-p 00000000 00:00 0 +7fea4f900000-7fea4f904000 ---p 00000000 00:00 0 +7fea4f904000-7fea4fa00000 rw-p 00000000 00:00 0 +7fea4fa00000-7fea4fa04000 ---p 00000000 00:00 0 +7fea4fa04000-7fea4fb00000 rw-p 00000000 00:00 0 +7fea4fb00000-7fea4fb04000 ---p 00000000 00:00 0 +7fea4fb04000-7fea4fc00000 rw-p 00000000 00:00 0 +7fea4fc00000-7fea4fc04000 ---p 00000000 00:00 0 +7fea4fc04000-7fea4fd00000 rw-p 00000000 00:00 0 +7fea4fd00000-7fea4fd04000 ---p 00000000 00:00 0 +7fea4fd04000-7fea4fe00000 rw-p 00000000 00:00 0 +7fea4fe00000-7fea4fe04000 ---p 00000000 00:00 0 +7fea4fe04000-7fea4ff00000 rw-p 00000000 00:00 0 +7fea4ff00000-7fea4ff04000 ---p 00000000 00:00 0 +7fea4ff04000-7fea50580000 rw-p 00000000 00:00 0 +7fea50580000-7fea50600000 rw-p 00000000 00:00 0 +7fea50600000-7fea50780000 rw-p 00000000 00:00 0 +7fea50780000-7fea50800000 rw-p 00000000 00:00 0 +7fea50800000-7fea50804000 ---p 00000000 00:00 0 +7fea50804000-7fea50900000 rw-p 00000000 00:00 0 +7fea50900000-7fea50904000 ---p 00000000 00:00 0 +7fea50904000-7fea50a00000 rw-p 00000000 00:00 0 +7fea50a00000-7fea50a04000 ---p 00000000 00:00 0 +7fea50a04000-7fea50b00000 rw-p 00000000 00:00 0 +7fea50b00000-7fea50b04000 ---p 00000000 00:00 0 +7fea50b04000-7fea50c00000 rw-p 00000000 00:00 0 +7fea50c00000-7fea50c04000 ---p 00000000 00:00 0 +7fea50c04000-7fea50d00000 rw-p 00000000 00:00 0 +7fea50d00000-7fea50d04000 ---p 00000000 00:00 0 +7fea50d04000-7fea50e00000 rw-p 00000000 00:00 0 +7fea50e00000-7fea50e04000 ---p 00000000 00:00 0 +7fea50e04000-7fea50f00000 rw-p 00000000 00:00 0 +7fea50f00000-7fea50f04000 ---p 00000000 00:00 0 +7fea50f04000-7fea51000000 rw-p 00000000 00:00 0 +7fea51000000-7fea51004000 ---p 00000000 00:00 0 +7fea51004000-7fea51100000 rw-p 00000000 00:00 0 +7fea51100000-7fea51104000 ---p 00000000 00:00 0 +7fea51104000-7fea51200000 rw-p 00000000 00:00 0 +7fea51200000-7fea51204000 ---p 00000000 00:00 0 +7fea51204000-7fea51300000 rw-p 00000000 00:00 0 +7fea51300000-7fea51304000 ---p 00000000 00:00 0 +7fea51304000-7fea51400000 rw-p 00000000 00:00 0 +7fea51400000-7fea51404000 ---p 00000000 00:00 0 +7fea51404000-7fea51500000 rw-p 00000000 00:00 0 +7fea51500000-7fea51504000 ---p 00000000 00:00 0 +7fea51504000-7fea51600000 rw-p 00000000 00:00 0 +7fea51600000-7fea51604000 ---p 00000000 00:00 0 +7fea51604000-7fea51700000 rw-p 00000000 00:00 0 +7fea51700000-7fea51704000 ---p 00000000 00:00 0 +7fea51704000-7fea51800000 rw-p 00000000 00:00 0 +7fea51800000-7fea51804000 ---p 00000000 00:00 0 +7fea51804000-7fea51900000 rw-p 00000000 00:00 0 +7fea51900000-7fea51904000 ---p 00000000 00:00 0 +7fea51904000-7fea51a00000 rw-p 00000000 00:00 0 +7fea51a00000-7fea51a24000 r-xp 00000000 00:10d 1558261 /tmp/liblz4-java-964230997078175437.so +7fea51a24000-7fea51c23000 ---p 00024000 00:10d 1558261 /tmp/liblz4-java-964230997078175437.so +7fea51c23000-7fea51c24000 rw-p 00023000 00:10d 1558261 /tmp/liblz4-java-964230997078175437.so +7fea51ceb000-7fea51cef000 ---p 00000000 00:00 0 +7fea51cef000-7fea51deb000 rw-p 00000000 00:00 0 +7fea51deb000-7fea51def000 ---p 00000000 00:00 0 +7fea51def000-7fea51eeb000 rw-p 00000000 00:00 0 +7fea51eeb000-7fea51eef000 ---p 00000000 00:00 0 +7fea51eef000-7fea51feb000 rw-p 00000000 00:00 0 +7fea51feb000-7fea51fef000 ---p 00000000 00:00 0 +7fea51fef000-7fea520eb000 rw-p 00000000 00:00 0 +7fea520eb000-7fea520ef000 ---p 00000000 00:00 0 +7fea520ef000-7fea521eb000 rw-p 00000000 00:00 0 +7fea521eb000-7fea521ef000 ---p 00000000 00:00 0 +7fea521ef000-7fea522eb000 rw-p 00000000 00:00 0 +7fea522eb000-7fea522ef000 ---p 00000000 00:00 0 +7fea522ef000-7fea523eb000 rw-p 00000000 00:00 0 +7fea523eb000-7fea523ef000 ---p 00000000 00:00 0 +7fea523ef000-7fea524eb000 rw-p 00000000 00:00 0 +7fea524eb000-7fea524ef000 ---p 00000000 00:00 0 +7fea524ef000-7fea525eb000 rw-p 00000000 00:00 0 +7fea525eb000-7fea525ef000 ---p 00000000 00:00 0 +7fea525ef000-7fea526eb000 rw-p 00000000 00:00 0 +7fea526eb000-7fea526ef000 ---p 00000000 00:00 0 +7fea526ef000-7fea577ff000 rw-p 00000000 00:00 0 +7fea577ff000-7fea579ff000 rw-p 00000000 00:00 0 +7fea579ff000-7fea57e00000 rw-p 00000000 00:00 0 +7fea57e00000-7fea58000000 rw-p 00000000 00:00 0 +7fea580fe000-7fea58102000 ---p 00000000 00:00 0 +7fea58102000-7fea581fe000 rw-p 00000000 00:00 0 +7fea581fe000-7fea583fe000 rw-p 00000000 00:00 0 +7fea583fe000-7fea58c00000 rw-p 00000000 00:00 0 +7fea58c00000-7fea59000000 rw-p 00000000 00:00 0 +7fea5907d000-7fea59081000 ---p 00000000 00:00 0 +7fea59081000-7fea5917d000 rw-p 00000000 00:00 0 +7fea5917d000-7fea5917e000 ---p 00000000 00:00 0 +7fea5917e000-7fea5937e000 rw-p 00000000 00:00 0 +7fea5937e000-7fea5957e000 rw-p 00000000 00:00 0 +7fea5957e000-7fea5957f000 ---p 00000000 00:00 0 +7fea5957f000-7fea5977f000 rw-p 00000000 00:00 0 +7fea5977f000-7fea59780000 ---p 00000000 00:00 0 +7fea59780000-7fea59980000 rw-p 00000000 00:00 0 +7fea59980000-7fea59984000 ---p 00000000 00:00 0 +7fea59984000-7fea59a80000 rw-p 00000000 00:00 0 +7fea59a80000-7fea59a84000 ---p 00000000 00:00 0 +7fea59a84000-7fea59b80000 rw-p 00000000 00:00 0 +7fea59b80000-7fea59b84000 ---p 00000000 00:00 0 +7fea59b84000-7fea59c80000 rw-p 00000000 00:00 0 +7fea59c80000-7fea59c84000 ---p 00000000 00:00 0 +7fea59c84000-7fea59d80000 rw-p 00000000 00:00 0 +7fea59d80000-7fea59d84000 ---p 00000000 00:00 0 +7fea59d84000-7fea59e80000 rw-p 00000000 00:00 0 +7fea59e80000-7fea59e84000 ---p 00000000 00:00 0 +7fea59e84000-7fea59f80000 rw-p 00000000 00:00 0 +7fea59f80000-7fea59f84000 ---p 00000000 00:00 0 +7fea59f84000-7fea5a080000 rw-p 00000000 00:00 0 +7fea5a080000-7fea5a084000 ---p 00000000 00:00 0 +7fea5a084000-7fea5a180000 rw-p 00000000 00:00 0 +7fea5a180000-7fea5a184000 ---p 00000000 00:00 0 +7fea5a184000-7fea5a280000 rw-p 00000000 00:00 0 +7fea5a280000-7fea5a284000 ---p 00000000 00:00 0 +7fea5a284000-7fea5a380000 rw-p 00000000 00:00 0 +7fea5a380000-7fea5a384000 ---p 00000000 00:00 0 +7fea5a384000-7fea5a480000 rw-p 00000000 00:00 0 +7fea5a480000-7fea5a484000 ---p 00000000 00:00 0 +7fea5a484000-7fea5a580000 rw-p 00000000 00:00 0 +7fea5a580000-7fea5a584000 ---p 00000000 00:00 0 +7fea5a584000-7fea5a680000 rw-p 00000000 00:00 0 +7fea5a680000-7fea5a684000 ---p 00000000 00:00 0 +7fea5a684000-7fea5a780000 rw-p 00000000 00:00 0 +7fea5a780000-7fea5a784000 ---p 00000000 00:00 0 +7fea5a784000-7fea5a880000 rw-p 00000000 00:00 0 +7fea5a880000-7fea5a884000 ---p 00000000 00:00 0 +7fea5a884000-7fea5a980000 rw-p 00000000 00:00 0 +7fea5a980000-7fea5a984000 ---p 00000000 00:00 0 +7fea5a984000-7fea5aa80000 rw-p 00000000 00:00 0 +7fea5aa80000-7fea5aa84000 ---p 00000000 00:00 0 +7fea5aa84000-7fea5ab80000 rw-p 00000000 00:00 0 +7fea5ab80000-7fea5ab84000 ---p 00000000 00:00 0 +7fea5ab84000-7fea5ac80000 rw-p 00000000 00:00 0 +7fea5ac80000-7fea5ac84000 ---p 00000000 00:00 0 +7fea5ac84000-7fea5ad80000 rw-p 00000000 00:00 0 +7fea5ad80000-7fea5c800000 rw-p 00000000 00:00 0 +7fea5c8f9000-7fea5c8fd000 ---p 00000000 00:00 0 +7fea5c8fd000-7fea5c9f9000 rw-p 00000000 00:00 0 +7fea5c9f9000-7fea5c9fa000 ---p 00000000 00:00 0 +7fea5c9fa000-7fea5cbfa000 rw-p 00000000 00:00 0 +7fea5cbfa000-7fea5cbfb000 ---p 00000000 00:00 0 +7fea5cbfb000-7fea5cdfb000 rw-p 00000000 00:00 0 +7fea5cdfb000-7fea5cdfc000 ---p 00000000 00:00 0 +7fea5cdfc000-7fea5cffc000 rw-p 00000000 00:00 0 +7fea5cffc000-7fea5cffd000 ---p 00000000 00:00 0 +7fea5cffd000-7fea5d1fd000 rw-p 00000000 00:00 0 +7fea5d1fd000-7fea5d1fe000 ---p 00000000 00:00 0 +7fea5d1fe000-7fea5d3fe000 rw-p 00000000 00:00 0 +7fea5d3fe000-7fea5d3ff000 ---p 00000000 00:00 0 +7fea5d3ff000-7fea5d5ff000 rw-p 00000000 00:00 0 +7fea5d5ff000-7fea5d7ff000 rw-p 00000000 00:00 0 +7fea5d7ff000-7fea5d800000 ---p 00000000 00:00 0 +7fea5d800000-7fea5da00000 rw-p 00000000 00:00 0 +7fea5da00000-7fea5e000000 rw-p 00000000 00:00 0 +7fea5e07e000-7fea5e07f000 ---p 00000000 00:00 0 +7fea5e07f000-7fea5e27f000 rw-p 00000000 00:00 0 +7fea5e27f000-7fea5e280000 ---p 00000000 00:00 0 +7fea5e280000-7fea5e480000 rw-p 00000000 00:00 0 +7fea5e480000-7fea5f400000 rw-p 00000000 00:00 0 +7fea5f4fd000-7fea5f4fe000 ---p 00000000 00:00 0 +7fea5f4fe000-7fea5f6fe000 rw-p 00000000 00:00 0 +7fea5f6fe000-7fea5f6ff000 ---p 00000000 00:00 0 +7fea5f6ff000-7fea5f8ff000 rw-p 00000000 00:00 0 +7fea5f8ff000-7fea5f900000 ---p 00000000 00:00 0 +7fea5f900000-7fea5fb00000 rw-p 00000000 00:00 0 +7fea5fb00000-7fea5fb04000 ---p 00000000 00:00 0 +7fea5fb04000-7fea5fc00000 rw-p 00000000 00:00 0 +7fea5fc00000-7fea5fc04000 ---p 00000000 00:00 0 +7fea5fc04000-7fea5fd00000 rw-p 00000000 00:00 0 +7fea5fd00000-7fea5fd04000 ---p 00000000 00:00 0 +7fea5fd04000-7fea5fe00000 rw-p 00000000 00:00 0 +7fea5fe00000-7fea5fe04000 ---p 00000000 00:00 0 +7fea5fe04000-7fea5ff00000 rw-p 00000000 00:00 0 +7fea5ff00000-7fea5ff04000 ---p 00000000 00:00 0 +7fea5ff04000-7fea60000000 rw-p 00000000 00:00 0 +7fea60000000-7fea60004000 ---p 00000000 00:00 0 +7fea60004000-7fea60100000 rw-p 00000000 00:00 0 +7fea60100000-7fea60104000 ---p 00000000 00:00 0 +7fea60104000-7fea60200000 rw-p 00000000 00:00 0 +7fea60200000-7fea60204000 ---p 00000000 00:00 0 +7fea60204000-7fea60300000 rw-p 00000000 00:00 0 +7fea60300000-7fea60304000 ---p 00000000 00:00 0 +7fea60304000-7fea60400000 rw-p 00000000 00:00 0 +7fea60400000-7fea60404000 ---p 00000000 00:00 0 +7fea60404000-7fea60500000 rw-p 00000000 00:00 0 +7fea60500000-7fea60504000 ---p 00000000 00:00 0 +7fea60504000-7fea60600000 rw-p 00000000 00:00 0 +7fea60600000-7fea60604000 ---p 00000000 00:00 0 +7fea60604000-7fea60700000 rw-p 00000000 00:00 0 +7fea60700000-7fea60704000 ---p 00000000 00:00 0 +7fea60704000-7fea60800000 rw-p 00000000 00:00 0 +7fea60800000-7fea60804000 ---p 00000000 00:00 0 +7fea60804000-7fea60900000 rw-p 00000000 00:00 0 +7fea60900000-7fea60904000 ---p 00000000 00:00 0 +7fea60904000-7fea60a00000 rw-p 00000000 00:00 0 +7fea60a00000-7fea60a04000 ---p 00000000 00:00 0 +7fea60a04000-7fea60b00000 rw-p 00000000 00:00 0 +7fea60b00000-7fea60b04000 ---p 00000000 00:00 0 +7fea60b04000-7fea60c00000 rw-p 00000000 00:00 0 +7fea60c00000-7fea60c04000 ---p 00000000 00:00 0 +7fea60c04000-7fea60d00000 rw-p 00000000 00:00 0 +7fea60d00000-7fea60d04000 ---p 00000000 00:00 0 +7fea60d04000-7fea60e00000 rw-p 00000000 00:00 0 +7fea60e00000-7fea60e04000 ---p 00000000 00:00 0 +7fea60e04000-7fea60f00000 rw-p 00000000 00:00 0 +7fea60f00000-7fea60f04000 ---p 00000000 00:00 0 +7fea60f04000-7fea61000000 rw-p 00000000 00:00 0 +7fea61000000-7fea61004000 ---p 00000000 00:00 0 +7fea61004000-7fea61100000 rw-p 00000000 00:00 0 +7fea61100000-7fea61104000 ---p 00000000 00:00 0 +7fea61104000-7fea61200000 rw-p 00000000 00:00 0 +7fea61200000-7fea61204000 ---p 00000000 00:00 0 +7fea61204000-7fea61300000 rw-p 00000000 00:00 0 +7fea61300000-7fea61304000 ---p 00000000 00:00 0 +7fea61304000-7fea61400000 rw-p 00000000 00:00 0 +7fea61400000-7fea61404000 ---p 00000000 00:00 0 +7fea61404000-7fea61500000 rw-p 00000000 00:00 0 +7fea61500000-7fea61504000 ---p 00000000 00:00 0 +7fea61504000-7fea61600000 rw-p 00000000 00:00 0 +7fea61600000-7fea61604000 ---p 00000000 00:00 0 +7fea61604000-7fea61700000 rw-p 00000000 00:00 0 +7fea61700000-7fea61704000 ---p 00000000 00:00 0 +7fea61704000-7fea61800000 rw-p 00000000 00:00 0 +7fea61800000-7fea61804000 ---p 00000000 00:00 0 +7fea61804000-7fea61900000 rw-p 00000000 00:00 0 +7fea61900000-7fea61904000 ---p 00000000 00:00 0 +7fea61904000-7fea61a00000 rw-p 00000000 00:00 0 +7fea61a00000-7fea61a04000 ---p 00000000 00:00 0 +7fea61a04000-7fea61b00000 rw-p 00000000 00:00 0 +7fea61b00000-7fea61b04000 ---p 00000000 00:00 0 +7fea61b04000-7fea61c00000 rw-p 00000000 00:00 0 +7fea61c00000-7fea61c04000 ---p 00000000 00:00 0 +7fea61c04000-7fea61d00000 rw-p 00000000 00:00 0 +7fea61d00000-7fea61d04000 ---p 00000000 00:00 0 +7fea61d04000-7fea61e00000 rw-p 00000000 00:00 0 +7fea61e00000-7fea61e04000 ---p 00000000 00:00 0 +7fea61e04000-7fea61f00000 rw-p 00000000 00:00 0 +7fea61f00000-7fea61f04000 ---p 00000000 00:00 0 +7fea61f04000-7fea62000000 rw-p 00000000 00:00 0 +7fea62000000-7fea62004000 ---p 00000000 00:00 0 +7fea62004000-7fea62100000 rw-p 00000000 00:00 0 +7fea62100000-7fea62104000 ---p 00000000 00:00 0 +7fea62104000-7fea62200000 rw-p 00000000 00:00 0 +7fea62200000-7fea62204000 ---p 00000000 00:00 0 +7fea62204000-7fea62300000 rw-p 00000000 00:00 0 +7fea62300000-7fea62304000 ---p 00000000 00:00 0 +7fea62304000-7fea62400000 rw-p 00000000 00:00 0 +7fea62400000-7fea62404000 ---p 00000000 00:00 0 +7fea62404000-7fea62500000 rw-p 00000000 00:00 0 +7fea62500000-7fea62504000 ---p 00000000 00:00 0 +7fea62504000-7fea62600000 rw-p 00000000 00:00 0 +7fea62600000-7fea62604000 ---p 00000000 00:00 0 +7fea62604000-7fea62700000 rw-p 00000000 00:00 0 +7fea62700000-7fea62704000 ---p 00000000 00:00 0 +7fea62704000-7fea62800000 rw-p 00000000 00:00 0 +7fea62800000-7fea62804000 ---p 00000000 00:00 0 +7fea62804000-7fea62900000 rw-p 00000000 00:00 0 +7fea62900000-7fea62904000 ---p 00000000 00:00 0 +7fea62904000-7fea62a00000 rw-p 00000000 00:00 0 +7fea62a00000-7fea62a04000 ---p 00000000 00:00 0 +7fea62a04000-7fea62b00000 rw-p 00000000 00:00 0 +7fea62b00000-7fea62b04000 ---p 00000000 00:00 0 +7fea62b04000-7fea62c00000 rw-p 00000000 00:00 0 +7fea62c00000-7fea62c04000 ---p 00000000 00:00 0 +7fea62c04000-7fea62d00000 rw-p 00000000 00:00 0 +7fea62d00000-7fea62d04000 ---p 00000000 00:00 0 +7fea62d04000-7fea62e00000 rw-p 00000000 00:00 0 +7fea62e00000-7fea62e04000 ---p 00000000 00:00 0 +7fea62e04000-7fea62f00000 rw-p 00000000 00:00 0 +7fea62f00000-7fea62f04000 ---p 00000000 00:00 0 +7fea62f04000-7fea63000000 rw-p 00000000 00:00 0 +7fea63000000-7fea63004000 ---p 00000000 00:00 0 +7fea63004000-7fea63100000 rw-p 00000000 00:00 0 +7fea63100000-7fea63104000 ---p 00000000 00:00 0 +7fea63104000-7fea63200000 rw-p 00000000 00:00 0 +7fea63200000-7fea63204000 ---p 00000000 00:00 0 +7fea63204000-7fea63300000 rw-p 00000000 00:00 0 +7fea63300000-7fea63304000 ---p 00000000 00:00 0 +7fea63304000-7fea63400000 rw-p 00000000 00:00 0 +7fea63400000-7fea63404000 ---p 00000000 00:00 0 +7fea63404000-7fea63500000 rw-p 00000000 00:00 0 +7fea63500000-7fea63504000 ---p 00000000 00:00 0 +7fea63504000-7fea63600000 rw-p 00000000 00:00 0 +7fea63600000-7fea63604000 ---p 00000000 00:00 0 +7fea63604000-7fea63700000 rw-p 00000000 00:00 0 +7fea63700000-7fea63704000 ---p 00000000 00:00 0 +7fea63704000-7fea63800000 rw-p 00000000 00:00 0 +7fea63800000-7fea63804000 ---p 00000000 00:00 0 +7fea63804000-7fea63900000 rw-p 00000000 00:00 0 +7fea63900000-7fea63904000 ---p 00000000 00:00 0 +7fea63904000-7fea63a00000 rw-p 00000000 00:00 0 +7fea63a00000-7fea63a04000 ---p 00000000 00:00 0 +7fea63a04000-7fea63b00000 rw-p 00000000 00:00 0 +7fea63b00000-7fea63b04000 ---p 00000000 00:00 0 +7fea63b04000-7fea63c00000 rw-p 00000000 00:00 0 +7fea63c00000-7fea63c04000 ---p 00000000 00:00 0 +7fea63c04000-7fea63d00000 rw-p 00000000 00:00 0 +7fea63d00000-7fea63d04000 ---p 00000000 00:00 0 +7fea63d04000-7fea63e00000 rw-p 00000000 00:00 0 +7fea63e00000-7fea63e04000 ---p 00000000 00:00 0 +7fea63e04000-7fea63f00000 rw-p 00000000 00:00 0 +7fea63f00000-7fea63f04000 ---p 00000000 00:00 0 +7fea63f04000-7fea64000000 rw-p 00000000 00:00 0 +7fea64000000-7fea64004000 ---p 00000000 00:00 0 +7fea64004000-7fea64100000 rw-p 00000000 00:00 0 +7fea64100000-7fea64104000 ---p 00000000 00:00 0 +7fea64104000-7fea64200000 rw-p 00000000 00:00 0 +7fea64200000-7fea64204000 ---p 00000000 00:00 0 +7fea64204000-7fea64300000 rw-p 00000000 00:00 0 +7fea64300000-7fea64304000 ---p 00000000 00:00 0 +7fea64304000-7fea64400000 rw-p 00000000 00:00 0 +7fea64400000-7fea64404000 ---p 00000000 00:00 0 +7fea64404000-7fea64500000 rw-p 00000000 00:00 0 +7fea64500000-7fea64504000 ---p 00000000 00:00 0 +7fea64504000-7fea64600000 rw-p 00000000 00:00 0 +7fea64600000-7fea64604000 ---p 00000000 00:00 0 +7fea64604000-7fea64700000 rw-p 00000000 00:00 0 +7fea64700000-7fea64704000 ---p 00000000 00:00 0 +7fea64704000-7fea64800000 rw-p 00000000 00:00 0 +7fea64800000-7fea64804000 ---p 00000000 00:00 0 +7fea64804000-7fea64900000 rw-p 00000000 00:00 0 +7fea64900000-7fea64904000 ---p 00000000 00:00 0 +7fea64904000-7fea64a00000 rw-p 00000000 00:00 0 +7fea64a00000-7fea64a04000 ---p 00000000 00:00 0 +7fea64a04000-7fea64b00000 rw-p 00000000 00:00 0 +7fea64b00000-7fea64b04000 ---p 00000000 00:00 0 +7fea64b04000-7fea64c00000 rw-p 00000000 00:00 0 +7fea64c00000-7fea64c04000 ---p 00000000 00:00 0 +7fea64c04000-7fea64d00000 rw-p 00000000 00:00 0 +7fea64d00000-7fea64d04000 ---p 00000000 00:00 0 +7fea64d04000-7fea64e00000 rw-p 00000000 00:00 0 +7fea64e00000-7fea64e04000 ---p 00000000 00:00 0 +7fea64e04000-7fea64f00000 rw-p 00000000 00:00 0 +7fea64f00000-7fea64f04000 ---p 00000000 00:00 0 +7fea64f04000-7fea65000000 rw-p 00000000 00:00 0 +7fea65000000-7fea65004000 ---p 00000000 00:00 0 +7fea65004000-7fea65100000 rw-p 00000000 00:00 0 +7fea65100000-7fea65104000 ---p 00000000 00:00 0 +7fea65104000-7fea65200000 rw-p 00000000 00:00 0 +7fea65200000-7fea65204000 ---p 00000000 00:00 0 +7fea65204000-7fea65300000 rw-p 00000000 00:00 0 +7fea65300000-7fea65304000 ---p 00000000 00:00 0 +7fea65304000-7fea65400000 rw-p 00000000 00:00 0 +7fea65400000-7fea65404000 ---p 00000000 00:00 0 +7fea65404000-7fea65500000 rw-p 00000000 00:00 0 +7fea65500000-7fea65504000 ---p 00000000 00:00 0 +7fea65504000-7fea65600000 rw-p 00000000 00:00 0 +7fea65600000-7fea65604000 ---p 00000000 00:00 0 +7fea65604000-7fea65700000 rw-p 00000000 00:00 0 +7fea65700000-7fea65704000 ---p 00000000 00:00 0 +7fea65704000-7fea65800000 rw-p 00000000 00:00 0 +7fea65800000-7fea65804000 ---p 00000000 00:00 0 +7fea65804000-7fea65900000 rw-p 00000000 00:00 0 +7fea65900000-7fea65904000 ---p 00000000 00:00 0 +7fea65904000-7fea65a00000 rw-p 00000000 00:00 0 +7fea65a00000-7fea65a04000 ---p 00000000 00:00 0 +7fea65a04000-7fea65b00000 rw-p 00000000 00:00 0 +7fea65b00000-7fea65b04000 ---p 00000000 00:00 0 +7fea65b04000-7fea65c00000 rw-p 00000000 00:00 0 +7fea65c00000-7fea65c04000 ---p 00000000 00:00 0 +7fea65c04000-7fea65d00000 rw-p 00000000 00:00 0 +7fea65d00000-7fea65d04000 ---p 00000000 00:00 0 +7fea65d04000-7fea65e00000 rw-p 00000000 00:00 0 +7fea65e00000-7fea65e04000 ---p 00000000 00:00 0 +7fea65e04000-7fea65f00000 rw-p 00000000 00:00 0 +7fea65f00000-7fea65f04000 ---p 00000000 00:00 0 +7fea65f04000-7fea66000000 rw-p 00000000 00:00 0 +7fea66000000-7fea66004000 ---p 00000000 00:00 0 +7fea66004000-7fea66100000 rw-p 00000000 00:00 0 +7fea66100000-7fea66104000 ---p 00000000 00:00 0 +7fea66104000-7fea66200000 rw-p 00000000 00:00 0 +7fea66200000-7fea66204000 ---p 00000000 00:00 0 +7fea66204000-7fea66300000 rw-p 00000000 00:00 0 +7fea66300000-7fea66304000 ---p 00000000 00:00 0 +7fea66304000-7fea66400000 rw-p 00000000 00:00 0 +7fea66400000-7fea66404000 ---p 00000000 00:00 0 +7fea66404000-7fea66500000 rw-p 00000000 00:00 0 +7fea66500000-7fea66504000 ---p 00000000 00:00 0 +7fea66504000-7fea66600000 rw-p 00000000 00:00 0 +7fea66600000-7fea66604000 ---p 00000000 00:00 0 +7fea66604000-7fea66700000 rw-p 00000000 00:00 0 +7fea66700000-7fea66704000 ---p 00000000 00:00 0 +7fea66704000-7fea66800000 rw-p 00000000 00:00 0 +7fea66800000-7fea66804000 ---p 00000000 00:00 0 +7fea66804000-7fea66900000 rw-p 00000000 00:00 0 +7fea66900000-7fea66904000 ---p 00000000 00:00 0 +7fea66904000-7fea66a00000 rw-p 00000000 00:00 0 +7fea66a00000-7fea66a04000 ---p 00000000 00:00 0 +7fea66a04000-7fea66b00000 rw-p 00000000 00:00 0 +7fea66b00000-7fea66b04000 ---p 00000000 00:00 0 +7fea66b04000-7fea66c00000 rw-p 00000000 00:00 0 +7fea66c00000-7fea66c04000 ---p 00000000 00:00 0 +7fea66c04000-7fea66d00000 rw-p 00000000 00:00 0 +7fea66d00000-7fea66d04000 ---p 00000000 00:00 0 +7fea66d04000-7fea66e00000 rw-p 00000000 00:00 0 +7fea66e00000-7fea66e04000 ---p 00000000 00:00 0 +7fea66e04000-7fea66f00000 rw-p 00000000 00:00 0 +7fea66f00000-7fea66f04000 ---p 00000000 00:00 0 +7fea66f04000-7fea67000000 rw-p 00000000 00:00 0 +7fea67000000-7fea67004000 ---p 00000000 00:00 0 +7fea67004000-7fea67100000 rw-p 00000000 00:00 0 +7fea67100000-7fea67104000 ---p 00000000 00:00 0 +7fea67104000-7fea67200000 rw-p 00000000 00:00 0 +7fea67200000-7fea67204000 ---p 00000000 00:00 0 +7fea67204000-7fea67300000 rw-p 00000000 00:00 0 +7fea67300000-7fea67304000 ---p 00000000 00:00 0 +7fea67304000-7fea67400000 rw-p 00000000 00:00 0 +7fea67400000-7fea67404000 ---p 00000000 00:00 0 +7fea67404000-7fea67500000 rw-p 00000000 00:00 0 +7fea67500000-7fea67504000 ---p 00000000 00:00 0 +7fea67504000-7fea67600000 rw-p 00000000 00:00 0 +7fea67600000-7fea67604000 ---p 00000000 00:00 0 +7fea67604000-7fea67700000 rw-p 00000000 00:00 0 +7fea67700000-7fea67704000 ---p 00000000 00:00 0 +7fea67704000-7fea67800000 rw-p 00000000 00:00 0 +7fea67800000-7fea67804000 ---p 00000000 00:00 0 +7fea67804000-7fea67900000 rw-p 00000000 00:00 0 +7fea67900000-7fea67904000 ---p 00000000 00:00 0 +7fea67904000-7fea67a00000 rw-p 00000000 00:00 0 +7fea67a00000-7fea67a04000 ---p 00000000 00:00 0 +7fea67a04000-7fea67b00000 rw-p 00000000 00:00 0 +7fea67b00000-7fea67b04000 ---p 00000000 00:00 0 +7fea67b04000-7fea67c00000 rw-p 00000000 00:00 0 +7fea67c00000-7fea67c04000 ---p 00000000 00:00 0 +7fea67c04000-7fea67d00000 rw-p 00000000 00:00 0 +7fea67d00000-7fea67d04000 ---p 00000000 00:00 0 +7fea67d04000-7fea67e00000 rw-p 00000000 00:00 0 +7fea67e00000-7fea67e04000 ---p 00000000 00:00 0 +7fea67e04000-7fea67f00000 rw-p 00000000 00:00 0 +7fea67f00000-7fea67f04000 ---p 00000000 00:00 0 +7fea67f04000-7fea68000000 rw-p 00000000 00:00 0 +7fea68000000-7fea68004000 ---p 00000000 00:00 0 +7fea68004000-7fea68100000 rw-p 00000000 00:00 0 +7fea68100000-7fea68104000 ---p 00000000 00:00 0 +7fea68104000-7fea68200000 rw-p 00000000 00:00 0 +7fea68200000-7fea68204000 ---p 00000000 00:00 0 +7fea68204000-7fea68300000 rw-p 00000000 00:00 0 +7fea68300000-7fea68304000 ---p 00000000 00:00 0 +7fea68304000-7fea68400000 rw-p 00000000 00:00 0 +7fea68400000-7fea68404000 ---p 00000000 00:00 0 +7fea68404000-7fea68500000 rw-p 00000000 00:00 0 +7fea68500000-7fea68504000 ---p 00000000 00:00 0 +7fea68504000-7fea68600000 rw-p 00000000 00:00 0 +7fea68600000-7fea68604000 ---p 00000000 00:00 0 +7fea68604000-7fea68700000 rw-p 00000000 00:00 0 +7fea68700000-7fea68704000 ---p 00000000 00:00 0 +7fea68704000-7fea68800000 rw-p 00000000 00:00 0 +7fea68800000-7fea68804000 ---p 00000000 00:00 0 +7fea68804000-7fea68900000 rw-p 00000000 00:00 0 +7fea68900000-7fea68904000 ---p 00000000 00:00 0 +7fea68904000-7fea68a00000 rw-p 00000000 00:00 0 +7fea68a00000-7fea68a04000 ---p 00000000 00:00 0 +7fea68a04000-7fea68b00000 rw-p 00000000 00:00 0 +7fea68b00000-7fea68b04000 ---p 00000000 00:00 0 +7fea68b04000-7fea68c00000 rw-p 00000000 00:00 0 +7fea68c00000-7fea68c04000 ---p 00000000 00:00 0 +7fea68c04000-7fea68d00000 rw-p 00000000 00:00 0 +7fea68d00000-7fea68d04000 ---p 00000000 00:00 0 +7fea68d04000-7fea68e00000 rw-p 00000000 00:00 0 +7fea68e00000-7fea68e04000 ---p 00000000 00:00 0 +7fea68e04000-7fea68f00000 rw-p 00000000 00:00 0 +7fea68f00000-7fea68f04000 ---p 00000000 00:00 0 +7fea68f04000-7fea69000000 rw-p 00000000 00:00 0 +7fea69000000-7fea69004000 ---p 00000000 00:00 0 +7fea69004000-7fea69100000 rw-p 00000000 00:00 0 +7fea69100000-7fea69104000 ---p 00000000 00:00 0 +7fea69104000-7fea69200000 rw-p 00000000 00:00 0 +7fea69200000-7fea69204000 ---p 00000000 00:00 0 +7fea69204000-7fea69300000 rw-p 00000000 00:00 0 +7fea69300000-7fea69304000 ---p 00000000 00:00 0 +7fea69304000-7fea69400000 rw-p 00000000 00:00 0 +7fea69400000-7fea69404000 ---p 00000000 00:00 0 +7fea69404000-7fea69500000 rw-p 00000000 00:00 0 +7fea69500000-7fea69504000 ---p 00000000 00:00 0 +7fea69504000-7fea69600000 rw-p 00000000 00:00 0 +7fea69600000-7fea69604000 ---p 00000000 00:00 0 +7fea69604000-7fea69700000 rw-p 00000000 00:00 0 +7fea69700000-7fea69704000 ---p 00000000 00:00 0 +7fea69704000-7fea69800000 rw-p 00000000 00:00 0 +7fea69800000-7fea69804000 ---p 00000000 00:00 0 +7fea69804000-7fea69900000 rw-p 00000000 00:00 0 +7fea69900000-7fea69904000 ---p 00000000 00:00 0 +7fea69904000-7fea69a00000 rw-p 00000000 00:00 0 +7fea69a00000-7fea69a04000 ---p 00000000 00:00 0 +7fea69a04000-7fea69b00000 rw-p 00000000 00:00 0 +7fea69b00000-7fea69b04000 ---p 00000000 00:00 0 +7fea69b04000-7fea69c00000 rw-p 00000000 00:00 0 +7fea69c00000-7fea69c04000 ---p 00000000 00:00 0 +7fea69c04000-7fea69d00000 rw-p 00000000 00:00 0 +7fea69d00000-7fea69d04000 ---p 00000000 00:00 0 +7fea69d04000-7fea69e00000 rw-p 00000000 00:00 0 +7fea69e00000-7fea69e04000 ---p 00000000 00:00 0 +7fea69e04000-7fea69f00000 rw-p 00000000 00:00 0 +7fea69f00000-7fea69f04000 ---p 00000000 00:00 0 +7fea69f04000-7fea6a000000 rw-p 00000000 00:00 0 +7fea6a000000-7fea6a004000 ---p 00000000 00:00 0 +7fea6a004000-7fea6a100000 rw-p 00000000 00:00 0 +7fea6a100000-7fea6a104000 ---p 00000000 00:00 0 +7fea6a104000-7fea6a200000 rw-p 00000000 00:00 0 +7fea6a200000-7fea6a204000 ---p 00000000 00:00 0 +7fea6a204000-7fea6a300000 rw-p 00000000 00:00 0 +7fea6a300000-7fea6a304000 ---p 00000000 00:00 0 +7fea6a304000-7fea6a400000 rw-p 00000000 00:00 0 +7fea6a400000-7fea6a404000 ---p 00000000 00:00 0 +7fea6a404000-7fea6a500000 rw-p 00000000 00:00 0 +7fea6a500000-7fea6a504000 ---p 00000000 00:00 0 +7fea6a504000-7fea6a600000 rw-p 00000000 00:00 0 +7fea6a600000-7fea6a604000 ---p 00000000 00:00 0 +7fea6a604000-7fea6a700000 rw-p 00000000 00:00 0 +7fea6a700000-7fea6a704000 ---p 00000000 00:00 0 +7fea6a704000-7fea6a800000 rw-p 00000000 00:00 0 +7fea6a800000-7fea6a804000 ---p 00000000 00:00 0 +7fea6a804000-7fea6a900000 rw-p 00000000 00:00 0 +7fea6a900000-7fea6a904000 ---p 00000000 00:00 0 +7fea6a904000-7fea6aa00000 rw-p 00000000 00:00 0 +7fea6aa00000-7fea6aa04000 ---p 00000000 00:00 0 +7fea6aa04000-7fea6ab00000 rw-p 00000000 00:00 0 +7fea6ab00000-7fea6ab04000 ---p 00000000 00:00 0 +7fea6ab04000-7fea6ac00000 rw-p 00000000 00:00 0 +7fea6ac00000-7fea6ac04000 ---p 00000000 00:00 0 +7fea6ac04000-7fea6ad00000 rw-p 00000000 00:00 0 +7fea6ad00000-7fea6ad04000 ---p 00000000 00:00 0 +7fea6ad04000-7fea6ae00000 rw-p 00000000 00:00 0 +7fea6ae00000-7fea6ae04000 ---p 00000000 00:00 0 +7fea6ae04000-7fea6af00000 rw-p 00000000 00:00 0 +7fea6af00000-7fea6af04000 ---p 00000000 00:00 0 +7fea6af04000-7fea6b000000 rw-p 00000000 00:00 0 +7fea6b000000-7fea6b004000 ---p 00000000 00:00 0 +7fea6b004000-7fea6b100000 rw-p 00000000 00:00 0 +7fea6b100000-7fea6b104000 ---p 00000000 00:00 0 +7fea6b104000-7fea6b200000 rw-p 00000000 00:00 0 +7fea6b200000-7fea6b204000 ---p 00000000 00:00 0 +7fea6b204000-7fea6b300000 rw-p 00000000 00:00 0 +7fea6b300000-7fea6b304000 ---p 00000000 00:00 0 +7fea6b304000-7fea6b400000 rw-p 00000000 00:00 0 +7fea6b400000-7fea6b404000 ---p 00000000 00:00 0 +7fea6b404000-7fea6b500000 rw-p 00000000 00:00 0 +7fea6b500000-7fea6b504000 ---p 00000000 00:00 0 +7fea6b504000-7fea6b600000 rw-p 00000000 00:00 0 +7fea6b600000-7fea6b604000 ---p 00000000 00:00 0 +7fea6b604000-7fea6b700000 rw-p 00000000 00:00 0 +7fea6b700000-7fea6b704000 ---p 00000000 00:00 0 +7fea6b704000-7fea6b800000 rw-p 00000000 00:00 0 +7fea6b800000-7fea6b804000 ---p 00000000 00:00 0 +7fea6b804000-7fea6b900000 rw-p 00000000 00:00 0 +7fea6b900000-7fea6b904000 ---p 00000000 00:00 0 +7fea6b904000-7fea6ba00000 rw-p 00000000 00:00 0 +7fea6ba00000-7fea6ba04000 ---p 00000000 00:00 0 +7fea6ba04000-7fea6bb00000 rw-p 00000000 00:00 0 +7fea6bb00000-7fea6bb04000 ---p 00000000 00:00 0 +7fea6bb04000-7fea6bc00000 rw-p 00000000 00:00 0 +7fea6bc00000-7fea6bc04000 ---p 00000000 00:00 0 +7fea6bc04000-7fea6bd00000 rw-p 00000000 00:00 0 +7fea6bd00000-7fea6bd04000 ---p 00000000 00:00 0 +7fea6bd04000-7fea6be00000 rw-p 00000000 00:00 0 +7fea6be00000-7fea6be04000 ---p 00000000 00:00 0 +7fea6be04000-7fea6bf00000 rw-p 00000000 00:00 0 +7fea6bf00000-7fea6bf04000 ---p 00000000 00:00 0 +7fea6bf04000-7fea6c000000 rw-p 00000000 00:00 0 +7fea6c000000-7fea6c004000 ---p 00000000 00:00 0 +7fea6c004000-7fea6c100000 rw-p 00000000 00:00 0 +7fea6c100000-7fea6c104000 ---p 00000000 00:00 0 +7fea6c104000-7fea6c200000 rw-p 00000000 00:00 0 +7fea6c200000-7fea6c204000 ---p 00000000 00:00 0 +7fea6c204000-7fea6c300000 rw-p 00000000 00:00 0 +7fea6c300000-7fea6c304000 ---p 00000000 00:00 0 +7fea6c304000-7fea6c400000 rw-p 00000000 00:00 0 +7fea6c400000-7fea6c404000 ---p 00000000 00:00 0 +7fea6c404000-7fea6c500000 rw-p 00000000 00:00 0 +7fea6c500000-7fea6c504000 ---p 00000000 00:00 0 +7fea6c504000-7fea6c600000 rw-p 00000000 00:00 0 +7fea6c600000-7fea6d200000 rw-p 00000000 00:00 0 +7fea6d200000-7fea6d204000 ---p 00000000 00:00 0 +7fea6d204000-7fea6d300000 rw-p 00000000 00:00 0 +7fea6d300000-7fea6d304000 ---p 00000000 00:00 0 +7fea6d304000-7fea6d400000 rw-p 00000000 00:00 0 +7fea6d400000-7fea6d404000 ---p 00000000 00:00 0 +7fea6d404000-7fea6d500000 rw-p 00000000 00:00 0 +7fea6d500000-7fea6d504000 ---p 00000000 00:00 0 +7fea6d504000-7fea6d600000 rw-p 00000000 00:00 0 +7fea6d600000-7fea6d604000 ---p 00000000 00:00 0 +7fea6d604000-7fea6d700000 rw-p 00000000 00:00 0 +7fea6d700000-7fea6d704000 ---p 00000000 00:00 0 +7fea6d704000-7fea6d800000 rw-p 00000000 00:00 0 +7fea6d800000-7fea6d804000 ---p 00000000 00:00 0 +7fea6d804000-7fea6d900000 rw-p 00000000 00:00 0 +7fea6d900000-7fea6d904000 ---p 00000000 00:00 0 +7fea6d904000-7fea6da00000 rw-p 00000000 00:00 0 +7fea6da00000-7fea6da04000 ---p 00000000 00:00 0 +7fea6da04000-7fea6db00000 rw-p 00000000 00:00 0 +7fea6db00000-7fea6db04000 ---p 00000000 00:00 0 +7fea6db04000-7fea6dc00000 rw-p 00000000 00:00 0 +7fea6dc00000-7fea6dc04000 ---p 00000000 00:00 0 +7fea6dc04000-7fea6dd00000 rw-p 00000000 00:00 0 +7fea6dd00000-7fea6dd04000 ---p 00000000 00:00 0 +7fea6dd04000-7fea6de00000 rw-p 00000000 00:00 0 +7fea6de00000-7fea6de04000 ---p 00000000 00:00 0 +7fea6de04000-7fea6df00000 rw-p 00000000 00:00 0 +7fea6df00000-7fea6df04000 ---p 00000000 00:00 0 +7fea6df04000-7fea6e000000 rw-p 00000000 00:00 0 +7fea6e000000-7fea6e004000 ---p 00000000 00:00 0 +7fea6e004000-7fea6e100000 rw-p 00000000 00:00 0 +7fea6e100000-7fea6e104000 ---p 00000000 00:00 0 +7fea6e104000-7fea6e200000 rw-p 00000000 00:00 0 +7fea6e200000-7fea6e204000 ---p 00000000 00:00 0 +7fea6e204000-7fea6e300000 rw-p 00000000 00:00 0 +7fea6e300000-7fea6e304000 ---p 00000000 00:00 0 +7fea6e304000-7fea6e980000 rw-p 00000000 00:00 0 +7fea6e980000-7fea6ea00000 rw-p 00000000 00:00 0 +7fea6ea00000-7fea6ec00000 rw-p 00000000 00:00 0 +7fea6ec00000-7fea6ec11000 r-xp 00000000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ec11000-7fea6ee10000 ---p 00011000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ee10000-7fea6ee11000 r--p 00010000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ee11000-7fea6ee12000 rw-p 00011000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ee12000-7fea6ee13000 r--p 00012000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ee13000-7fea6ee14000 rw-p 00000000 00:00 0 +7fea6eede000-7fea6eee2000 ---p 00000000 00:00 0 +7fea6eee2000-7fea6efde000 rw-p 00000000 00:00 0 +7fea6efde000-7fea6efdf000 ---p 00000000 00:00 0 +7fea6efdf000-7fea6f7df000 rw-p 00000000 00:00 0 +7fea6f7df000-7fea6f7e0000 ---p 00000000 00:00 0 +7fea6f7e0000-7fea6ffe0000 rw-p 00000000 00:00 0 +7fea6ffe0000-7fea6ffe1000 ---p 00000000 00:00 0 +7fea6ffe1000-7fea707e1000 rw-p 00000000 00:00 0 +7fea707e1000-7fea707e2000 ---p 00000000 00:00 0 +7fea707e2000-7fea70fe2000 rw-p 00000000 00:00 0 +7fea70fe2000-7fea70fe3000 ---p 00000000 00:00 0 +7fea70fe3000-7fea717e3000 rw-p 00000000 00:00 0 +7fea717e3000-7fea717e4000 ---p 00000000 00:00 0 +7fea717e4000-7fea71fe4000 rw-p 00000000 00:00 0 +7fea71fe4000-7fea71fe5000 ---p 00000000 00:00 0 +7fea71fe5000-7fea727e5000 rw-p 00000000 00:00 0 +7fea727e5000-7fea727e6000 ---p 00000000 00:00 0 +7fea727e6000-7fea72fe6000 rw-p 00000000 00:00 0 +7fea72fe6000-7fea72fe7000 ---p 00000000 00:00 0 +7fea72fe7000-7fea737e7000 rw-p 00000000 00:00 0 +7fea737e7000-7fea737e8000 ---p 00000000 00:00 0 +7fea737e8000-7fea73fe8000 rw-p 00000000 00:00 0 +7fea73fe8000-7fea73fe9000 ---p 00000000 00:00 0 +7fea73fe9000-7fea747e9000 rw-p 00000000 00:00 0 +7fea747e9000-7fea747ea000 ---p 00000000 00:00 0 +7fea747ea000-7fea74fea000 rw-p 00000000 00:00 0 +7fea74fea000-7fea74feb000 ---p 00000000 00:00 0 +7fea74feb000-7fea757eb000 rw-p 00000000 00:00 0 +7fea757eb000-7fea757ec000 ---p 00000000 00:00 0 +7fea757ec000-7fea75fec000 rw-p 00000000 00:00 0 +7fea75fec000-7fea75fed000 ---p 00000000 00:00 0 +7fea75fed000-7fea767ed000 rw-p 00000000 00:00 0 +7fea767ed000-7fea767ee000 ---p 00000000 00:00 0 +7fea767ee000-7fea76fee000 rw-p 00000000 00:00 0 +7fea76fee000-7fea76fef000 ---p 00000000 00:00 0 +7fea76fef000-7fea777ef000 rw-p 00000000 00:00 0 +7fea777ef000-7fea777f0000 ---p 00000000 00:00 0 +7fea777f0000-7fea77ff0000 rw-p 00000000 00:00 0 +7fea77ff0000-7fea77ff1000 ---p 00000000 00:00 0 +7fea77ff1000-7fea787f1000 rw-p 00000000 00:00 0 +7fea787f1000-7fea787f2000 ---p 00000000 00:00 0 +7fea787f2000-7fea78ff2000 rw-p 00000000 00:00 0 +7fea78ff2000-7fea78ff3000 ---p 00000000 00:00 0 +7fea78ff3000-7fea797f3000 rw-p 00000000 00:00 0 +7fea797f3000-7fea797f4000 ---p 00000000 00:00 0 +7fea797f4000-7fea79ff4000 rw-p 00000000 00:00 0 +7fea79ff4000-7fea79ff5000 ---p 00000000 00:00 0 +7fea79ff5000-7fea7a7f5000 rw-p 00000000 00:00 0 +7fea7a7f5000-7fea7a7f6000 ---p 00000000 00:00 0 +7fea7a7f6000-7fea7aff6000 rw-p 00000000 00:00 0 +7fea7aff6000-7fea7aff7000 ---p 00000000 00:00 0 +7fea7aff7000-7fea7b7f7000 rw-p 00000000 00:00 0 +7fea7b7f7000-7fea7b7f8000 ---p 00000000 00:00 0 +7fea7b7f8000-7fea7bff8000 rw-p 00000000 00:00 0 +7fea7bff8000-7fea7bff9000 ---p 00000000 00:00 0 +7fea7bff9000-7fea7c7f9000 rw-p 00000000 00:00 0 +7fea7c7f9000-7fea7c7fa000 ---p 00000000 00:00 0 +7fea7c7fa000-7fea7cffa000 rw-p 00000000 00:00 0 +7fea7cffa000-7fea7cffb000 ---p 00000000 00:00 0 +7fea7cffb000-7fea7d7fb000 rw-p 00000000 00:00 0 +7fea7d7fb000-7fea7d7fc000 ---p 00000000 00:00 0 +7fea7d7fc000-7fea7dffc000 rw-p 00000000 00:00 0 +7fea7dffc000-7fea7dffd000 ---p 00000000 00:00 0 +7fea7dffd000-7fea7e7fd000 rw-p 00000000 00:00 0 +7fea7e7fd000-7fea7e7fe000 ---p 00000000 00:00 0 +7fea7e7fe000-7fea7effe000 rw-p 00000000 00:00 0 +7fea7effe000-7fea7efff000 ---p 00000000 00:00 0 +7fea7efff000-7fea7f7ff000 rw-p 00000000 00:00 0 +7fea7f7ff000-7fea7f800000 ---p 00000000 00:00 0 +7fea7f800000-7fea80000000 rw-p 00000000 00:00 0 +7fea80000000-7fea80221000 rw-p 00000000 00:00 0 +7fea80221000-7fea84000000 ---p 00000000 00:00 0 +7fea84000000-7fea84004000 ---p 00000000 00:00 0 +7fea84004000-7fea84100000 rw-p 00000000 00:00 0 +7fea84100000-7fea84104000 ---p 00000000 00:00 0 +7fea84104000-7fea84200000 rw-p 00000000 00:00 0 +7fea84200000-7fea84211000 r-xp 00000000 00:10d 1558247 /tmp/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_647152395319239525831.so (deleted) +7fea84211000-7fea84410000 ---p 00011000 00:10d 1558247 /tmp/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_647152395319239525831.so (deleted) +7fea84410000-7fea84411000 r--p 00010000 00:10d 1558247 /tmp/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_647152395319239525831.so (deleted) +7fea84411000-7fea84412000 rw-p 00011000 00:10d 1558247 /tmp/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_647152395319239525831.so (deleted) +7fea84412000-7fea84413000 rw-p 00000000 00:00 0 +7fea84479000-7fea8447d000 ---p 00000000 00:00 0 +7fea8447d000-7fea84579000 rw-p 00000000 00:00 0 +7fea84579000-7fea8457a000 ---p 00000000 00:00 0 +7fea8457a000-7fea84d7a000 rw-p 00000000 00:00 0 +7fea84d7a000-7fea84d7b000 ---p 00000000 00:00 0 +7fea84d7b000-7fea8557b000 rw-p 00000000 00:00 0 +7fea8557b000-7fea8557c000 ---p 00000000 00:00 0 +7fea8557c000-7fea85d7c000 rw-p 00000000 00:00 0 +7fea85d7c000-7fea85d7d000 ---p 00000000 00:00 0 +7fea85d7d000-7fea8657d000 rw-p 00000000 00:00 0 +7fea8657d000-7fea8657e000 ---p 00000000 00:00 0 +7fea8657e000-7fea86d7e000 rw-p 00000000 00:00 0 +7fea86d7e000-7fea86ffe000 rw-p 00000000 00:00 0 +7fea86ffe000-7fea86fff000 ---p 00000000 00:00 0 +7fea86fff000-7fea877ff000 rw-p 00000000 00:00 0 +7fea877ff000-7fea87800000 ---p 00000000 00:00 0 +7fea87800000-7fea88000000 rw-p 00000000 00:00 0 +7fea88000000-7fea88322000 rw-p 00000000 00:00 0 +7fea88322000-7fea8c000000 ---p 00000000 00:00 0 +7fea8c000000-7fea8c4ea000 rw-p 00000000 00:00 0 +7fea8c4ea000-7fea90000000 ---p 00000000 00:00 0 +7fea90000000-7fea90199000 rw-p 00000000 00:00 0 +7fea90199000-7fea94000000 ---p 00000000 00:00 0 +7fea94000000-7fea9425a000 rw-p 00000000 00:00 0 +7fea9425a000-7fea98000000 ---p 00000000 00:00 0 +7fea98000000-7fea98c8e000 rw-p 00000000 00:00 0 +7fea98c8e000-7fea9c000000 ---p 00000000 00:00 0 +7fea9c000000-7fea9c27c000 rw-p 00000000 00:00 0 +7fea9c27c000-7feaa0000000 ---p 00000000 00:00 0 +7feaa0000000-7feaa1726000 rw-p 00000000 00:00 0 +7feaa1726000-7feaa4000000 ---p 00000000 00:00 0 +7feaa4000000-7feaa5066000 rw-p 00000000 00:00 0 +7feaa5066000-7feaa8000000 ---p 00000000 00:00 0 +7feaa8000000-7feaa9107000 rw-p 00000000 00:00 0 +7feaa9107000-7feaac000000 ---p 00000000 00:00 0 +7feaac000000-7feaac400000 rw-p 00000000 00:00 0 +7feaac4f8000-7feaac4fc000 ---p 00000000 00:00 0 +7feaac4fc000-7feaac5f8000 rw-p 00000000 00:00 0 +7feaac5f8000-7feaac5f9000 ---p 00000000 00:00 0 +7feaac5f9000-7feaac7f9000 rw-p 00000000 00:00 0 +7feaac7f9000-7feaac7fa000 ---p 00000000 00:00 0 +7feaac7fa000-7feaacffa000 rw-p 00000000 00:00 0 +7feaacffa000-7feaacffb000 ---p 00000000 00:00 0 +7feaacffb000-7feaad7fb000 rw-p 00000000 00:00 0 +7feaad7fb000-7feaad7fc000 ---p 00000000 00:00 0 +7feaad7fc000-7feaadffc000 rw-p 00000000 00:00 0 +7feaadffc000-7feaadffd000 ---p 00000000 00:00 0 +7feaadffd000-7feaae7fd000 rw-p 00000000 00:00 0 +7feaae7fd000-7feaae7fe000 ---p 00000000 00:00 0 +7feaae7fe000-7feaaeffe000 rw-p 00000000 00:00 0 +7feaaeffe000-7feaaefff000 ---p 00000000 00:00 0 +7feaaefff000-7feaaf7ff000 rw-p 00000000 00:00 0 +7feaaf7ff000-7feaaf803000 ---p 00000000 00:00 0 +7feaaf803000-7feaaf8ff000 rw-p 00000000 00:00 0 +7feaaf8ff000-7feaaf903000 ---p 00000000 00:00 0 +7feaaf903000-7feaaf9ff000 rw-p 00000000 00:00 0 +7feaaf9ff000-7feaafa03000 ---p 00000000 00:00 0 +7feaafa03000-7feaafaff000 rw-p 00000000 00:00 0 +7feaafaff000-7feaafb03000 ---p 00000000 00:00 0 +7feaafb03000-7feab0000000 rw-p 00000000 00:00 0 +7feab0000000-7feab1459000 rw-p 00000000 00:00 0 +7feab1459000-7feab4000000 ---p 00000000 00:00 0 +7feab4000000-7feab4c69000 rw-p 00000000 00:00 0 +7feab4c69000-7feab8000000 ---p 00000000 00:00 0 +7feab8000000-7feab9065000 rw-p 00000000 00:00 0 +7feab9065000-7feabc000000 ---p 00000000 00:00 0 +7feabc000000-7feabc065000 rw-p 00000000 00:00 0 +7feabc065000-7feac0000000 ---p 00000000 00:00 0 +7feac0000000-7feac2b39000 rw-p 00000000 00:00 0 +7feac2b39000-7feac4000000 ---p 00000000 00:00 0 +7feac4000000-7feac705d000 rw-p 00000000 00:00 0 +7feac705d000-7feac8000000 ---p 00000000 00:00 0 +7feac8000000-7feac81a7000 rw-p 00000000 00:00 0 +7feac81a7000-7feacc000000 ---p 00000000 00:00 0 +7feacc000000-7feace819000 rw-p 00000000 00:00 0 +7feace819000-7fead0000000 ---p 00000000 00:00 0 +7fead0000000-7fead1374000 rw-p 00000000 00:00 0 +7fead1374000-7fead4000000 ---p 00000000 00:00 0 +7fead4000000-7fead40a8000 rw-p 00000000 00:00 0 +7fead40a8000-7fead8000000 ---p 00000000 00:00 0 +7fead8000000-7fead80e7000 rw-p 00000000 00:00 0 +7fead80e7000-7feadc000000 ---p 00000000 00:00 0 +7feadc000000-7feadcc80000 rw-p 00000000 00:00 0 +7feadcc80000-7feae0000000 ---p 00000000 00:00 0 +7feae0000000-7feae004f000 rw-p 00000000 00:00 0 +7feae004f000-7feae4000000 ---p 00000000 00:00 0 +7feae4000000-7feae45dc000 rw-p 00000000 00:00 0 +7feae45dc000-7feae8000000 ---p 00000000 00:00 0 +7feae8000000-7feae8111000 rw-p 00000000 00:00 0 +7feae8111000-7feaec000000 ---p 00000000 00:00 0 +7feaec000000-7feaed6ce000 rw-p 00000000 00:00 0 +7feaed6ce000-7feaf0000000 ---p 00000000 00:00 0 +7feaf0000000-7feaf0030000 rw-p 00000000 00:00 0 +7feaf0030000-7feaf4000000 ---p 00000000 00:00 0 +7feaf4000000-7feaf43bc000 rw-p 00000000 00:00 0 +7feaf43bc000-7feaf8000000 ---p 00000000 00:00 0 +7feaf8000000-7feaf82b8000 rw-p 00000000 00:00 0 +7feaf82b8000-7feafc000000 ---p 00000000 00:00 0 +7feafc000000-7feafc2be000 rw-p 00000000 00:00 0 +7feafc2be000-7feb00000000 ---p 00000000 00:00 0 +7feb00000000-7feb0029f000 rw-p 00000000 00:00 0 +7feb0029f000-7feb04000000 ---p 00000000 00:00 0 +7feb04000000-7feb04004000 ---p 00000000 00:00 0 +7feb04004000-7feb04100000 rw-p 00000000 00:00 0 +7feb04100000-7feb04104000 ---p 00000000 00:00 0 +7feb04104000-7feb04200000 rw-p 00000000 00:00 0 +7feb04200000-7feb04204000 ---p 00000000 00:00 0 +7feb04204000-7feb04300000 rw-p 00000000 00:00 0 +7feb04300000-7feb04304000 ---p 00000000 00:00 0 +7feb04304000-7feb04c00000 rw-p 00000000 00:00 0 +7feb04cfe000-7feb04d02000 ---p 00000000 00:00 0 +7feb04d02000-7feb04dfe000 rw-p 00000000 00:00 0 +7feb04dfe000-7feb04e02000 ---p 00000000 00:00 0 +7feb04e02000-7feb04efe000 rw-p 00000000 00:00 0 +7feb04efe000-7feb04f02000 ---p 00000000 00:00 0 +7feb04f02000-7feb04ffe000 rw-p 00000000 00:00 0 +7feb04ffe000-7feb05002000 ---p 00000000 00:00 0 +7feb05002000-7feb050fe000 rw-p 00000000 00:00 0 +7feb050fe000-7feb05102000 ---p 00000000 00:00 0 +7feb05102000-7feb05a00000 rw-p 00000000 00:00 0 +7feb05a00000-7feb05c3f000 r-xp 00000000 00:10d 1558256 /tmp/libnetty_tcnative_linux_x86_647032282263693345431.so (deleted) +7feb05c3f000-7feb05e3e000 ---p 0023f000 00:10d 1558256 /tmp/libnetty_tcnative_linux_x86_647032282263693345431.so (deleted) +7feb05e3e000-7feb05e52000 r--p 0023e000 00:10d 1558256 /tmp/libnetty_tcnative_linux_x86_647032282263693345431.so (deleted) +7feb05e52000-7feb05e53000 rw-p 00252000 00:10d 1558256 /tmp/libnetty_tcnative_linux_x86_647032282263693345431.so (deleted) +7feb05e53000-7feb05e55000 rw-p 00000000 00:00 0 +7feb05f00000-7feb05f04000 ---p 00000000 00:00 0 +7feb05f04000-7feb06100000 rw-p 00000000 00:00 0 +7feb06100000-7feb06300000 rw-p 00000000 00:00 0 +7feb06300000-7feb06400000 rw-p 00000000 00:00 0 +7feb06400000-7feb06580000 rw-p 00000000 00:00 0 +7feb06580000-7feb06800000 rw-p 00000000 00:00 0 +7feb06800000-7feb06f00000 rw-p 00000000 00:00 0 +7feb06f00000-7feb07000000 rw-p 00000000 00:00 0 +7feb070ff000-7feb07103000 ---p 00000000 00:00 0 +7feb07103000-7feb071ff000 rw-p 00000000 00:00 0 +7feb071ff000-7feb07200000 ---p 00000000 00:00 0 +7feb07200000-7feb07400000 rw-p 00000000 00:00 0 +7feb07400000-7feb07c00000 rw-p 00000000 00:00 0 +7feb07cff000-7feb07d03000 ---p 00000000 00:00 0 +7feb07d03000-7feb07dff000 rw-p 00000000 00:00 0 +7feb07dff000-7feb07e00000 ---p 00000000 00:00 0 +7feb07e00000-7feb08000000 rw-p 00000000 00:00 0 +7feb08000000-7feb080b1000 rw-p 00000000 00:00 0 +7feb080b1000-7feb0c000000 ---p 00000000 00:00 0 +7feb0c000000-7feb0c687000 rw-p 00000000 00:00 0 +7feb0c687000-7feb10000000 ---p 00000000 00:00 0 +7feb10000000-7feb1005b000 rw-p 00000000 00:00 0 +7feb1005b000-7feb14000000 ---p 00000000 00:00 0 +7feb14000000-7feb140b0000 rw-p 00000000 00:00 0 +7feb140b0000-7feb18000000 ---p 00000000 00:00 0 +7feb18000000-7feb19693000 rw-p 00000000 00:00 0 +7feb19693000-7feb1c000000 ---p 00000000 00:00 0 +7feb1c000000-7feb1d240000 rw-p 00000000 00:00 0 +7feb1d240000-7feb20000000 ---p 00000000 00:00 0 +7feb20000000-7feb20296000 rw-p 00000000 00:00 0 +7feb20296000-7feb24000000 ---p 00000000 00:00 0 +7feb24000000-7feb24047000 rw-p 00000000 00:00 0 +7feb24047000-7feb28000000 ---p 00000000 00:00 0 +7feb28000000-7feb2805f000 rw-p 00000000 00:00 0 +7feb2805f000-7feb2c000000 ---p 00000000 00:00 0 +7feb2c000000-7feb2d406000 rw-p 00000000 00:00 0 +7feb2d406000-7feb30000000 ---p 00000000 00:00 0 +7feb3007f000-7feb30080000 ---p 00000000 00:00 0 +7feb30080000-7feb30280000 rw-p 00000000 00:00 0 +7feb30280000-7feb31000000 rw-p 00000000 00:00 0 +7feb310ff000-7feb31103000 ---p 00000000 00:00 0 +7feb31103000-7feb311ff000 rw-p 00000000 00:00 0 +7feb311ff000-7feb31200000 ---p 00000000 00:00 0 +7feb31200000-7feb31400000 rw-p 00000000 00:00 0 +7feb31400000-7feb32000000 rw-p 00000000 00:00 0 +7feb320fe000-7feb32102000 ---p 00000000 00:00 0 +7feb32102000-7feb321fe000 rw-p 00000000 00:00 0 +7feb321fe000-7feb321ff000 ---p 00000000 00:00 0 +7feb321ff000-7feb323ff000 rw-p 00000000 00:00 0 +7feb323ff000-7feb32400000 ---p 00000000 00:00 0 +7feb32400000-7feb32600000 rw-p 00000000 00:00 0 +7feb32600000-7feb32a00000 rw-p 00000000 00:00 0 +7feb32afa000-7feb32afe000 ---p 00000000 00:00 0 +7feb32afe000-7feb32bfa000 rw-p 00000000 00:00 0 +7feb32bfa000-7feb32bfb000 ---p 00000000 00:00 0 +7feb32bfb000-7feb32dfb000 rw-p 00000000 00:00 0 +7feb32dfb000-7feb32dfc000 ---p 00000000 00:00 0 +7feb32dfc000-7feb32ffc000 rw-p 00000000 00:00 0 +7feb32ffc000-7feb32ffd000 ---p 00000000 00:00 0 +7feb32ffd000-7feb331fd000 rw-p 00000000 00:00 0 +7feb331fd000-7feb331fe000 ---p 00000000 00:00 0 +7feb331fe000-7feb333fe000 rw-p 00000000 00:00 0 +7feb333fe000-7feb333ff000 ---p 00000000 00:00 0 +7feb333ff000-7feb335ff000 rw-p 00000000 00:00 0 +7feb335ff000-7feb33600000 ---p 00000000 00:00 0 +7feb33600000-7feb33800000 rw-p 00000000 00:00 0 +7feb33800000-7feb340a0000 rw-p 00000000 00:00 0 +7feb340a0000-7feb38000000 ---p 00000000 00:00 0 +7feb38000000-7feb3bfff000 rw-p 00000000 00:00 0 +7feb3bfff000-7feb3c000000 ---p 00000000 00:00 0 +7feb3c000000-7feb3c113000 rw-p 00000000 00:00 0 +7feb3c113000-7feb40000000 ---p 00000000 00:00 0 +7feb40000000-7feb400e7000 rw-p 00000000 00:00 0 +7feb400e7000-7feb44000000 ---p 00000000 00:00 0 +7feb44000000-7feb44276000 rw-p 00000000 00:00 0 +7feb44276000-7feb48000000 ---p 00000000 00:00 0 +7feb48000000-7feb48100000 rw-p 00000000 00:00 0 +7feb48100000-7feb4c000000 ---p 00000000 00:00 0 +7feb4c000000-7feb4c112000 rw-p 00000000 00:00 0 +7feb4c112000-7feb50000000 ---p 00000000 00:00 0 +7feb50000000-7feb50101000 rw-p 00000000 00:00 0 +7feb50101000-7feb54000000 ---p 00000000 00:00 0 +7feb54000000-7feb540fe000 rw-p 00000000 00:00 0 +7feb540fe000-7feb58000000 ---p 00000000 00:00 0 +7feb58000000-7feb58200000 rw-p 00000000 00:00 0 +7feb582ff000-7feb58303000 ---p 00000000 00:00 0 +7feb58303000-7feb583ff000 rw-p 00000000 00:00 0 +7feb583ff000-7feb585ff000 rw-p 00000000 00:00 0 +7feb585ff000-7feb58600000 ---p 00000000 00:00 0 +7feb58600000-7feb58800000 rw-p 00000000 00:00 0 +7feb58800000-7feb58a00000 rw-p 00000000 00:00 0 +7feb58afe000-7feb58b02000 ---p 00000000 00:00 0 +7feb58b02000-7feb58bfe000 rw-p 00000000 00:00 0 +7feb58bfe000-7feb58dfe000 rw-p 00000000 00:00 0 +7feb58dfe000-7feb58dff000 ---p 00000000 00:00 0 +7feb58dff000-7feb58fff000 rw-p 00000000 00:00 0 +7feb58fff000-7feb59000000 ---p 00000000 00:00 0 +7feb59000000-7feb59200000 rw-p 00000000 00:00 0 +7feb59200000-7feb59400000 rw-p 00000000 00:00 0 +7feb594fc000-7feb59500000 ---p 00000000 00:00 0 +7feb59500000-7feb595fc000 rw-p 00000000 00:00 0 +7feb595fc000-7feb595fd000 ---p 00000000 00:00 0 +7feb595fd000-7feb597fd000 rw-p 00000000 00:00 0 +7feb597fd000-7feb597fe000 ---p 00000000 00:00 0 +7feb597fe000-7feb599fe000 rw-p 00000000 00:00 0 +7feb599fe000-7feb599ff000 ---p 00000000 00:00 0 +7feb599ff000-7feb59bff000 rw-p 00000000 00:00 0 +7feb59bff000-7feb59c00000 ---p 00000000 00:00 0 +7feb59c00000-7feb59e00000 rw-p 00000000 00:00 0 +7feb59e00000-7feb5a200000 rw-p 00000000 00:00 0 +7feb5a2fe000-7feb5a302000 ---p 00000000 00:00 0 +7feb5a302000-7feb5a3fe000 rw-p 00000000 00:00 0 +7feb5a3fe000-7feb5a3ff000 ---p 00000000 00:00 0 +7feb5a3ff000-7feb5a5ff000 rw-p 00000000 00:00 0 +7feb5a5ff000-7feb5a600000 ---p 00000000 00:00 0 +7feb5a600000-7feb5a800000 rw-p 00000000 00:00 0 +7feb5a800000-7feb5b000000 rw-p 00000000 00:00 0 +7feb5b000000-7feb5bc66000 r-xp 00000000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bc66000-7feb5bc67000 ---p 00c66000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bc67000-7feb5bce7000 r--p 00c66000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bce7000-7feb5bce8000 rw-p 00ce6000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bce8000-7feb5bceb000 r--p 00ce7000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bceb000-7feb5bcf2000 rw-p 00cea000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bcf2000-7feb5bf00000 rw-p 00000000 00:00 0 +7feb5bf00000-7feb5bf04000 ---p 00000000 00:00 0 +7feb5bf04000-7feb5c000000 rw-p 00000000 00:00 0 +7feb5c000000-7feb5c445000 rw-p 00000000 00:00 0 +7feb5c445000-7feb60000000 ---p 00000000 00:00 0 +7feb60000000-7feb603ca000 rw-p 00000000 00:00 0 +7feb603ca000-7feb64000000 ---p 00000000 00:00 0 +7feb64000000-7feb640e3000 rw-p 00000000 00:00 0 +7feb640e3000-7feb68000000 ---p 00000000 00:00 0 +7feb68000000-7feb6810a000 rw-p 00000000 00:00 0 +7feb6810a000-7feb6c000000 ---p 00000000 00:00 0 +7feb6c000000-7feb6c164000 rw-p 00000000 00:00 0 +7feb6c164000-7feb70000000 ---p 00000000 00:00 0 +7feb70000000-7feb70226000 rw-p 00000000 00:00 0 +7feb70226000-7feb74000000 ---p 00000000 00:00 0 +7feb74000000-7feb74507000 rw-p 00000000 00:00 0 +7feb74507000-7feb78000000 ---p 00000000 00:00 0 +7feb78000000-7feb78124000 rw-p 00000000 00:00 0 +7feb78124000-7feb7c000000 ---p 00000000 00:00 0 +7feb7c000000-7feb7c0fe000 rw-p 00000000 00:00 0 +7feb7c0fe000-7feb80000000 ---p 00000000 00:00 0 +7feb80000000-7feb8013b000 rw-p 00000000 00:00 0 +7feb8013b000-7feb84000000 ---p 00000000 00:00 0 +7feb84000000-7feb8476d000 rw-p 00000000 00:00 0 +7feb8476d000-7feb88000000 ---p 00000000 00:00 0 +7feb88000000-7feb88143000 rw-p 00000000 00:00 0 +7feb88143000-7feb8c000000 ---p 00000000 00:00 0 +7feb8c000000-7feb8c148000 rw-p 00000000 00:00 0 +7feb8c148000-7feb90000000 ---p 00000000 00:00 0 +7feb90000000-7feb90108000 rw-p 00000000 00:00 0 +7feb90108000-7feb94000000 ---p 00000000 00:00 0 +7feb94000000-7feb94443000 rw-p 00000000 00:00 0 +7feb94443000-7feb98000000 ---p 00000000 00:00 0 +7feb98000000-7feb98c45000 rw-p 00000000 00:00 0 +7feb98c45000-7feb9c000000 ---p 00000000 00:00 0 +7feb9c000000-7feb9c12d000 rw-p 00000000 00:00 0 +7feb9c12d000-7feba0000000 ---p 00000000 00:00 0 +7feba0000000-7feba0078000 rw-p 00000000 00:00 0 +7feba0078000-7feba4000000 ---p 00000000 00:00 0 +7feba4000000-7feba412e000 rw-p 00000000 00:00 0 +7feba412e000-7feba8000000 ---p 00000000 00:00 0 +7feba8000000-7feba86d3000 rw-p 00000000 00:00 0 +7feba86d3000-7febac000000 ---p 00000000 00:00 0 +7febac000000-7febac4db000 rw-p 00000000 00:00 0 +7febac4db000-7febb0000000 ---p 00000000 00:00 0 +7febb0000000-7febb0c6c000 rw-p 00000000 00:00 0 +7febb0c6c000-7febb4000000 ---p 00000000 00:00 0 +7febb4000000-7febb4120000 rw-p 00000000 00:00 0 +7febb4120000-7febb8000000 ---p 00000000 00:00 0 +7febb8000000-7febb8128000 rw-p 00000000 00:00 0 +7febb8128000-7febbc000000 ---p 00000000 00:00 0 +7febbc000000-7febbc38f000 rw-p 00000000 00:00 0 +7febbc38f000-7febc0000000 ---p 00000000 00:00 0 +7febc0000000-7febc0166000 rw-p 00000000 00:00 0 +7febc0166000-7febc4000000 ---p 00000000 00:00 0 +7febc4000000-7febc40bb000 rw-p 00000000 00:00 0 +7febc40bb000-7febc8000000 ---p 00000000 00:00 0 +7febc8000000-7febc84c8000 rw-p 00000000 00:00 0 +7febc84c8000-7febcc000000 ---p 00000000 00:00 0 +7febcc000000-7febcc136000 rw-p 00000000 00:00 0 +7febcc136000-7febd0000000 ---p 00000000 00:00 0 +7febd0000000-7febd0409000 rw-p 00000000 00:00 0 +7febd0409000-7febd4000000 ---p 00000000 00:00 0 +7febd4000000-7febd4e03000 rw-p 00000000 00:00 0 +7febd4e03000-7febd8000000 ---p 00000000 00:00 0 +7febd8000000-7febd8138000 rw-p 00000000 00:00 0 +7febd8138000-7febdc000000 ---p 00000000 00:00 0 +7febdc000000-7febdc0e1000 rw-p 00000000 00:00 0 +7febdc0e1000-7febe0000000 ---p 00000000 00:00 0 +7febe0000000-7febe10f8000 rw-p 00000000 00:00 0 +7febe10f8000-7febe4000000 ---p 00000000 00:00 0 +7febe4000000-7febe4153000 rw-p 00000000 00:00 0 +7febe4153000-7febe8000000 ---p 00000000 00:00 0 +7febe8000000-7febe8459000 rw-p 00000000 00:00 0 +7febe8459000-7febec000000 ---p 00000000 00:00 0 +7febec000000-7febec150000 rw-p 00000000 00:00 0 +7febec150000-7febf0000000 ---p 00000000 00:00 0 +7febf0000000-7febf00f1000 rw-p 00000000 00:00 0 +7febf00f1000-7febf4000000 ---p 00000000 00:00 0 +7febf4000000-7febf4081000 rw-p 00000000 00:00 0 +7febf4081000-7febf8000000 ---p 00000000 00:00 0 +7febf8000000-7febf80b7000 rw-p 00000000 00:00 0 +7febf80b7000-7febfc000000 ---p 00000000 00:00 0 +7febfc000000-7febfcc96000 rw-p 00000000 00:00 0 +7febfcc96000-7fec00000000 ---p 00000000 00:00 0 +7fec00000000-7fec007e6000 rw-p 00000000 00:00 0 +7fec007e6000-7fec04000000 ---p 00000000 00:00 0 +7fec04000000-7fec05051000 rw-p 00000000 00:00 0 +7fec05051000-7fec08000000 ---p 00000000 00:00 0 +7fec08000000-7fec0926b000 rw-p 00000000 00:00 0 +7fec0926b000-7fec0c000000 ---p 00000000 00:00 0 +7fec0c000000-7fec0d120000 rw-p 00000000 00:00 0 +7fec0d120000-7fec10000000 ---p 00000000 00:00 0 +7fec10000000-7fec10944000 rw-p 00000000 00:00 0 +7fec10944000-7fec14000000 ---p 00000000 00:00 0 +7fec14000000-7fec14ebc000 rw-p 00000000 00:00 0 +7fec14ebc000-7fec18000000 ---p 00000000 00:00 0 +7fec18000000-7fec1afd4000 rw-p 00000000 00:00 0 +7fec1afd4000-7fec1c000000 ---p 00000000 00:00 0 +7fec1c000000-7fec1c004000 ---p 00000000 00:00 0 +7fec1c004000-7fec1c100000 rw-p 00000000 00:00 0 +7fec1c100000-7fec1c104000 ---p 00000000 00:00 0 +7fec1c104000-7fec1c200000 rw-p 00000000 00:00 0 +7fec1c200000-7fec1c204000 ---p 00000000 00:00 0 +7fec1c204000-7fec1c300000 rw-p 00000000 00:00 0 +7fec1c300000-7fec1c304000 ---p 00000000 00:00 0 +7fec1c304000-7fec1c400000 rw-p 00000000 00:00 0 +7fec1c400000-7fec1c404000 ---p 00000000 00:00 0 +7fec1c404000-7fec1c500000 rw-p 00000000 00:00 0 +7fec1c500000-7fec1c504000 ---p 00000000 00:00 0 +7fec1c504000-7fec1c600000 rw-p 00000000 00:00 0 +7fec1c600000-7fec1c604000 ---p 00000000 00:00 0 +7fec1c604000-7fec1c700000 rw-p 00000000 00:00 0 +7fec1c700000-7fec1c704000 ---p 00000000 00:00 0 +7fec1c704000-7fec1c800000 rw-p 00000000 00:00 0 +7fec1c800000-7fec1c804000 ---p 00000000 00:00 0 +7fec1c804000-7fec1c900000 rw-p 00000000 00:00 0 +7fec1c900000-7fec1c904000 ---p 00000000 00:00 0 +7fec1c904000-7fec1ca00000 rw-p 00000000 00:00 0 +7fec1ca00000-7fec1ca04000 ---p 00000000 00:00 0 +7fec1ca04000-7fec1cb00000 rw-p 00000000 00:00 0 +7fec1cb00000-7fec1cb04000 ---p 00000000 00:00 0 +7fec1cb04000-7fec1cc00000 rw-p 00000000 00:00 0 +7fec1cc00000-7fec1cc04000 ---p 00000000 00:00 0 +7fec1cc04000-7fec1cd00000 rw-p 00000000 00:00 0 +7fec1cd00000-7fec1cd04000 ---p 00000000 00:00 0 +7fec1cd04000-7fec1ce00000 rw-p 00000000 00:00 0 +7fec1ce00000-7fec1ce04000 ---p 00000000 00:00 0 +7fec1ce04000-7fec1cf00000 rw-p 00000000 00:00 0 +7fec1cf00000-7fec1cf04000 ---p 00000000 00:00 0 +7fec1cf04000-7fec1d000000 rw-p 00000000 00:00 0 +7fec1d000000-7fec1d012000 r-xp 00000000 00:10d 1558258 /tmp/jffi13881990940772923834.so (deleted) +7fec1d012000-7fec1d211000 ---p 00012000 00:10d 1558258 /tmp/jffi13881990940772923834.so (deleted) +7fec1d211000-7fec1d212000 rw-p 00011000 00:10d 1558258 /tmp/jffi13881990940772923834.so (deleted) +7fec1d300000-7fec1d304000 ---p 00000000 00:00 0 +7fec1d304000-7fec1d700000 rw-p 00000000 00:00 0 +7fec1d700000-7fec1d800000 rw-p 00000000 00:00 0 +7fec1d800000-7fec1dc00000 rw-p 00000000 00:00 0 +7fec1dcf8000-7fec1dcfc000 ---p 00000000 00:00 0 +7fec1dcfc000-7fec1ddf8000 rw-p 00000000 00:00 0 +7fec1ddf8000-7fec1ddfc000 ---p 00000000 00:00 0 +7fec1ddfc000-7fec1def8000 rw-p 00000000 00:00 0 +7fec1def8000-7fec1defc000 ---p 00000000 00:00 0 +7fec1defc000-7fec1dff8000 rw-p 00000000 00:00 0 +7fec1dff8000-7fec1dffc000 ---p 00000000 00:00 0 +7fec1dffc000-7fec1e0f8000 rw-p 00000000 00:00 0 +7fec1e0f8000-7fec1e0fc000 ---p 00000000 00:00 0 +7fec1e0fc000-7fec1e1f8000 rw-p 00000000 00:00 0 +7fec1e1f8000-7fec1e1fc000 ---p 00000000 00:00 0 +7fec1e1fc000-7fec1e2f8000 rw-p 00000000 00:00 0 +7fec1e2f8000-7fec1e2fc000 ---p 00000000 00:00 0 +7fec1e2fc000-7fec1e3f8000 rw-p 00000000 00:00 0 +7fec1e3f8000-7fec1e3fc000 ---p 00000000 00:00 0 +7fec1e3fc000-7fec1e4f8000 rw-p 00000000 00:00 0 +7fec1e4f8000-7fec1e4fc000 ---p 00000000 00:00 0 +7fec1e4fc000-7fec1e5f8000 rw-p 00000000 00:00 0 +7fec1e5f8000-7fec1e5fc000 ---p 00000000 00:00 0 +7fec1e5fc000-7fec1e6f8000 rw-p 00000000 00:00 0 +7fec1e6f8000-7fec1e6fc000 ---p 00000000 00:00 0 +7fec1e6fc000-7fec1e7f8000 rw-p 00000000 00:00 0 +7fec1e7f8000-7fec1e7fc000 ---p 00000000 00:00 0 +7fec1e7fc000-7fec1e8f8000 rw-p 00000000 00:00 0 +7fec1e8f8000-7fec1e8fc000 ---p 00000000 00:00 0 +7fec1e8fc000-7fec1e9f8000 rw-p 00000000 00:00 0 +7fec1e9f8000-7fec1e9fc000 ---p 00000000 00:00 0 +7fec1e9fc000-7fec1eaf8000 rw-p 00000000 00:00 0 +7fec1eaf8000-7fec1eafc000 ---p 00000000 00:00 0 +7fec1eafc000-7fec1ebf8000 rw-p 00000000 00:00 0 +7fec1ebf8000-7fec1ebf9000 ---p 00000000 00:00 0 +7fec1ebf9000-7fec1ecfa000 rw-p 00000000 00:00 0 +7fec1ecfa000-7fec1ecfb000 ---p 00000000 00:00 0 +7fec1ecfb000-7fec1edfc000 rw-p 00000000 00:00 0 +7fec1edfc000-7fec1edfd000 ---p 00000000 00:00 0 +7fec1edfd000-7fec1eefe000 rw-p 00000000 00:00 0 +7fec1eefe000-7fec1eeff000 ---p 00000000 00:00 0 +7fec1eeff000-7fec1f100000 rw-p 00000000 00:00 0 +7fec1f100000-7fec1f500000 rw-p 00000000 00:00 0 +7fec1f500000-7fec1f600000 rw-p 00000000 00:00 0 +7fec1f600000-7fec1f800000 rw-p 00000000 00:00 0 +7fec1f8f8000-7fec1f8f9000 ---p 00000000 00:00 0 +7fec1f8f9000-7fec1f9fa000 rw-p 00000000 00:00 0 +7fec1f9fa000-7fec1f9fb000 ---p 00000000 00:00 0 +7fec1f9fb000-7fec1fafc000 rw-p 00000000 00:00 0 +7fec1fafc000-7fec1fafd000 ---p 00000000 00:00 0 +7fec1fafd000-7fec1fbfe000 rw-p 00000000 00:00 0 +7fec1fbfe000-7fec1fbff000 ---p 00000000 00:00 0 +7fec1fbff000-7fec1fd00000 rw-p 00000000 00:00 0 +7fec1fd00000-7fec1fd04000 ---p 00000000 00:00 0 +7fec1fd04000-7fec1fe00000 rw-p 00000000 00:00 0 +7fec1fe00000-7fec1fe04000 ---p 00000000 00:00 0 +7fec1fe04000-7fec1ff00000 rw-p 00000000 00:00 0 +7fec1ff00000-7fec1ff04000 ---p 00000000 00:00 0 +7fec1ff04000-7fec20000000 rw-p 00000000 00:00 0 +7fec20000000-7fec20d51000 rw-p 00000000 00:00 0 +7fec20d51000-7fec24000000 ---p 00000000 00:00 0 +7fec24000000-7fec24cba000 rw-p 00000000 00:00 0 +7fec24cba000-7fec28000000 ---p 00000000 00:00 0 +7fec28000000-7fec29187000 rw-p 00000000 00:00 0 +7fec29187000-7fec2c000000 ---p 00000000 00:00 0 +7fec2c000000-7fec2cf55000 rw-p 00000000 00:00 0 +7fec2cf55000-7fec30000000 ---p 00000000 00:00 0 +7fec30000000-7fec30b47000 rw-p 00000000 00:00 0 +7fec30b47000-7fec34000000 ---p 00000000 00:00 0 +7fec34000000-7fec34e8c000 rw-p 00000000 00:00 0 +7fec34e8c000-7fec38000000 ---p 00000000 00:00 0 +7fec38000000-7fec39305000 rw-p 00000000 00:00 0 +7fec39305000-7fec3c000000 ---p 00000000 00:00 0 +7fec3c000000-7fec3dbd5000 rw-p 00000000 00:00 0 +7fec3dbd5000-7fec40000000 ---p 00000000 00:00 0 +7fec40000000-7fec40263000 rw-p 00000000 00:00 0 +7fec40263000-7fec44000000 ---p 00000000 00:00 0 +7fec44000000-7fec47ff9000 rw-p 00000000 00:00 0 +7fec47ff9000-7fec48000000 ---p 00000000 00:00 0 +7fec48000000-7fec4af67000 rw-p 00000000 00:00 0 +7fec4af67000-7fec4c000000 ---p 00000000 00:00 0 +7fec4c000000-7fec4c62e000 rw-p 00000000 00:00 0 +7fec4c62e000-7fec50000000 ---p 00000000 00:00 0 +7fec50000000-7fec50254000 rw-p 00000000 00:00 0 +7fec50254000-7fec54000000 ---p 00000000 00:00 0 +7fec54000000-7fec58000000 rw-p 00000000 00:00 0 +7fec58000000-7fec58425000 rw-p 00000000 00:00 0 +7fec58425000-7fec5c000000 ---p 00000000 00:00 0 +7fec5c000000-7fec5c479000 rw-p 00000000 00:00 0 +7fec5c479000-7fec60000000 ---p 00000000 00:00 0 +7fec60000000-7fec6068d000 rw-p 00000000 00:00 0 +7fec6068d000-7fec64000000 ---p 00000000 00:00 0 +7fec64000000-7fec643a6000 rw-p 00000000 00:00 0 +7fec643a6000-7fec68000000 ---p 00000000 00:00 0 +7fec68000000-7fec682f9000 rw-p 00000000 00:00 0 +7fec682f9000-7fec6c000000 ---p 00000000 00:00 0 +7fec6c04b000-7fec6c04c000 ---p 00000000 00:00 0 +7fec6c04c000-7fec6c14d000 rw-p 00000000 00:00 0 +7fec6c14d000-7fec6c14e000 ---p 00000000 00:00 0 +7fec6c14e000-7fec6c24f000 rw-p 00000000 00:00 0 +7fec6c24f000-7fec6c250000 ---p 00000000 00:00 0 +7fec6c250000-7fec6c351000 rw-p 00000000 00:00 0 +7fec6c351000-7fec6c352000 ---p 00000000 00:00 0 +7fec6c352000-7fec6c453000 rw-p 00000000 00:00 0 +7fec6c453000-7fec6c457000 ---p 00000000 00:00 0 +7fec6c457000-7fec6c553000 rw-p 00000000 00:00 0 +7fec6c553000-7fec6c557000 ---p 00000000 00:00 0 +7fec6c557000-7fec6c653000 rw-p 00000000 00:00 0 +7fec6c653000-7fec6c657000 ---p 00000000 00:00 0 +7fec6c657000-7fec6c753000 rw-p 00000000 00:00 0 +7fec6c753000-7fec6c757000 ---p 00000000 00:00 0 +7fec6c757000-7fec6c853000 rw-p 00000000 00:00 0 +7fec6c853000-7fec6c857000 ---p 00000000 00:00 0 +7fec6c857000-7fec6c953000 rw-p 00000000 00:00 0 +7fec6c953000-7fec6c957000 ---p 00000000 00:00 0 +7fec6c957000-7fec6ca53000 rw-p 00000000 00:00 0 +7fec6ca53000-7fec6ca57000 ---p 00000000 00:00 0 +7fec6ca57000-7fec6cb53000 rw-p 00000000 00:00 0 +7fec6cb53000-7fec6ce54000 rw-p 00000000 00:00 0 +7fec6ce5d000-7fec6d9d6000 rw-p 00000000 00:00 0 +7fec6d9d6000-7fec6da70000 r--p 00000000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6da70000-7fec6db80000 r-xp 0009a000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6db80000-7fec6dbef000 r--p 001aa000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6dbef000-7fec6dbfa000 r--p 00218000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6dbfa000-7fec6dbfd000 rw-p 00223000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6dbfd000-7fec6dc00000 rw-p 00000000 00:00 0 +7fec6dc00000-7fec6dc32000 r-xp 00000000 00:10d 1567538 /tmp/libjavaProfiler16799629445378392692.so +7fec6dc32000-7fec6de32000 ---p 00032000 00:10d 1567538 /tmp/libjavaProfiler16799629445378392692.so +7fec6de32000-7fec6de34000 rw-p 00032000 00:10d 1567538 /tmp/libjavaProfiler16799629445378392692.so +7fec6de34000-7fec6de35000 rw-p 00000000 00:00 0 +7fec6df00000-7fec6df04000 ---p 00000000 00:00 0 +7fec6df04000-7fec6e300000 rw-p 00000000 00:00 0 +7fec6e300000-7fec6e400000 rw-p 00000000 00:00 0 +7fec6e400000-7fec6e700000 rw-p 00000000 00:00 0 +7fec6e700000-7fec6e800000 rw-p 00000000 00:00 0 +7fec6e8ce000-7fec6e8d2000 ---p 00000000 00:00 0 +7fec6e8d2000-7fec6e9ce000 rw-p 00000000 00:00 0 +7fec6e9ce000-7fec6eb17000 r--s 01354000 00:10d 1567502 /usr/local/app/agent/dd-java-agent.jar +7fec6eb17000-7fec6eb1b000 ---p 00000000 00:00 0 +7fec6eb1b000-7fec6ec17000 rw-p 00000000 00:00 0 +7fec6ec17000-7fec6ec1b000 ---p 00000000 00:00 0 +7fec6ec1b000-7fec6ed17000 rw-p 00000000 00:00 0 +7fec6ed17000-7fec6ed1b000 ---p 00000000 00:00 0 +7fec6ed1b000-7fec6ee17000 rw-p 00000000 00:00 0 +7fec6ee17000-7fec6ee1b000 ---p 00000000 00:00 0 +7fec6ee1b000-7fec6ef17000 rw-p 00000000 00:00 0 +7fec6ef17000-7fec6ef1b000 ---p 00000000 00:00 0 +7fec6ef1b000-7fec6f017000 rw-p 00000000 00:00 0 +7fec6f017000-7fec6f01b000 ---p 00000000 00:00 0 +7fec6f01b000-7fec6f117000 rw-p 00000000 00:00 0 +7fec6f117000-7fec6f11b000 ---p 00000000 00:00 0 +7fec6f11b000-7fec6f217000 rw-p 00000000 00:00 0 +7fec6f217000-7fec6f21b000 ---p 00000000 00:00 0 +7fec6f21b000-7fec6f317000 rw-p 00000000 00:00 0 +7fec6f317000-7fec6f600000 r--p 00000000 00:10d 1559405 /usr/lib/locale/locale-archive +7fec6f600000-7fec6f604000 ---p 00000000 00:00 0 +7fec6f604000-7fec6f700000 rw-p 00000000 00:00 0 +7fec6f700000-7fec6f704000 ---p 00000000 00:00 0 +7fec6f704000-7fec6fc00000 rw-p 00000000 00:00 0 +7fec6fc00000-7fec70000000 rw-p 00000000 00:00 0 +7fec700bf000-7fec700cf000 rw-p 00000000 00:00 0 +7fec700cf000-7fec700d1000 r--p 00000000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d1000-7fec700d4000 r-xp 00002000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d4000-7fec700d5000 r--p 00005000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d5000-7fec700d6000 ---p 00006000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d6000-7fec700d7000 r--p 00006000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d7000-7fec700d8000 rw-p 00007000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d8000-7fec700df000 r--s 00000000 00:10d 1559802 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache +7fec700df000-7fec700e0000 r--p 00000000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e0000-7fec700e1000 r-xp 00001000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e1000-7fec700e2000 r--p 00002000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e2000-7fec700e3000 r--p 00002000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e3000-7fec700e4000 rw-p 00003000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e4000-7fec700e5000 ---p 00000000 00:00 0 +7fec700e5000-7fec98000000 rw-p 00000000 00:00 0 +7fec98000000-7fec982d2000 rw-p 00000000 00:00 0 +7fec982d2000-7fec9c000000 ---p 00000000 00:00 0 +7fec9c003000-7fec9c013000 rw-p 00000000 00:00 0 +7fec9c013000-7fec9c016000 r--p 00000000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c016000-7fec9c02d000 r-xp 00003000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c02d000-7fec9c031000 r--p 0001a000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c031000-7fec9c032000 r--p 0001d000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c032000-7fec9c033000 rw-p 0001e000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c034000-7fec9c035000 rw-p 00000000 00:00 0 +7fec9c035000-7fec9c039000 r--p 00000000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c039000-7fec9c040000 r-xp 00004000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c040000-7fec9c042000 r--p 0000b000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c042000-7fec9c043000 r--p 0000c000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c043000-7fec9c045000 rw-p 0000d000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c045000-7fec9c047000 r--p 00000000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c047000-7fec9c04a000 r-xp 00002000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c04a000-7fec9c04b000 r--p 00005000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c04b000-7fec9c04c000 ---p 00006000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c04c000-7fec9c04e000 rw-p 00006000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c04e000-7fec9c050000 r--p 00000000 00:10d 1566435 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libzip.so +7fec9c050000-7fec9c054000 r-xp 00002000 00:10d 1566435 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libzip.so +7fec9c054000-7fec9c056000 r--p 00006000 00:10d 1566435 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libzip.so +7fec9c056000-7fec9c058000 rw-p 00007000 00:10d 1566435 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libzip.so +7fec9c058000-7fec9c05c000 r--p 00000000 00:10d 1566426 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnet.so +7fec9c05c000-7fec9c06a000 r-xp 00004000 00:10d 1566426 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnet.so +7fec9c06a000-7fec9c06e000 r--p 00012000 00:10d 1566426 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnet.so +7fec9c06e000-7fec9c070000 rw-p 00015000 00:10d 1566426 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnet.so +7fec9c070000-7fec9d474000 rw-p 00000000 00:00 0 +7fec9d474000-7feca00b4000 rwxp 00000000 00:00 0 +7feca00b4000-7feca49ab000 ---p 00000000 00:00 0 +7feca49ab000-7feca4c1b000 rwxp 00000000 00:00 0 +7feca4c1b000-7feca4f3d000 ---p 00000000 00:00 0 +7feca4f3d000-7feca8ccd000 rwxp 00000000 00:00 0 +7feca8ccd000-7fecac474000 ---p 00000000 00:00 0 +7fecac474000-7fecb4000000 r--s 00000000 00:10d 1566436 /usr/lib/jvm/temurin-17-jdk-amd64/lib/modules +7fecb4000000-7fecb78a9000 rw-p 00000000 00:00 0 +7fecb78a9000-7fecb8000000 ---p 00000000 00:00 0 +7fecb8000000-7fecb8001000 r-xp 00000000 00:00 0 +7fecb8001000-7fecb8004000 r--p 00000000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8004000-7fecb8005000 r-xp 00003000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8005000-7fecb8006000 r--p 00004000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8006000-7fecb8007000 r--p 00004000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8007000-7fecb8008000 rw-p 00005000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8008000-7fecb800f000 r--p 00000000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb800f000-7fecb8018000 r-xp 00007000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb8018000-7fecb801c000 r--p 00010000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb801c000-7fecb801d000 ---p 00014000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb801d000-7fecb801f000 rw-p 00014000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb801f000-7fecb8024000 r--p 00000000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb8024000-7fecb8065000 r-xp 00005000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb8065000-7fecb80ee000 r--p 00046000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb80ee000-7fecb80ef000 r--p 000ce000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb80ef000-7fecb80f0000 rw-p 000cf000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb80f0000-7fecb8c7e000 rw-p 00000000 00:00 0 +7fecb8c7e000-7fecb8c7f000 ---p 00000000 00:00 0 +7fecb8c7f000-7fecb9d80000 rw-p 00000000 00:00 0 +7fecb9d80000-7fecbb1fd000 rw-p 00000000 00:00 0 +7fecbb1fd000-7fecbb26c000 ---p 00000000 00:00 0 +7fecbb26c000-7fecbb2c5000 rw-p 00000000 00:00 0 +7fecbb2c5000-7fecbb357000 ---p 00000000 00:00 0 +7fecbb357000-7fecbb35c000 rw-p 00000000 00:00 0 +7fecbb35c000-7fecbb363000 ---p 00000000 00:00 0 +7fecbb363000-7fecbb36b000 rw-s 00000000 00:10d 1567537 /tmp/hsperfdata_root/7 +7fecbb36b000-7fecbb36e000 r--p 00000000 00:10d 1566415 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjdwp.so +7fecbb36e000-7fecbb39b000 r-xp 00003000 00:10d 1566415 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjdwp.so +7fecbb39b000-7fecbb3a9000 r--p 00030000 00:10d 1566415 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjdwp.so +7fecbb3a9000-7fecbb3ab000 rw-p 0003d000 00:10d 1566415 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjdwp.so +7fecbb3ab000-7fecbb3ac000 rw-p 00000000 00:00 0 +7fecbb3ac000-7fecbb3b9000 r--p 00000000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3b9000-7fecbb3cb000 r-xp 0000d000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3cb000-7fecbb3d1000 r--p 0001f000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3d1000-7fecbb3d2000 ---p 00025000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3d2000-7fecbb3d4000 rw-p 00025000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3d4000-7fecbb3d5000 rw-p 00000000 00:00 0 +7fecbb3d5000-7fecbb3d7000 r--p 00000000 00:10d 1566407 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libinstrument.so +7fecbb3d7000-7fecbb3dd000 r-xp 00002000 00:10d 1566407 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libinstrument.so +7fecbb3dd000-7fecbb3e0000 r--p 00008000 00:10d 1566407 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libinstrument.so +7fecbb3e0000-7fecbb3e2000 rw-p 0000a000 00:10d 1566407 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libinstrument.so +7fecbb3e2000-7fecbb3e6000 r--p 00000000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb3e6000-7fecbb3f9000 r-xp 00004000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb3f9000-7fecbb3ff000 r--p 00017000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb3ff000-7fecbb400000 r--p 0001c000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb400000-7fecbb402000 rw-p 0001d000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb402000-7fecbb406000 ---p 00000000 00:00 0 +7fecbb406000-7fecbb502000 rw-p 00000000 00:00 0 +7fecbb502000-7fecbb503000 r--p 00000000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb503000-7fecbb504000 r-xp 00001000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb504000-7fecbb505000 r--p 00002000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb505000-7fecbb506000 r--p 00002000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb506000-7fecbb507000 rw-p 00003000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb507000-7fecbb759000 r--p 00000000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbb759000-7fecbc476000 r-xp 00252000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbc476000-7fecbc702000 r--p 00f6f000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbc702000-7fecbc7ba000 r--p 011fa000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbc7ba000-7fecbc7f0000 rw-p 012b2000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbc7f0000-7fecbc84a000 rw-p 00000000 00:00 0 +7fecbc84a000-7fecbc94b000 rw-s 00000000 00:01 3084 /memfd:allocation_ring_buffer (deleted) +7fecbc94b000-7fecbca4b000 rw-s 00001000 00:01 3084 /memfd:allocation_ring_buffer (deleted) +7fecbca4b000-7fecbca5f000 r--p 00000000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbca5f000-7fecbcb12000 r-xp 00014000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbcb12000-7fecbcb48000 r--p 000c7000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbcb48000-7fecbcb4f000 r--p 000fd000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbcb4f000-7fecbcb51000 rw-p 00104000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbcb51000-7fecbcb55000 rw-p 00000000 00:00 0 +7fecbcb55000-7fecbcb63000 r--p 00000000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcb63000-7fecbcbdf000 r-xp 0000e000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcbdf000-7fecbcc3a000 r--p 0008a000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcc3a000-7fecbcc3b000 r--p 000e4000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcc3b000-7fecbcc3c000 rw-p 000e5000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcc3c000-7fecbcc3f000 rw-p 00000000 00:00 0 +7fecbcc3f000-7fecbcc67000 r--p 00000000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbcc67000-7fecbcdfc000 r-xp 00028000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbcdfc000-7fecbce54000 r--p 001bd000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbce54000-7fecbce57000 r--p 00214000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbce57000-7fecbce5a000 rw-p 00217000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbce5a000-7fecbce67000 rw-p 00000000 00:00 0 +7fecbce67000-7fecbce68000 r--p 00000000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce68000-7fecbce69000 r-xp 00001000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce69000-7fecbce6a000 r--p 00002000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce6a000-7fecbce6b000 r--p 00002000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce6b000-7fecbce6c000 rw-p 00003000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce6c000-7fecbce6e000 rw-p 00000000 00:00 0 +7fecbce6e000-7fecbce6f000 r--p 00000000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce6f000-7fecbce70000 r-xp 00001000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce70000-7fecbce71000 r--p 00002000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce71000-7fecbce72000 r--p 00002000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce72000-7fecbce73000 rw-p 00003000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce73000-7fecbce76000 r--p 00000000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce76000-7fecbce80000 r-xp 00003000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce80000-7fecbce83000 r--p 0000d000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce83000-7fecbce84000 ---p 00010000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce84000-7fecbce86000 rw-p 00010000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce86000-7fecbce88000 r--p 00000000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbce88000-7fecbce99000 r-xp 00002000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbce99000-7fecbce9f000 r--p 00013000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbce9f000-7fecbcea0000 ---p 00019000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbcea0000-7fecbcea1000 r--p 00019000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbcea1000-7fecbcea2000 rw-p 0001a000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbcea2000-7fecbcea3000 ---p 00000000 00:00 0 +7fecbcea3000-7fecbcea4000 r--p 00000000 00:00 0 +7fecbcea4000-7fecbcea5000 r--p 00000000 00:10d 1567535 /tmp/libdd_loader.so-71a21cd2a3a607ab9e5daa8fa34550462173a585 +7fecbcea5000-7fecbcea8000 r-xp 00001000 00:10d 1567535 /tmp/libdd_loader.so-71a21cd2a3a607ab9e5daa8fa34550462173a585 +7fecbcea8000-7fecbcea9000 r--p 00004000 00:10d 1567535 /tmp/libdd_loader.so-71a21cd2a3a607ab9e5daa8fa34550462173a585 +7fecbcea9000-7fecbceab000 rw-p 00004000 00:10d 1567535 /tmp/libdd_loader.so-71a21cd2a3a607ab9e5daa8fa34550462173a585 +7fecbceab000-7fecbcead000 rw-p 00000000 00:00 0 +7fecbcead000-7fecbceaf000 r--p 00000000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fecbceaf000-7fecbced9000 r-xp 00002000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fecbced9000-7fecbcee4000 r--p 0002c000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fecbcee4000-7fecbcee5000 ---p 00000000 00:00 0 +7fecbcee5000-7fecbcee7000 r--p 00037000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fecbcee7000-7fecbcee9000 rw-p 00039000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7ffe063ea000-7ffe0640c000 rw-p 00000000 00:00 0 [stack] +7ffe0650d000-7ffe06511000 r--p 00000000 00:00 0 [vvar] +7ffe06511000-7ffe06513000 r-xp 00000000 00:00 0 [vdso] +ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] diff --git a/test/data/dso-ut/step-2/proc/2/maps b/test/data/dso-ut/step-2/proc/2/maps new file mode 100644 index 000000000..088d5bd19 --- /dev/null +++ b/test/data/dso-ut/step-2/proc/2/maps @@ -0,0 +1,1759 @@ +380000000-800000000 rw-p 00000000 00:00 0 +800000000-800453000 rw-p 00001000 00:10d 1566445 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/classes.jsa +800453000-800bd5000 rw-p 00454000 00:10d 1566445 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/classes.jsa +800bd5000-800c00000 ---p 00000000 00:00 0 +800c00000-800c40000 rw-p 00000000 00:00 0 +800c40000-800cc0000 rw-p 00000000 00:00 0 +800cc0000-800d00000 rw-p 00000000 00:00 0 +800d00000-800e40000 rw-p 00000000 00:00 0 +800e40000-800e80000 rw-p 00000000 00:00 0 +800e80000-800ee0000 rw-p 00000000 00:00 0 +800ee0000-800f80000 rw-p 00000000 00:00 0 +800f80000-8010e0000 rw-p 00000000 00:00 0 +8010e0000-801100000 rw-p 00000000 00:00 0 +801100000-801240000 rw-p 00000000 00:00 0 +801240000-801280000 rw-p 00000000 00:00 0 +801280000-801300000 rw-p 00000000 00:00 0 +801300000-801700000 rw-p 00000000 00:00 0 +801700000-801900000 rw-p 00000000 00:00 0 +801900000-801a50000 rw-p 00000000 00:00 0 +801a50000-840c00000 ---p 00000000 00:00 0 +5612bbd64000-5612bbd65000 r--p 00000000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bbd65000-5612bbd66000 r-xp 00001000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bbd66000-5612bbd67000 r--p 00002000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bbd67000-5612bbd68000 r--p 00002000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bbd68000-5612bbd69000 rw-p 00003000 00:10d 1565949 /usr/lib/jvm/temurin-17-jdk-amd64/bin/java +5612bc2e1000-5612bc5ad000 rw-p 00000000 00:00 0 [heap] +7fea15ffe000-7fea1dc70000 rw-p 00000000 00:00 0 +7fea1dc70000-7fea1e000000 ---p 00000000 00:00 0 +7fea1e043000-7fea1e843000 rw-p 00000000 00:00 0 +7fea1ec00000-7fea1f5c0000 rw-p 00000000 00:00 0 +7fea1f5c0000-7fea1f600000 rw-p 00000000 00:00 0 +7fea1f600000-7fea1f780000 rw-p 00000000 00:00 0 +7fea1f780000-7fea1f800000 rw-p 00000000 00:00 0 +7fea1f800000-7fea1f980000 rw-p 00000000 00:00 0 +7fea1f980000-7fea1fa00000 rw-p 00000000 00:00 0 +7fea1fa00000-7fea1fb00000 rw-p 00000000 00:00 0 +7fea1fb00000-7fea1fbb0000 rw-p 00000000 00:00 0 +7fea1fbb0000-7fea1fc00000 ---p 00000000 00:00 0 +7fea1fcff000-7fea1ffff000 rw-p 00000000 00:00 0 +7fea1ffff000-7fea24000000 rw-p 00000000 00:00 0 +7fea24000000-7fea25807000 rw-p 00000000 00:00 0 +7fea25807000-7fea28000000 ---p 00000000 00:00 0 +7fea28000000-7fea2bffd000 rw-p 00000000 00:00 0 +7fea2bffd000-7fea2c000000 ---p 00000000 00:00 0 +7fea2c000000-7fea2d9be000 rw-p 00000000 00:00 0 +7fea2d9be000-7fea30000000 ---p 00000000 00:00 0 +7fea30228000-7fea3022c000 ---p 00000000 00:00 0 +7fea3022c000-7fea30729000 rw-p 00000000 00:00 0 +7fea30729000-7fea309a9000 rw-p 00000000 00:00 0 +7fea309a9000-7fea309aa000 ---p 00000000 00:00 0 +7fea309aa000-7fea311aa000 rw-p 00000000 00:00 0 +7fea311aa000-7fea311ab000 ---p 00000000 00:00 0 +7fea311ab000-7fea319ab000 rw-p 00000000 00:00 0 +7fea319ab000-7fea319af000 ---p 00000000 00:00 0 +7fea319af000-7fea31aab000 rw-p 00000000 00:00 0 +7fea31ae1000-7fea31ae5000 ---p 00000000 00:00 0 +7fea31ae5000-7fea31be1000 rw-p 00000000 00:00 0 +7fea31be1000-7fea320e1000 rw-p 00000000 00:00 0 +7fea320e1000-7fea320e5000 ---p 00000000 00:00 0 +7fea320e5000-7fea321e1000 rw-p 00000000 00:00 0 +7fea321e1000-7fea321e5000 ---p 00000000 00:00 0 +7fea321e5000-7fea322e1000 rw-p 00000000 00:00 0 +7fea322e1000-7fea322e5000 ---p 00000000 00:00 0 +7fea322e5000-7fea323e1000 rw-p 00000000 00:00 0 +7fea323e1000-7fea323e5000 ---p 00000000 00:00 0 +7fea323e5000-7fea324e1000 rw-p 00000000 00:00 0 +7fea324e1000-7fea324e5000 ---p 00000000 00:00 0 +7fea324e5000-7fea325e1000 rw-p 00000000 00:00 0 +7fea325e1000-7fea325e5000 ---p 00000000 00:00 0 +7fea325e5000-7fea326e1000 rw-p 00000000 00:00 0 +7fea326e1000-7fea32be1000 rw-p 00000000 00:00 0 +7fea32be1000-7fea32be5000 ---p 00000000 00:00 0 +7fea32be5000-7fea32ce1000 rw-p 00000000 00:00 0 +7fea32ce1000-7fea32ce5000 ---p 00000000 00:00 0 +7fea32ce5000-7fea32de1000 rw-p 00000000 00:00 0 +7fea32de1000-7fea32de5000 ---p 00000000 00:00 0 +7fea32de5000-7fea32ee1000 rw-p 00000000 00:00 0 +7fea32ee1000-7fea33161000 rw-p 00000000 00:00 0 +7fea331a8000-7fea331ac000 ---p 00000000 00:00 0 +7fea331ac000-7fea332a8000 rw-p 00000000 00:00 0 +7fea332a8000-7fea332ac000 ---p 00000000 00:00 0 +7fea332ac000-7fea333a8000 rw-p 00000000 00:00 0 +7fea333a8000-7fea336a8000 rw-p 00000000 00:00 0 +7fea336a8000-7fea336ac000 ---p 00000000 00:00 0 +7fea336ac000-7fea337a8000 rw-p 00000000 00:00 0 +7fea337a8000-7fea337ac000 ---p 00000000 00:00 0 +7fea337ac000-7fea338a8000 rw-p 00000000 00:00 0 +7fea338a8000-7fea338ac000 ---p 00000000 00:00 0 +7fea338ac000-7fea339a8000 rw-p 00000000 00:00 0 +7fea339a8000-7fea339ac000 ---p 00000000 00:00 0 +7fea339ac000-7fea33aa8000 rw-p 00000000 00:00 0 +7fea33aa8000-7fea33aac000 ---p 00000000 00:00 0 +7fea33aac000-7fea33ba8000 rw-p 00000000 00:00 0 +7fea33ba8000-7fea33bac000 ---p 00000000 00:00 0 +7fea33bac000-7fea33ca8000 rw-p 00000000 00:00 0 +7fea33ca8000-7fea33cac000 ---p 00000000 00:00 0 +7fea33cac000-7fea33da8000 rw-p 00000000 00:00 0 +7fea33da8000-7fea33dac000 ---p 00000000 00:00 0 +7fea33dac000-7fea33ea8000 rw-p 00000000 00:00 0 +7fea33ea8000-7fea33eac000 ---p 00000000 00:00 0 +7fea33eac000-7fea33fa8000 rw-p 00000000 00:00 0 +7fea33fa8000-7fea33fac000 ---p 00000000 00:00 0 +7fea33fac000-7fea340a8000 rw-p 00000000 00:00 0 +7fea340a8000-7fea340ac000 ---p 00000000 00:00 0 +7fea340ac000-7fea341a8000 rw-p 00000000 00:00 0 +7fea341a8000-7fea341ac000 ---p 00000000 00:00 0 +7fea341ac000-7fea342a8000 rw-p 00000000 00:00 0 +7fea342a8000-7fea342ac000 ---p 00000000 00:00 0 +7fea342ac000-7fea343a8000 rw-p 00000000 00:00 0 +7fea343a8000-7fea343ac000 ---p 00000000 00:00 0 +7fea343ac000-7fea344a8000 rw-p 00000000 00:00 0 +7fea344a8000-7fea344ac000 ---p 00000000 00:00 0 +7fea344ac000-7fea345a8000 rw-p 00000000 00:00 0 +7fea345a8000-7fea345ac000 ---p 00000000 00:00 0 +7fea345ac000-7fea346a8000 rw-p 00000000 00:00 0 +7fea346a8000-7fea346ac000 ---p 00000000 00:00 0 +7fea346ac000-7fea347a8000 rw-p 00000000 00:00 0 +7fea347a8000-7fea347ac000 ---p 00000000 00:00 0 +7fea347ac000-7fea348a8000 rw-p 00000000 00:00 0 +7fea348a8000-7fea348ac000 ---p 00000000 00:00 0 +7fea348ac000-7fea349a8000 rw-p 00000000 00:00 0 +7fea349a8000-7fea349ac000 ---p 00000000 00:00 0 +7fea349ac000-7fea34aa8000 rw-p 00000000 00:00 0 +7fea34aa8000-7fea34aac000 ---p 00000000 00:00 0 +7fea34aac000-7fea34ba8000 rw-p 00000000 00:00 0 +7fea34ba8000-7fea34bac000 ---p 00000000 00:00 0 +7fea34bac000-7fea34ca8000 rw-p 00000000 00:00 0 +7fea34ca8000-7fea34cac000 ---p 00000000 00:00 0 +7fea34cac000-7fea34da8000 rw-p 00000000 00:00 0 +7fea34da8000-7fea34dac000 ---p 00000000 00:00 0 +7fea34dac000-7fea356aa000 rw-p 00000000 00:00 0 +7fea356aa000-7fea356ae000 ---p 00000000 00:00 0 +7fea356ae000-7fea357aa000 rw-p 00000000 00:00 0 +7fea357aa000-7fea357ae000 ---p 00000000 00:00 0 +7fea357ae000-7fea358aa000 rw-p 00000000 00:00 0 +7fea358aa000-7fea358ae000 ---p 00000000 00:00 0 +7fea358ae000-7fea359aa000 rw-p 00000000 00:00 0 +7fea359aa000-7fea359ae000 ---p 00000000 00:00 0 +7fea359ae000-7fea35aaa000 rw-p 00000000 00:00 0 +7fea35aaa000-7fea35aae000 ---p 00000000 00:00 0 +7fea35aae000-7fea35baa000 rw-p 00000000 00:00 0 +7fea35baa000-7fea35bae000 ---p 00000000 00:00 0 +7fea35bae000-7fea35caa000 rw-p 00000000 00:00 0 +7fea35caa000-7fea35cae000 ---p 00000000 00:00 0 +7fea35cae000-7fea361ab000 rw-p 00000000 00:00 0 +7fea361ab000-7fea361af000 ---p 00000000 00:00 0 +7fea361af000-7fea362ab000 rw-p 00000000 00:00 0 +7fea362ab000-7fea362af000 ---p 00000000 00:00 0 +7fea362af000-7fea363ab000 rw-p 00000000 00:00 0 +7fea363ab000-7fea363af000 ---p 00000000 00:00 0 +7fea363af000-7fea368ac000 rw-p 00000000 00:00 0 +7fea368ac000-7fea368b0000 ---p 00000000 00:00 0 +7fea368b0000-7fea369ac000 rw-p 00000000 00:00 0 +7fea369ac000-7fea369b0000 ---p 00000000 00:00 0 +7fea369b0000-7fea36aac000 rw-p 00000000 00:00 0 +7fea36aac000-7fea36ab0000 ---p 00000000 00:00 0 +7fea36ab0000-7fea36bac000 rw-p 00000000 00:00 0 +7fea36bac000-7fea36bb0000 ---p 00000000 00:00 0 +7fea36bb0000-7fea36cac000 rw-p 00000000 00:00 0 +7fea36cac000-7fea36cb0000 ---p 00000000 00:00 0 +7fea36cb0000-7fea36dac000 rw-p 00000000 00:00 0 +7fea36dac000-7fea36db0000 ---p 00000000 00:00 0 +7fea36db0000-7fea36eac000 rw-p 00000000 00:00 0 +7fea36eac000-7fea36eb0000 ---p 00000000 00:00 0 +7fea36eb0000-7fea36fac000 rw-p 00000000 00:00 0 +7fea36fac000-7fea36fb0000 ---p 00000000 00:00 0 +7fea36fb0000-7fea370ac000 rw-p 00000000 00:00 0 +7fea370ac000-7fea370b0000 ---p 00000000 00:00 0 +7fea370b0000-7fea371ac000 rw-p 00000000 00:00 0 +7fea371ac000-7fea371b0000 ---p 00000000 00:00 0 +7fea371b0000-7fea372ac000 rw-p 00000000 00:00 0 +7fea372ac000-7fea372b0000 ---p 00000000 00:00 0 +7fea372b0000-7fea373ac000 rw-p 00000000 00:00 0 +7fea373ac000-7fea373b0000 ---p 00000000 00:00 0 +7fea373b0000-7fea374ac000 rw-p 00000000 00:00 0 +7fea374ac000-7fea374b0000 ---p 00000000 00:00 0 +7fea374b0000-7fea375ac000 rw-p 00000000 00:00 0 +7fea375ac000-7fea375b0000 ---p 00000000 00:00 0 +7fea375b0000-7fea376ac000 rw-p 00000000 00:00 0 +7fea376ac000-7fea376b0000 ---p 00000000 00:00 0 +7fea376b0000-7fea377ac000 rw-p 00000000 00:00 0 +7fea377d3000-7fea377d7000 ---p 00000000 00:00 0 +7fea377d7000-7fea378d3000 rw-p 00000000 00:00 0 +7fea378d3000-7fea378d7000 ---p 00000000 00:00 0 +7fea378d7000-7fea379d3000 rw-p 00000000 00:00 0 +7fea379d9000-7fea379dd000 ---p 00000000 00:00 0 +7fea379dd000-7fea37ad9000 rw-p 00000000 00:00 0 +7fea37ad9000-7fea37add000 ---p 00000000 00:00 0 +7fea37add000-7fea37bd9000 rw-p 00000000 00:00 0 +7fea37bd9000-7fea37bdd000 ---p 00000000 00:00 0 +7fea37bdd000-7fea37cd9000 rw-p 00000000 00:00 0 +7fea37cd9000-7fea37cdd000 ---p 00000000 00:00 0 +7fea37cdd000-7fea37dd9000 rw-p 00000000 00:00 0 +7fea37dd9000-7fea37ddd000 ---p 00000000 00:00 0 +7fea37ddd000-7fea37ed9000 rw-p 00000000 00:00 0 +7fea37ed9000-7fea37edd000 ---p 00000000 00:00 0 +7fea37edd000-7fea37fd9000 rw-p 00000000 00:00 0 +7fea37fd9000-7fea383d9000 rw-p 00000000 00:00 0 +7fea383d9000-7fea383da000 ---p 00000000 00:00 0 +7fea383da000-7fea38bda000 rw-p 00000000 00:00 0 +7fea38bda000-7fea38bdb000 ---p 00000000 00:00 0 +7fea38bdb000-7fea393db000 rw-p 00000000 00:00 0 +7fea393db000-7fea393dc000 ---p 00000000 00:00 0 +7fea393dc000-7fea39bdc000 rw-p 00000000 00:00 0 +7fea39bdc000-7fea39bdd000 ---p 00000000 00:00 0 +7fea39bdd000-7fea3a3dd000 rw-p 00000000 00:00 0 +7fea3a3dd000-7fea3a3de000 ---p 00000000 00:00 0 +7fea3a3de000-7fea3abde000 rw-p 00000000 00:00 0 +7fea3abde000-7fea3abdf000 ---p 00000000 00:00 0 +7fea3abdf000-7fea3b3df000 rw-p 00000000 00:00 0 +7fea3b3df000-7fea3b3e0000 ---p 00000000 00:00 0 +7fea3b3e0000-7fea3bbe0000 rw-p 00000000 00:00 0 +7fea3bbe0000-7fea3bbe1000 ---p 00000000 00:00 0 +7fea3bbe1000-7fea3c3e1000 rw-p 00000000 00:00 0 +7fea3c3e1000-7fea3c3e2000 ---p 00000000 00:00 0 +7fea3c3e2000-7fea3cbe2000 rw-p 00000000 00:00 0 +7fea3cbe2000-7fea3cbe3000 ---p 00000000 00:00 0 +7fea3cbe3000-7fea3d3e3000 rw-p 00000000 00:00 0 +7fea3d3e3000-7fea3d3e4000 ---p 00000000 00:00 0 +7fea3d3e4000-7fea3dbe4000 rw-p 00000000 00:00 0 +7fea3dbe4000-7fea3dbe5000 ---p 00000000 00:00 0 +7fea3dbe5000-7fea3e3e5000 rw-p 00000000 00:00 0 +7fea3e3e5000-7fea3e3e6000 ---p 00000000 00:00 0 +7fea3e3e6000-7fea3ebe6000 rw-p 00000000 00:00 0 +7fea3ebe6000-7fea3ebe7000 ---p 00000000 00:00 0 +7fea3ebe7000-7fea3f3e7000 rw-p 00000000 00:00 0 +7fea3f3e7000-7fea3f3e8000 ---p 00000000 00:00 0 +7fea3f3e8000-7fea3fbe8000 rw-p 00000000 00:00 0 +7fea3fbe8000-7fea3fbe9000 ---p 00000000 00:00 0 +7fea3fbe9000-7fea403e9000 rw-p 00000000 00:00 0 +7fea403e9000-7fea403ea000 ---p 00000000 00:00 0 +7fea403ea000-7fea40bea000 rw-p 00000000 00:00 0 +7fea40bea000-7fea40beb000 ---p 00000000 00:00 0 +7fea40beb000-7fea413eb000 rw-p 00000000 00:00 0 +7fea413eb000-7fea413ec000 ---p 00000000 00:00 0 +7fea413ec000-7fea41bec000 rw-p 00000000 00:00 0 +7fea41bec000-7fea41bed000 ---p 00000000 00:00 0 +7fea41bed000-7fea423ed000 rw-p 00000000 00:00 0 +7fea423ed000-7fea423ee000 ---p 00000000 00:00 0 +7fea423ee000-7fea42bee000 rw-p 00000000 00:00 0 +7fea42bee000-7fea42bef000 ---p 00000000 00:00 0 +7fea42bef000-7fea433ef000 rw-p 00000000 00:00 0 +7fea433ef000-7fea433f0000 ---p 00000000 00:00 0 +7fea433f0000-7fea43bf0000 rw-p 00000000 00:00 0 +7fea43bf0000-7fea43bf1000 ---p 00000000 00:00 0 +7fea43bf1000-7fea443f1000 rw-p 00000000 00:00 0 +7fea443f1000-7fea443f2000 ---p 00000000 00:00 0 +7fea443f2000-7fea44bf2000 rw-p 00000000 00:00 0 +7fea44bf2000-7fea44bf3000 ---p 00000000 00:00 0 +7fea44bf3000-7fea453f3000 rw-p 00000000 00:00 0 +7fea453f3000-7fea453f4000 ---p 00000000 00:00 0 +7fea453f4000-7fea45bf4000 rw-p 00000000 00:00 0 +7fea45bf4000-7fea45bf5000 ---p 00000000 00:00 0 +7fea45bf5000-7fea463f5000 rw-p 00000000 00:00 0 +7fea463f5000-7fea463f6000 ---p 00000000 00:00 0 +7fea463f6000-7fea46bf6000 rw-p 00000000 00:00 0 +7fea46bf6000-7fea46bf7000 ---p 00000000 00:00 0 +7fea46bf7000-7fea473f7000 rw-p 00000000 00:00 0 +7fea473f7000-7fea473f8000 ---p 00000000 00:00 0 +7fea473f8000-7fea47bf8000 rw-p 00000000 00:00 0 +7fea47bf8000-7fea47bf9000 ---p 00000000 00:00 0 +7fea47bf9000-7fea483f9000 rw-p 00000000 00:00 0 +7fea483f9000-7fea483fa000 ---p 00000000 00:00 0 +7fea483fa000-7fea48bfa000 rw-p 00000000 00:00 0 +7fea48bfa000-7fea48bfb000 ---p 00000000 00:00 0 +7fea48bfb000-7fea493fb000 rw-p 00000000 00:00 0 +7fea493fb000-7fea493fc000 ---p 00000000 00:00 0 +7fea493fc000-7fea49bfc000 rw-p 00000000 00:00 0 +7fea49bfc000-7fea49bfd000 ---p 00000000 00:00 0 +7fea49bfd000-7fea4a3fd000 rw-p 00000000 00:00 0 +7fea4a3fd000-7fea4a3fe000 ---p 00000000 00:00 0 +7fea4a3fe000-7fea4abfe000 rw-p 00000000 00:00 0 +7fea4abfe000-7fea4abff000 ---p 00000000 00:00 0 +7fea4abff000-7fea4b3ff000 rw-p 00000000 00:00 0 +7fea4b3ff000-7fea4b400000 ---p 00000000 00:00 0 +7fea4b400000-7fea4bc00000 rw-p 00000000 00:00 0 +7fea4bc00000-7fea4c400000 rw-p 00000000 00:00 0 +7fea4c400000-7fea4c404000 ---p 00000000 00:00 0 +7fea4c404000-7fea4c500000 rw-p 00000000 00:00 0 +7fea4c500000-7fea4c504000 ---p 00000000 00:00 0 +7fea4c504000-7fea4c600000 rw-p 00000000 00:00 0 +7fea4c600000-7fea4c604000 ---p 00000000 00:00 0 +7fea4c604000-7fea4c700000 rw-p 00000000 00:00 0 +7fea4c700000-7fea4c704000 ---p 00000000 00:00 0 +7fea4c704000-7fea4c800000 rw-p 00000000 00:00 0 +7fea4c800000-7fea4c804000 ---p 00000000 00:00 0 +7fea4c804000-7fea4c900000 rw-p 00000000 00:00 0 +7fea4c900000-7fea4c904000 ---p 00000000 00:00 0 +7fea4c904000-7fea4ca00000 rw-p 00000000 00:00 0 +7fea4ca00000-7fea4ca04000 ---p 00000000 00:00 0 +7fea4ca04000-7fea4cb00000 rw-p 00000000 00:00 0 +7fea4cb00000-7fea4cb04000 ---p 00000000 00:00 0 +7fea4cb04000-7fea4cc00000 rw-p 00000000 00:00 0 +7fea4cc00000-7fea4cc04000 ---p 00000000 00:00 0 +7fea4cc04000-7fea4cd00000 rw-p 00000000 00:00 0 +7fea4cd00000-7fea4cd04000 ---p 00000000 00:00 0 +7fea4cd04000-7fea4ce00000 rw-p 00000000 00:00 0 +7fea4ce00000-7fea4ce04000 ---p 00000000 00:00 0 +7fea4ce04000-7fea4cf00000 rw-p 00000000 00:00 0 +7fea4cf00000-7fea4cf04000 ---p 00000000 00:00 0 +7fea4cf04000-7fea4d1c0000 rw-p 00000000 00:00 0 +7fea4d1c0000-7fea4d200000 rw-p 00000000 00:00 0 +7fea4d200000-7fea4d300000 rw-p 00000000 00:00 0 +7fea4d300000-7fea4d400000 rw-p 00000000 00:00 0 +7fea4d400000-7fea4d700000 rw-p 00000000 00:00 0 +7fea4d700000-7fea4d800000 rw-p 00000000 00:00 0 +7fea4d800000-7fea4d804000 ---p 00000000 00:00 0 +7fea4d804000-7fea4d900000 rw-p 00000000 00:00 0 +7fea4d900000-7fea4d904000 ---p 00000000 00:00 0 +7fea4d904000-7fea4da00000 rw-p 00000000 00:00 0 +7fea4da00000-7fea4da04000 ---p 00000000 00:00 0 +7fea4da04000-7fea4db00000 rw-p 00000000 00:00 0 +7fea4db00000-7fea4db04000 ---p 00000000 00:00 0 +7fea4db04000-7fea4dc00000 rw-p 00000000 00:00 0 +7fea4dc00000-7fea4dc04000 ---p 00000000 00:00 0 +7fea4dc04000-7fea4dd00000 rw-p 00000000 00:00 0 +7fea4dd00000-7fea4dd04000 ---p 00000000 00:00 0 +7fea4dd04000-7fea4de00000 rw-p 00000000 00:00 0 +7fea4de00000-7fea4de04000 ---p 00000000 00:00 0 +7fea4de04000-7fea4df00000 rw-p 00000000 00:00 0 +7fea4df00000-7fea4df04000 ---p 00000000 00:00 0 +7fea4df04000-7fea4e000000 rw-p 00000000 00:00 0 +7fea4e000000-7fea4e400000 rw-p 00000000 00:00 0 +7fea4e400000-7fea4e404000 ---p 00000000 00:00 0 +7fea4e404000-7fea4e500000 rw-p 00000000 00:00 0 +7fea4e500000-7fea4e504000 ---p 00000000 00:00 0 +7fea4e504000-7fea4e600000 rw-p 00000000 00:00 0 +7fea4e600000-7fea4e604000 ---p 00000000 00:00 0 +7fea4e604000-7fea4e700000 rw-p 00000000 00:00 0 +7fea4e700000-7fea4e704000 ---p 00000000 00:00 0 +7fea4e704000-7fea4e800000 rw-p 00000000 00:00 0 +7fea4e800000-7fea4e804000 ---p 00000000 00:00 0 +7fea4e804000-7fea4e900000 rw-p 00000000 00:00 0 +7fea4e900000-7fea4e904000 ---p 00000000 00:00 0 +7fea4e904000-7fea4ea00000 rw-p 00000000 00:00 0 +7fea4ea00000-7fea4ea04000 ---p 00000000 00:00 0 +7fea4ea04000-7fea4eb00000 rw-p 00000000 00:00 0 +7fea4eb00000-7fea4eb04000 ---p 00000000 00:00 0 +7fea4eb04000-7fea4ec00000 rw-p 00000000 00:00 0 +7fea4ec00000-7fea4ec04000 ---p 00000000 00:00 0 +7fea4ec04000-7fea4ed00000 rw-p 00000000 00:00 0 +7fea4ed00000-7fea4ed04000 ---p 00000000 00:00 0 +7fea4ed04000-7fea4ee00000 rw-p 00000000 00:00 0 +7fea4ee00000-7fea4ee04000 ---p 00000000 00:00 0 +7fea4ee04000-7fea4ef00000 rw-p 00000000 00:00 0 +7fea4ef00000-7fea4ef04000 ---p 00000000 00:00 0 +7fea4ef04000-7fea4f500000 rw-p 00000000 00:00 0 +7fea4f500000-7fea4f800000 rw-p 00000000 00:00 0 +7fea4f800000-7fea4f804000 ---p 00000000 00:00 0 +7fea4f804000-7fea4f900000 rw-p 00000000 00:00 0 +7fea4f900000-7fea4f904000 ---p 00000000 00:00 0 +7fea4f904000-7fea4fa00000 rw-p 00000000 00:00 0 +7fea4fa00000-7fea4fa04000 ---p 00000000 00:00 0 +7fea4fa04000-7fea4fb00000 rw-p 00000000 00:00 0 +7fea4fb00000-7fea4fb04000 ---p 00000000 00:00 0 +7fea4fb04000-7fea4fc00000 rw-p 00000000 00:00 0 +7fea4fc00000-7fea4fc04000 ---p 00000000 00:00 0 +7fea4fc04000-7fea4fd00000 rw-p 00000000 00:00 0 +7fea4fd00000-7fea4fd04000 ---p 00000000 00:00 0 +7fea4fd04000-7fea4fe00000 rw-p 00000000 00:00 0 +7fea4fe00000-7fea4fe04000 ---p 00000000 00:00 0 +7fea4fe04000-7fea4ff00000 rw-p 00000000 00:00 0 +7fea4ff00000-7fea4ff04000 ---p 00000000 00:00 0 +7fea4ff04000-7fea50580000 rw-p 00000000 00:00 0 +7fea50580000-7fea50600000 rw-p 00000000 00:00 0 +7fea50600000-7fea50780000 rw-p 00000000 00:00 0 +7fea50780000-7fea50800000 rw-p 00000000 00:00 0 +7fea50800000-7fea50804000 ---p 00000000 00:00 0 +7fea50804000-7fea50900000 rw-p 00000000 00:00 0 +7fea50900000-7fea50904000 ---p 00000000 00:00 0 +7fea50904000-7fea50a00000 rw-p 00000000 00:00 0 +7fea50a00000-7fea50a04000 ---p 00000000 00:00 0 +7fea50a04000-7fea50b00000 rw-p 00000000 00:00 0 +7fea50b00000-7fea50b04000 ---p 00000000 00:00 0 +7fea50b04000-7fea50c00000 rw-p 00000000 00:00 0 +7fea50c00000-7fea50c04000 ---p 00000000 00:00 0 +7fea50c04000-7fea50d00000 rw-p 00000000 00:00 0 +7fea50d00000-7fea50d04000 ---p 00000000 00:00 0 +7fea50d04000-7fea50e00000 rw-p 00000000 00:00 0 +7fea50e00000-7fea50e04000 ---p 00000000 00:00 0 +7fea50e04000-7fea50f00000 rw-p 00000000 00:00 0 +7fea50f00000-7fea50f04000 ---p 00000000 00:00 0 +7fea50f04000-7fea51000000 rw-p 00000000 00:00 0 +7fea51000000-7fea51004000 ---p 00000000 00:00 0 +7fea51004000-7fea51100000 rw-p 00000000 00:00 0 +7fea51100000-7fea51104000 ---p 00000000 00:00 0 +7fea51104000-7fea51200000 rw-p 00000000 00:00 0 +7fea51200000-7fea51204000 ---p 00000000 00:00 0 +7fea51204000-7fea51300000 rw-p 00000000 00:00 0 +7fea51300000-7fea51304000 ---p 00000000 00:00 0 +7fea51304000-7fea51400000 rw-p 00000000 00:00 0 +7fea51400000-7fea51404000 ---p 00000000 00:00 0 +7fea51404000-7fea51500000 rw-p 00000000 00:00 0 +7fea51500000-7fea51504000 ---p 00000000 00:00 0 +7fea51504000-7fea51600000 rw-p 00000000 00:00 0 +7fea51600000-7fea51604000 ---p 00000000 00:00 0 +7fea51604000-7fea51700000 rw-p 00000000 00:00 0 +7fea51700000-7fea51704000 ---p 00000000 00:00 0 +7fea51704000-7fea51800000 rw-p 00000000 00:00 0 +7fea51800000-7fea51804000 ---p 00000000 00:00 0 +7fea51804000-7fea51900000 rw-p 00000000 00:00 0 +7fea51900000-7fea51904000 ---p 00000000 00:00 0 +7fea51904000-7fea51a00000 rw-p 00000000 00:00 0 +7fea51a00000-7fea51a24000 r-xp 00000000 00:10d 1558261 /tmp/liblz4-java-964230997078175437.so +7fea51a24000-7fea51c23000 ---p 00024000 00:10d 1558261 /tmp/liblz4-java-964230997078175437.so +7fea51c23000-7fea51c24000 rw-p 00023000 00:10d 1558261 /tmp/liblz4-java-964230997078175437.so +7fea51ceb000-7fea51cef000 ---p 00000000 00:00 0 +7fea51cef000-7fea51deb000 rw-p 00000000 00:00 0 +7fea51deb000-7fea51def000 ---p 00000000 00:00 0 +7fea51def000-7fea51eeb000 rw-p 00000000 00:00 0 +7fea51eeb000-7fea51eef000 ---p 00000000 00:00 0 +7fea51eef000-7fea51feb000 rw-p 00000000 00:00 0 +7fea51feb000-7fea51fef000 ---p 00000000 00:00 0 +7fea51fef000-7fea520eb000 rw-p 00000000 00:00 0 +7fea520eb000-7fea520ef000 ---p 00000000 00:00 0 +7fea520ef000-7fea521eb000 rw-p 00000000 00:00 0 +7fea521eb000-7fea521ef000 ---p 00000000 00:00 0 +7fea521ef000-7fea522eb000 rw-p 00000000 00:00 0 +7fea522eb000-7fea522ef000 ---p 00000000 00:00 0 +7fea522ef000-7fea523eb000 rw-p 00000000 00:00 0 +7fea523eb000-7fea523ef000 ---p 00000000 00:00 0 +7fea523ef000-7fea524eb000 rw-p 00000000 00:00 0 +7fea524eb000-7fea524ef000 ---p 00000000 00:00 0 +7fea524ef000-7fea525eb000 rw-p 00000000 00:00 0 +7fea525eb000-7fea525ef000 ---p 00000000 00:00 0 +7fea525ef000-7fea526eb000 rw-p 00000000 00:00 0 +7fea526eb000-7fea526ef000 ---p 00000000 00:00 0 +7fea526ef000-7fea577ff000 rw-p 00000000 00:00 0 +7fea577ff000-7fea579ff000 rw-p 00000000 00:00 0 +7fea579ff000-7fea57e00000 rw-p 00000000 00:00 0 +7fea57e00000-7fea58000000 rw-p 00000000 00:00 0 +7fea580fe000-7fea58102000 ---p 00000000 00:00 0 +7fea58102000-7fea581fe000 rw-p 00000000 00:00 0 +7fea581fe000-7fea583fe000 rw-p 00000000 00:00 0 +7fea583fe000-7fea58c00000 rw-p 00000000 00:00 0 +7fea58c00000-7fea59000000 rw-p 00000000 00:00 0 +7fea5907d000-7fea59081000 ---p 00000000 00:00 0 +7fea59081000-7fea5917d000 rw-p 00000000 00:00 0 +7fea5917d000-7fea5917e000 ---p 00000000 00:00 0 +7fea5917e000-7fea5937e000 rw-p 00000000 00:00 0 +7fea5937e000-7fea5957e000 rw-p 00000000 00:00 0 +7fea5957e000-7fea5957f000 ---p 00000000 00:00 0 +7fea5957f000-7fea5977f000 rw-p 00000000 00:00 0 +7fea5977f000-7fea59780000 ---p 00000000 00:00 0 +7fea59780000-7fea59980000 rw-p 00000000 00:00 0 +7fea59980000-7fea59984000 ---p 00000000 00:00 0 +7fea59984000-7fea59a80000 rw-p 00000000 00:00 0 +7fea59a80000-7fea59a84000 ---p 00000000 00:00 0 +7fea59a84000-7fea59b80000 rw-p 00000000 00:00 0 +7fea59b80000-7fea59b84000 ---p 00000000 00:00 0 +7fea59b84000-7fea59c80000 rw-p 00000000 00:00 0 +7fea59c80000-7fea59c84000 ---p 00000000 00:00 0 +7fea59c84000-7fea59d80000 rw-p 00000000 00:00 0 +7fea59d80000-7fea59d84000 ---p 00000000 00:00 0 +7fea59d84000-7fea59e80000 rw-p 00000000 00:00 0 +7fea59e80000-7fea59e84000 ---p 00000000 00:00 0 +7fea59e84000-7fea59f80000 rw-p 00000000 00:00 0 +7fea59f80000-7fea59f84000 ---p 00000000 00:00 0 +7fea59f84000-7fea5a080000 rw-p 00000000 00:00 0 +7fea5a080000-7fea5a084000 ---p 00000000 00:00 0 +7fea5a084000-7fea5a180000 rw-p 00000000 00:00 0 +7fea5a180000-7fea5a184000 ---p 00000000 00:00 0 +7fea5a184000-7fea5a280000 rw-p 00000000 00:00 0 +7fea5a280000-7fea5a284000 ---p 00000000 00:00 0 +7fea5a284000-7fea5a380000 rw-p 00000000 00:00 0 +7fea5a380000-7fea5a384000 ---p 00000000 00:00 0 +7fea5a384000-7fea5a480000 rw-p 00000000 00:00 0 +7fea5a480000-7fea5a484000 ---p 00000000 00:00 0 +7fea5a484000-7fea5a580000 rw-p 00000000 00:00 0 +7fea5a580000-7fea5a584000 ---p 00000000 00:00 0 +7fea5a584000-7fea5a680000 rw-p 00000000 00:00 0 +7fea5a680000-7fea5a684000 ---p 00000000 00:00 0 +7fea5a684000-7fea5a780000 rw-p 00000000 00:00 0 +7fea5a780000-7fea5a784000 ---p 00000000 00:00 0 +7fea5a784000-7fea5a880000 rw-p 00000000 00:00 0 +7fea5a880000-7fea5a884000 ---p 00000000 00:00 0 +7fea5a884000-7fea5a980000 rw-p 00000000 00:00 0 +7fea5a980000-7fea5a984000 ---p 00000000 00:00 0 +7fea5a984000-7fea5aa80000 rw-p 00000000 00:00 0 +7fea5aa80000-7fea5aa84000 ---p 00000000 00:00 0 +7fea5aa84000-7fea5ab80000 rw-p 00000000 00:00 0 +7fea5ab80000-7fea5ab84000 ---p 00000000 00:00 0 +7fea5ab84000-7fea5ac80000 rw-p 00000000 00:00 0 +7fea5ac80000-7fea5ac84000 ---p 00000000 00:00 0 +7fea5ac84000-7fea5ad80000 rw-p 00000000 00:00 0 +7fea5ad80000-7fea5c800000 rw-p 00000000 00:00 0 +7fea5c8f9000-7fea5c8fd000 ---p 00000000 00:00 0 +7fea5c8fd000-7fea5c9f9000 rw-p 00000000 00:00 0 +7fea5c9f9000-7fea5c9fa000 ---p 00000000 00:00 0 +7fea5c9fa000-7fea5cbfa000 rw-p 00000000 00:00 0 +7fea5cbfa000-7fea5cbfb000 ---p 00000000 00:00 0 +7fea5cbfb000-7fea5cdfb000 rw-p 00000000 00:00 0 +7fea5cdfb000-7fea5cdfc000 ---p 00000000 00:00 0 +7fea5cdfc000-7fea5cffc000 rw-p 00000000 00:00 0 +7fea5cffc000-7fea5cffd000 ---p 00000000 00:00 0 +7fea5cffd000-7fea5d1fd000 rw-p 00000000 00:00 0 +7fea5d1fd000-7fea5d1fe000 ---p 00000000 00:00 0 +7fea5d1fe000-7fea5d3fe000 rw-p 00000000 00:00 0 +7fea5d3fe000-7fea5d3ff000 ---p 00000000 00:00 0 +7fea5d3ff000-7fea5d5ff000 rw-p 00000000 00:00 0 +7fea5d5ff000-7fea5d7ff000 rw-p 00000000 00:00 0 +7fea5d7ff000-7fea5d800000 ---p 00000000 00:00 0 +7fea5d800000-7fea5da00000 rw-p 00000000 00:00 0 +7fea5da00000-7fea5e000000 rw-p 00000000 00:00 0 +7fea5e07e000-7fea5e07f000 ---p 00000000 00:00 0 +7fea5e07f000-7fea5e27f000 rw-p 00000000 00:00 0 +7fea5e27f000-7fea5e280000 ---p 00000000 00:00 0 +7fea5e280000-7fea5e480000 rw-p 00000000 00:00 0 +7fea5e480000-7fea5f400000 rw-p 00000000 00:00 0 +7fea5f4fd000-7fea5f4fe000 ---p 00000000 00:00 0 +7fea5f4fe000-7fea5f6fe000 rw-p 00000000 00:00 0 +7fea5f6fe000-7fea5f6ff000 ---p 00000000 00:00 0 +7fea5f6ff000-7fea5f8ff000 rw-p 00000000 00:00 0 +7fea5f8ff000-7fea5f900000 ---p 00000000 00:00 0 +7fea5f900000-7fea5fb00000 rw-p 00000000 00:00 0 +7fea5fb00000-7fea5fb04000 ---p 00000000 00:00 0 +7fea5fb04000-7fea5fc00000 rw-p 00000000 00:00 0 +7fea5fc00000-7fea5fc04000 ---p 00000000 00:00 0 +7fea5fc04000-7fea5fd00000 rw-p 00000000 00:00 0 +7fea5fd00000-7fea5fd04000 ---p 00000000 00:00 0 +7fea5fd04000-7fea5fe00000 rw-p 00000000 00:00 0 +7fea5fe00000-7fea5fe04000 ---p 00000000 00:00 0 +7fea5fe04000-7fea5ff00000 rw-p 00000000 00:00 0 +7fea5ff00000-7fea5ff04000 ---p 00000000 00:00 0 +7fea5ff04000-7fea60000000 rw-p 00000000 00:00 0 +7fea60000000-7fea60004000 ---p 00000000 00:00 0 +7fea60004000-7fea60100000 rw-p 00000000 00:00 0 +7fea60100000-7fea60104000 ---p 00000000 00:00 0 +7fea60104000-7fea60200000 rw-p 00000000 00:00 0 +7fea60200000-7fea60204000 ---p 00000000 00:00 0 +7fea60204000-7fea60300000 rw-p 00000000 00:00 0 +7fea60300000-7fea60304000 ---p 00000000 00:00 0 +7fea60304000-7fea60400000 rw-p 00000000 00:00 0 +7fea60400000-7fea60404000 ---p 00000000 00:00 0 +7fea60404000-7fea60500000 rw-p 00000000 00:00 0 +7fea60500000-7fea60504000 ---p 00000000 00:00 0 +7fea60504000-7fea60600000 rw-p 00000000 00:00 0 +7fea60600000-7fea60604000 ---p 00000000 00:00 0 +7fea60604000-7fea60700000 rw-p 00000000 00:00 0 +7fea60700000-7fea60704000 ---p 00000000 00:00 0 +7fea60704000-7fea60800000 rw-p 00000000 00:00 0 +7fea60800000-7fea60804000 ---p 00000000 00:00 0 +7fea60804000-7fea60900000 rw-p 00000000 00:00 0 +7fea60900000-7fea60904000 ---p 00000000 00:00 0 +7fea60904000-7fea60a00000 rw-p 00000000 00:00 0 +7fea60a00000-7fea60a04000 ---p 00000000 00:00 0 +7fea60a04000-7fea60b00000 rw-p 00000000 00:00 0 +7fea60b00000-7fea60b04000 ---p 00000000 00:00 0 +7fea60b04000-7fea60c00000 rw-p 00000000 00:00 0 +7fea60c00000-7fea60c04000 ---p 00000000 00:00 0 +7fea60c04000-7fea60d00000 rw-p 00000000 00:00 0 +7fea60d00000-7fea60d04000 ---p 00000000 00:00 0 +7fea60d04000-7fea60e00000 rw-p 00000000 00:00 0 +7fea60e00000-7fea60e04000 ---p 00000000 00:00 0 +7fea60e04000-7fea60f00000 rw-p 00000000 00:00 0 +7fea60f00000-7fea60f04000 ---p 00000000 00:00 0 +7fea60f04000-7fea61000000 rw-p 00000000 00:00 0 +7fea61000000-7fea61004000 ---p 00000000 00:00 0 +7fea61004000-7fea61100000 rw-p 00000000 00:00 0 +7fea61100000-7fea61104000 ---p 00000000 00:00 0 +7fea61104000-7fea61200000 rw-p 00000000 00:00 0 +7fea61200000-7fea61204000 ---p 00000000 00:00 0 +7fea61204000-7fea61300000 rw-p 00000000 00:00 0 +7fea61300000-7fea61304000 ---p 00000000 00:00 0 +7fea61304000-7fea61400000 rw-p 00000000 00:00 0 +7fea61400000-7fea61404000 ---p 00000000 00:00 0 +7fea61404000-7fea61500000 rw-p 00000000 00:00 0 +7fea61500000-7fea61504000 ---p 00000000 00:00 0 +7fea61504000-7fea61600000 rw-p 00000000 00:00 0 +7fea61600000-7fea61604000 ---p 00000000 00:00 0 +7fea61604000-7fea61700000 rw-p 00000000 00:00 0 +7fea61700000-7fea61704000 ---p 00000000 00:00 0 +7fea61704000-7fea61800000 rw-p 00000000 00:00 0 +7fea61800000-7fea61804000 ---p 00000000 00:00 0 +7fea61804000-7fea61900000 rw-p 00000000 00:00 0 +7fea61900000-7fea61904000 ---p 00000000 00:00 0 +7fea61904000-7fea61a00000 rw-p 00000000 00:00 0 +7fea61a00000-7fea61a04000 ---p 00000000 00:00 0 +7fea61a04000-7fea61b00000 rw-p 00000000 00:00 0 +7fea61b00000-7fea61b04000 ---p 00000000 00:00 0 +7fea61b04000-7fea61c00000 rw-p 00000000 00:00 0 +7fea61c00000-7fea61c04000 ---p 00000000 00:00 0 +7fea61c04000-7fea61d00000 rw-p 00000000 00:00 0 +7fea61d00000-7fea61d04000 ---p 00000000 00:00 0 +7fea61d04000-7fea61e00000 rw-p 00000000 00:00 0 +7fea61e00000-7fea61e04000 ---p 00000000 00:00 0 +7fea61e04000-7fea61f00000 rw-p 00000000 00:00 0 +7fea61f00000-7fea61f04000 ---p 00000000 00:00 0 +7fea61f04000-7fea62000000 rw-p 00000000 00:00 0 +7fea62000000-7fea62004000 ---p 00000000 00:00 0 +7fea62004000-7fea62100000 rw-p 00000000 00:00 0 +7fea62100000-7fea62104000 ---p 00000000 00:00 0 +7fea62104000-7fea62200000 rw-p 00000000 00:00 0 +7fea62200000-7fea62204000 ---p 00000000 00:00 0 +7fea62204000-7fea62300000 rw-p 00000000 00:00 0 +7fea62300000-7fea62304000 ---p 00000000 00:00 0 +7fea62304000-7fea62400000 rw-p 00000000 00:00 0 +7fea62400000-7fea62404000 ---p 00000000 00:00 0 +7fea62404000-7fea62500000 rw-p 00000000 00:00 0 +7fea62500000-7fea62504000 ---p 00000000 00:00 0 +7fea62504000-7fea62600000 rw-p 00000000 00:00 0 +7fea62600000-7fea62604000 ---p 00000000 00:00 0 +7fea62604000-7fea62700000 rw-p 00000000 00:00 0 +7fea62700000-7fea62704000 ---p 00000000 00:00 0 +7fea62704000-7fea62800000 rw-p 00000000 00:00 0 +7fea62800000-7fea62804000 ---p 00000000 00:00 0 +7fea62804000-7fea62900000 rw-p 00000000 00:00 0 +7fea62900000-7fea62904000 ---p 00000000 00:00 0 +7fea62904000-7fea62a00000 rw-p 00000000 00:00 0 +7fea62a00000-7fea62a04000 ---p 00000000 00:00 0 +7fea62a04000-7fea62b00000 rw-p 00000000 00:00 0 +7fea62b00000-7fea62b04000 ---p 00000000 00:00 0 +7fea62b04000-7fea62c00000 rw-p 00000000 00:00 0 +7fea62c00000-7fea62c04000 ---p 00000000 00:00 0 +7fea62c04000-7fea62d00000 rw-p 00000000 00:00 0 +7fea62d00000-7fea62d04000 ---p 00000000 00:00 0 +7fea62d04000-7fea62e00000 rw-p 00000000 00:00 0 +7fea62e00000-7fea62e04000 ---p 00000000 00:00 0 +7fea62e04000-7fea62f00000 rw-p 00000000 00:00 0 +7fea62f00000-7fea62f04000 ---p 00000000 00:00 0 +7fea62f04000-7fea63000000 rw-p 00000000 00:00 0 +7fea63000000-7fea63004000 ---p 00000000 00:00 0 +7fea63004000-7fea63100000 rw-p 00000000 00:00 0 +7fea63100000-7fea63104000 ---p 00000000 00:00 0 +7fea63104000-7fea63200000 rw-p 00000000 00:00 0 +7fea63200000-7fea63204000 ---p 00000000 00:00 0 +7fea63204000-7fea63300000 rw-p 00000000 00:00 0 +7fea63300000-7fea63304000 ---p 00000000 00:00 0 +7fea63304000-7fea63400000 rw-p 00000000 00:00 0 +7fea63400000-7fea63404000 ---p 00000000 00:00 0 +7fea63404000-7fea63500000 rw-p 00000000 00:00 0 +7fea63500000-7fea63504000 ---p 00000000 00:00 0 +7fea63504000-7fea63600000 rw-p 00000000 00:00 0 +7fea63600000-7fea63604000 ---p 00000000 00:00 0 +7fea63604000-7fea63700000 rw-p 00000000 00:00 0 +7fea63700000-7fea63704000 ---p 00000000 00:00 0 +7fea63704000-7fea63800000 rw-p 00000000 00:00 0 +7fea63800000-7fea63804000 ---p 00000000 00:00 0 +7fea63804000-7fea63900000 rw-p 00000000 00:00 0 +7fea63900000-7fea63904000 ---p 00000000 00:00 0 +7fea63904000-7fea63a00000 rw-p 00000000 00:00 0 +7fea63a00000-7fea63a04000 ---p 00000000 00:00 0 +7fea63a04000-7fea63b00000 rw-p 00000000 00:00 0 +7fea63b00000-7fea63b04000 ---p 00000000 00:00 0 +7fea63b04000-7fea63c00000 rw-p 00000000 00:00 0 +7fea63c00000-7fea63c04000 ---p 00000000 00:00 0 +7fea63c04000-7fea63d00000 rw-p 00000000 00:00 0 +7fea63d00000-7fea63d04000 ---p 00000000 00:00 0 +7fea63d04000-7fea63e00000 rw-p 00000000 00:00 0 +7fea63e00000-7fea63e04000 ---p 00000000 00:00 0 +7fea63e04000-7fea63f00000 rw-p 00000000 00:00 0 +7fea63f00000-7fea63f04000 ---p 00000000 00:00 0 +7fea63f04000-7fea64000000 rw-p 00000000 00:00 0 +7fea64000000-7fea64004000 ---p 00000000 00:00 0 +7fea64004000-7fea64100000 rw-p 00000000 00:00 0 +7fea64100000-7fea64104000 ---p 00000000 00:00 0 +7fea64104000-7fea64200000 rw-p 00000000 00:00 0 +7fea64200000-7fea64204000 ---p 00000000 00:00 0 +7fea64204000-7fea64300000 rw-p 00000000 00:00 0 +7fea64300000-7fea64304000 ---p 00000000 00:00 0 +7fea64304000-7fea64400000 rw-p 00000000 00:00 0 +7fea64400000-7fea64404000 ---p 00000000 00:00 0 +7fea64404000-7fea64500000 rw-p 00000000 00:00 0 +7fea64500000-7fea64504000 ---p 00000000 00:00 0 +7fea64504000-7fea64600000 rw-p 00000000 00:00 0 +7fea64600000-7fea64604000 ---p 00000000 00:00 0 +7fea64604000-7fea64700000 rw-p 00000000 00:00 0 +7fea64700000-7fea64704000 ---p 00000000 00:00 0 +7fea64704000-7fea64800000 rw-p 00000000 00:00 0 +7fea64800000-7fea64804000 ---p 00000000 00:00 0 +7fea64804000-7fea64900000 rw-p 00000000 00:00 0 +7fea64900000-7fea64904000 ---p 00000000 00:00 0 +7fea64904000-7fea64a00000 rw-p 00000000 00:00 0 +7fea64a00000-7fea64a04000 ---p 00000000 00:00 0 +7fea64a04000-7fea64b00000 rw-p 00000000 00:00 0 +7fea64b00000-7fea64b04000 ---p 00000000 00:00 0 +7fea64b04000-7fea64c00000 rw-p 00000000 00:00 0 +7fea64c00000-7fea64c04000 ---p 00000000 00:00 0 +7fea64c04000-7fea64d00000 rw-p 00000000 00:00 0 +7fea64d00000-7fea64d04000 ---p 00000000 00:00 0 +7fea64d04000-7fea64e00000 rw-p 00000000 00:00 0 +7fea64e00000-7fea64e04000 ---p 00000000 00:00 0 +7fea64e04000-7fea64f00000 rw-p 00000000 00:00 0 +7fea64f00000-7fea64f04000 ---p 00000000 00:00 0 +7fea64f04000-7fea65000000 rw-p 00000000 00:00 0 +7fea65000000-7fea65004000 ---p 00000000 00:00 0 +7fea65004000-7fea65100000 rw-p 00000000 00:00 0 +7fea65100000-7fea65104000 ---p 00000000 00:00 0 +7fea65104000-7fea65200000 rw-p 00000000 00:00 0 +7fea65200000-7fea65204000 ---p 00000000 00:00 0 +7fea65204000-7fea65300000 rw-p 00000000 00:00 0 +7fea65300000-7fea65304000 ---p 00000000 00:00 0 +7fea65304000-7fea65400000 rw-p 00000000 00:00 0 +7fea65400000-7fea65404000 ---p 00000000 00:00 0 +7fea65404000-7fea65500000 rw-p 00000000 00:00 0 +7fea65500000-7fea65504000 ---p 00000000 00:00 0 +7fea65504000-7fea65600000 rw-p 00000000 00:00 0 +7fea65600000-7fea65604000 ---p 00000000 00:00 0 +7fea65604000-7fea65700000 rw-p 00000000 00:00 0 +7fea65700000-7fea65704000 ---p 00000000 00:00 0 +7fea65704000-7fea65800000 rw-p 00000000 00:00 0 +7fea65800000-7fea65804000 ---p 00000000 00:00 0 +7fea65804000-7fea65900000 rw-p 00000000 00:00 0 +7fea65900000-7fea65904000 ---p 00000000 00:00 0 +7fea65904000-7fea65a00000 rw-p 00000000 00:00 0 +7fea65a00000-7fea65a04000 ---p 00000000 00:00 0 +7fea65a04000-7fea65b00000 rw-p 00000000 00:00 0 +7fea65b00000-7fea65b04000 ---p 00000000 00:00 0 +7fea65b04000-7fea65c00000 rw-p 00000000 00:00 0 +7fea65c00000-7fea65c04000 ---p 00000000 00:00 0 +7fea65c04000-7fea65d00000 rw-p 00000000 00:00 0 +7fea65d00000-7fea65d04000 ---p 00000000 00:00 0 +7fea65d04000-7fea65e00000 rw-p 00000000 00:00 0 +7fea65e00000-7fea65e04000 ---p 00000000 00:00 0 +7fea65e04000-7fea65f00000 rw-p 00000000 00:00 0 +7fea65f00000-7fea65f04000 ---p 00000000 00:00 0 +7fea65f04000-7fea66000000 rw-p 00000000 00:00 0 +7fea66000000-7fea66004000 ---p 00000000 00:00 0 +7fea66004000-7fea66100000 rw-p 00000000 00:00 0 +7fea66100000-7fea66104000 ---p 00000000 00:00 0 +7fea66104000-7fea66200000 rw-p 00000000 00:00 0 +7fea66200000-7fea66204000 ---p 00000000 00:00 0 +7fea66204000-7fea66300000 rw-p 00000000 00:00 0 +7fea66300000-7fea66304000 ---p 00000000 00:00 0 +7fea66304000-7fea66400000 rw-p 00000000 00:00 0 +7fea66400000-7fea66404000 ---p 00000000 00:00 0 +7fea66404000-7fea66500000 rw-p 00000000 00:00 0 +7fea66500000-7fea66504000 ---p 00000000 00:00 0 +7fea66504000-7fea66600000 rw-p 00000000 00:00 0 +7fea66600000-7fea66604000 ---p 00000000 00:00 0 +7fea66604000-7fea66700000 rw-p 00000000 00:00 0 +7fea66700000-7fea66704000 ---p 00000000 00:00 0 +7fea66704000-7fea66800000 rw-p 00000000 00:00 0 +7fea66800000-7fea66804000 ---p 00000000 00:00 0 +7fea66804000-7fea66900000 rw-p 00000000 00:00 0 +7fea66900000-7fea66904000 ---p 00000000 00:00 0 +7fea66904000-7fea66a00000 rw-p 00000000 00:00 0 +7fea66a00000-7fea66a04000 ---p 00000000 00:00 0 +7fea66a04000-7fea66b00000 rw-p 00000000 00:00 0 +7fea66b00000-7fea66b04000 ---p 00000000 00:00 0 +7fea66b04000-7fea66c00000 rw-p 00000000 00:00 0 +7fea66c00000-7fea66c04000 ---p 00000000 00:00 0 +7fea66c04000-7fea66d00000 rw-p 00000000 00:00 0 +7fea66d00000-7fea66d04000 ---p 00000000 00:00 0 +7fea66d04000-7fea66e00000 rw-p 00000000 00:00 0 +7fea66e00000-7fea66e04000 ---p 00000000 00:00 0 +7fea66e04000-7fea66f00000 rw-p 00000000 00:00 0 +7fea66f00000-7fea66f04000 ---p 00000000 00:00 0 +7fea66f04000-7fea67000000 rw-p 00000000 00:00 0 +7fea67000000-7fea67004000 ---p 00000000 00:00 0 +7fea67004000-7fea67100000 rw-p 00000000 00:00 0 +7fea67100000-7fea67104000 ---p 00000000 00:00 0 +7fea67104000-7fea67200000 rw-p 00000000 00:00 0 +7fea67200000-7fea67204000 ---p 00000000 00:00 0 +7fea67204000-7fea67300000 rw-p 00000000 00:00 0 +7fea67300000-7fea67304000 ---p 00000000 00:00 0 +7fea67304000-7fea67400000 rw-p 00000000 00:00 0 +7fea67400000-7fea67404000 ---p 00000000 00:00 0 +7fea67404000-7fea67500000 rw-p 00000000 00:00 0 +7fea67500000-7fea67504000 ---p 00000000 00:00 0 +7fea67504000-7fea67600000 rw-p 00000000 00:00 0 +7fea67600000-7fea67604000 ---p 00000000 00:00 0 +7fea67604000-7fea67700000 rw-p 00000000 00:00 0 +7fea67700000-7fea67704000 ---p 00000000 00:00 0 +7fea67704000-7fea67800000 rw-p 00000000 00:00 0 +7fea67800000-7fea67804000 ---p 00000000 00:00 0 +7fea67804000-7fea67900000 rw-p 00000000 00:00 0 +7fea67900000-7fea67904000 ---p 00000000 00:00 0 +7fea67904000-7fea67a00000 rw-p 00000000 00:00 0 +7fea67a00000-7fea67a04000 ---p 00000000 00:00 0 +7fea67a04000-7fea67b00000 rw-p 00000000 00:00 0 +7fea67b00000-7fea67b04000 ---p 00000000 00:00 0 +7fea67b04000-7fea67c00000 rw-p 00000000 00:00 0 +7fea67c00000-7fea67c04000 ---p 00000000 00:00 0 +7fea67c04000-7fea67d00000 rw-p 00000000 00:00 0 +7fea67d00000-7fea67d04000 ---p 00000000 00:00 0 +7fea67d04000-7fea67e00000 rw-p 00000000 00:00 0 +7fea67e00000-7fea67e04000 ---p 00000000 00:00 0 +7fea67e04000-7fea67f00000 rw-p 00000000 00:00 0 +7fea67f00000-7fea67f04000 ---p 00000000 00:00 0 +7fea67f04000-7fea68000000 rw-p 00000000 00:00 0 +7fea68000000-7fea68004000 ---p 00000000 00:00 0 +7fea68004000-7fea68100000 rw-p 00000000 00:00 0 +7fea68100000-7fea68104000 ---p 00000000 00:00 0 +7fea68104000-7fea68200000 rw-p 00000000 00:00 0 +7fea68200000-7fea68204000 ---p 00000000 00:00 0 +7fea68204000-7fea68300000 rw-p 00000000 00:00 0 +7fea68300000-7fea68304000 ---p 00000000 00:00 0 +7fea68304000-7fea68400000 rw-p 00000000 00:00 0 +7fea68400000-7fea68404000 ---p 00000000 00:00 0 +7fea68404000-7fea68500000 rw-p 00000000 00:00 0 +7fea68500000-7fea68504000 ---p 00000000 00:00 0 +7fea68504000-7fea68600000 rw-p 00000000 00:00 0 +7fea68600000-7fea68604000 ---p 00000000 00:00 0 +7fea68604000-7fea68700000 rw-p 00000000 00:00 0 +7fea68700000-7fea68704000 ---p 00000000 00:00 0 +7fea68704000-7fea68800000 rw-p 00000000 00:00 0 +7fea68800000-7fea68804000 ---p 00000000 00:00 0 +7fea68804000-7fea68900000 rw-p 00000000 00:00 0 +7fea68900000-7fea68904000 ---p 00000000 00:00 0 +7fea68904000-7fea68a00000 rw-p 00000000 00:00 0 +7fea68a00000-7fea68a04000 ---p 00000000 00:00 0 +7fea68a04000-7fea68b00000 rw-p 00000000 00:00 0 +7fea68b00000-7fea68b04000 ---p 00000000 00:00 0 +7fea68b04000-7fea68c00000 rw-p 00000000 00:00 0 +7fea68c00000-7fea68c04000 ---p 00000000 00:00 0 +7fea68c04000-7fea68d00000 rw-p 00000000 00:00 0 +7fea68d00000-7fea68d04000 ---p 00000000 00:00 0 +7fea68d04000-7fea68e00000 rw-p 00000000 00:00 0 +7fea68e00000-7fea68e04000 ---p 00000000 00:00 0 +7fea68e04000-7fea68f00000 rw-p 00000000 00:00 0 +7fea68f00000-7fea68f04000 ---p 00000000 00:00 0 +7fea68f04000-7fea69000000 rw-p 00000000 00:00 0 +7fea69000000-7fea69004000 ---p 00000000 00:00 0 +7fea69004000-7fea69100000 rw-p 00000000 00:00 0 +7fea69100000-7fea69104000 ---p 00000000 00:00 0 +7fea69104000-7fea69200000 rw-p 00000000 00:00 0 +7fea69200000-7fea69204000 ---p 00000000 00:00 0 +7fea69204000-7fea69300000 rw-p 00000000 00:00 0 +7fea69300000-7fea69304000 ---p 00000000 00:00 0 +7fea69304000-7fea69400000 rw-p 00000000 00:00 0 +7fea69400000-7fea69404000 ---p 00000000 00:00 0 +7fea69404000-7fea69500000 rw-p 00000000 00:00 0 +7fea69500000-7fea69504000 ---p 00000000 00:00 0 +7fea69504000-7fea69600000 rw-p 00000000 00:00 0 +7fea69600000-7fea69604000 ---p 00000000 00:00 0 +7fea69604000-7fea69700000 rw-p 00000000 00:00 0 +7fea69700000-7fea69704000 ---p 00000000 00:00 0 +7fea69704000-7fea69800000 rw-p 00000000 00:00 0 +7fea69800000-7fea69804000 ---p 00000000 00:00 0 +7fea69804000-7fea69900000 rw-p 00000000 00:00 0 +7fea69900000-7fea69904000 ---p 00000000 00:00 0 +7fea69904000-7fea69a00000 rw-p 00000000 00:00 0 +7fea69a00000-7fea69a04000 ---p 00000000 00:00 0 +7fea69a04000-7fea69b00000 rw-p 00000000 00:00 0 +7fea69b00000-7fea69b04000 ---p 00000000 00:00 0 +7fea69b04000-7fea69c00000 rw-p 00000000 00:00 0 +7fea69c00000-7fea69c04000 ---p 00000000 00:00 0 +7fea69c04000-7fea69d00000 rw-p 00000000 00:00 0 +7fea69d00000-7fea69d04000 ---p 00000000 00:00 0 +7fea69d04000-7fea69e00000 rw-p 00000000 00:00 0 +7fea69e00000-7fea69e04000 ---p 00000000 00:00 0 +7fea69e04000-7fea69f00000 rw-p 00000000 00:00 0 +7fea69f00000-7fea69f04000 ---p 00000000 00:00 0 +7fea69f04000-7fea6a000000 rw-p 00000000 00:00 0 +7fea6a000000-7fea6a004000 ---p 00000000 00:00 0 +7fea6a004000-7fea6a100000 rw-p 00000000 00:00 0 +7fea6a100000-7fea6a104000 ---p 00000000 00:00 0 +7fea6a104000-7fea6a200000 rw-p 00000000 00:00 0 +7fea6a200000-7fea6a204000 ---p 00000000 00:00 0 +7fea6a204000-7fea6a300000 rw-p 00000000 00:00 0 +7fea6a300000-7fea6a304000 ---p 00000000 00:00 0 +7fea6a304000-7fea6a400000 rw-p 00000000 00:00 0 +7fea6a400000-7fea6a404000 ---p 00000000 00:00 0 +7fea6a404000-7fea6a500000 rw-p 00000000 00:00 0 +7fea6a500000-7fea6a504000 ---p 00000000 00:00 0 +7fea6a504000-7fea6a600000 rw-p 00000000 00:00 0 +7fea6a600000-7fea6a604000 ---p 00000000 00:00 0 +7fea6a604000-7fea6a700000 rw-p 00000000 00:00 0 +7fea6a700000-7fea6a704000 ---p 00000000 00:00 0 +7fea6a704000-7fea6a800000 rw-p 00000000 00:00 0 +7fea6a800000-7fea6a804000 ---p 00000000 00:00 0 +7fea6a804000-7fea6a900000 rw-p 00000000 00:00 0 +7fea6a900000-7fea6a904000 ---p 00000000 00:00 0 +7fea6a904000-7fea6aa00000 rw-p 00000000 00:00 0 +7fea6aa00000-7fea6aa04000 ---p 00000000 00:00 0 +7fea6aa04000-7fea6ab00000 rw-p 00000000 00:00 0 +7fea6ab00000-7fea6ab04000 ---p 00000000 00:00 0 +7fea6ab04000-7fea6ac00000 rw-p 00000000 00:00 0 +7fea6ac00000-7fea6ac04000 ---p 00000000 00:00 0 +7fea6ac04000-7fea6ad00000 rw-p 00000000 00:00 0 +7fea6ad00000-7fea6ad04000 ---p 00000000 00:00 0 +7fea6ad04000-7fea6ae00000 rw-p 00000000 00:00 0 +7fea6ae00000-7fea6ae04000 ---p 00000000 00:00 0 +7fea6ae04000-7fea6af00000 rw-p 00000000 00:00 0 +7fea6af00000-7fea6af04000 ---p 00000000 00:00 0 +7fea6af04000-7fea6b000000 rw-p 00000000 00:00 0 +7fea6b000000-7fea6b004000 ---p 00000000 00:00 0 +7fea6b004000-7fea6b100000 rw-p 00000000 00:00 0 +7fea6b100000-7fea6b104000 ---p 00000000 00:00 0 +7fea6b104000-7fea6b200000 rw-p 00000000 00:00 0 +7fea6b200000-7fea6b204000 ---p 00000000 00:00 0 +7fea6b204000-7fea6b300000 rw-p 00000000 00:00 0 +7fea6b300000-7fea6b304000 ---p 00000000 00:00 0 +7fea6b304000-7fea6b400000 rw-p 00000000 00:00 0 +7fea6b400000-7fea6b404000 ---p 00000000 00:00 0 +7fea6b404000-7fea6b500000 rw-p 00000000 00:00 0 +7fea6b500000-7fea6b504000 ---p 00000000 00:00 0 +7fea6b504000-7fea6b600000 rw-p 00000000 00:00 0 +7fea6b600000-7fea6b604000 ---p 00000000 00:00 0 +7fea6b604000-7fea6b700000 rw-p 00000000 00:00 0 +7fea6b700000-7fea6b704000 ---p 00000000 00:00 0 +7fea6b704000-7fea6b800000 rw-p 00000000 00:00 0 +7fea6b800000-7fea6b804000 ---p 00000000 00:00 0 +7fea6b804000-7fea6b900000 rw-p 00000000 00:00 0 +7fea6b900000-7fea6b904000 ---p 00000000 00:00 0 +7fea6b904000-7fea6ba00000 rw-p 00000000 00:00 0 +7fea6ba00000-7fea6ba04000 ---p 00000000 00:00 0 +7fea6ba04000-7fea6bb00000 rw-p 00000000 00:00 0 +7fea6bb00000-7fea6bb04000 ---p 00000000 00:00 0 +7fea6bb04000-7fea6bc00000 rw-p 00000000 00:00 0 +7fea6bc00000-7fea6bc04000 ---p 00000000 00:00 0 +7fea6bc04000-7fea6bd00000 rw-p 00000000 00:00 0 +7fea6bd00000-7fea6bd04000 ---p 00000000 00:00 0 +7fea6bd04000-7fea6be00000 rw-p 00000000 00:00 0 +7fea6be00000-7fea6be04000 ---p 00000000 00:00 0 +7fea6be04000-7fea6bf00000 rw-p 00000000 00:00 0 +7fea6bf00000-7fea6bf04000 ---p 00000000 00:00 0 +7fea6bf04000-7fea6c000000 rw-p 00000000 00:00 0 +7fea6c000000-7fea6c004000 ---p 00000000 00:00 0 +7fea6c004000-7fea6c100000 rw-p 00000000 00:00 0 +7fea6c100000-7fea6c104000 ---p 00000000 00:00 0 +7fea6c104000-7fea6c200000 rw-p 00000000 00:00 0 +7fea6c200000-7fea6c204000 ---p 00000000 00:00 0 +7fea6c204000-7fea6c300000 rw-p 00000000 00:00 0 +7fea6c300000-7fea6c304000 ---p 00000000 00:00 0 +7fea6c304000-7fea6c400000 rw-p 00000000 00:00 0 +7fea6c400000-7fea6c404000 ---p 00000000 00:00 0 +7fea6c404000-7fea6c500000 rw-p 00000000 00:00 0 +7fea6c500000-7fea6c504000 ---p 00000000 00:00 0 +7fea6c504000-7fea6c600000 rw-p 00000000 00:00 0 +7fea6c600000-7fea6d200000 rw-p 00000000 00:00 0 +7fea6d200000-7fea6d204000 ---p 00000000 00:00 0 +7fea6d204000-7fea6d300000 rw-p 00000000 00:00 0 +7fea6d300000-7fea6d304000 ---p 00000000 00:00 0 +7fea6d304000-7fea6d400000 rw-p 00000000 00:00 0 +7fea6d400000-7fea6d404000 ---p 00000000 00:00 0 +7fea6d404000-7fea6d500000 rw-p 00000000 00:00 0 +7fea6d500000-7fea6d504000 ---p 00000000 00:00 0 +7fea6d504000-7fea6d600000 rw-p 00000000 00:00 0 +7fea6d600000-7fea6d604000 ---p 00000000 00:00 0 +7fea6d604000-7fea6d700000 rw-p 00000000 00:00 0 +7fea6d700000-7fea6d704000 ---p 00000000 00:00 0 +7fea6d704000-7fea6d800000 rw-p 00000000 00:00 0 +7fea6d800000-7fea6d804000 ---p 00000000 00:00 0 +7fea6d804000-7fea6d900000 rw-p 00000000 00:00 0 +7fea6d900000-7fea6d904000 ---p 00000000 00:00 0 +7fea6d904000-7fea6da00000 rw-p 00000000 00:00 0 +7fea6da00000-7fea6da04000 ---p 00000000 00:00 0 +7fea6da04000-7fea6db00000 rw-p 00000000 00:00 0 +7fea6db00000-7fea6db04000 ---p 00000000 00:00 0 +7fea6db04000-7fea6dc00000 rw-p 00000000 00:00 0 +7fea6dc00000-7fea6dc04000 ---p 00000000 00:00 0 +7fea6dc04000-7fea6dd00000 rw-p 00000000 00:00 0 +7fea6dd00000-7fea6dd04000 ---p 00000000 00:00 0 +7fea6dd04000-7fea6de00000 rw-p 00000000 00:00 0 +7fea6de00000-7fea6de04000 ---p 00000000 00:00 0 +7fea6de04000-7fea6df00000 rw-p 00000000 00:00 0 +7fea6df00000-7fea6df04000 ---p 00000000 00:00 0 +7fea6df04000-7fea6e000000 rw-p 00000000 00:00 0 +7fea6e000000-7fea6e004000 ---p 00000000 00:00 0 +7fea6e004000-7fea6e100000 rw-p 00000000 00:00 0 +7fea6e100000-7fea6e104000 ---p 00000000 00:00 0 +7fea6e104000-7fea6e200000 rw-p 00000000 00:00 0 +7fea6e200000-7fea6e204000 ---p 00000000 00:00 0 +7fea6e204000-7fea6e300000 rw-p 00000000 00:00 0 +7fea6e300000-7fea6e304000 ---p 00000000 00:00 0 +7fea6e304000-7fea6e980000 rw-p 00000000 00:00 0 +7fea6e980000-7fea6ea00000 rw-p 00000000 00:00 0 +7fea6ea00000-7fea6ec00000 rw-p 00000000 00:00 0 +7fea6ec00000-7fea6ec11000 r-xp 00000000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ec11000-7fea6ee10000 ---p 00011000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ee10000-7fea6ee11000 r--p 00010000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ee11000-7fea6ee12000 rw-p 00011000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ee12000-7fea6ee13000 r--p 00012000 00:10d 1558259 /tmp/libnetty_transport_native_epoll_x86_6413640138921322660888.so (deleted) +7fea6ee13000-7fea6ee14000 rw-p 00000000 00:00 0 +7fea6eede000-7fea6eee2000 ---p 00000000 00:00 0 +7fea6eee2000-7fea6efde000 rw-p 00000000 00:00 0 +7fea6efde000-7fea6efdf000 ---p 00000000 00:00 0 +7fea6efdf000-7fea6f7df000 rw-p 00000000 00:00 0 +7fea6f7df000-7fea6f7e0000 ---p 00000000 00:00 0 +7fea6f7e0000-7fea6ffe0000 rw-p 00000000 00:00 0 +7fea6ffe0000-7fea6ffe1000 ---p 00000000 00:00 0 +7fea6ffe1000-7fea707e1000 rw-p 00000000 00:00 0 +7fea707e1000-7fea707e2000 ---p 00000000 00:00 0 +7fea707e2000-7fea70fe2000 rw-p 00000000 00:00 0 +7fea70fe2000-7fea70fe3000 ---p 00000000 00:00 0 +7fea70fe3000-7fea717e3000 rw-p 00000000 00:00 0 +7fea717e3000-7fea717e4000 ---p 00000000 00:00 0 +7fea717e4000-7fea71fe4000 rw-p 00000000 00:00 0 +7fea71fe4000-7fea71fe5000 ---p 00000000 00:00 0 +7fea71fe5000-7fea727e5000 rw-p 00000000 00:00 0 +7fea727e5000-7fea727e6000 ---p 00000000 00:00 0 +7fea727e6000-7fea72fe6000 rw-p 00000000 00:00 0 +7fea72fe6000-7fea72fe7000 ---p 00000000 00:00 0 +7fea72fe7000-7fea737e7000 rw-p 00000000 00:00 0 +7fea737e7000-7fea737e8000 ---p 00000000 00:00 0 +7fea737e8000-7fea73fe8000 rw-p 00000000 00:00 0 +7fea73fe8000-7fea73fe9000 ---p 00000000 00:00 0 +7fea73fe9000-7fea747e9000 rw-p 00000000 00:00 0 +7fea747e9000-7fea747ea000 ---p 00000000 00:00 0 +7fea747ea000-7fea74fea000 rw-p 00000000 00:00 0 +7fea74fea000-7fea74feb000 ---p 00000000 00:00 0 +7fea74feb000-7fea757eb000 rw-p 00000000 00:00 0 +7fea757eb000-7fea757ec000 ---p 00000000 00:00 0 +7fea757ec000-7fea75fec000 rw-p 00000000 00:00 0 +7fea75fec000-7fea75fed000 ---p 00000000 00:00 0 +7fea75fed000-7fea767ed000 rw-p 00000000 00:00 0 +7fea767ed000-7fea767ee000 ---p 00000000 00:00 0 +7fea767ee000-7fea76fee000 rw-p 00000000 00:00 0 +7fea76fee000-7fea76fef000 ---p 00000000 00:00 0 +7fea76fef000-7fea777ef000 rw-p 00000000 00:00 0 +7fea777ef000-7fea777f0000 ---p 00000000 00:00 0 +7fea777f0000-7fea77ff0000 rw-p 00000000 00:00 0 +7fea77ff0000-7fea77ff1000 ---p 00000000 00:00 0 +7fea77ff1000-7fea787f1000 rw-p 00000000 00:00 0 +7fea787f1000-7fea787f2000 ---p 00000000 00:00 0 +7fea787f2000-7fea78ff2000 rw-p 00000000 00:00 0 +7fea78ff2000-7fea78ff3000 ---p 00000000 00:00 0 +7fea78ff3000-7fea797f3000 rw-p 00000000 00:00 0 +7fea797f3000-7fea797f4000 ---p 00000000 00:00 0 +7fea797f4000-7fea79ff4000 rw-p 00000000 00:00 0 +7fea79ff4000-7fea79ff5000 ---p 00000000 00:00 0 +7fea79ff5000-7fea7a7f5000 rw-p 00000000 00:00 0 +7fea7a7f5000-7fea7a7f6000 ---p 00000000 00:00 0 +7fea7a7f6000-7fea7aff6000 rw-p 00000000 00:00 0 +7fea7aff6000-7fea7aff7000 ---p 00000000 00:00 0 +7fea7aff7000-7fea7b7f7000 rw-p 00000000 00:00 0 +7fea7b7f7000-7fea7b7f8000 ---p 00000000 00:00 0 +7fea7b7f8000-7fea7bff8000 rw-p 00000000 00:00 0 +7fea7bff8000-7fea7bff9000 ---p 00000000 00:00 0 +7fea7bff9000-7fea7c7f9000 rw-p 00000000 00:00 0 +7fea7c7f9000-7fea7c7fa000 ---p 00000000 00:00 0 +7fea7c7fa000-7fea7cffa000 rw-p 00000000 00:00 0 +7fea7cffa000-7fea7cffb000 ---p 00000000 00:00 0 +7fea7cffb000-7fea7d7fb000 rw-p 00000000 00:00 0 +7fea7d7fb000-7fea7d7fc000 ---p 00000000 00:00 0 +7fea7d7fc000-7fea7dffc000 rw-p 00000000 00:00 0 +7fea7dffc000-7fea7dffd000 ---p 00000000 00:00 0 +7fea7dffd000-7fea7e7fd000 rw-p 00000000 00:00 0 +7fea7e7fd000-7fea7e7fe000 ---p 00000000 00:00 0 +7fea7e7fe000-7fea7effe000 rw-p 00000000 00:00 0 +7fea7effe000-7fea7efff000 ---p 00000000 00:00 0 +7fea7efff000-7fea7f7ff000 rw-p 00000000 00:00 0 +7fea7f7ff000-7fea7f800000 ---p 00000000 00:00 0 +7fea7f800000-7fea80000000 rw-p 00000000 00:00 0 +7fea80000000-7fea80221000 rw-p 00000000 00:00 0 +7fea80221000-7fea84000000 ---p 00000000 00:00 0 +7fea84000000-7fea84004000 ---p 00000000 00:00 0 +7fea84004000-7fea84100000 rw-p 00000000 00:00 0 +7fea84100000-7fea84104000 ---p 00000000 00:00 0 +7fea84104000-7fea84200000 rw-p 00000000 00:00 0 +7fea84200000-7fea84211000 r-xp 00000000 00:10d 1558247 /tmp/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_647152395319239525831.so (deleted) +7fea84211000-7fea84410000 ---p 00011000 00:10d 1558247 /tmp/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_647152395319239525831.so (deleted) +7fea84410000-7fea84411000 r--p 00010000 00:10d 1558247 /tmp/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_647152395319239525831.so (deleted) +7fea84411000-7fea84412000 rw-p 00011000 00:10d 1558247 /tmp/libio_grpc_netty_shaded_netty_transport_native_epoll_x86_647152395319239525831.so (deleted) +7fea84412000-7fea84413000 rw-p 00000000 00:00 0 +7fea84479000-7fea8447d000 ---p 00000000 00:00 0 +7fea8447d000-7fea84579000 rw-p 00000000 00:00 0 +7fea84579000-7fea8457a000 ---p 00000000 00:00 0 +7fea8457a000-7fea84d7a000 rw-p 00000000 00:00 0 +7fea84d7a000-7fea84d7b000 ---p 00000000 00:00 0 +7fea84d7b000-7fea8557b000 rw-p 00000000 00:00 0 +7fea8557b000-7fea8557c000 ---p 00000000 00:00 0 +7fea8557c000-7fea85d7c000 rw-p 00000000 00:00 0 +7fea85d7c000-7fea85d7d000 ---p 00000000 00:00 0 +7fea85d7d000-7fea8657d000 rw-p 00000000 00:00 0 +7fea8657d000-7fea8657e000 ---p 00000000 00:00 0 +7fea8657e000-7fea86d7e000 rw-p 00000000 00:00 0 +7fea86d7e000-7fea86ffe000 rw-p 00000000 00:00 0 +7fea86ffe000-7fea86fff000 ---p 00000000 00:00 0 +7fea86fff000-7fea877ff000 rw-p 00000000 00:00 0 +7fea877ff000-7fea87800000 ---p 00000000 00:00 0 +7fea87800000-7fea88000000 rw-p 00000000 00:00 0 +7fea88000000-7fea88322000 rw-p 00000000 00:00 0 +7fea88322000-7fea8c000000 ---p 00000000 00:00 0 +7fea8c000000-7fea8c4ea000 rw-p 00000000 00:00 0 +7fea8c4ea000-7fea90000000 ---p 00000000 00:00 0 +7fea90000000-7fea90199000 rw-p 00000000 00:00 0 +7fea90199000-7fea94000000 ---p 00000000 00:00 0 +7fea94000000-7fea9425a000 rw-p 00000000 00:00 0 +7fea9425a000-7fea98000000 ---p 00000000 00:00 0 +7fea98000000-7fea9909f000 rw-p 00000000 00:00 0 +7fea9909f000-7fea9c000000 ---p 00000000 00:00 0 +7fea9c000000-7fea9c27c000 rw-p 00000000 00:00 0 +7fea9c27c000-7feaa0000000 ---p 00000000 00:00 0 +7feaa0000000-7feaa1b26000 rw-p 00000000 00:00 0 +7feaa1b26000-7feaa4000000 ---p 00000000 00:00 0 +7feaa4000000-7feaa5076000 rw-p 00000000 00:00 0 +7feaa5076000-7feaa8000000 ---p 00000000 00:00 0 +7feaa8000000-7feaa9107000 rw-p 00000000 00:00 0 +7feaa9107000-7feaac000000 ---p 00000000 00:00 0 +7feaac000000-7feaac400000 rw-p 00000000 00:00 0 +7feaac4f8000-7feaac4fc000 ---p 00000000 00:00 0 +7feaac4fc000-7feaac5f8000 rw-p 00000000 00:00 0 +7feaac5f8000-7feaac5f9000 ---p 00000000 00:00 0 +7feaac5f9000-7feaac7f9000 rw-p 00000000 00:00 0 +7feaac7f9000-7feaac7fa000 ---p 00000000 00:00 0 +7feaac7fa000-7feaacffa000 rw-p 00000000 00:00 0 +7feaacffa000-7feaacffb000 ---p 00000000 00:00 0 +7feaacffb000-7feaad7fb000 rw-p 00000000 00:00 0 +7feaad7fb000-7feaad7fc000 ---p 00000000 00:00 0 +7feaad7fc000-7feaadffc000 rw-p 00000000 00:00 0 +7feaadffc000-7feaadffd000 ---p 00000000 00:00 0 +7feaadffd000-7feaae7fd000 rw-p 00000000 00:00 0 +7feaae7fd000-7feaae7fe000 ---p 00000000 00:00 0 +7feaae7fe000-7feaaeffe000 rw-p 00000000 00:00 0 +7feaaeffe000-7feaaefff000 ---p 00000000 00:00 0 +7feaaefff000-7feaaf7ff000 rw-p 00000000 00:00 0 +7feaaf7ff000-7feaaf803000 ---p 00000000 00:00 0 +7feaaf803000-7feaaf8ff000 rw-p 00000000 00:00 0 +7feaaf8ff000-7feaaf903000 ---p 00000000 00:00 0 +7feaaf903000-7feaaf9ff000 rw-p 00000000 00:00 0 +7feaaf9ff000-7feaafa03000 ---p 00000000 00:00 0 +7feaafa03000-7feaafaff000 rw-p 00000000 00:00 0 +7feaafaff000-7feaafb03000 ---p 00000000 00:00 0 +7feaafb03000-7feab0000000 rw-p 00000000 00:00 0 +7feab0000000-7feab1459000 rw-p 00000000 00:00 0 +7feab1459000-7feab4000000 ---p 00000000 00:00 0 +7feab4000000-7feab5078000 rw-p 00000000 00:00 0 +7feab5078000-7feab8000000 ---p 00000000 00:00 0 +7feab8000000-7feab946e000 rw-p 00000000 00:00 0 +7feab946e000-7feabc000000 ---p 00000000 00:00 0 +7feabc000000-7feabc071000 rw-p 00000000 00:00 0 +7feabc071000-7feac0000000 ---p 00000000 00:00 0 +7feac0000000-7feac2b39000 rw-p 00000000 00:00 0 +7feac2b39000-7feac4000000 ---p 00000000 00:00 0 +7feac4000000-7feac705d000 rw-p 00000000 00:00 0 +7feac705d000-7feac8000000 ---p 00000000 00:00 0 +7feac8000000-7feac81a7000 rw-p 00000000 00:00 0 +7feac81a7000-7feacc000000 ---p 00000000 00:00 0 +7feacc000000-7feace819000 rw-p 00000000 00:00 0 +7feace819000-7fead0000000 ---p 00000000 00:00 0 +7fead0000000-7fead1374000 rw-p 00000000 00:00 0 +7fead1374000-7fead4000000 ---p 00000000 00:00 0 +7fead4000000-7fead40db000 rw-p 00000000 00:00 0 +7fead40db000-7fead8000000 ---p 00000000 00:00 0 +7fead8000000-7fead8101000 rw-p 00000000 00:00 0 +7fead8101000-7feadc000000 ---p 00000000 00:00 0 +7feadc000000-7feadcc80000 rw-p 00000000 00:00 0 +7feadcc80000-7feae0000000 ---p 00000000 00:00 0 +7feae0000000-7feae0053000 rw-p 00000000 00:00 0 +7feae0053000-7feae4000000 ---p 00000000 00:00 0 +7feae4000000-7feae45dc000 rw-p 00000000 00:00 0 +7feae45dc000-7feae8000000 ---p 00000000 00:00 0 +7feae8000000-7feae8111000 rw-p 00000000 00:00 0 +7feae8111000-7feaec000000 ---p 00000000 00:00 0 +7feaec000000-7feaed6ce000 rw-p 00000000 00:00 0 +7feaed6ce000-7feaf0000000 ---p 00000000 00:00 0 +7feaf0000000-7feaf0049000 rw-p 00000000 00:00 0 +7feaf0049000-7feaf4000000 ---p 00000000 00:00 0 +7feaf4000000-7feaf43bc000 rw-p 00000000 00:00 0 +7feaf43bc000-7feaf8000000 ---p 00000000 00:00 0 +7feaf8000000-7feaf82be000 rw-p 00000000 00:00 0 +7feaf82be000-7feafc000000 ---p 00000000 00:00 0 +7feafc000000-7feafc2c2000 rw-p 00000000 00:00 0 +7feafc2c2000-7feb00000000 ---p 00000000 00:00 0 +7feb00000000-7feb002a8000 rw-p 00000000 00:00 0 +7feb002a8000-7feb04000000 ---p 00000000 00:00 0 +7feb04000000-7feb04004000 ---p 00000000 00:00 0 +7feb04004000-7feb04100000 rw-p 00000000 00:00 0 +7feb04100000-7feb04104000 ---p 00000000 00:00 0 +7feb04104000-7feb04200000 rw-p 00000000 00:00 0 +7feb04200000-7feb04204000 ---p 00000000 00:00 0 +7feb04204000-7feb04300000 rw-p 00000000 00:00 0 +7feb04300000-7feb04304000 ---p 00000000 00:00 0 +7feb04304000-7feb04c00000 rw-p 00000000 00:00 0 +7feb04cfe000-7feb04d02000 ---p 00000000 00:00 0 +7feb04d02000-7feb04dfe000 rw-p 00000000 00:00 0 +7feb04dfe000-7feb04e02000 ---p 00000000 00:00 0 +7feb04e02000-7feb04efe000 rw-p 00000000 00:00 0 +7feb04efe000-7feb04f02000 ---p 00000000 00:00 0 +7feb04f02000-7feb04ffe000 rw-p 00000000 00:00 0 +7feb04ffe000-7feb05002000 ---p 00000000 00:00 0 +7feb05002000-7feb050fe000 rw-p 00000000 00:00 0 +7feb050fe000-7feb05102000 ---p 00000000 00:00 0 +7feb05102000-7feb05a00000 rw-p 00000000 00:00 0 +7feb05a00000-7feb05c3f000 r-xp 00000000 00:10d 1558256 /tmp/libnetty_tcnative_linux_x86_647032282263693345431.so (deleted) +7feb05c3f000-7feb05e3e000 ---p 0023f000 00:10d 1558256 /tmp/libnetty_tcnative_linux_x86_647032282263693345431.so (deleted) +7feb05e3e000-7feb05e52000 r--p 0023e000 00:10d 1558256 /tmp/libnetty_tcnative_linux_x86_647032282263693345431.so (deleted) +7feb05e52000-7feb05e53000 rw-p 00252000 00:10d 1558256 /tmp/libnetty_tcnative_linux_x86_647032282263693345431.so (deleted) +7feb05e53000-7feb05e55000 rw-p 00000000 00:00 0 +7feb05f00000-7feb05f04000 ---p 00000000 00:00 0 +7feb05f04000-7feb06100000 rw-p 00000000 00:00 0 +7feb06100000-7feb06300000 rw-p 00000000 00:00 0 +7feb06300000-7feb06400000 rw-p 00000000 00:00 0 +7feb06400000-7feb06580000 rw-p 00000000 00:00 0 +7feb06580000-7feb06800000 rw-p 00000000 00:00 0 +7feb06800000-7feb06f00000 rw-p 00000000 00:00 0 +7feb06f00000-7feb07000000 rw-p 00000000 00:00 0 +7feb070ff000-7feb07103000 ---p 00000000 00:00 0 +7feb07103000-7feb071ff000 rw-p 00000000 00:00 0 +7feb071ff000-7feb07200000 ---p 00000000 00:00 0 +7feb07200000-7feb07400000 rw-p 00000000 00:00 0 +7feb07400000-7feb07c00000 rw-p 00000000 00:00 0 +7feb07cff000-7feb07d03000 ---p 00000000 00:00 0 +7feb07d03000-7feb07dff000 rw-p 00000000 00:00 0 +7feb07dff000-7feb07e00000 ---p 00000000 00:00 0 +7feb07e00000-7feb08000000 rw-p 00000000 00:00 0 +7feb08000000-7feb080b1000 rw-p 00000000 00:00 0 +7feb080b1000-7feb0c000000 ---p 00000000 00:00 0 +7feb0c000000-7feb0c687000 rw-p 00000000 00:00 0 +7feb0c687000-7feb10000000 ---p 00000000 00:00 0 +7feb10000000-7feb10068000 rw-p 00000000 00:00 0 +7feb10068000-7feb14000000 ---p 00000000 00:00 0 +7feb14000000-7feb140bb000 rw-p 00000000 00:00 0 +7feb140bb000-7feb18000000 ---p 00000000 00:00 0 +7feb18000000-7feb19693000 rw-p 00000000 00:00 0 +7feb19693000-7feb1c000000 ---p 00000000 00:00 0 +7feb1c000000-7feb1d240000 rw-p 00000000 00:00 0 +7feb1d240000-7feb20000000 ---p 00000000 00:00 0 +7feb20000000-7feb202a7000 rw-p 00000000 00:00 0 +7feb202a7000-7feb24000000 ---p 00000000 00:00 0 +7feb24000000-7feb24075000 rw-p 00000000 00:00 0 +7feb24075000-7feb28000000 ---p 00000000 00:00 0 +7feb28000000-7feb2805f000 rw-p 00000000 00:00 0 +7feb2805f000-7feb2c000000 ---p 00000000 00:00 0 +7feb2c000000-7feb2d406000 rw-p 00000000 00:00 0 +7feb2d406000-7feb30000000 ---p 00000000 00:00 0 +7feb3007f000-7feb30080000 ---p 00000000 00:00 0 +7feb30080000-7feb30280000 rw-p 00000000 00:00 0 +7feb30280000-7feb31000000 rw-p 00000000 00:00 0 +7feb310ff000-7feb31103000 ---p 00000000 00:00 0 +7feb31103000-7feb311ff000 rw-p 00000000 00:00 0 +7feb311ff000-7feb31200000 ---p 00000000 00:00 0 +7feb31200000-7feb31400000 rw-p 00000000 00:00 0 +7feb31400000-7feb32000000 rw-p 00000000 00:00 0 +7feb320fe000-7feb32102000 ---p 00000000 00:00 0 +7feb32102000-7feb321fe000 rw-p 00000000 00:00 0 +7feb321fe000-7feb321ff000 ---p 00000000 00:00 0 +7feb321ff000-7feb323ff000 rw-p 00000000 00:00 0 +7feb323ff000-7feb32400000 ---p 00000000 00:00 0 +7feb32400000-7feb32600000 rw-p 00000000 00:00 0 +7feb32600000-7feb32a00000 rw-p 00000000 00:00 0 +7feb32afa000-7feb32afe000 ---p 00000000 00:00 0 +7feb32afe000-7feb32bfa000 rw-p 00000000 00:00 0 +7feb32bfa000-7feb32bfb000 ---p 00000000 00:00 0 +7feb32bfb000-7feb32dfb000 rw-p 00000000 00:00 0 +7feb32dfb000-7feb32dfc000 ---p 00000000 00:00 0 +7feb32dfc000-7feb32ffc000 rw-p 00000000 00:00 0 +7feb32ffc000-7feb32ffd000 ---p 00000000 00:00 0 +7feb32ffd000-7feb331fd000 rw-p 00000000 00:00 0 +7feb331fd000-7feb331fe000 ---p 00000000 00:00 0 +7feb331fe000-7feb333fe000 rw-p 00000000 00:00 0 +7feb333fe000-7feb333ff000 ---p 00000000 00:00 0 +7feb333ff000-7feb335ff000 rw-p 00000000 00:00 0 +7feb335ff000-7feb33600000 ---p 00000000 00:00 0 +7feb33600000-7feb33800000 rw-p 00000000 00:00 0 +7feb33800000-7feb34100000 rw-p 00000000 00:00 0 +7feb34100000-7feb38000000 ---p 00000000 00:00 0 +7feb38000000-7feb3bfff000 rw-p 00000000 00:00 0 +7feb3bfff000-7feb3c000000 ---p 00000000 00:00 0 +7feb3c000000-7feb3c113000 rw-p 00000000 00:00 0 +7feb3c113000-7feb40000000 ---p 00000000 00:00 0 +7feb40000000-7feb40138000 rw-p 00000000 00:00 0 +7feb40138000-7feb44000000 ---p 00000000 00:00 0 +7feb44000000-7feb44276000 rw-p 00000000 00:00 0 +7feb44276000-7feb48000000 ---p 00000000 00:00 0 +7feb48000000-7feb48140000 rw-p 00000000 00:00 0 +7feb48140000-7feb4c000000 ---p 00000000 00:00 0 +7feb4c000000-7feb4c14e000 rw-p 00000000 00:00 0 +7feb4c14e000-7feb50000000 ---p 00000000 00:00 0 +7feb50000000-7feb50154000 rw-p 00000000 00:00 0 +7feb50154000-7feb54000000 ---p 00000000 00:00 0 +7feb54000000-7feb54148000 rw-p 00000000 00:00 0 +7feb54148000-7feb58000000 ---p 00000000 00:00 0 +7feb58000000-7feb58200000 rw-p 00000000 00:00 0 +7feb582ff000-7feb58303000 ---p 00000000 00:00 0 +7feb58303000-7feb583ff000 rw-p 00000000 00:00 0 +7feb583ff000-7feb585ff000 rw-p 00000000 00:00 0 +7feb585ff000-7feb58600000 ---p 00000000 00:00 0 +7feb58600000-7feb58800000 rw-p 00000000 00:00 0 +7feb58800000-7feb58a00000 rw-p 00000000 00:00 0 +7feb58afe000-7feb58b02000 ---p 00000000 00:00 0 +7feb58b02000-7feb58bfe000 rw-p 00000000 00:00 0 +7feb58bfe000-7feb58dfe000 rw-p 00000000 00:00 0 +7feb58dfe000-7feb58dff000 ---p 00000000 00:00 0 +7feb58dff000-7feb58fff000 rw-p 00000000 00:00 0 +7feb58fff000-7feb59000000 ---p 00000000 00:00 0 +7feb59000000-7feb59200000 rw-p 00000000 00:00 0 +7feb59200000-7feb59400000 rw-p 00000000 00:00 0 +7feb594fc000-7feb59500000 ---p 00000000 00:00 0 +7feb59500000-7feb595fc000 rw-p 00000000 00:00 0 +7feb595fc000-7feb595fd000 ---p 00000000 00:00 0 +7feb595fd000-7feb597fd000 rw-p 00000000 00:00 0 +7feb597fd000-7feb597fe000 ---p 00000000 00:00 0 +7feb597fe000-7feb599fe000 rw-p 00000000 00:00 0 +7feb599fe000-7feb599ff000 ---p 00000000 00:00 0 +7feb599ff000-7feb59bff000 rw-p 00000000 00:00 0 +7feb59bff000-7feb59c00000 ---p 00000000 00:00 0 +7feb59c00000-7feb59e00000 rw-p 00000000 00:00 0 +7feb59e00000-7feb5a200000 rw-p 00000000 00:00 0 +7feb5a2fe000-7feb5a302000 ---p 00000000 00:00 0 +7feb5a302000-7feb5a3fe000 rw-p 00000000 00:00 0 +7feb5a3fe000-7feb5a3ff000 ---p 00000000 00:00 0 +7feb5a3ff000-7feb5a5ff000 rw-p 00000000 00:00 0 +7feb5a5ff000-7feb5a600000 ---p 00000000 00:00 0 +7feb5a600000-7feb5a800000 rw-p 00000000 00:00 0 +7feb5a800000-7feb5b000000 rw-p 00000000 00:00 0 +7feb5b000000-7feb5bc66000 r-xp 00000000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bc66000-7feb5bc67000 ---p 00c66000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bc67000-7feb5bce7000 r--p 00c66000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bce7000-7feb5bce8000 rw-p 00ce6000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bce8000-7feb5bceb000 r--p 00ce7000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bceb000-7feb5bcf2000 rw-p 00cea000 00:10d 1558255 /tmp/libstreaming15349554247424576522/libstreaming_jni.so +7feb5bcf2000-7feb5bf00000 rw-p 00000000 00:00 0 +7feb5bf00000-7feb5bf04000 ---p 00000000 00:00 0 +7feb5bf04000-7feb5c000000 rw-p 00000000 00:00 0 +7feb5c000000-7feb5c445000 rw-p 00000000 00:00 0 +7feb5c445000-7feb60000000 ---p 00000000 00:00 0 +7feb60000000-7feb603ca000 rw-p 00000000 00:00 0 +7feb603ca000-7feb64000000 ---p 00000000 00:00 0 +7feb64000000-7feb64155000 rw-p 00000000 00:00 0 +7feb64155000-7feb68000000 ---p 00000000 00:00 0 +7feb68000000-7feb68132000 rw-p 00000000 00:00 0 +7feb68132000-7feb6c000000 ---p 00000000 00:00 0 +7feb6c000000-7feb6c164000 rw-p 00000000 00:00 0 +7feb6c164000-7feb70000000 ---p 00000000 00:00 0 +7feb70000000-7feb7022a000 rw-p 00000000 00:00 0 +7feb7022a000-7feb74000000 ---p 00000000 00:00 0 +7feb74000000-7feb74511000 rw-p 00000000 00:00 0 +7feb74511000-7feb78000000 ---p 00000000 00:00 0 +7feb78000000-7feb78147000 rw-p 00000000 00:00 0 +7feb78147000-7feb7c000000 ---p 00000000 00:00 0 +7feb7c000000-7feb7c188000 rw-p 00000000 00:00 0 +7feb7c188000-7feb80000000 ---p 00000000 00:00 0 +7feb80000000-7feb8013b000 rw-p 00000000 00:00 0 +7feb8013b000-7feb84000000 ---p 00000000 00:00 0 +7feb84000000-7feb8476d000 rw-p 00000000 00:00 0 +7feb8476d000-7feb88000000 ---p 00000000 00:00 0 +7feb88000000-7feb88153000 rw-p 00000000 00:00 0 +7feb88153000-7feb8c000000 ---p 00000000 00:00 0 +7feb8c000000-7feb8c16c000 rw-p 00000000 00:00 0 +7feb8c16c000-7feb90000000 ---p 00000000 00:00 0 +7feb90000000-7feb90108000 rw-p 00000000 00:00 0 +7feb90108000-7feb94000000 ---p 00000000 00:00 0 +7feb94000000-7feb94443000 rw-p 00000000 00:00 0 +7feb94443000-7feb98000000 ---p 00000000 00:00 0 +7feb98000000-7feb98c45000 rw-p 00000000 00:00 0 +7feb98c45000-7feb9c000000 ---p 00000000 00:00 0 +7feb9c000000-7feb9c12d000 rw-p 00000000 00:00 0 +7feb9c12d000-7feba0000000 ---p 00000000 00:00 0 +7feba0000000-7feba0117000 rw-p 00000000 00:00 0 +7feba0117000-7feba4000000 ---p 00000000 00:00 0 +7feba4000000-7feba414c000 rw-p 00000000 00:00 0 +7feba414c000-7feba8000000 ---p 00000000 00:00 0 +7feba8000000-7feba870d000 rw-p 00000000 00:00 0 +7feba870d000-7febac000000 ---p 00000000 00:00 0 +7febac000000-7febac4db000 rw-p 00000000 00:00 0 +7febac4db000-7febb0000000 ---p 00000000 00:00 0 +7febb0000000-7febb0c6c000 rw-p 00000000 00:00 0 +7febb0c6c000-7febb4000000 ---p 00000000 00:00 0 +7febb4000000-7febb4120000 rw-p 00000000 00:00 0 +7febb4120000-7febb8000000 ---p 00000000 00:00 0 +7febb8000000-7febb8190000 rw-p 00000000 00:00 0 +7febb8190000-7febbc000000 ---p 00000000 00:00 0 +7febbc000000-7febbc38f000 rw-p 00000000 00:00 0 +7febbc38f000-7febc0000000 ---p 00000000 00:00 0 +7febc0000000-7febc0166000 rw-p 00000000 00:00 0 +7febc0166000-7febc4000000 ---p 00000000 00:00 0 +7febc4000000-7febc4124000 rw-p 00000000 00:00 0 +7febc4124000-7febc8000000 ---p 00000000 00:00 0 +7febc8000000-7febc84de000 rw-p 00000000 00:00 0 +7febc84de000-7febcc000000 ---p 00000000 00:00 0 +7febcc000000-7febcc1b2000 rw-p 00000000 00:00 0 +7febcc1b2000-7febd0000000 ---p 00000000 00:00 0 +7febd0000000-7febd0409000 rw-p 00000000 00:00 0 +7febd0409000-7febd4000000 ---p 00000000 00:00 0 +7febd4000000-7febd4e03000 rw-p 00000000 00:00 0 +7febd4e03000-7febd8000000 ---p 00000000 00:00 0 +7febd8000000-7febd8145000 rw-p 00000000 00:00 0 +7febd8145000-7febdc000000 ---p 00000000 00:00 0 +7febdc000000-7febdc109000 rw-p 00000000 00:00 0 +7febdc109000-7febe0000000 ---p 00000000 00:00 0 +7febe0000000-7febe10f8000 rw-p 00000000 00:00 0 +7febe10f8000-7febe4000000 ---p 00000000 00:00 0 +7febe4000000-7febe4153000 rw-p 00000000 00:00 0 +7febe4153000-7febe8000000 ---p 00000000 00:00 0 +7febe8000000-7febe8459000 rw-p 00000000 00:00 0 +7febe8459000-7febec000000 ---p 00000000 00:00 0 +7febec000000-7febec150000 rw-p 00000000 00:00 0 +7febec150000-7febf0000000 ---p 00000000 00:00 0 +7febf0000000-7febf03e8000 rw-p 00000000 00:00 0 +7febf03e8000-7febf4000000 ---p 00000000 00:00 0 +7febf4000000-7febf40d9000 rw-p 00000000 00:00 0 +7febf40d9000-7febf8000000 ---p 00000000 00:00 0 +7febf8000000-7febf8145000 rw-p 00000000 00:00 0 +7febf8145000-7febfc000000 ---p 00000000 00:00 0 +7febfc000000-7febfcd2e000 rw-p 00000000 00:00 0 +7febfcd2e000-7fec00000000 ---p 00000000 00:00 0 +7fec00000000-7fec007e6000 rw-p 00000000 00:00 0 +7fec007e6000-7fec04000000 ---p 00000000 00:00 0 +7fec04000000-7fec05451000 rw-p 00000000 00:00 0 +7fec05451000-7fec08000000 ---p 00000000 00:00 0 +7fec08000000-7fec0966b000 rw-p 00000000 00:00 0 +7fec0966b000-7fec0c000000 ---p 00000000 00:00 0 +7fec0c000000-7fec0d120000 rw-p 00000000 00:00 0 +7fec0d120000-7fec10000000 ---p 00000000 00:00 0 +7fec10000000-7fec10d40000 rw-p 00000000 00:00 0 +7fec10d40000-7fec14000000 ---p 00000000 00:00 0 +7fec14000000-7fec152bc000 rw-p 00000000 00:00 0 +7fec152bc000-7fec18000000 ---p 00000000 00:00 0 +7fec18000000-7fec1afd4000 rw-p 00000000 00:00 0 +7fec1afd4000-7fec1c000000 ---p 00000000 00:00 0 +7fec1c000000-7fec1c004000 ---p 00000000 00:00 0 +7fec1c004000-7fec1c100000 rw-p 00000000 00:00 0 +7fec1c100000-7fec1c104000 ---p 00000000 00:00 0 +7fec1c104000-7fec1c200000 rw-p 00000000 00:00 0 +7fec1c200000-7fec1c204000 ---p 00000000 00:00 0 +7fec1c204000-7fec1c300000 rw-p 00000000 00:00 0 +7fec1c300000-7fec1c304000 ---p 00000000 00:00 0 +7fec1c304000-7fec1c400000 rw-p 00000000 00:00 0 +7fec1c400000-7fec1c404000 ---p 00000000 00:00 0 +7fec1c404000-7fec1c500000 rw-p 00000000 00:00 0 +7fec1c500000-7fec1c504000 ---p 00000000 00:00 0 +7fec1c504000-7fec1c600000 rw-p 00000000 00:00 0 +7fec1c600000-7fec1c604000 ---p 00000000 00:00 0 +7fec1c604000-7fec1c700000 rw-p 00000000 00:00 0 +7fec1c700000-7fec1c704000 ---p 00000000 00:00 0 +7fec1c704000-7fec1c800000 rw-p 00000000 00:00 0 +7fec1c800000-7fec1c804000 ---p 00000000 00:00 0 +7fec1c804000-7fec1c900000 rw-p 00000000 00:00 0 +7fec1c900000-7fec1c904000 ---p 00000000 00:00 0 +7fec1c904000-7fec1ca00000 rw-p 00000000 00:00 0 +7fec1ca00000-7fec1ca04000 ---p 00000000 00:00 0 +7fec1ca04000-7fec1cb00000 rw-p 00000000 00:00 0 +7fec1cb00000-7fec1cb04000 ---p 00000000 00:00 0 +7fec1cb04000-7fec1cc00000 rw-p 00000000 00:00 0 +7fec1cc00000-7fec1cc04000 ---p 00000000 00:00 0 +7fec1cc04000-7fec1cd00000 rw-p 00000000 00:00 0 +7fec1cd00000-7fec1cd04000 ---p 00000000 00:00 0 +7fec1cd04000-7fec1ce00000 rw-p 00000000 00:00 0 +7fec1ce00000-7fec1ce04000 ---p 00000000 00:00 0 +7fec1ce04000-7fec1cf00000 rw-p 00000000 00:00 0 +7fec1cf00000-7fec1cf04000 ---p 00000000 00:00 0 +7fec1cf04000-7fec1d000000 rw-p 00000000 00:00 0 +7fec1d000000-7fec1d012000 r-xp 00000000 00:10d 1558258 /tmp/jffi13881990940772923834.so (deleted) +7fec1d012000-7fec1d211000 ---p 00012000 00:10d 1558258 /tmp/jffi13881990940772923834.so (deleted) +7fec1d211000-7fec1d212000 rw-p 00011000 00:10d 1558258 /tmp/jffi13881990940772923834.so (deleted) +7fec1d300000-7fec1d304000 ---p 00000000 00:00 0 +7fec1d304000-7fec1d700000 rw-p 00000000 00:00 0 +7fec1d700000-7fec1d800000 rw-p 00000000 00:00 0 +7fec1d800000-7fec1dc00000 rw-p 00000000 00:00 0 +7fec1dcf8000-7fec1dcfc000 ---p 00000000 00:00 0 +7fec1dcfc000-7fec1ddf8000 rw-p 00000000 00:00 0 +7fec1ddf8000-7fec1ddfc000 ---p 00000000 00:00 0 +7fec1ddfc000-7fec1def8000 rw-p 00000000 00:00 0 +7fec1def8000-7fec1defc000 ---p 00000000 00:00 0 +7fec1defc000-7fec1dff8000 rw-p 00000000 00:00 0 +7fec1dff8000-7fec1dffc000 ---p 00000000 00:00 0 +7fec1dffc000-7fec1e0f8000 rw-p 00000000 00:00 0 +7fec1e0f8000-7fec1e0fc000 ---p 00000000 00:00 0 +7fec1e0fc000-7fec1e1f8000 rw-p 00000000 00:00 0 +7fec1e1f8000-7fec1e1fc000 ---p 00000000 00:00 0 +7fec1e1fc000-7fec1e2f8000 rw-p 00000000 00:00 0 +7fec1e2f8000-7fec1e2fc000 ---p 00000000 00:00 0 +7fec1e2fc000-7fec1e3f8000 rw-p 00000000 00:00 0 +7fec1e3f8000-7fec1e3fc000 ---p 00000000 00:00 0 +7fec1e3fc000-7fec1e4f8000 rw-p 00000000 00:00 0 +7fec1e4f8000-7fec1e4fc000 ---p 00000000 00:00 0 +7fec1e4fc000-7fec1e5f8000 rw-p 00000000 00:00 0 +7fec1e5f8000-7fec1e5fc000 ---p 00000000 00:00 0 +7fec1e5fc000-7fec1e6f8000 rw-p 00000000 00:00 0 +7fec1e6f8000-7fec1e6fc000 ---p 00000000 00:00 0 +7fec1e6fc000-7fec1e7f8000 rw-p 00000000 00:00 0 +7fec1e7f8000-7fec1e7fc000 ---p 00000000 00:00 0 +7fec1e7fc000-7fec1e8f8000 rw-p 00000000 00:00 0 +7fec1e8f8000-7fec1e8fc000 ---p 00000000 00:00 0 +7fec1e8fc000-7fec1e9f8000 rw-p 00000000 00:00 0 +7fec1e9f8000-7fec1e9fc000 ---p 00000000 00:00 0 +7fec1e9fc000-7fec1eaf8000 rw-p 00000000 00:00 0 +7fec1eaf8000-7fec1eafc000 ---p 00000000 00:00 0 +7fec1eafc000-7fec1ebf8000 rw-p 00000000 00:00 0 +7fec1ebf8000-7fec1ebf9000 ---p 00000000 00:00 0 +7fec1ebf9000-7fec1ecfa000 rw-p 00000000 00:00 0 +7fec1ecfa000-7fec1ecfb000 ---p 00000000 00:00 0 +7fec1ecfb000-7fec1edfc000 rw-p 00000000 00:00 0 +7fec1edfc000-7fec1edfd000 ---p 00000000 00:00 0 +7fec1edfd000-7fec1eefe000 rw-p 00000000 00:00 0 +7fec1eefe000-7fec1eeff000 ---p 00000000 00:00 0 +7fec1eeff000-7fec1f100000 rw-p 00000000 00:00 0 +7fec1f100000-7fec1f500000 rw-p 00000000 00:00 0 +7fec1f500000-7fec1f600000 rw-p 00000000 00:00 0 +7fec1f600000-7fec1f800000 rw-p 00000000 00:00 0 +7fec1f8f8000-7fec1f8f9000 ---p 00000000 00:00 0 +7fec1f8f9000-7fec1f9fa000 rw-p 00000000 00:00 0 +7fec1f9fa000-7fec1f9fb000 ---p 00000000 00:00 0 +7fec1f9fb000-7fec1fafc000 rw-p 00000000 00:00 0 +7fec1fafc000-7fec1fafd000 ---p 00000000 00:00 0 +7fec1fafd000-7fec1fbfe000 rw-p 00000000 00:00 0 +7fec1fbfe000-7fec1fbff000 ---p 00000000 00:00 0 +7fec1fbff000-7fec1fd00000 rw-p 00000000 00:00 0 +7fec1fd00000-7fec1fd04000 ---p 00000000 00:00 0 +7fec1fd04000-7fec1fe00000 rw-p 00000000 00:00 0 +7fec1fe00000-7fec1fe04000 ---p 00000000 00:00 0 +7fec1fe04000-7fec1ff00000 rw-p 00000000 00:00 0 +7fec1ff00000-7fec1ff04000 ---p 00000000 00:00 0 +7fec1ff04000-7fec20000000 rw-p 00000000 00:00 0 +7fec20000000-7fec21109000 rw-p 00000000 00:00 0 +7fec21109000-7fec24000000 ---p 00000000 00:00 0 +7fec24000000-7fec24cba000 rw-p 00000000 00:00 0 +7fec24cba000-7fec28000000 ---p 00000000 00:00 0 +7fec28000000-7fec29187000 rw-p 00000000 00:00 0 +7fec29187000-7fec2c000000 ---p 00000000 00:00 0 +7fec2c000000-7fec2cf55000 rw-p 00000000 00:00 0 +7fec2cf55000-7fec30000000 ---p 00000000 00:00 0 +7fec30000000-7fec30e7e000 rw-p 00000000 00:00 0 +7fec30e7e000-7fec34000000 ---p 00000000 00:00 0 +7fec34000000-7fec3535a000 rw-p 00000000 00:00 0 +7fec3535a000-7fec38000000 ---p 00000000 00:00 0 +7fec38000000-7fec39305000 rw-p 00000000 00:00 0 +7fec39305000-7fec3c000000 ---p 00000000 00:00 0 +7fec3c000000-7fec3dbd5000 rw-p 00000000 00:00 0 +7fec3dbd5000-7fec40000000 ---p 00000000 00:00 0 +7fec40000000-7fec40309000 rw-p 00000000 00:00 0 +7fec40309000-7fec44000000 ---p 00000000 00:00 0 +7fec44000000-7fec47ff9000 rw-p 00000000 00:00 0 +7fec47ff9000-7fec48000000 ---p 00000000 00:00 0 +7fec48000000-7fec4af67000 rw-p 00000000 00:00 0 +7fec4af67000-7fec4c000000 ---p 00000000 00:00 0 +7fec4c000000-7fec4c671000 rw-p 00000000 00:00 0 +7fec4c671000-7fec50000000 ---p 00000000 00:00 0 +7fec50000000-7fec50294000 rw-p 00000000 00:00 0 +7fec50294000-7fec54000000 ---p 00000000 00:00 0 +7fec54000000-7fec58000000 rw-p 00000000 00:00 0 +7fec58000000-7fec58425000 rw-p 00000000 00:00 0 +7fec58425000-7fec5c000000 ---p 00000000 00:00 0 +7fec5c000000-7fec5c479000 rw-p 00000000 00:00 0 +7fec5c479000-7fec60000000 ---p 00000000 00:00 0 +7fec60000000-7fec6068d000 rw-p 00000000 00:00 0 +7fec6068d000-7fec64000000 ---p 00000000 00:00 0 +7fec64000000-7fec643a6000 rw-p 00000000 00:00 0 +7fec643a6000-7fec68000000 ---p 00000000 00:00 0 +7fec68000000-7fec682f9000 rw-p 00000000 00:00 0 +7fec682f9000-7fec6c000000 ---p 00000000 00:00 0 +7fec6c04b000-7fec6c04c000 ---p 00000000 00:00 0 +7fec6c04c000-7fec6c14d000 rw-p 00000000 00:00 0 +7fec6c14d000-7fec6c14e000 ---p 00000000 00:00 0 +7fec6c14e000-7fec6c24f000 rw-p 00000000 00:00 0 +7fec6c24f000-7fec6c250000 ---p 00000000 00:00 0 +7fec6c250000-7fec6c351000 rw-p 00000000 00:00 0 +7fec6c351000-7fec6c352000 ---p 00000000 00:00 0 +7fec6c352000-7fec6c453000 rw-p 00000000 00:00 0 +7fec6c453000-7fec6c457000 ---p 00000000 00:00 0 +7fec6c457000-7fec6c553000 rw-p 00000000 00:00 0 +7fec6c553000-7fec6c557000 ---p 00000000 00:00 0 +7fec6c557000-7fec6c653000 rw-p 00000000 00:00 0 +7fec6c653000-7fec6c657000 ---p 00000000 00:00 0 +7fec6c657000-7fec6c753000 rw-p 00000000 00:00 0 +7fec6c753000-7fec6c757000 ---p 00000000 00:00 0 +7fec6c757000-7fec6c853000 rw-p 00000000 00:00 0 +7fec6c853000-7fec6c857000 ---p 00000000 00:00 0 +7fec6c857000-7fec6c953000 rw-p 00000000 00:00 0 +7fec6c953000-7fec6c957000 ---p 00000000 00:00 0 +7fec6c957000-7fec6ca53000 rw-p 00000000 00:00 0 +7fec6ca53000-7fec6ca57000 ---p 00000000 00:00 0 +7fec6ca57000-7fec6cb53000 rw-p 00000000 00:00 0 +7fec6cb53000-7fec6ce54000 rw-p 00000000 00:00 0 +7fec6ce5d000-7fec6d9d6000 rw-p 00000000 00:00 0 +7fec6d9d6000-7fec6da70000 r--p 00000000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6da70000-7fec6db80000 r-xp 0009a000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6db80000-7fec6dbef000 r--p 001aa000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6dbef000-7fec6dbfa000 r--p 00218000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6dbfa000-7fec6dbfd000 rw-p 00223000 00:10d 1559976 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30 +7fec6dbfd000-7fec6dc00000 rw-p 00000000 00:00 0 +7fec6dc00000-7fec6dc32000 r-xp 00000000 00:10d 1567538 /tmp/libjavaProfiler16799629445378392692.so +7fec6dc32000-7fec6de32000 ---p 00032000 00:10d 1567538 /tmp/libjavaProfiler16799629445378392692.so +7fec6de32000-7fec6de34000 rw-p 00032000 00:10d 1567538 /tmp/libjavaProfiler16799629445378392692.so +7fec6de34000-7fec6de35000 rw-p 00000000 00:00 0 +7fec6df00000-7fec6df04000 ---p 00000000 00:00 0 +7fec6df04000-7fec6e300000 rw-p 00000000 00:00 0 +7fec6e300000-7fec6e400000 rw-p 00000000 00:00 0 +7fec6e400000-7fec6e700000 rw-p 00000000 00:00 0 +7fec6e700000-7fec6e800000 rw-p 00000000 00:00 0 +7fec6e8ce000-7fec6e8d2000 ---p 00000000 00:00 0 +7fec6e8d2000-7fec6e9ce000 rw-p 00000000 00:00 0 +7fec6e9ce000-7fec6eb17000 r--s 01354000 00:10d 1567502 /usr/local/app/agent/dd-java-agent.jar +7fec6eb17000-7fec6eb1b000 ---p 00000000 00:00 0 +7fec6eb1b000-7fec6ec17000 rw-p 00000000 00:00 0 +7fec6ec17000-7fec6ec1b000 ---p 00000000 00:00 0 +7fec6ec1b000-7fec6ed17000 rw-p 00000000 00:00 0 +7fec6ed17000-7fec6ed1b000 ---p 00000000 00:00 0 +7fec6ed1b000-7fec6ee17000 rw-p 00000000 00:00 0 +7fec6ee17000-7fec6ee1b000 ---p 00000000 00:00 0 +7fec6ee1b000-7fec6ef17000 rw-p 00000000 00:00 0 +7fec6ef17000-7fec6ef1b000 ---p 00000000 00:00 0 +7fec6ef1b000-7fec6f017000 rw-p 00000000 00:00 0 +7fec6f017000-7fec6f01b000 ---p 00000000 00:00 0 +7fec6f01b000-7fec6f117000 rw-p 00000000 00:00 0 +7fec6f117000-7fec6f11b000 ---p 00000000 00:00 0 +7fec6f11b000-7fec6f217000 rw-p 00000000 00:00 0 +7fec6f217000-7fec6f21b000 ---p 00000000 00:00 0 +7fec6f21b000-7fec6f317000 rw-p 00000000 00:00 0 +7fec6f317000-7fec6f600000 r--p 00000000 00:10d 1559405 /usr/lib/locale/locale-archive +7fec6f600000-7fec6f604000 ---p 00000000 00:00 0 +7fec6f604000-7fec6f700000 rw-p 00000000 00:00 0 +7fec6f700000-7fec6f704000 ---p 00000000 00:00 0 +7fec6f704000-7fec6fc00000 rw-p 00000000 00:00 0 +7fec6fc00000-7fec70000000 rw-p 00000000 00:00 0 +7fec700bf000-7fec700cf000 rw-p 00000000 00:00 0 +7fec700cf000-7fec700d1000 r--p 00000000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d1000-7fec700d4000 r-xp 00002000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d4000-7fec700d5000 r--p 00005000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d5000-7fec700d6000 ---p 00006000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d6000-7fec700d7000 r--p 00006000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d7000-7fec700d8000 rw-p 00007000 00:10d 1566404 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libdt_socket.so +7fec700d8000-7fec700df000 r--s 00000000 00:10d 1559802 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache +7fec700df000-7fec700e0000 r--p 00000000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e0000-7fec700e1000 r-xp 00001000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e1000-7fec700e2000 r--p 00002000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e2000-7fec700e3000 r--p 00002000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e3000-7fec700e4000 rw-p 00003000 00:10d 1566405 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libextnet.so +7fec700e4000-7fec700e5000 ---p 00000000 00:00 0 +7fec700e5000-7fec98000000 rw-p 00000000 00:00 0 +7fec98000000-7fec982d2000 rw-p 00000000 00:00 0 +7fec982d2000-7fec9c000000 ---p 00000000 00:00 0 +7fec9c003000-7fec9c013000 rw-p 00000000 00:00 0 +7fec9c013000-7fec9c016000 r--p 00000000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c016000-7fec9c02d000 r-xp 00003000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c02d000-7fec9c031000 r--p 0001a000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c031000-7fec9c032000 r--p 0001d000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c032000-7fec9c033000 rw-p 0001e000 00:10d 1559869 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fec9c034000-7fec9c035000 rw-p 00000000 00:00 0 +7fec9c035000-7fec9c039000 r--p 00000000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c039000-7fec9c040000 r-xp 00004000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c040000-7fec9c042000 r--p 0000b000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c042000-7fec9c043000 r--p 0000c000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c043000-7fec9c045000 rw-p 0000d000 00:10d 1566434 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libverify.so +7fec9c045000-7fec9c047000 r--p 00000000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c047000-7fec9c04a000 r-xp 00002000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c04a000-7fec9c04b000 r--p 00005000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c04b000-7fec9c04c000 ---p 00006000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c04c000-7fec9c04e000 rw-p 00006000 00:10d 1566424 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement_ext.so +7fec9c04e000-7fec9c050000 r--p 00000000 00:10d 1566435 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libzip.so +7fec9c050000-7fec9c054000 r-xp 00002000 00:10d 1566435 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libzip.so +7fec9c054000-7fec9c056000 r--p 00006000 00:10d 1566435 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libzip.so +7fec9c056000-7fec9c058000 rw-p 00007000 00:10d 1566435 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libzip.so +7fec9c058000-7fec9c05c000 r--p 00000000 00:10d 1566426 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnet.so +7fec9c05c000-7fec9c06a000 r-xp 00004000 00:10d 1566426 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnet.so +7fec9c06a000-7fec9c06e000 r--p 00012000 00:10d 1566426 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnet.so +7fec9c06e000-7fec9c070000 rw-p 00015000 00:10d 1566426 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnet.so +7fec9c070000-7fec9d474000 rw-p 00000000 00:00 0 +7fec9d474000-7feca00b4000 rwxp 00000000 00:00 0 +7feca00b4000-7feca49ab000 ---p 00000000 00:00 0 +7feca49ab000-7feca4c1b000 rwxp 00000000 00:00 0 +7feca4c1b000-7feca4f3d000 ---p 00000000 00:00 0 +7feca4f3d000-7feca916d000 rwxp 00000000 00:00 0 +7feca916d000-7fecac474000 ---p 00000000 00:00 0 +7fecac474000-7fecb4000000 r--s 00000000 00:10d 1566436 /usr/lib/jvm/temurin-17-jdk-amd64/lib/modules +7fecb4000000-7fecb78a9000 rw-p 00000000 00:00 0 +7fecb78a9000-7fecb8000000 ---p 00000000 00:00 0 +7fecb8000000-7fecb8001000 r-xp 00000000 00:00 0 +7fecb8001000-7fecb8004000 r--p 00000000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8004000-7fecb8005000 r-xp 00003000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8005000-7fecb8006000 r--p 00004000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8006000-7fecb8007000 r--p 00004000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8007000-7fecb8008000 rw-p 00005000 00:10d 1566422 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libmanagement.so +7fecb8008000-7fecb800f000 r--p 00000000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb800f000-7fecb8018000 r-xp 00007000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb8018000-7fecb801c000 r--p 00010000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb801c000-7fecb801d000 ---p 00014000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb801d000-7fecb801f000 rw-p 00014000 00:10d 1566427 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libnio.so +7fecb801f000-7fecb8024000 r--p 00000000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb8024000-7fecb8065000 r-xp 00005000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb8065000-7fecb80ee000 r--p 00046000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb80ee000-7fecb80ef000 r--p 000ce000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb80ef000-7fecb80f0000 rw-p 000cf000 00:10d 1566420 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjsvml.so +7fecb80f0000-7fecb8c7e000 rw-p 00000000 00:00 0 +7fecb8c7e000-7fecb8c7f000 ---p 00000000 00:00 0 +7fecb8c7f000-7fecb9d80000 rw-p 00000000 00:00 0 +7fecb9d80000-7fecbb206000 rw-p 00000000 00:00 0 +7fecbb206000-7fecbb26c000 ---p 00000000 00:00 0 +7fecbb26c000-7fecbb2c5000 rw-p 00000000 00:00 0 +7fecbb2c5000-7fecbb357000 ---p 00000000 00:00 0 +7fecbb357000-7fecbb35c000 rw-p 00000000 00:00 0 +7fecbb35c000-7fecbb363000 ---p 00000000 00:00 0 +7fecbb363000-7fecbb36b000 rw-s 00000000 00:10d 1567537 /tmp/hsperfdata_root/7 +7fecbb36b000-7fecbb36e000 r--p 00000000 00:10d 1566415 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjdwp.so +7fecbb36e000-7fecbb39b000 r-xp 00003000 00:10d 1566415 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjdwp.so +7fecbb39b000-7fecbb3a9000 r--p 00030000 00:10d 1566415 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjdwp.so +7fecbb3a9000-7fecbb3ab000 rw-p 0003d000 00:10d 1566415 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjdwp.so +7fecbb3ab000-7fecbb3ac000 rw-p 00000000 00:00 0 +7fecbb3ac000-7fecbb3b9000 r--p 00000000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3b9000-7fecbb3cb000 r-xp 0000d000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3cb000-7fecbb3d1000 r--p 0001f000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3d1000-7fecbb3d2000 ---p 00025000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3d2000-7fecbb3d4000 rw-p 00025000 00:10d 1566412 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjava.so +7fecbb3d4000-7fecbb3d5000 rw-p 00000000 00:00 0 +7fecbb3d5000-7fecbb3d7000 r--p 00000000 00:10d 1566407 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libinstrument.so +7fecbb3d7000-7fecbb3dd000 r-xp 00002000 00:10d 1566407 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libinstrument.so +7fecbb3dd000-7fecbb3e0000 r--p 00008000 00:10d 1566407 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libinstrument.so +7fecbb3e0000-7fecbb3e2000 rw-p 0000a000 00:10d 1566407 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libinstrument.so +7fecbb3e2000-7fecbb3e6000 r--p 00000000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb3e6000-7fecbb3f9000 r-xp 00004000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb3f9000-7fecbb3ff000 r--p 00017000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb3ff000-7fecbb400000 r--p 0001c000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb400000-7fecbb402000 rw-p 0001d000 00:10d 1566416 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjimage.so +7fecbb402000-7fecbb406000 ---p 00000000 00:00 0 +7fecbb406000-7fecbb502000 rw-p 00000000 00:00 0 +7fecbb502000-7fecbb503000 r--p 00000000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb503000-7fecbb504000 r-xp 00001000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb504000-7fecbb505000 r--p 00002000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb505000-7fecbb506000 r--p 00002000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb506000-7fecbb507000 rw-p 00003000 00:10d 1559957 /usr/lib/x86_64-linux-gnu/librt.so.1 +7fecbb507000-7fecbb759000 r--p 00000000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbb759000-7fecbc476000 r-xp 00252000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbc476000-7fecbc702000 r--p 00f6f000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbc702000-7fecbc7ba000 r--p 011fa000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbc7ba000-7fecbc7f0000 rw-p 012b2000 00:10d 1566448 /usr/lib/jvm/temurin-17-jdk-amd64/lib/server/libjvm.so +7fecbc7f0000-7fecbc84a000 rw-p 00000000 00:00 0 +7fecbc84a000-7fecbc94b000 rw-s 00000000 00:01 3084 /memfd:allocation_ring_buffer (deleted) +7fecbc94b000-7fecbca4b000 rw-s 00001000 00:01 3084 /memfd:allocation_ring_buffer (deleted) +7fecbca4b000-7fecbca5f000 r--p 00000000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbca5f000-7fecbcb12000 r-xp 00014000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbcb12000-7fecbcb48000 r--p 000c7000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbcb48000-7fecbcb4f000 r--p 000fd000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbcb4f000-7fecbcb51000 rw-p 00104000 00:10d 1567534 /tmp/libdd_profiling-embedded.so-75e2313abab51c237882d02fe940e24b867ec76c +7fecbcb51000-7fecbcb55000 rw-p 00000000 00:00 0 +7fecbcb55000-7fecbcb63000 r--p 00000000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcb63000-7fecbcbdf000 r-xp 0000e000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcbdf000-7fecbcc3a000 r--p 0008a000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcc3a000-7fecbcc3b000 r--p 000e4000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcc3b000-7fecbcc3c000 rw-p 000e5000 00:10d 1559904 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fecbcc3c000-7fecbcc3f000 rw-p 00000000 00:00 0 +7fecbcc3f000-7fecbcc67000 r--p 00000000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbcc67000-7fecbcdfc000 r-xp 00028000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbcdfc000-7fecbce54000 r--p 001bd000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbce54000-7fecbce57000 r--p 00214000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbce57000-7fecbce5a000 rw-p 00217000 00:10d 1559842 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fecbce5a000-7fecbce67000 rw-p 00000000 00:00 0 +7fecbce67000-7fecbce68000 r--p 00000000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce68000-7fecbce69000 r-xp 00001000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce69000-7fecbce6a000 r--p 00002000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce6a000-7fecbce6b000 r--p 00002000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce6b000-7fecbce6c000 rw-p 00003000 00:10d 1559858 /usr/lib/x86_64-linux-gnu/libdl.so.2 +7fecbce6c000-7fecbce6e000 rw-p 00000000 00:00 0 +7fecbce6e000-7fecbce6f000 r--p 00000000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce6f000-7fecbce70000 r-xp 00001000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce70000-7fecbce71000 r--p 00002000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce71000-7fecbce72000 r--p 00002000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce72000-7fecbce73000 rw-p 00003000 00:10d 1559953 /usr/lib/x86_64-linux-gnu/libpthread.so.0 +7fecbce73000-7fecbce76000 r--p 00000000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce76000-7fecbce80000 r-xp 00003000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce80000-7fecbce83000 r--p 0000d000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce83000-7fecbce84000 ---p 00010000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce84000-7fecbce86000 rw-p 00010000 00:10d 1566417 /usr/lib/jvm/temurin-17-jdk-amd64/lib/libjli.so +7fecbce86000-7fecbce88000 r--p 00000000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbce88000-7fecbce99000 r-xp 00002000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbce99000-7fecbce9f000 r--p 00013000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbce9f000-7fecbcea0000 ---p 00019000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbcea0000-7fecbcea1000 r--p 00019000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbcea1000-7fecbcea2000 rw-p 0001a000 00:10d 1559998 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11 +7fecbcea2000-7fecbcea3000 ---p 00000000 00:00 0 +7fecbcea3000-7fecbcea4000 r--p 00000000 00:00 0 +7fecbcea4000-7fecbcea5000 r--p 00000000 00:10d 1567535 /tmp/libdd_loader.so-71a21cd2a3a607ab9e5daa8fa34550462173a585 +7fecbcea5000-7fecbcea8000 r-xp 00001000 00:10d 1567535 /tmp/libdd_loader.so-71a21cd2a3a607ab9e5daa8fa34550462173a585 +7fecbcea8000-7fecbcea9000 r--p 00004000 00:10d 1567535 /tmp/libdd_loader.so-71a21cd2a3a607ab9e5daa8fa34550462173a585 +7fecbcea9000-7fecbceab000 rw-p 00004000 00:10d 1567535 /tmp/libdd_loader.so-71a21cd2a3a607ab9e5daa8fa34550462173a585 +7fecbceab000-7fecbcead000 rw-p 00000000 00:00 0 +7fecbcead000-7fecbceaf000 r--p 00000000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fecbceaf000-7fecbced9000 r-xp 00002000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fecbced9000-7fecbcee4000 r--p 0002c000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fecbcee4000-7fecbcee5000 ---p 00000000 00:00 0 +7fecbcee5000-7fecbcee7000 r--p 00037000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fecbcee7000-7fecbcee9000 rw-p 00039000 00:10d 1559816 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7ffe063ea000-7ffe0640c000 rw-p 00000000 00:00 0 [stack] +7ffe0650d000-7ffe06511000 r--p 00000000 00:00 0 [vvar] +7ffe06511000-7ffe06513000 r-xp 00000000 00:00 0 [vdso] +ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] diff --git a/test/data/expected_deps_gnu_2.35_Release_amd64.txt b/test/data/expected_deps_gnu_2.35_Release_amd64.txt new file mode 100644 index 000000000..acd260121 --- /dev/null +++ b/test/data/expected_deps_gnu_2.35_Release_amd64.txt @@ -0,0 +1,4 @@ +linux-vdso.so.1 +libm.so.6 +libc.so.6 +/lib64/ld-linux-x86-64.so.2 diff --git a/test/data/expected_deps_gnu_2.35_Release_arm64.txt b/test/data/expected_deps_gnu_2.35_Release_arm64.txt new file mode 100644 index 000000000..acd260121 --- /dev/null +++ b/test/data/expected_deps_gnu_2.35_Release_arm64.txt @@ -0,0 +1,4 @@ +linux-vdso.so.1 +libm.so.6 +libc.so.6 +/lib64/ld-linux-x86-64.so.2 diff --git a/test/data/jit-dotnet-8.dump b/test/data/jit-dotnet-8.dump new file mode 100644 index 000000000..a399b3188 Binary files /dev/null and b/test/data/jit-dotnet-8.dump differ diff --git a/test/data/jit-dotnet-partial.dump b/test/data/jit-dotnet-partial.dump new file mode 100644 index 000000000..4b308b7c3 Binary files /dev/null and b/test/data/jit-dotnet-partial.dump differ diff --git a/test/data/jit-julia-partial.dump b/test/data/jit-julia-partial.dump new file mode 100644 index 000000000..4cd475038 Binary files /dev/null and b/test/data/jit-julia-partial.dump differ diff --git a/test/data/jit-simple-julia.dump b/test/data/jit-simple-julia.dump new file mode 100644 index 000000000..5979e4616 Binary files /dev/null and b/test/data/jit-simple-julia.dump differ diff --git a/test/data/proc/8/root/tmp/perf-8.map b/test/data/proc/8/root/tmp/perf-8.map new file mode 100644 index 000000000..60fd830f9 --- /dev/null +++ b/test/data/proc/8/root/tmp/perf-8.map @@ -0,0 +1,33206 @@ +00007FA128410000 d8 stub<1> AllocateTemporaryEntryPoints +00007FA1284100D8 78 stub<2> AllocateTemporaryEntryPoints +00007FA128410150 18 stub<3> AllocateTemporaryEntryPoints +00007FA128410168 18 stub<4> AllocateTemporaryEntryPoints +00007FA128410180 198 stub<5> AllocateTemporaryEntryPoints +00007FA128420018 6f0 stub<6> AllocateTemporaryEntryPoints +00007FA128410318 240 stub<7> AllocateTemporaryEntryPoints +00007FA128410AF8 48 stub<8> AllocateTemporaryEntryPoints +00007FA128410B40 1e0 stub<9> AllocateTemporaryEntryPoints +00007FA128410D20 120 stub<10> AllocateTemporaryEntryPoints +00007FA128412000 990 stub<11> AllocateTemporaryEntryPoints +00007FA128414000 948 stub<12> AllocateTemporaryEntryPoints +00007FA128414948 18 stub<13> AllocateTemporaryEntryPoints +00007FA128414960 210 stub<14> AllocateTemporaryEntryPoints +00007FA128414B70 18 stub<15> AllocateTemporaryEntryPoints +00007FA128416000 960 stub<16> AllocateTemporaryEntryPoints +00007FA128416960 5d0 stub<17> AllocateTemporaryEntryPoints +00007FA128416F30 18 stub<18> AllocateTemporaryEntryPoints +00007FA128416F48 60 stub<19> AllocateTemporaryEntryPoints +00007FA128418000 108 stub<20> AllocateTemporaryEntryPoints +00007FA128418108 18 stub<21> AllocateTemporaryEntryPoints +00007FA128418120 30 stub<22> AllocateTemporaryEntryPoints +00007FA128418150 750 stub<23> AllocateTemporaryEntryPoints +00007FA1284188A0 570 stub<24> AllocateTemporaryEntryPoints +00007FA128418E10 150 stub<25> AllocateTemporaryEntryPoints +00007FA12841A000 138 stub<26> AllocateTemporaryEntryPoints +00007FA12841A138 60 stub<27> AllocateTemporaryEntryPoints +00007FA12841A198 18 stub<28> AllocateTemporaryEntryPoints +00007FA12841A1B0 18 stub<29> AllocateTemporaryEntryPoints +00007FA12841A1C8 540 stub<30> AllocateTemporaryEntryPoints +00007FA12841A708 18 stub<31> AllocateTemporaryEntryPoints +00007FA12841A720 60 stub<32> AllocateTemporaryEntryPoints +00007FA12841A780 30 stub<33> AllocateTemporaryEntryPoints +00007FA12841A7B0 60 stub<34> AllocateTemporaryEntryPoints +00007FA12841A810 18 stub<35> AllocateTemporaryEntryPoints +00007FA12841A828 30 stub<36> AllocateTemporaryEntryPoints +00007FA12841A858 18 stub<37> AllocateTemporaryEntryPoints +00007FA12841A870 30 stub<38> AllocateTemporaryEntryPoints +00007FA12841A8A0 30 stub<39> AllocateTemporaryEntryPoints +00007FA12841A8D0 30 stub<40> AllocateTemporaryEntryPoints +00007FA12841A900 18 stub<41> AllocateTemporaryEntryPoints +00007FA12841A918 30 stub<42> AllocateTemporaryEntryPoints +00007FA12841A948 30 stub<43> AllocateTemporaryEntryPoints +00007FA12841A978 30 stub<44> AllocateTemporaryEntryPoints +00007FA12841A9A8 30 stub<45> AllocateTemporaryEntryPoints +00007FA12841A9D8 18 stub<46> AllocateTemporaryEntryPoints +00007FA12841A9F0 30 stub<47> AllocateTemporaryEntryPoints +00007FA12841AA20 390 stub<48> AllocateTemporaryEntryPoints +00007FA12841ADB0 a8 stub<49> AllocateTemporaryEntryPoints +00007FA12841AE58 48 stub<50> AllocateTemporaryEntryPoints +00007FA12841AEA0 48 stub<51> AllocateTemporaryEntryPoints +00007FA12841C000 240 stub<52> AllocateTemporaryEntryPoints +00007FA12841C240 30 stub<53> AllocateTemporaryEntryPoints +00007FA12841C270 18 stub<54> AllocateTemporaryEntryPoints +00007FA12841C288 630 stub<55> AllocateTemporaryEntryPoints +00007FA12841C8B8 4b0 stub<56> AllocateTemporaryEntryPoints +00007FA12841E000 408 stub<57> AllocateTemporaryEntryPoints +00007FA12841E408 60 stub<58> AllocateTemporaryEntryPoints +00007FA12841E468 18 stub<59> AllocateTemporaryEntryPoints +00007FA12841E480 30 stub<60> AllocateTemporaryEntryPoints +00007FA12841E4B0 60 stub<61> AllocateTemporaryEntryPoints +00007FA12841E510 30 stub<62> AllocateTemporaryEntryPoints +00007FA12841E540 18 stub<63> AllocateTemporaryEntryPoints +00007FA12841E558 30 stub<64> AllocateTemporaryEntryPoints +00007FA12841E588 18 stub<65> AllocateTemporaryEntryPoints +00007FA12841E5A0 30 stub<66> AllocateTemporaryEntryPoints +00007FA12841E5D0 30 stub<67> AllocateTemporaryEntryPoints +00007FA12841E600 18 stub<68> AllocateTemporaryEntryPoints +00007FA12841E618 30 stub<69> AllocateTemporaryEntryPoints +00007FA12841E648 30 stub<70> AllocateTemporaryEntryPoints +00007FA12841E678 18 stub<71> AllocateTemporaryEntryPoints +00007FA12841E690 30 stub<72> AllocateTemporaryEntryPoints +00007FA12841E6C0 30 stub<73> AllocateTemporaryEntryPoints +00007FA12841E6F0 30 stub<74> AllocateTemporaryEntryPoints +00007FA12841E720 30 stub<75> AllocateTemporaryEntryPoints +00007FA12841E750 30 stub<76> AllocateTemporaryEntryPoints +00007FA12841E780 18 stub<77> AllocateTemporaryEntryPoints +00007FA12841E798 30 stub<78> AllocateTemporaryEntryPoints +00007FA12841E7C8 390 stub<79> AllocateTemporaryEntryPoints +00007FA12841EB58 30 stub<80> AllocateTemporaryEntryPoints +00007FA12841EB88 18 stub<81> AllocateTemporaryEntryPoints +00007FA12841EBA0 30 stub<82> AllocateTemporaryEntryPoints +00007FA12841EBD0 30 stub<83> AllocateTemporaryEntryPoints +00007FA12841EC00 18 stub<84> AllocateTemporaryEntryPoints +00007FA12841EC18 30 stub<85> AllocateTemporaryEntryPoints +00007FA12841EC48 18 stub<86> AllocateTemporaryEntryPoints +00007FA12841EC60 30 stub<87> AllocateTemporaryEntryPoints +00007FA12841EC90 30 stub<88> AllocateTemporaryEntryPoints +00007FA12841ECC0 30 stub<89> AllocateTemporaryEntryPoints +00007FA12841ECF0 30 stub<90> AllocateTemporaryEntryPoints +00007FA12841ED20 18 stub<91> AllocateTemporaryEntryPoints +00007FA12841ED38 30 stub<92> AllocateTemporaryEntryPoints +00007FA12841ED68 a8 stub<93> AllocateTemporaryEntryPoints +00007FA12841EE10 18 stub<94> AllocateTemporaryEntryPoints +00007FA12841EE28 60 stub<95> AllocateTemporaryEntryPoints +00007FA12841EE88 30 stub<96> AllocateTemporaryEntryPoints +00007FA12841EEB8 18 stub<97> AllocateTemporaryEntryPoints +00007FA128440000 390 stub<98> AllocateTemporaryEntryPoints +00007FA128440390 30 stub<99> AllocateTemporaryEntryPoints +00007FA1284403C0 18 stub<100> AllocateTemporaryEntryPoints +00007FA1284403D8 30 stub<101> AllocateTemporaryEntryPoints +00007FA128440408 30 stub<102> AllocateTemporaryEntryPoints +00007FA128440438 18 stub<103> AllocateTemporaryEntryPoints +00007FA128440450 30 stub<104> AllocateTemporaryEntryPoints +00007FA128440480 18 stub<105> AllocateTemporaryEntryPoints +00007FA128440498 30 stub<106> AllocateTemporaryEntryPoints +00007FA1284404C8 30 stub<107> AllocateTemporaryEntryPoints +00007FA1284404F8 30 stub<108> AllocateTemporaryEntryPoints +00007FA128440528 30 stub<109> AllocateTemporaryEntryPoints +00007FA128440558 18 stub<110> AllocateTemporaryEntryPoints +00007FA128440570 30 stub<111> AllocateTemporaryEntryPoints +00007FA1284405A0 48 stub<112> AllocateTemporaryEntryPoints +00007FA1284405E8 60 stub<113> AllocateTemporaryEntryPoints +00007FA128440648 a8 stub<114> AllocateTemporaryEntryPoints +00007FA1284406F0 18 stub<115> AllocateTemporaryEntryPoints +00007FA128440708 60 stub<116> AllocateTemporaryEntryPoints +00007FA128440768 30 stub<117> AllocateTemporaryEntryPoints +00007FA128440798 18 stub<118> AllocateTemporaryEntryPoints +00007FA1284407B0 390 stub<119> AllocateTemporaryEntryPoints +00007FA128440B40 30 stub<120> AllocateTemporaryEntryPoints +00007FA128440B70 18 stub<121> AllocateTemporaryEntryPoints +00007FA128440B88 30 stub<122> AllocateTemporaryEntryPoints +00007FA128440BB8 30 stub<123> AllocateTemporaryEntryPoints +00007FA128440BE8 18 stub<124> AllocateTemporaryEntryPoints +00007FA128440C00 30 stub<125> AllocateTemporaryEntryPoints +00007FA128440C30 18 stub<126> AllocateTemporaryEntryPoints +00007FA128440C48 30 stub<127> AllocateTemporaryEntryPoints +00007FA128440C78 30 stub<128> AllocateTemporaryEntryPoints +00007FA128440CA8 30 stub<129> AllocateTemporaryEntryPoints +00007FA128440CD8 30 stub<130> AllocateTemporaryEntryPoints +00007FA128440D08 18 stub<131> AllocateTemporaryEntryPoints +00007FA128440D20 30 stub<132> AllocateTemporaryEntryPoints +00007FA128440D50 48 stub<133> AllocateTemporaryEntryPoints +00007FA128440D98 60 stub<134> AllocateTemporaryEntryPoints +00007FA128440DF8 30 stub<135> AllocateTemporaryEntryPoints +00007FA128442000 390 stub<136> AllocateTemporaryEntryPoints +00007FA128442390 30 stub<137> AllocateTemporaryEntryPoints +00007FA1284423C0 18 stub<138> AllocateTemporaryEntryPoints +00007FA1284423D8 30 stub<139> AllocateTemporaryEntryPoints +00007FA128442408 30 stub<140> AllocateTemporaryEntryPoints +00007FA128442438 18 stub<141> AllocateTemporaryEntryPoints +00007FA128442450 30 stub<142> AllocateTemporaryEntryPoints +00007FA128442480 30 stub<143> AllocateTemporaryEntryPoints +00007FA1284424B0 18 stub<144> AllocateTemporaryEntryPoints +00007FA1284424C8 30 stub<145> AllocateTemporaryEntryPoints +00007FA1284424F8 30 stub<146> AllocateTemporaryEntryPoints +00007FA128442528 30 stub<147> AllocateTemporaryEntryPoints +00007FA128442558 30 stub<148> AllocateTemporaryEntryPoints +00007FA128442588 18 stub<149> AllocateTemporaryEntryPoints +00007FA1284425A0 30 stub<150> AllocateTemporaryEntryPoints +00007FA1284425D0 6f0 stub<151> AllocateTemporaryEntryPoints +00007FA128444000 648 stub<152> AllocateTemporaryEntryPoints +00007FA128444648 4b0 stub<153> AllocateTemporaryEntryPoints +00007FA128444AF8 198 stub<154> AllocateTemporaryEntryPoints +00007FA128444C90 60 stub<155> AllocateTemporaryEntryPoints +00007FA128444CF0 30 stub<156> AllocateTemporaryEntryPoints +00007FA128444D20 48 stub<157> AllocateTemporaryEntryPoints +00007FA128446000 390 stub<158> AllocateTemporaryEntryPoints +00007FA128446390 30 stub<159> AllocateTemporaryEntryPoints +00007FA1284463C0 18 stub<160> AllocateTemporaryEntryPoints +00007FA1284463D8 30 stub<161> AllocateTemporaryEntryPoints +00007FA128446408 30 stub<162> AllocateTemporaryEntryPoints +00007FA128446438 18 stub<163> AllocateTemporaryEntryPoints +00007FA128446450 30 stub<164> AllocateTemporaryEntryPoints +00007FA128446480 30 stub<165> AllocateTemporaryEntryPoints +00007FA1284464B0 18 stub<166> AllocateTemporaryEntryPoints +00007FA1284464C8 30 stub<167> AllocateTemporaryEntryPoints +00007FA1284464F8 30 stub<168> AllocateTemporaryEntryPoints +00007FA128446528 30 stub<169> AllocateTemporaryEntryPoints +00007FA128446558 30 stub<170> AllocateTemporaryEntryPoints +00007FA128446588 18 stub<171> AllocateTemporaryEntryPoints +00007FA1284465A0 30 stub<172> AllocateTemporaryEntryPoints +00007FA1284465D0 648 stub<173> AllocateTemporaryEntryPoints +00007FA128448000 4c8 stub<174> AllocateTemporaryEntryPoints +00007FA1284484C8 408 stub<175> AllocateTemporaryEntryPoints +00007FA1284488D0 60 stub<176> AllocateTemporaryEntryPoints +00007FA128448930 30 stub<177> AllocateTemporaryEntryPoints +00007FA128448960 48 stub<178> AllocateTemporaryEntryPoints +00007FA1284489A8 648 stub<179> AllocateTemporaryEntryPoints +00007FA12844A000 4c8 stub<180> AllocateTemporaryEntryPoints +00007FA12844A4C8 3f0 stub<181> AllocateTemporaryEntryPoints +00007FA12844A8B8 60 stub<182> AllocateTemporaryEntryPoints +00007FA12844A918 30 stub<183> AllocateTemporaryEntryPoints +00007FA12844A948 48 stub<184> AllocateTemporaryEntryPoints +00007FA12844A990 648 stub<185> AllocateTemporaryEntryPoints +00007FA12844C000 4c8 stub<186> AllocateTemporaryEntryPoints +00007FA12844C4C8 408 stub<187> AllocateTemporaryEntryPoints +00007FA12844C8D0 60 stub<188> AllocateTemporaryEntryPoints +00007FA12844C930 30 stub<189> AllocateTemporaryEntryPoints +00007FA12844C960 48 stub<190> AllocateTemporaryEntryPoints +00007FA12844C9A8 648 stub<191> AllocateTemporaryEntryPoints +00007FA12844E000 4c8 stub<192> AllocateTemporaryEntryPoints +00007FA12844E4C8 3f0 stub<193> AllocateTemporaryEntryPoints +00007FA12844E8B8 60 stub<194> AllocateTemporaryEntryPoints +00007FA12844E918 30 stub<195> AllocateTemporaryEntryPoints +00007FA12844E948 48 stub<196> AllocateTemporaryEntryPoints +00007FA12844E990 630 stub<197> AllocateTemporaryEntryPoints +00007FA128460000 4b0 stub<198> AllocateTemporaryEntryPoints +00007FA1284604B0 3f0 stub<199> AllocateTemporaryEntryPoints +00007FA1284608A0 60 stub<200> AllocateTemporaryEntryPoints +00007FA128460900 30 stub<201> AllocateTemporaryEntryPoints +00007FA128460930 48 stub<202> AllocateTemporaryEntryPoints +00007FA128460978 630 stub<203> AllocateTemporaryEntryPoints +00007FA128462000 4b0 stub<204> AllocateTemporaryEntryPoints +00007FA1284624B0 408 stub<205> AllocateTemporaryEntryPoints +00007FA1284628B8 60 stub<206> AllocateTemporaryEntryPoints +00007FA128462918 30 stub<207> AllocateTemporaryEntryPoints +00007FA128462948 48 stub<208> AllocateTemporaryEntryPoints +00007FA128462990 630 stub<209> AllocateTemporaryEntryPoints +00007FA128464000 4b0 stub<210> AllocateTemporaryEntryPoints +00007FA1284644B0 3f0 stub<211> AllocateTemporaryEntryPoints +00007FA1284648A0 60 stub<212> AllocateTemporaryEntryPoints +00007FA128464900 30 stub<213> AllocateTemporaryEntryPoints +00007FA128464930 48 stub<214> AllocateTemporaryEntryPoints +00007FA128464978 48 stub<215> AllocateTemporaryEntryPoints +00007FA1284649C0 90 stub<216> AllocateTemporaryEntryPoints +00007FA128464A50 288 stub<217> AllocateTemporaryEntryPoints +00007FA128464CD8 90 stub<218> AllocateTemporaryEntryPoints +00007FA128464D68 a8 stub<219> AllocateTemporaryEntryPoints +00007FA128464E10 18 stub<220> AllocateTemporaryEntryPoints +00007FA128464E28 60 stub<221> AllocateTemporaryEntryPoints +00007FA128464E88 150 stub<222> AllocateTemporaryEntryPoints +00007FA128466000 168 stub<223> AllocateTemporaryEntryPoints +00007FA128466168 648 stub<224> AllocateTemporaryEntryPoints +00007FA1284667B0 510 stub<225> AllocateTemporaryEntryPoints +00007FA128468000 4b0 stub<226> AllocateTemporaryEntryPoints +00007FA1284684B0 4b0 stub<227> AllocateTemporaryEntryPoints +00007FA128468960 30 stub<228> AllocateTemporaryEntryPoints +00007FA128468990 48 stub<229> AllocateTemporaryEntryPoints +00007FA1284689D8 60 stub<230> AllocateTemporaryEntryPoints +00007FA128468A38 a8 stub<231> AllocateTemporaryEntryPoints +00007FA128468AE0 18 stub<232> AllocateTemporaryEntryPoints +00007FA128468AF8 60 stub<233> AllocateTemporaryEntryPoints +00007FA128468B58 30 stub<234> AllocateTemporaryEntryPoints +00007FA128468B88 18 stub<235> AllocateTemporaryEntryPoints +00007FA128468BA0 390 stub<236> AllocateTemporaryEntryPoints +00007FA128468F30 30 stub<237> AllocateTemporaryEntryPoints +00007FA128468F60 18 stub<238> AllocateTemporaryEntryPoints +00007FA128468F78 30 stub<239> AllocateTemporaryEntryPoints +00007FA128468FA8 30 stub<240> AllocateTemporaryEntryPoints +00007FA128468FD8 18 stub<241> AllocateTemporaryEntryPoints +00007FA12846A000 30 stub<242> AllocateTemporaryEntryPoints +00007FA12846A030 18 stub<243> AllocateTemporaryEntryPoints +00007FA12846A048 30 stub<244> AllocateTemporaryEntryPoints +00007FA12846A078 30 stub<245> AllocateTemporaryEntryPoints +00007FA12846A0A8 30 stub<246> AllocateTemporaryEntryPoints +00007FA12846A0D8 30 stub<247> AllocateTemporaryEntryPoints +00007FA12846A108 18 stub<248> AllocateTemporaryEntryPoints +00007FA12846A120 30 stub<249> AllocateTemporaryEntryPoints +00007FA12846A150 390 stub<250> AllocateTemporaryEntryPoints +00007FA12846A4E0 30 stub<251> AllocateTemporaryEntryPoints +00007FA12846A510 18 stub<252> AllocateTemporaryEntryPoints +00007FA12846A528 30 stub<253> AllocateTemporaryEntryPoints +00007FA12846A558 30 stub<254> AllocateTemporaryEntryPoints +00007FA12846A588 18 stub<255> AllocateTemporaryEntryPoints +00007FA12846A5A0 30 stub<256> AllocateTemporaryEntryPoints +00007FA12846A5D0 30 stub<257> AllocateTemporaryEntryPoints +00007FA12846A600 18 stub<258> AllocateTemporaryEntryPoints +00007FA12846A618 30 stub<259> AllocateTemporaryEntryPoints +00007FA12846A648 30 stub<260> AllocateTemporaryEntryPoints +00007FA12846A678 30 stub<261> AllocateTemporaryEntryPoints +00007FA12846A6A8 30 stub<262> AllocateTemporaryEntryPoints +00007FA12846A6D8 18 stub<263> AllocateTemporaryEntryPoints +00007FA12846A6F0 30 stub<264> AllocateTemporaryEntryPoints +00007FA12846A720 48 stub<265> AllocateTemporaryEntryPoints +00007FA12846A768 390 stub<266> AllocateTemporaryEntryPoints +00007FA12846AAF8 30 stub<267> AllocateTemporaryEntryPoints +00007FA12846AB28 18 stub<268> AllocateTemporaryEntryPoints +00007FA12846AB40 30 stub<269> AllocateTemporaryEntryPoints +00007FA12846AB70 30 stub<270> AllocateTemporaryEntryPoints +00007FA12846ABA0 18 stub<271> AllocateTemporaryEntryPoints +00007FA12846ABB8 30 stub<272> AllocateTemporaryEntryPoints +00007FA12846ABE8 30 stub<273> AllocateTemporaryEntryPoints +00007FA12846AC18 18 stub<274> AllocateTemporaryEntryPoints +00007FA12846AC30 30 stub<275> AllocateTemporaryEntryPoints +00007FA12846AC60 30 stub<276> AllocateTemporaryEntryPoints +00007FA12846AC90 30 stub<277> AllocateTemporaryEntryPoints +00007FA12846ACC0 30 stub<278> AllocateTemporaryEntryPoints +00007FA12846ACF0 18 stub<279> AllocateTemporaryEntryPoints +00007FA12846AD08 30 stub<280> AllocateTemporaryEntryPoints +00007FA12846AD38 90 stub<281> AllocateTemporaryEntryPoints +00007FA12846ADC8 48 stub<282> AllocateTemporaryEntryPoints +00007FA12846C000 390 stub<283> AllocateTemporaryEntryPoints +00007FA12846C390 30 stub<284> AllocateTemporaryEntryPoints +00007FA12846C3C0 18 stub<285> AllocateTemporaryEntryPoints +00007FA12846C3D8 30 stub<286> AllocateTemporaryEntryPoints +00007FA12846C408 30 stub<287> AllocateTemporaryEntryPoints +00007FA12846C438 18 stub<288> AllocateTemporaryEntryPoints +00007FA12846C450 30 stub<289> AllocateTemporaryEntryPoints +00007FA12846C480 30 stub<290> AllocateTemporaryEntryPoints +00007FA12846C4B0 18 stub<291> AllocateTemporaryEntryPoints +00007FA12846C4C8 30 stub<292> AllocateTemporaryEntryPoints +00007FA12846C4F8 30 stub<293> AllocateTemporaryEntryPoints +00007FA12846C528 30 stub<294> AllocateTemporaryEntryPoints +00007FA12846C558 30 stub<295> AllocateTemporaryEntryPoints +00007FA12846C588 18 stub<296> AllocateTemporaryEntryPoints +00007FA12846C5A0 30 stub<297> AllocateTemporaryEntryPoints +00007FA12846C5D0 48 stub<298> AllocateTemporaryEntryPoints +00007FA12846C618 390 stub<299> AllocateTemporaryEntryPoints +00007FA12846C9A8 30 stub<300> AllocateTemporaryEntryPoints +00007FA12846C9D8 18 stub<301> AllocateTemporaryEntryPoints +00007FA12846C9F0 30 stub<302> AllocateTemporaryEntryPoints +00007FA12846CA20 30 stub<303> AllocateTemporaryEntryPoints +00007FA12846CA50 18 stub<304> AllocateTemporaryEntryPoints +00007FA12846CA68 30 stub<305> AllocateTemporaryEntryPoints +00007FA12846CA98 30 stub<306> AllocateTemporaryEntryPoints +00007FA12846CAC8 18 stub<307> AllocateTemporaryEntryPoints +00007FA12846CAE0 30 stub<308> AllocateTemporaryEntryPoints +00007FA12846CB10 30 stub<309> AllocateTemporaryEntryPoints +00007FA12846CB40 30 stub<310> AllocateTemporaryEntryPoints +00007FA12846CB70 30 stub<311> AllocateTemporaryEntryPoints +00007FA12846CBA0 18 stub<312> AllocateTemporaryEntryPoints +00007FA12846CBB8 30 stub<313> AllocateTemporaryEntryPoints +00007FA12846CBE8 a8 stub<314> AllocateTemporaryEntryPoints +00007FA12846CC90 18 stub<315> AllocateTemporaryEntryPoints +00007FA12846CCA8 60 stub<316> AllocateTemporaryEntryPoints +00007FA12846CD08 18 stub<317> AllocateTemporaryEntryPoints +00007FA12846CD20 18 stub<318> AllocateTemporaryEntryPoints +00007FA12846CD38 288 stub<319> AllocateTemporaryEntryPoints +00007FA12846E000 a8 stub<320> AllocateTemporaryEntryPoints +00007FA12846E0A8 18 stub<321> AllocateTemporaryEntryPoints +00007FA12846E0C0 60 stub<322> AllocateTemporaryEntryPoints +00007FA12846E120 18 stub<323> AllocateTemporaryEntryPoints +00007FA12846E138 18 stub<324> AllocateTemporaryEntryPoints +00007FA12846E150 48 stub<325> AllocateTemporaryEntryPoints +00007FA12846E198 390 stub<326> AllocateTemporaryEntryPoints +00007FA12846E528 30 stub<327> AllocateTemporaryEntryPoints +00007FA12846E558 18 stub<328> AllocateTemporaryEntryPoints +00007FA12846E570 30 stub<329> AllocateTemporaryEntryPoints +00007FA12846E5A0 30 stub<330> AllocateTemporaryEntryPoints +00007FA12846E5D0 18 stub<331> AllocateTemporaryEntryPoints +00007FA12846E5E8 30 stub<332> AllocateTemporaryEntryPoints +00007FA12846E618 30 stub<333> AllocateTemporaryEntryPoints +00007FA12846E648 18 stub<334> AllocateTemporaryEntryPoints +00007FA12846E660 30 stub<335> AllocateTemporaryEntryPoints +00007FA12846E690 30 stub<336> AllocateTemporaryEntryPoints +00007FA12846E6C0 30 stub<337> AllocateTemporaryEntryPoints +00007FA12846E6F0 30 stub<338> AllocateTemporaryEntryPoints +00007FA12846E720 18 stub<339> AllocateTemporaryEntryPoints +00007FA12846E738 30 stub<340> AllocateTemporaryEntryPoints +00007FA12846E768 90 stub<341> AllocateTemporaryEntryPoints +00007FA12846E7F8 48 stub<342> AllocateTemporaryEntryPoints +00007FA12846E840 390 stub<343> AllocateTemporaryEntryPoints +00007FA12846EBD0 30 stub<344> AllocateTemporaryEntryPoints +00007FA12846EC00 18 stub<345> AllocateTemporaryEntryPoints +00007FA12846EC18 30 stub<346> AllocateTemporaryEntryPoints +00007FA12846EC48 30 stub<347> AllocateTemporaryEntryPoints +00007FA12846EC78 18 stub<348> AllocateTemporaryEntryPoints +00007FA12846EC90 30 stub<349> AllocateTemporaryEntryPoints +00007FA12846ECC0 30 stub<350> AllocateTemporaryEntryPoints +00007FA12846ECF0 18 stub<351> AllocateTemporaryEntryPoints +00007FA12846ED08 30 stub<352> AllocateTemporaryEntryPoints +00007FA12846ED38 30 stub<353> AllocateTemporaryEntryPoints +00007FA12846ED68 30 stub<354> AllocateTemporaryEntryPoints +00007FA12846ED98 30 stub<355> AllocateTemporaryEntryPoints +00007FA12846EDC8 18 stub<356> AllocateTemporaryEntryPoints +00007FA12846EDE0 30 stub<357> AllocateTemporaryEntryPoints +00007FA12846EE10 a8 stub<358> AllocateTemporaryEntryPoints +00007FA128490000 390 stub<359> AllocateTemporaryEntryPoints +00007FA128490390 30 stub<360> AllocateTemporaryEntryPoints +00007FA1284903C0 18 stub<361> AllocateTemporaryEntryPoints +00007FA1284903D8 30 stub<362> AllocateTemporaryEntryPoints +00007FA128490408 30 stub<363> AllocateTemporaryEntryPoints +00007FA128490438 18 stub<364> AllocateTemporaryEntryPoints +00007FA128490450 30 stub<365> AllocateTemporaryEntryPoints +00007FA128490480 30 stub<366> AllocateTemporaryEntryPoints +00007FA1284904B0 18 stub<367> AllocateTemporaryEntryPoints +00007FA1284904C8 30 stub<368> AllocateTemporaryEntryPoints +00007FA1284904F8 30 stub<369> AllocateTemporaryEntryPoints +00007FA128490528 30 stub<370> AllocateTemporaryEntryPoints +00007FA128490558 30 stub<371> AllocateTemporaryEntryPoints +00007FA128490588 18 stub<372> AllocateTemporaryEntryPoints +00007FA1284905A0 30 stub<373> AllocateTemporaryEntryPoints +00007FA1284905D0 18 stub<374> AllocateTemporaryEntryPoints +00007FA1284905E8 48 stub<375> AllocateTemporaryEntryPoints +00007FA128490630 390 stub<376> AllocateTemporaryEntryPoints +00007FA1284909C0 30 stub<377> AllocateTemporaryEntryPoints +00007FA1284909F0 18 stub<378> AllocateTemporaryEntryPoints +00007FA128490A08 30 stub<379> AllocateTemporaryEntryPoints +00007FA128490A38 30 stub<380> AllocateTemporaryEntryPoints +00007FA128490A68 18 stub<381> AllocateTemporaryEntryPoints +00007FA128490A80 30 stub<382> AllocateTemporaryEntryPoints +00007FA128490AB0 30 stub<383> AllocateTemporaryEntryPoints +00007FA128490AE0 18 stub<384> AllocateTemporaryEntryPoints +00007FA128490AF8 30 stub<385> AllocateTemporaryEntryPoints +00007FA128490B28 30 stub<386> AllocateTemporaryEntryPoints +00007FA128490B58 30 stub<387> AllocateTemporaryEntryPoints +00007FA128490B88 30 stub<388> AllocateTemporaryEntryPoints +00007FA128490BB8 18 stub<389> AllocateTemporaryEntryPoints +00007FA128490BD0 30 stub<390> AllocateTemporaryEntryPoints +00007FA128490C00 60 stub<391> AllocateTemporaryEntryPoints +00007FA128490C60 48 stub<392> AllocateTemporaryEntryPoints +00007FA128492000 390 stub<393> AllocateTemporaryEntryPoints +00007FA128492390 30 stub<394> AllocateTemporaryEntryPoints +00007FA1284923C0 18 stub<395> AllocateTemporaryEntryPoints +00007FA1284923D8 30 stub<396> AllocateTemporaryEntryPoints +00007FA128492408 30 stub<397> AllocateTemporaryEntryPoints +00007FA128492438 18 stub<398> AllocateTemporaryEntryPoints +00007FA128492450 30 stub<399> AllocateTemporaryEntryPoints +00007FA128492480 30 stub<400> AllocateTemporaryEntryPoints +00007FA1284924B0 18 stub<401> AllocateTemporaryEntryPoints +00007FA1284924C8 30 stub<402> AllocateTemporaryEntryPoints +00007FA1284924F8 30 stub<403> AllocateTemporaryEntryPoints +00007FA128492528 30 stub<404> AllocateTemporaryEntryPoints +00007FA128492558 30 stub<405> AllocateTemporaryEntryPoints +00007FA128492588 18 stub<406> AllocateTemporaryEntryPoints +00007FA1284925A0 30 stub<407> AllocateTemporaryEntryPoints +00007FA1284925D0 150 stub<408> AllocateTemporaryEntryPoints +00007FA128492720 168 stub<409> AllocateTemporaryEntryPoints +00007FA128492888 90 stub<410> AllocateTemporaryEntryPoints +00007FA128492918 48 stub<411> AllocateTemporaryEntryPoints +00007FA128492960 288 stub<412> AllocateTemporaryEntryPoints +00007FA128492BE8 18 stub<413> AllocateTemporaryEntryPoints +00007FA128492C00 90 stub<414> AllocateTemporaryEntryPoints +00007FA128492C90 a8 stub<415> AllocateTemporaryEntryPoints +00007FA128492D38 18 stub<416> AllocateTemporaryEntryPoints +00007FA128492D50 60 stub<417> AllocateTemporaryEntryPoints +00007FA128492DB0 150 stub<418> AllocateTemporaryEntryPoints +00007FA128492F00 60 stub<419> AllocateTemporaryEntryPoints +00007FA128492F60 30 stub<420> AllocateTemporaryEntryPoints +00007FA128494000 648 stub<421> AllocateTemporaryEntryPoints +00007FA128494648 510 stub<422> AllocateTemporaryEntryPoints +00007FA128496000 4b0 stub<423> AllocateTemporaryEntryPoints +00007FA1284964B0 4b0 stub<424> AllocateTemporaryEntryPoints +00007FA128496960 30 stub<425> AllocateTemporaryEntryPoints +00007FA128496990 60 stub<426> AllocateTemporaryEntryPoints +00007FA1284969F0 30 stub<427> AllocateTemporaryEntryPoints +00007FA128496A20 18 stub<428> AllocateTemporaryEntryPoints +00007FA128498000 678 stub<429> AllocateTemporaryEntryPoints +00007FA128498678 4b0 stub<430> AllocateTemporaryEntryPoints +00007FA128498B28 2b8 stub<431> AllocateTemporaryEntryPoints +00007FA128498DE0 60 stub<432> AllocateTemporaryEntryPoints +00007FA128498E40 30 stub<433> AllocateTemporaryEntryPoints +00007FA128498E70 48 stub<434> AllocateTemporaryEntryPoints +00007FA12849A000 678 stub<435> AllocateTemporaryEntryPoints +00007FA12849A678 4b0 stub<436> AllocateTemporaryEntryPoints +00007FA12849AB28 2a0 stub<437> AllocateTemporaryEntryPoints +00007FA12849ADC8 60 stub<438> AllocateTemporaryEntryPoints +00007FA12849AE28 30 stub<439> AllocateTemporaryEntryPoints +00007FA12849AE58 48 stub<440> AllocateTemporaryEntryPoints +00007FA12849AEA0 108 stub<441> AllocateTemporaryEntryPoints +00007FA12849C000 438 stub<442> AllocateTemporaryEntryPoints +00007FA12849C438 2d0 stub<443> AllocateTemporaryEntryPoints +00007FA12849C708 258 stub<444> AllocateTemporaryEntryPoints +00007FA12849C960 60 stub<445> AllocateTemporaryEntryPoints +00007FA12849C9C0 60 stub<446> AllocateTemporaryEntryPoints +00007FA12849CA20 3f0 stub<447> AllocateTemporaryEntryPoints +00007FA12849CE10 18 stub<448> AllocateTemporaryEntryPoints +00007FA12849CE28 18 stub<449> AllocateTemporaryEntryPoints +00007FA12849E000 4e0 stub<450> AllocateTemporaryEntryPoints +00007FA12849E4E0 d8 stub<451> AllocateTemporaryEntryPoints +00007FA12849E5B8 288 stub<452> AllocateTemporaryEntryPoints +00007FA12849E840 480 stub<453> AllocateTemporaryEntryPoints +00007FA12849ECC0 2a0 stub<454> AllocateTemporaryEntryPoints +00007FA1284A0000 6d8 stub<455> AllocateTemporaryEntryPoints +00007FA1284A06D8 408 stub<456> AllocateTemporaryEntryPoints +00007FA1284B0020 54 void [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::StelemRef(class System.Array,native int,object)[OptimizedTier1] +00007FA1284B0090 28 object& [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::LdelemaRef(class System.Array,native int,void*)[OptimizedTier1] +00007FA1284A0AE0 18 stub<457> AllocateTemporaryEntryPoints +00007FA1284A0AF8 a8 stub<458> AllocateTemporaryEntryPoints +00007FA1284A0BA0 18 stub<459> AllocateTemporaryEntryPoints +00007FA1284A0BB8 78 stub<460> AllocateTemporaryEntryPoints +00007FA1284A0C30 a8 stub<461> AllocateTemporaryEntryPoints +00007FA1284A0CD8 18 stub<462> AllocateTemporaryEntryPoints +00007FA1284A0CF0 18 stub<463> AllocateTemporaryEntryPoints +00007FA1284A0D08 18 stub<464> AllocateTemporaryEntryPoints +00007FA1284A0D20 18 stub<465> AllocateTemporaryEntryPoints +00007FA1284A0D38 18 stub<466> AllocateTemporaryEntryPoints +00007FA1284A0D50 18 stub<467> AllocateTemporaryEntryPoints +00007FA1284A2000 810 stub<468> AllocateTemporaryEntryPoints +00007FA1284A2810 750 stub<469> AllocateTemporaryEntryPoints +00007FA1284A4000 7f8 stub<470> AllocateTemporaryEntryPoints +00007FA1284A47F8 48 stub<471> AllocateTemporaryEntryPoints +00007FA1284A4840 18 stub<472> AllocateTemporaryEntryPoints +00007FA1284A4858 18 stub<473> AllocateTemporaryEntryPoints +00007FA1284A4870 18 stub<474> AllocateTemporaryEntryPoints +00007FA1284A4888 270 stub<475> AllocateTemporaryEntryPoints +00007FA1284A6000 9d8 stub<476> AllocateTemporaryEntryPoints +00007FA1284A69D8 60 stub<477> AllocateTemporaryEntryPoints +00007FA1284A6A38 450 stub<478> AllocateTemporaryEntryPoints +00007FA1284A6E88 60 stub<479> AllocateTemporaryEntryPoints +00007FA1284A6EE8 60 stub<480> AllocateTemporaryEntryPoints +00007FA1284A6F48 60 stub<481> AllocateTemporaryEntryPoints +00007FA1284A8000 60 stub<482> AllocateTemporaryEntryPoints +00007FA1284A8060 48 stub<483> AllocateTemporaryEntryPoints +00007FA1284A80A8 30 stub<484> AllocateTemporaryEntryPoints +00007FA1284A80D8 750 stub<485> AllocateTemporaryEntryPoints +00007FA1284A8828 4b0 stub<486> AllocateTemporaryEntryPoints +00007FA1284A8CD8 30 stub<487> AllocateTemporaryEntryPoints +00007FA1284A8D08 30 stub<488> AllocateTemporaryEntryPoints +00007FA1284A8D38 270 stub<489> AllocateTemporaryEntryPoints +00007FA1284A8FA8 18 stub<490> AllocateTemporaryEntryPoints +00007FA1284AA000 150 stub<491> AllocateTemporaryEntryPoints +00007FA1284AA150 198 stub<492> AllocateTemporaryEntryPoints +00007FA1284AA2E8 c0 stub<493> AllocateTemporaryEntryPoints +00007FA1284AA3A8 108 stub<494> AllocateTemporaryEntryPoints +00007FA1284AA4B0 78 stub<495> AllocateTemporaryEntryPoints +00007FA1284AA528 18 stub<496> AllocateTemporaryEntryPoints +00007FA1284AA540 5e8 stub<497> AllocateTemporaryEntryPoints +00007FA1284AC000 5e8 stub<498> AllocateTemporaryEntryPoints +00007FA1284AC5E8 90 stub<499> AllocateTemporaryEntryPoints +00007FA1284AC678 90 stub<500> AllocateTemporaryEntryPoints +00007FA1284AC708 a8 stub<501> AllocateTemporaryEntryPoints +00007FA1284AC7B0 18 stub<502> AllocateTemporaryEntryPoints +00007FA1284AC7C8 c0 stub<503> AllocateTemporaryEntryPoints +00007FA1284AC888 90 stub<504> AllocateTemporaryEntryPoints +00007FA1284AC918 a8 stub<505> AllocateTemporaryEntryPoints +00007FA1284AC9C0 18 stub<506> AllocateTemporaryEntryPoints +00007FA1284AC9D8 90 stub<507> AllocateTemporaryEntryPoints +00007FA1284ACA68 18 stub<508> AllocateTemporaryEntryPoints +00007FA1284ACA80 18 stub<509> AllocateTemporaryEntryPoints +00007FA1284ACA98 78 stub<510> AllocateTemporaryEntryPoints +00007FA1284ACB10 18 stub<511> AllocateTemporaryEntryPoints +00007FA1284ACB28 c0 stub<512> AllocateTemporaryEntryPoints +00007FA1284ACBE8 90 stub<513> AllocateTemporaryEntryPoints +00007FA1284ACC78 a8 stub<514> AllocateTemporaryEntryPoints +00007FA1284ACD20 18 stub<515> AllocateTemporaryEntryPoints +00007FA1284ACD38 78 stub<516> AllocateTemporaryEntryPoints +00007FA1284ACDB0 18 stub<517> AllocateTemporaryEntryPoints +00007FA1284ACDC8 a8 stub<518> AllocateTemporaryEntryPoints +00007FA1284ACE70 120 stub<519> AllocateTemporaryEntryPoints +00007FA1284ACF90 30 stub<520> AllocateTemporaryEntryPoints +00007FA1284AE000 60 stub<521> AllocateTemporaryEntryPoints +00007FA1284AE060 30 stub<522> AllocateTemporaryEntryPoints +00007FA1284AE090 30 stub<523> AllocateTemporaryEntryPoints +00007FA1284AE0C0 d8 stub<524> AllocateTemporaryEntryPoints +00007FA1284AE198 30 stub<525> AllocateTemporaryEntryPoints +00007FA1284AE1C8 48 stub<526> AllocateTemporaryEntryPoints +00007FA1284AE210 60 stub<527> AllocateTemporaryEntryPoints +00007FA1284AE270 30 stub<528> AllocateTemporaryEntryPoints +00007FA1284AE2A0 d8 stub<529> AllocateTemporaryEntryPoints +00007FA1284AE378 d8 stub<530> AllocateTemporaryEntryPoints +00007FA1284AE450 30 stub<531> AllocateTemporaryEntryPoints +00007FA1284AE480 60 stub<532> AllocateTemporaryEntryPoints +00007FA1284AE4E0 d8 stub<533> AllocateTemporaryEntryPoints +00007FA1284AE5B8 78 stub<534> AllocateTemporaryEntryPoints +00007FA1284AE630 30 stub<535> AllocateTemporaryEntryPoints +00007FA1284AE660 d8 stub<536> AllocateTemporaryEntryPoints +00007FA1284AE738 a8 stub<537> AllocateTemporaryEntryPoints +00007FA1284AE7E0 a8 stub<538> AllocateTemporaryEntryPoints +00007FA1284AE888 30 stub<539> AllocateTemporaryEntryPoints +00007FA1284AE8B8 d8 stub<540> AllocateTemporaryEntryPoints +00007FA1284AE990 a8 stub<541> AllocateTemporaryEntryPoints +00007FA1284AEA38 a8 stub<542> AllocateTemporaryEntryPoints +00007FA1284AEAE0 30 stub<543> AllocateTemporaryEntryPoints +00007FA1284AEB10 138 stub<544> AllocateTemporaryEntryPoints +00007FA1284AEC48 d8 stub<545> AllocateTemporaryEntryPoints +00007FA1284AED20 d8 stub<546> AllocateTemporaryEntryPoints +00007FA1284AEDF8 138 stub<547> AllocateTemporaryEntryPoints +00007FA128540000 d8 stub<548> AllocateTemporaryEntryPoints +00007FA1285400D8 d8 stub<549> AllocateTemporaryEntryPoints +00007FA1285401B0 30 stub<550> AllocateTemporaryEntryPoints +00007FA1285401E0 30 stub<551> AllocateTemporaryEntryPoints +00007FA128540210 18 stub<552> AllocateTemporaryEntryPoints +00007FA128540228 18 stub<553> AllocateTemporaryEntryPoints +00007FA128540240 1e0 stub<554> AllocateTemporaryEntryPoints +00007FA128540420 a8 stub<555> AllocateTemporaryEntryPoints +00007FA1285404C8 90 stub<556> AllocateTemporaryEntryPoints +00007FA128540558 18 stub<557> AllocateTemporaryEntryPoints +00007FA128540570 90 stub<558> AllocateTemporaryEntryPoints +00007FA128540600 648 stub<559> AllocateTemporaryEntryPoints +00007FA128540C48 300 stub<560> AllocateTemporaryEntryPoints +00007FA128542000 2d0 stub<561> AllocateTemporaryEntryPoints +00007FA1285422D0 18 stub<562> AllocateTemporaryEntryPoints +00007FA1285422E8 2d0 stub<563> AllocateTemporaryEntryPoints +00007FA1285425B8 2d0 stub<564> AllocateTemporaryEntryPoints +00007FA128542888 18 stub<565> AllocateTemporaryEntryPoints +00007FA1285428A0 2d0 stub<566> AllocateTemporaryEntryPoints +00007FA128544000 540 stub<567> AllocateTemporaryEntryPoints +00007FA128544540 18 stub<568> AllocateTemporaryEntryPoints +00007FA128544558 540 stub<569> AllocateTemporaryEntryPoints +00007FA128544A98 18 stub<570> AllocateTemporaryEntryPoints +00007FA128544AB0 18 stub<571> AllocateTemporaryEntryPoints +00007FA128544AC8 18 stub<572> AllocateTemporaryEntryPoints +00007FA128546000 630 stub<573> AllocateTemporaryEntryPoints +00007FA128546630 600 stub<574> AllocateTemporaryEntryPoints +00007FA128548000 6d8 stub<575> AllocateTemporaryEntryPoints +00007FA1285486D8 348 stub<576> AllocateTemporaryEntryPoints +00007FA128548A20 18 stub<577> AllocateTemporaryEntryPoints +00007FA128548A38 2d0 stub<578> AllocateTemporaryEntryPoints +00007FA12854A000 630 stub<579> AllocateTemporaryEntryPoints +00007FA12854A630 630 stub<580> AllocateTemporaryEntryPoints +00007FA12854C000 690 stub<581> AllocateTemporaryEntryPoints +00007FA12854C690 3d8 stub<582> AllocateTemporaryEntryPoints +00007FA12854CA68 18 stub<583> AllocateTemporaryEntryPoints +00007FA12854CA80 18 stub<584> AllocateTemporaryEntryPoints +00007FA12854CA98 18 stub<585> AllocateTemporaryEntryPoints +00007FA12854CAB0 2d0 stub<586> AllocateTemporaryEntryPoints +00007FA12854CD80 18 stub<587> AllocateTemporaryEntryPoints +00007FA12854E000 3d8 stub<588> AllocateTemporaryEntryPoints +00007FA12854E3D8 18 stub<589> AllocateTemporaryEntryPoints +00007FA12854E3F0 18 stub<590> AllocateTemporaryEntryPoints +00007FA12854E408 18 stub<591> AllocateTemporaryEntryPoints +00007FA12854E420 18 stub<592> AllocateTemporaryEntryPoints +00007FA128420A50 90 stub<593> AllocateTemporaryEntryPoints +00007FA12854E4B0 c0 stub<594> AllocateTemporaryEntryPoints +00007FA12854E570 18 stub<595> AllocateTemporaryEntryPoints +00007FA12854E588 18 stub<596> AllocateTemporaryEntryPoints +00007FA12854E5A0 7f8 stub<597> AllocateTemporaryEntryPoints +00007FA128570000 7f8 stub<598> AllocateTemporaryEntryPoints +00007FA1285707F8 7f8 stub<599> AllocateTemporaryEntryPoints +00007FA128572000 7f8 stub<600> AllocateTemporaryEntryPoints +00007FA1285727F8 7f8 stub<601> AllocateTemporaryEntryPoints +00007FA128574000 7f8 stub<602> AllocateTemporaryEntryPoints +00007FA1285747F8 7f8 stub<603> AllocateTemporaryEntryPoints +00007FA128576000 7f8 stub<604> AllocateTemporaryEntryPoints +00007FA1285767F8 7f8 stub<605> AllocateTemporaryEntryPoints +00007FA128578000 7f8 stub<606> AllocateTemporaryEntryPoints +00007FA1285787F8 7f8 stub<607> AllocateTemporaryEntryPoints +00007FA12857A000 7f8 stub<608> AllocateTemporaryEntryPoints +00007FA12857A7F8 618 stub<609> AllocateTemporaryEntryPoints +00007FA1284B04E0 180 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfNullCharacter(char&)[OptimizedTier1] +00007FA12857AE10 198 stub<610> AllocateTemporaryEntryPoints +00007FA1277BF000 18 stub<611> GenerateLookupStub +00007FA1277F4000 18 stub<612> GenerateResolveStub +00007FA1277C3000 20 stub<613> GenerateDispatchStub +00007FA12857C000 780 stub<614> AllocateTemporaryEntryPoints +00007FA12857C780 198 stub<615> AllocateTemporaryEntryPoints +00007FA12857C918 660 stub<616> AllocateTemporaryEntryPoints +00007FA12857E000 90 stub<617> AllocateTemporaryEntryPoints +00007FA12857E090 48 stub<618> AllocateTemporaryEntryPoints +00007FA12857E0D8 4e0 stub<619> AllocateTemporaryEntryPoints +00007FA12857E5B8 5d0 stub<620> AllocateTemporaryEntryPoints +00007FA128590000 810 stub<621> AllocateTemporaryEntryPoints +00007FA128590810 2e8 stub<622> AllocateTemporaryEntryPoints +00007FA128590AF8 a8 stub<623> AllocateTemporaryEntryPoints +00007FA128590BA0 270 stub<624> AllocateTemporaryEntryPoints +00007FA128592000 2b8 stub<625> AllocateTemporaryEntryPoints +00007FA1285922B8 2b8 stub<626> AllocateTemporaryEntryPoints +00007FA128592588 1b0 stub<627> AllocateTemporaryEntryPoints +00007FA128592738 138 stub<628> AllocateTemporaryEntryPoints +00007FA128592870 60 stub<629> AllocateTemporaryEntryPoints +00007FA1285928D0 60 stub<630> AllocateTemporaryEntryPoints +00007FA128592930 228 stub<631> AllocateTemporaryEntryPoints +00007FA128592B58 228 stub<632> AllocateTemporaryEntryPoints +00007FA128594000 6f0 stub<633> AllocateTemporaryEntryPoints +00007FA1285946F0 6f0 stub<634> AllocateTemporaryEntryPoints +00007FA128594DE0 78 stub<635> AllocateTemporaryEntryPoints +00007FA128594E58 a8 stub<636> AllocateTemporaryEntryPoints +00007FA128594F00 18 stub<637> AllocateTemporaryEntryPoints +00007FA128594F18 18 stub<638> AllocateTemporaryEntryPoints +00007FA128594F30 78 stub<639> AllocateTemporaryEntryPoints +00007FA128596000 a8 stub<640> AllocateTemporaryEntryPoints +00007FA1285960A8 18 stub<641> AllocateTemporaryEntryPoints +00007FA1285960C0 18 stub<642> AllocateTemporaryEntryPoints +00007FA1285960D8 18 stub<643> AllocateTemporaryEntryPoints +00007FA1285960F0 5e8 stub<644> AllocateTemporaryEntryPoints +00007FA1285966D8 c0 stub<645> AllocateTemporaryEntryPoints +00007FA128596798 90 stub<646> AllocateTemporaryEntryPoints +00007FA128596828 a8 stub<647> AllocateTemporaryEntryPoints +00007FA1285968D0 18 stub<648> AllocateTemporaryEntryPoints +00007FA1285968E8 78 stub<649> AllocateTemporaryEntryPoints +00007FA128596960 18 stub<650> AllocateTemporaryEntryPoints +00007FA128596978 60 stub<651> AllocateTemporaryEntryPoints +00007FA1285969D8 108 stub<652> AllocateTemporaryEntryPoints +00007FA128596AE0 d8 stub<653> AllocateTemporaryEntryPoints +00007FA128596BB8 60 stub<654> AllocateTemporaryEntryPoints +00007FA128596C18 60 stub<655> AllocateTemporaryEntryPoints +00007FA128596C78 48 stub<656> AllocateTemporaryEntryPoints +00007FA128596CC0 60 stub<657> AllocateTemporaryEntryPoints +00007FA128596D20 78 stub<658> AllocateTemporaryEntryPoints +00007FA128596D98 a8 stub<659> AllocateTemporaryEntryPoints +00007FA128596E40 90 stub<660> AllocateTemporaryEntryPoints +00007FA128598000 2d0 stub<661> AllocateTemporaryEntryPoints +00007FA1285982D0 30 stub<662> AllocateTemporaryEntryPoints +00007FA128598300 270 stub<663> AllocateTemporaryEntryPoints +00007FA128598570 d8 stub<664> AllocateTemporaryEntryPoints +00007FA12784B000 e stub<665> GenerateVTableCallStub +00007FA128598648 30 stub<666> AllocateTemporaryEntryPoints +00007FA128598678 108 stub<667> AllocateTemporaryEntryPoints +00007FA128598780 108 stub<668> AllocateTemporaryEntryPoints +00007FA128598888 6f0 stub<669> AllocateTemporaryEntryPoints +00007FA128598F78 78 stub<670> AllocateTemporaryEntryPoints +00007FA12859A000 a8 stub<671> AllocateTemporaryEntryPoints +00007FA12859A0A8 18 stub<672> AllocateTemporaryEntryPoints +00007FA12859A0C0 18 stub<673> AllocateTemporaryEntryPoints +00007FA12859A0D8 18 stub<674> AllocateTemporaryEntryPoints +00007FA128422000 660 stub<675> AllocateTemporaryEntryPoints +00007FA12859A0F0 7f8 stub<676> AllocateTemporaryEntryPoints +00007FA12859A8E8 1c8 stub<677> AllocateTemporaryEntryPoints +00007FA128422780 1e0 stub<678> AllocateTemporaryEntryPoints +00007FA12859C0F0 750 stub<679> AllocateTemporaryEntryPoints +00007FA12859C840 738 stub<680> AllocateTemporaryEntryPoints +00007FA12859E000 2d0 stub<681> AllocateTemporaryEntryPoints +00007FA12859E2D0 18 stub<682> AllocateTemporaryEntryPoints +00007FA12859E2E8 18 stub<683> AllocateTemporaryEntryPoints +00007FA12859E300 18 stub<684> AllocateTemporaryEntryPoints +00007FA12859E318 300 stub<685> AllocateTemporaryEntryPoints +00007FA1284B0A90 93 unmanaged cdecl void [System.Private.CoreLib] dynamicClass::IL_STUB_ReversePInvoke(int64,int32,uint8,int64,int64,int64,int64)[Optimized] +00007FA12859E618 18 stub<686> AllocateTemporaryEntryPoints +00007FA12859E630 768 stub<687> AllocateTemporaryEntryPoints +00007FA1285B0000 600 stub<688> AllocateTemporaryEntryPoints +00007FA1285B0600 4e0 stub<689> AllocateTemporaryEntryPoints +00007FA1285B0AE0 330 stub<690> AllocateTemporaryEntryPoints +00007FA1285B0E10 30 stub<691> AllocateTemporaryEntryPoints +00007FA1285B0E40 60 stub<692> AllocateTemporaryEntryPoints +00007FA1285B0EA0 90 stub<693> AllocateTemporaryEntryPoints +00007FA1285B0F30 48 stub<694> AllocateTemporaryEntryPoints +00007FA1285B0F78 18 stub<695> AllocateTemporaryEntryPoints +00007FA1285B2000 120 stub<696> AllocateTemporaryEntryPoints +00007FA1285B2120 120 stub<697> AllocateTemporaryEntryPoints +00007FA1285B2240 18 stub<698> AllocateTemporaryEntryPoints +00007FA1285B2258 18 stub<699> AllocateTemporaryEntryPoints +00007FA1285B2270 60 stub<700> AllocateTemporaryEntryPoints +00007FA1285B22D0 120 stub<701> AllocateTemporaryEntryPoints +00007FA1285B23F0 18 stub<702> AllocateTemporaryEntryPoints +00007FA1285B2408 6f0 stub<703> AllocateTemporaryEntryPoints +00007FA1285B2AF8 78 stub<704> AllocateTemporaryEntryPoints +00007FA1285B2B70 a8 stub<705> AllocateTemporaryEntryPoints +00007FA1285B2C18 18 stub<706> AllocateTemporaryEntryPoints +00007FA1285B2C30 18 stub<707> AllocateTemporaryEntryPoints +00007FA1285B2C48 18 stub<708> AllocateTemporaryEntryPoints +00007FA1285B2C60 60 stub<709> AllocateTemporaryEntryPoints +00007FA1285B2CC0 30 stub<710> AllocateTemporaryEntryPoints +00007FA1285B2CF0 a8 stub<711> AllocateTemporaryEntryPoints +00007FA1285B2D98 120 stub<712> AllocateTemporaryEntryPoints +00007FA1285B2EB8 18 stub<713> AllocateTemporaryEntryPoints +00007FA1285B2ED0 60 stub<714> AllocateTemporaryEntryPoints +00007FA1285B4000 2d0 stub<715> AllocateTemporaryEntryPoints +00007FA1285B42D0 420 stub<716> AllocateTemporaryEntryPoints +00007FA1285B46F0 1b0 stub<717> AllocateTemporaryEntryPoints +00007FA1285B48A0 18 stub<718> AllocateTemporaryEntryPoints +00007FA1285B48B8 5e8 stub<719> AllocateTemporaryEntryPoints +00007FA1285B4EA0 18 stub<720> AllocateTemporaryEntryPoints +00007FA1285B6000 240 stub<721> AllocateTemporaryEntryPoints +00007FA1285B6240 5b8 stub<722> AllocateTemporaryEntryPoints +00007FA1285B67F8 2a0 stub<723> AllocateTemporaryEntryPoints +00007FA1285B6A98 4f8 stub<724> AllocateTemporaryEntryPoints +00007FA1285B8000 a8 stub<725> AllocateTemporaryEntryPoints +00007FA1285B80A8 210 stub<726> AllocateTemporaryEntryPoints +00007FA1285B82B8 18 stub<727> AllocateTemporaryEntryPoints +00007FA1285B82D0 2e8 stub<728> AllocateTemporaryEntryPoints +00007FA12784B010 11 stub<729> GenerateVTableCallStub +00007FA1285B85B8 90 stub<730> AllocateTemporaryEntryPoints +00007FA1285B8648 90 stub<731> AllocateTemporaryEntryPoints +00007FA1285B86D8 60 stub<732> AllocateTemporaryEntryPoints +00007FA1285B8738 60 stub<733> AllocateTemporaryEntryPoints +00007FA1285B8798 2d0 stub<734> AllocateTemporaryEntryPoints +00007FA1285B8A68 18 stub<735> AllocateTemporaryEntryPoints +00007FA1285B8A80 18 stub<736> AllocateTemporaryEntryPoints +00007FA1285B8A98 30 stub<737> AllocateTemporaryEntryPoints +00007FA1285B8AC8 d8 stub<738> AllocateTemporaryEntryPoints +00007FA1285BA000 4b0 stub<739> AllocateTemporaryEntryPoints +00007FA1285BA4B0 3f0 stub<740> AllocateTemporaryEntryPoints +00007FA1285BC000 7c8 stub<741> AllocateTemporaryEntryPoints +00007FA1285BC7C8 738 stub<742> AllocateTemporaryEntryPoints +00007FA128422BE8 d8 stub<743> AllocateTemporaryEntryPoints +00007FA1285BE000 348 stub<744> AllocateTemporaryEntryPoints +00007FA1285BE348 30 stub<745> AllocateTemporaryEntryPoints +00007FA1285BE378 30 stub<746> AllocateTemporaryEntryPoints +00007FA1285BE3A8 60 stub<747> AllocateTemporaryEntryPoints +00007FA1285BE408 2b8 stub<748> AllocateTemporaryEntryPoints +00007FA1285BE6C0 228 stub<749> AllocateTemporaryEntryPoints +00007FA1285BE8E8 228 stub<750> AllocateTemporaryEntryPoints +00007FA1285BEB10 3d8 stub<751> AllocateTemporaryEntryPoints +00007FA1285BEEE8 108 stub<752> AllocateTemporaryEntryPoints +00007FA1285D0000 f0 stub<753> AllocateTemporaryEntryPoints +00007FA1285D00F0 78 stub<754> AllocateTemporaryEntryPoints +00007FA1285D0168 60 stub<755> AllocateTemporaryEntryPoints +00007FA1285D01C8 78 stub<756> AllocateTemporaryEntryPoints +00007FA1285D0240 618 stub<757> AllocateTemporaryEntryPoints +00007FA1285D0858 18 stub<758> AllocateTemporaryEntryPoints +00007FA1285D0870 18 stub<759> AllocateTemporaryEntryPoints +00007FA1285D0888 18 stub<760> AllocateTemporaryEntryPoints +00007FA1285D08A0 18 stub<761> AllocateTemporaryEntryPoints +00007FA1285D08B8 18 stub<762> AllocateTemporaryEntryPoints +00007FA1285D08D0 60 stub<763> AllocateTemporaryEntryPoints +00007FA1285D0930 18 stub<764> AllocateTemporaryEntryPoints +00007FA1285D0948 18 stub<765> AllocateTemporaryEntryPoints +00007FA1285D0960 168 stub<766> AllocateTemporaryEntryPoints +00007FA1285D0AC8 60 stub<767> AllocateTemporaryEntryPoints +00007FA1285D0B28 60 stub<768> AllocateTemporaryEntryPoints +00007FA1285D0B88 1e0 stub<769> AllocateTemporaryEntryPoints +00007FA1285D0D68 198 stub<770> AllocateTemporaryEntryPoints +00007FA12784B030 e stub<771> GenerateVTableCallStub +00007FA1285D0F00 60 stub<772> AllocateTemporaryEntryPoints +00007FA1285D0F60 60 stub<773> AllocateTemporaryEntryPoints +00007FA1285D2000 2d0 stub<774> AllocateTemporaryEntryPoints +00007FA1285D22D0 3c0 stub<775> AllocateTemporaryEntryPoints +00007FA12784B040 e stub<776> GenerateVTableCallStub +00007FA1285D2690 330 stub<777> AllocateTemporaryEntryPoints +00007FA1285D29C0 180 stub<778> AllocateTemporaryEntryPoints +00007FA1285D2B40 18 stub<779> AllocateTemporaryEntryPoints +00007FA1285D2B58 18 stub<780> AllocateTemporaryEntryPoints +00007FA1285D2B70 18 stub<781> AllocateTemporaryEntryPoints +00007FA1285D2B88 30 stub<782> AllocateTemporaryEntryPoints +00007FA1285D2BB8 30 stub<783> AllocateTemporaryEntryPoints +00007FA1285D2BE8 18 stub<784> AllocateTemporaryEntryPoints +00007FA1285D2C00 48 stub<785> AllocateTemporaryEntryPoints +00007FA1285D2C48 18 stub<786> AllocateTemporaryEntryPoints +00007FA1285D2C60 18 stub<787> AllocateTemporaryEntryPoints +00007FA1285D2C78 18 stub<788> AllocateTemporaryEntryPoints +00007FA1285D2C90 30 stub<789> AllocateTemporaryEntryPoints +00007FA1285D2CC0 108 stub<790> AllocateTemporaryEntryPoints +00007FA1285D2DC8 a8 stub<791> AllocateTemporaryEntryPoints +00007FA1285D4000 4f8 stub<792> AllocateTemporaryEntryPoints +00007FA1285D44F8 4f8 stub<793> AllocateTemporaryEntryPoints +00007FA1285D49F0 a8 stub<794> AllocateTemporaryEntryPoints +00007FA1285D4A98 18 stub<795> AllocateTemporaryEntryPoints +00007FA1285D4AB0 108 stub<796> AllocateTemporaryEntryPoints +00007FA1285D4BB8 18 stub<797> AllocateTemporaryEntryPoints +00007FA1285D4BD0 18 stub<798> AllocateTemporaryEntryPoints +00007FA1285D4BE8 a8 stub<799> AllocateTemporaryEntryPoints +00007FA1285D4C90 a8 stub<800> AllocateTemporaryEntryPoints +00007FA1285D4D38 18 stub<801> AllocateTemporaryEntryPoints +00007FA1285D4D50 108 stub<802> AllocateTemporaryEntryPoints +00007FA1285D4E58 18 stub<803> AllocateTemporaryEntryPoints +00007FA1285D4E70 a8 stub<804> AllocateTemporaryEntryPoints +00007FA1285D4F18 60 stub<805> AllocateTemporaryEntryPoints +00007FA12784B050 e stub<806> GenerateVTableCallStub +00007FA1285D6000 f0 stub<807> AllocateTemporaryEntryPoints +00007FA1285D60F0 60 stub<808> AllocateTemporaryEntryPoints +00007FA1285D6150 948 stub<809> AllocateTemporaryEntryPoints +00007FA1285D6A98 240 stub<810> AllocateTemporaryEntryPoints +00007FA1285D6CD8 228 stub<811> AllocateTemporaryEntryPoints +00007FA1285D6F00 60 stub<812> AllocateTemporaryEntryPoints +00007FA12784B060 11 stub<813> GenerateVTableCallStub +00007FA1285D8000 1f8 stub<814> AllocateTemporaryEntryPoints +00007FA1285D81F8 60 stub<815> AllocateTemporaryEntryPoints +00007FA1285D8258 60 stub<816> AllocateTemporaryEntryPoints +00007FA1285D82B8 120 stub<817> AllocateTemporaryEntryPoints +00007FA1285D83D8 258 stub<818> AllocateTemporaryEntryPoints +00007FA1285D8630 48 stub<819> AllocateTemporaryEntryPoints +00007FA1285D8678 60 stub<820> AllocateTemporaryEntryPoints +00007FA1285D86D8 48 stub<821> AllocateTemporaryEntryPoints +00007FA1285D8720 60 stub<822> AllocateTemporaryEntryPoints +00007FA1285D8780 138 stub<823> AllocateTemporaryEntryPoints +00007FA1285D88B8 270 stub<824> AllocateTemporaryEntryPoints +00007FA1285D8B28 2b8 stub<825> AllocateTemporaryEntryPoints +00007FA1285D8DF8 f0 stub<826> AllocateTemporaryEntryPoints +00007FA1285DA000 450 stub<827> AllocateTemporaryEntryPoints +00007FA1285DA450 108 stub<828> AllocateTemporaryEntryPoints +00007FA1285DA558 60 stub<829> AllocateTemporaryEntryPoints +00007FA1285DA5B8 60 stub<830> AllocateTemporaryEntryPoints +00007FA1285DA618 90 stub<831> AllocateTemporaryEntryPoints +00007FA1285DA6A8 a8 stub<832> AllocateTemporaryEntryPoints +00007FA1285DA750 90 stub<833> AllocateTemporaryEntryPoints +00007FA1285DA7E0 60 stub<834> AllocateTemporaryEntryPoints +00007FA1285DA840 48 stub<835> AllocateTemporaryEntryPoints +00007FA1285DA888 60 stub<836> AllocateTemporaryEntryPoints +00007FA1285DA8E8 60 stub<837> AllocateTemporaryEntryPoints +00007FA1285DA960 60 stub<838> AllocateTemporaryEntryPoints +00007FA1285DA9C0 18 stub<839> AllocateTemporaryEntryPoints +00007FA1285DA9D8 18 stub<840> AllocateTemporaryEntryPoints +00007FA1285DA9F0 48 stub<841> AllocateTemporaryEntryPoints +00007FA1285DAA38 60 stub<842> AllocateTemporaryEntryPoints +00007FA1285DAA98 18 stub<843> AllocateTemporaryEntryPoints +00007FA1285DAAB0 18 stub<844> AllocateTemporaryEntryPoints +00007FA1285DAAC8 78 stub<845> AllocateTemporaryEntryPoints +00007FA1285DAB40 c0 stub<846> AllocateTemporaryEntryPoints +00007FA1285DAC00 78 stub<847> AllocateTemporaryEntryPoints +00007FA1285DAC78 c0 stub<848> AllocateTemporaryEntryPoints +00007FA1285DAD38 d8 stub<849> AllocateTemporaryEntryPoints +00007FA1285DC000 540 stub<850> AllocateTemporaryEntryPoints +00007FA1285DC540 210 stub<851> AllocateTemporaryEntryPoints +00007FA1285DC750 7f8 stub<852> AllocateTemporaryEntryPoints +00007FA1285DCF48 48 stub<853> AllocateTemporaryEntryPoints +00007FA1285DE000 7f8 stub<854> AllocateTemporaryEntryPoints +00007FA1285DE7F8 7f8 stub<855> AllocateTemporaryEntryPoints +00007FA1285F0000 7f8 stub<856> AllocateTemporaryEntryPoints +00007FA1285F07F8 438 stub<857> AllocateTemporaryEntryPoints +00007FA1285F0C30 1c8 stub<858> AllocateTemporaryEntryPoints +00007FA1285F2000 258 stub<859> AllocateTemporaryEntryPoints +00007FA1285F2258 7f8 stub<860> AllocateTemporaryEntryPoints +00007FA1285F2A50 528 stub<861> AllocateTemporaryEntryPoints +00007FA1285F4000 5e8 stub<862> AllocateTemporaryEntryPoints +00007FA1285F45E8 6d8 stub<863> AllocateTemporaryEntryPoints +00007FA1285F4CC0 60 stub<864> AllocateTemporaryEntryPoints +00007FA1285F4D20 138 stub<865> AllocateTemporaryEntryPoints +00007FA1285F4E58 18 stub<866> AllocateTemporaryEntryPoints +00007FA1285F6000 5a0 stub<867> AllocateTemporaryEntryPoints +00007FA1285F65A0 18 stub<868> AllocateTemporaryEntryPoints +00007FA1285F65B8 18 stub<869> AllocateTemporaryEntryPoints +00007FA1285F65D0 18 stub<870> AllocateTemporaryEntryPoints +00007FA1285F65E8 18 stub<871> AllocateTemporaryEntryPoints +00007FA1285F6600 2d0 stub<872> AllocateTemporaryEntryPoints +00007FA1285F68D0 18 stub<873> AllocateTemporaryEntryPoints +00007FA1285F68E8 18 stub<874> AllocateTemporaryEntryPoints +00007FA1285F6900 2d0 stub<875> AllocateTemporaryEntryPoints +00007FA1285F6BD0 18 stub<876> AllocateTemporaryEntryPoints +00007FA1284B0F50 999 char* [System.Private.CoreLib] System.Text.Unicode.Utf16Utility::GetPointerToFirstInvalidChar(char*,int32,int64&,int32&)[QuickJitted] +00007FA1285F6BE8 330 stub<877> AllocateTemporaryEntryPoints +00007FA1285F8000 540 stub<878> AllocateTemporaryEntryPoints +00007FA1285F8540 18 stub<879> AllocateTemporaryEntryPoints +00007FA1285F8558 18 stub<880> AllocateTemporaryEntryPoints +00007FA1285F8570 18 stub<881> AllocateTemporaryEntryPoints +00007FA1285F8588 18 stub<882> AllocateTemporaryEntryPoints +00007FA1285F85A0 18 stub<883> AllocateTemporaryEntryPoints +00007FA1284B19D0 466 native uint [System.Private.CoreLib] System.Text.ASCIIUtility::NarrowUtf16ToAscii(char*,uint8*,native uint)[QuickJitted] +00007FA1285F85B8 2b8 stub<884> AllocateTemporaryEntryPoints +00007FA1285F8870 18 stub<885> AllocateTemporaryEntryPoints +00007FA1285F8888 18 stub<886> AllocateTemporaryEntryPoints +00007FA1285F88A0 18 stub<887> AllocateTemporaryEntryPoints +00007FA1285F88B8 18 stub<888> AllocateTemporaryEntryPoints +00007FA1285F88D0 18 stub<889> AllocateTemporaryEntryPoints +00007FA1285F88E8 18 stub<890> AllocateTemporaryEntryPoints +00007FA1284B1EA0 1e1 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfNullByte(uint8&)[OptimizedTier1] +00007FA1285F8900 48 stub<891> AllocateTemporaryEntryPoints +00007FA1285F8948 18 stub<892> AllocateTemporaryEntryPoints +00007FA12784B080 e stub<893> GenerateVTableCallStub +00007FA1285F8960 30 stub<894> AllocateTemporaryEntryPoints +00007FA1285F8990 30 stub<895> AllocateTemporaryEntryPoints +00007FA1285F89C0 78 stub<896> AllocateTemporaryEntryPoints +00007FA1285F8A38 30 stub<897> AllocateTemporaryEntryPoints +00007FA1285F8A68 108 stub<898> AllocateTemporaryEntryPoints +00007FA12784B090 e stub<899> GenerateVTableCallStub +00007FA12784B0A0 e stub<900> GenerateVTableCallStub +00007FA1285F8B70 60 stub<901> AllocateTemporaryEntryPoints +00007FA1285F8BD0 60 stub<902> AllocateTemporaryEntryPoints +00007FA1285F8C30 270 stub<903> AllocateTemporaryEntryPoints +00007FA1285FA000 2b8 stub<904> AllocateTemporaryEntryPoints +00007FA1285FA2B8 2b8 stub<905> AllocateTemporaryEntryPoints +00007FA1285FA570 138 stub<906> AllocateTemporaryEntryPoints +00007FA1285FA6A8 60 stub<907> AllocateTemporaryEntryPoints +00007FA1285FA708 30 stub<908> AllocateTemporaryEntryPoints +00007FA12784B0B0 e stub<909> GenerateVTableCallStub +00007FA1285FA768 18 stub<910> AllocateTemporaryEntryPoints +00007FA1285FA780 18 stub<911> AllocateTemporaryEntryPoints +00007FA1285FA7F8 48 stub<912> AllocateTemporaryEntryPoints +00007FA1285FA870 150 stub<913> AllocateTemporaryEntryPoints +00007FA1285FA9C0 18 stub<914> AllocateTemporaryEntryPoints +00007FA1285FA9D8 18 stub<915> AllocateTemporaryEntryPoints +00007FA1285FC000 7b0 stub<916> AllocateTemporaryEntryPoints +00007FA1285FC7B0 378 stub<917> AllocateTemporaryEntryPoints +00007FA1285FE000 6f0 stub<918> AllocateTemporaryEntryPoints +00007FA1285FE6F0 78 stub<919> AllocateTemporaryEntryPoints +00007FA1285FE768 a8 stub<920> AllocateTemporaryEntryPoints +00007FA1285FE810 18 stub<921> AllocateTemporaryEntryPoints +00007FA1285FE828 18 stub<922> AllocateTemporaryEntryPoints +00007FA1285FE840 18 stub<923> AllocateTemporaryEntryPoints +00007FA1285FE858 5e8 stub<924> AllocateTemporaryEntryPoints +00007FA1285FEE40 c0 stub<925> AllocateTemporaryEntryPoints +00007FA1285FEF00 90 stub<926> AllocateTemporaryEntryPoints +00007FA128610000 a8 stub<927> AllocateTemporaryEntryPoints +00007FA1286100A8 18 stub<928> AllocateTemporaryEntryPoints +00007FA1286100C0 78 stub<929> AllocateTemporaryEntryPoints +00007FA128610138 18 stub<930> AllocateTemporaryEntryPoints +00007FA128610150 18 stub<931> AllocateTemporaryEntryPoints +00007FA128610168 270 stub<932> AllocateTemporaryEntryPoints +00007FA1286103D8 2b8 stub<933> AllocateTemporaryEntryPoints +00007FA128610690 48 stub<934> AllocateTemporaryEntryPoints +00007FA1286106D8 48 stub<935> AllocateTemporaryEntryPoints +00007FA128610720 48 stub<936> AllocateTemporaryEntryPoints +00007FA128610768 48 stub<937> AllocateTemporaryEntryPoints +00007FA1286107B0 48 stub<938> AllocateTemporaryEntryPoints +00007FA1286107F8 18 stub<939> AllocateTemporaryEntryPoints +00007FA128610810 a8 stub<940> AllocateTemporaryEntryPoints +00007FA1286108B8 18 stub<941> AllocateTemporaryEntryPoints +00007FA1286108D0 60 stub<942> AllocateTemporaryEntryPoints +00007FA128610930 30 stub<943> AllocateTemporaryEntryPoints +00007FA128610960 18 stub<944> AllocateTemporaryEntryPoints +00007FA128610978 390 stub<945> AllocateTemporaryEntryPoints +00007FA128610D08 30 stub<946> AllocateTemporaryEntryPoints +00007FA128610D38 18 stub<947> AllocateTemporaryEntryPoints +00007FA128610D50 30 stub<948> AllocateTemporaryEntryPoints +00007FA128610D80 30 stub<949> AllocateTemporaryEntryPoints +00007FA128610DB0 18 stub<950> AllocateTemporaryEntryPoints +00007FA128610DC8 30 stub<951> AllocateTemporaryEntryPoints +00007FA128610DF8 18 stub<952> AllocateTemporaryEntryPoints +00007FA128610E10 30 stub<953> AllocateTemporaryEntryPoints +00007FA128610E40 30 stub<954> AllocateTemporaryEntryPoints +00007FA128610E70 30 stub<955> AllocateTemporaryEntryPoints +00007FA128610EA0 30 stub<956> AllocateTemporaryEntryPoints +00007FA128610ED0 18 stub<957> AllocateTemporaryEntryPoints +00007FA128610EE8 30 stub<958> AllocateTemporaryEntryPoints +00007FA128610F18 a8 stub<959> AllocateTemporaryEntryPoints +00007FA128610FC0 18 stub<960> AllocateTemporaryEntryPoints +00007FA128610FD8 18 stub<961> AllocateTemporaryEntryPoints +00007FA128612000 390 stub<962> AllocateTemporaryEntryPoints +00007FA128612390 30 stub<963> AllocateTemporaryEntryPoints +00007FA1286123C0 18 stub<964> AllocateTemporaryEntryPoints +00007FA1286123D8 30 stub<965> AllocateTemporaryEntryPoints +00007FA128612408 30 stub<966> AllocateTemporaryEntryPoints +00007FA128612438 18 stub<967> AllocateTemporaryEntryPoints +00007FA128612450 30 stub<968> AllocateTemporaryEntryPoints +00007FA128612480 18 stub<969> AllocateTemporaryEntryPoints +00007FA128612498 30 stub<970> AllocateTemporaryEntryPoints +00007FA1286124C8 30 stub<971> AllocateTemporaryEntryPoints +00007FA1286124F8 30 stub<972> AllocateTemporaryEntryPoints +00007FA128612528 30 stub<973> AllocateTemporaryEntryPoints +00007FA128612558 18 stub<974> AllocateTemporaryEntryPoints +00007FA128612570 30 stub<975> AllocateTemporaryEntryPoints +00007FA1286125A0 48 stub<976> AllocateTemporaryEntryPoints +00007FA1286125E8 2d0 stub<977> AllocateTemporaryEntryPoints +00007FA1286128B8 2d0 stub<978> AllocateTemporaryEntryPoints +00007FA128612B88 18 stub<979> AllocateTemporaryEntryPoints +00007FA128612BA0 2d0 stub<980> AllocateTemporaryEntryPoints +00007FA128612E70 18 stub<981> AllocateTemporaryEntryPoints +00007FA128612E88 18 stub<982> AllocateTemporaryEntryPoints +00007FA128612EA0 18 stub<983> AllocateTemporaryEntryPoints +00007FA128612EB8 18 stub<984> AllocateTemporaryEntryPoints +00007FA128612ED0 18 stub<985> AllocateTemporaryEntryPoints +00007FA128612EE8 18 stub<986> AllocateTemporaryEntryPoints +00007FA128612F00 18 stub<987> AllocateTemporaryEntryPoints +00007FA128612F18 18 stub<988> AllocateTemporaryEntryPoints +00007FA128612F30 18 stub<989> AllocateTemporaryEntryPoints +00007FA128612F48 18 stub<990> AllocateTemporaryEntryPoints +00007FA128612F60 18 stub<991> AllocateTemporaryEntryPoints +00007FA128612F78 18 stub<992> AllocateTemporaryEntryPoints +00007FA128612F90 18 stub<993> AllocateTemporaryEntryPoints +00007FA128612FA8 18 stub<994> AllocateTemporaryEntryPoints +00007FA128612FC0 18 stub<995> AllocateTemporaryEntryPoints +00007FA128612FD8 18 stub<996> AllocateTemporaryEntryPoints +00007FA128614000 18 stub<997> AllocateTemporaryEntryPoints +00007FA128614018 18 stub<998> AllocateTemporaryEntryPoints +00007FA128614030 18 stub<999> AllocateTemporaryEntryPoints +00007FA128614048 18 stub<1000> AllocateTemporaryEntryPoints +00007FA128614060 18 stub<1001> AllocateTemporaryEntryPoints +00007FA128614078 18 stub<1002> AllocateTemporaryEntryPoints +00007FA128614090 18 stub<1003> AllocateTemporaryEntryPoints +00007FA1286140A8 240 stub<1004> AllocateTemporaryEntryPoints +00007FA1286142E8 48 stub<1005> AllocateTemporaryEntryPoints +00007FA128614330 60 stub<1006> AllocateTemporaryEntryPoints +00007FA128614390 18 stub<1007> AllocateTemporaryEntryPoints +00007FA1286143A8 18 stub<1008> AllocateTemporaryEntryPoints +00007FA1286143C0 18 stub<1009> AllocateTemporaryEntryPoints +00007FA1286143D8 18 stub<1010> AllocateTemporaryEntryPoints +00007FA1286143F0 18 stub<1011> AllocateTemporaryEntryPoints +00007FA128614408 18 stub<1012> AllocateTemporaryEntryPoints +00007FA128614420 18 stub<1013> AllocateTemporaryEntryPoints +00007FA128614438 18 stub<1014> AllocateTemporaryEntryPoints +00007FA128614450 18 stub<1015> AllocateTemporaryEntryPoints +00007FA128614468 18 stub<1016> AllocateTemporaryEntryPoints +00007FA1284B24C0 200 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfValueType(!!0&,!!0,int32)[OptimizedTier1] +00007FA128614480 18 stub<1017> AllocateTemporaryEntryPoints +00007FA128614498 18 stub<1018> AllocateTemporaryEntryPoints +00007FA1286144B0 18 stub<1019> AllocateTemporaryEntryPoints +00007FA1286144C8 18 stub<1020> AllocateTemporaryEntryPoints +00007FA1286144E0 18 stub<1021> AllocateTemporaryEntryPoints +00007FA1286144F8 18 stub<1022> AllocateTemporaryEntryPoints +00007FA1284B2720 3fa instance string [System.Private.CoreLib] System.String::Replace(char,char)[QuickJitted] +00007FA128614510 18 stub<1023> AllocateTemporaryEntryPoints +00007FA128614528 7f8 stub<1024> AllocateTemporaryEntryPoints +00007FA128616000 7f8 stub<1025> AllocateTemporaryEntryPoints +00007FA1286167F8 f0 stub<1026> AllocateTemporaryEntryPoints +00007FA1286168E8 30 stub<1027> AllocateTemporaryEntryPoints +00007FA128616918 30 stub<1028> AllocateTemporaryEntryPoints +00007FA128616948 2a0 stub<1029> AllocateTemporaryEntryPoints +00007FA128616BE8 2a0 stub<1030> AllocateTemporaryEntryPoints +00007FA128616E88 18 stub<1031> AllocateTemporaryEntryPoints +00007FA128616EA0 18 stub<1032> AllocateTemporaryEntryPoints +00007FA128616EB8 60 stub<1033> AllocateTemporaryEntryPoints +00007FA128616F18 60 stub<1034> AllocateTemporaryEntryPoints +00007FA128616F78 18 stub<1035> AllocateTemporaryEntryPoints +00007FA128616F90 60 stub<1036> AllocateTemporaryEntryPoints +00007FA128618000 60 stub<1037> AllocateTemporaryEntryPoints +00007FA12784B0C0 11 stub<1038> GenerateVTableCallStub +00007FA128618078 810 stub<1039> AllocateTemporaryEntryPoints +00007FA128618888 720 stub<1040> AllocateTemporaryEntryPoints +00007FA12861A000 210 stub<1041> AllocateTemporaryEntryPoints +00007FA12861A210 210 stub<1042> AllocateTemporaryEntryPoints +00007FA12784B0E0 11 stub<1043> GenerateVTableCallStub +00007FA12861A420 18 stub<1044> AllocateTemporaryEntryPoints +00007FA12861A438 18 stub<1045> AllocateTemporaryEntryPoints +00007FA12861A450 a8 stub<1046> AllocateTemporaryEntryPoints +00007FA12861A4F8 18 stub<1047> AllocateTemporaryEntryPoints +00007FA12861A510 60 stub<1048> AllocateTemporaryEntryPoints +00007FA12861A570 30 stub<1049> AllocateTemporaryEntryPoints +00007FA12861A5A0 18 stub<1050> AllocateTemporaryEntryPoints +00007FA12861A5B8 390 stub<1051> AllocateTemporaryEntryPoints +00007FA12861A948 30 stub<1052> AllocateTemporaryEntryPoints +00007FA12861A978 18 stub<1053> AllocateTemporaryEntryPoints +00007FA12861A990 30 stub<1054> AllocateTemporaryEntryPoints +00007FA12861A9C0 30 stub<1055> AllocateTemporaryEntryPoints +00007FA12861A9F0 18 stub<1056> AllocateTemporaryEntryPoints +00007FA12861AA08 30 stub<1057> AllocateTemporaryEntryPoints +00007FA12861AA38 18 stub<1058> AllocateTemporaryEntryPoints +00007FA12861AA50 30 stub<1059> AllocateTemporaryEntryPoints +00007FA12861AA80 30 stub<1060> AllocateTemporaryEntryPoints +00007FA12861AAB0 30 stub<1061> AllocateTemporaryEntryPoints +00007FA12861AAE0 30 stub<1062> AllocateTemporaryEntryPoints +00007FA12861AB10 18 stub<1063> AllocateTemporaryEntryPoints +00007FA12861AB28 30 stub<1064> AllocateTemporaryEntryPoints +00007FA12861AB58 48 stub<1065> AllocateTemporaryEntryPoints +00007FA12861ABA0 2d0 stub<1066> AllocateTemporaryEntryPoints +00007FA12861AE70 18 stub<1067> AllocateTemporaryEntryPoints +00007FA12861C000 2d0 stub<1068> AllocateTemporaryEntryPoints +00007FA12861C2D0 18 stub<1069> AllocateTemporaryEntryPoints +00007FA12861C2E8 18 stub<1070> AllocateTemporaryEntryPoints +00007FA12861C300 18 stub<1071> AllocateTemporaryEntryPoints +00007FA12861C318 18 stub<1072> AllocateTemporaryEntryPoints +00007FA12861C330 18 stub<1073> AllocateTemporaryEntryPoints +00007FA12861C348 18 stub<1074> AllocateTemporaryEntryPoints +00007FA12861C360 18 stub<1075> AllocateTemporaryEntryPoints +00007FA12861C378 18 stub<1076> AllocateTemporaryEntryPoints +00007FA12861C390 18 stub<1077> AllocateTemporaryEntryPoints +00007FA12861C3A8 18 stub<1078> AllocateTemporaryEntryPoints +00007FA12861C3C0 18 stub<1079> AllocateTemporaryEntryPoints +00007FA12861C3D8 18 stub<1080> AllocateTemporaryEntryPoints +00007FA12861C3F0 18 stub<1081> AllocateTemporaryEntryPoints +00007FA12861C408 18 stub<1082> AllocateTemporaryEntryPoints +00007FA12861C420 18 stub<1083> AllocateTemporaryEntryPoints +00007FA12861C438 18 stub<1084> AllocateTemporaryEntryPoints +00007FA12861C450 18 stub<1085> AllocateTemporaryEntryPoints +00007FA12861C468 30 stub<1086> AllocateTemporaryEntryPoints +00007FA12861C498 18 stub<1087> AllocateTemporaryEntryPoints +00007FA1284B2B60 1c5 int32 [System.Private.CoreLib] System.SpanHelpers::LastIndexOfValueType(!!0&,!!0,int32)[OptimizedTier1] +00007FA12861C4B0 18 stub<1088> AllocateTemporaryEntryPoints +00007FA12861C4C8 78 stub<1089> AllocateTemporaryEntryPoints +00007FA12784B100 11 stub<1090> GenerateVTableCallStub +00007FA12861C558 330 stub<1091> AllocateTemporaryEntryPoints +00007FA12861C888 198 stub<1092> AllocateTemporaryEntryPoints +00007FA12861CA20 18 stub<1093> AllocateTemporaryEntryPoints +00007FA12861CA38 18 stub<1094> AllocateTemporaryEntryPoints +00007FA12861CA50 1f8 stub<1095> AllocateTemporaryEntryPoints +00007FA12861CC48 18 stub<1096> AllocateTemporaryEntryPoints +00007FA12861CC60 18 stub<1097> AllocateTemporaryEntryPoints +00007FA12861CC78 18 stub<1098> AllocateTemporaryEntryPoints +00007FA12861CCA8 18 stub<1099> AllocateTemporaryEntryPoints +00007FA12861E000 540 stub<1100> AllocateTemporaryEntryPoints +00007FA12861E540 18 stub<1101> AllocateTemporaryEntryPoints +00007FA12861E558 18 stub<1102> AllocateTemporaryEntryPoints +00007FA12861E570 18 stub<1103> AllocateTemporaryEntryPoints +00007FA12861E588 18 stub<1104> AllocateTemporaryEntryPoints +00007FA12861E5A0 18 stub<1105> AllocateTemporaryEntryPoints +00007FA12861E5B8 18 stub<1106> AllocateTemporaryEntryPoints +00007FA1284B2D80 3ed native uint [System.Private.CoreLib] System.Text.ASCIIUtility::WidenAsciiToUtf16(uint8*,char*,native uint)[QuickJitted] +00007FA12861E5D0 5e8 stub<1107> AllocateTemporaryEntryPoints +00007FA12861EBB8 c0 stub<1108> AllocateTemporaryEntryPoints +00007FA12861EC78 90 stub<1109> AllocateTemporaryEntryPoints +00007FA12861ED08 a8 stub<1110> AllocateTemporaryEntryPoints +00007FA12861EDB0 18 stub<1111> AllocateTemporaryEntryPoints +00007FA12861EDC8 78 stub<1112> AllocateTemporaryEntryPoints +00007FA12861EE40 18 stub<1113> AllocateTemporaryEntryPoints +00007FA12861EE58 60 stub<1114> AllocateTemporaryEntryPoints +00007FA12861EEE8 d8 stub<1115> AllocateTemporaryEntryPoints +00007FA12861EFC0 30 stub<1116> AllocateTemporaryEntryPoints +00007FA128640018 18 stub<1117> AllocateTemporaryEntryPoints +00007FA128640030 a8 stub<1118> AllocateTemporaryEntryPoints +00007FA1286400D8 18 stub<1119> AllocateTemporaryEntryPoints +00007FA12784B120 e stub<1120> GenerateVTableCallStub +00007FA128640138 60 stub<1121> AllocateTemporaryEntryPoints +00007FA128640198 60 stub<1122> AllocateTemporaryEntryPoints +00007FA128640210 d8 stub<1123> AllocateTemporaryEntryPoints +00007FA1286402E8 30 stub<1124> AllocateTemporaryEntryPoints +00007FA128640318 18 stub<1125> AllocateTemporaryEntryPoints +00007FA128640330 a8 stub<1126> AllocateTemporaryEntryPoints +00007FA1277BF020 18 stub<1127> GenerateLookupStub +00007FA128640408 120 stub<1128> AllocateTemporaryEntryPoints +00007FA128640528 18 stub<1129> AllocateTemporaryEntryPoints +00007FA1277F4070 18 stub<1130> GenerateResolveStub +00007FA1277C3020 20 stub<1131> GenerateDispatchStub +00007FA128640540 a8 stub<1132> AllocateTemporaryEntryPoints +00007FA1286405E8 a8 stub<1133> AllocateTemporaryEntryPoints +00007FA128640690 d8 stub<1134> AllocateTemporaryEntryPoints +00007FA128640768 d8 stub<1135> AllocateTemporaryEntryPoints +00007FA128640840 78 stub<1136> AllocateTemporaryEntryPoints +00007FA1286408B8 60 stub<1137> AllocateTemporaryEntryPoints +00007FA128640918 78 stub<1138> AllocateTemporaryEntryPoints +00007FA128640990 18 stub<1139> AllocateTemporaryEntryPoints +00007FA1286409A8 30 stub<1140> AllocateTemporaryEntryPoints +00007FA1286409D8 5d0 stub<1141> AllocateTemporaryEntryPoints +00007FA128642000 330 stub<1142> AllocateTemporaryEntryPoints +00007FA128642330 468 stub<1143> AllocateTemporaryEntryPoints +00007FA128642798 f0 stub<1144> AllocateTemporaryEntryPoints +00007FA128642888 1f8 stub<1145> AllocateTemporaryEntryPoints +00007FA128642A80 228 stub<1146> AllocateTemporaryEntryPoints +00007FA128642CA8 138 stub<1147> AllocateTemporaryEntryPoints +00007FA128644000 498 stub<1148> AllocateTemporaryEntryPoints +00007FA128644498 870 stub<1149> AllocateTemporaryEntryPoints +00007FA128644D08 180 stub<1150> AllocateTemporaryEntryPoints +00007FA128646000 2b8 stub<1151> AllocateTemporaryEntryPoints +00007FA1286462B8 7e0 stub<1152> AllocateTemporaryEntryPoints +00007FA128648000 7c8 stub<1153> AllocateTemporaryEntryPoints +00007FA128424150 90 stub<1154> AllocateTemporaryEntryPoints +00007FA1286487C8 5a0 stub<1155> AllocateTemporaryEntryPoints +00007FA128648D68 78 stub<1156> AllocateTemporaryEntryPoints +00007FA12864A000 618 stub<1157> AllocateTemporaryEntryPoints +00007FA12864A618 30 stub<1158> AllocateTemporaryEntryPoints +00007FA12864A648 78 stub<1159> AllocateTemporaryEntryPoints +00007FA12864A6C0 18 stub<1160> AllocateTemporaryEntryPoints +00007FA12864A6D8 228 stub<1161> AllocateTemporaryEntryPoints +00007FA12864A900 2e8 stub<1162> AllocateTemporaryEntryPoints +00007FA12864ABE8 78 stub<1163> AllocateTemporaryEntryPoints +00007FA12784B130 e stub<1164> GenerateVTableCallStub +00007FA12864AC60 18 stub<1165> AllocateTemporaryEntryPoints +00007FA12864AC78 78 stub<1166> AllocateTemporaryEntryPoints +00007FA12784B140 e stub<1167> GenerateVTableCallStub +00007FA12864ACF0 f0 stub<1168> AllocateTemporaryEntryPoints +00007FA12864ADE0 138 stub<1169> AllocateTemporaryEntryPoints +00007FA12864C000 360 stub<1170> AllocateTemporaryEntryPoints +00007FA12864C360 60 stub<1171> AllocateTemporaryEntryPoints +00007FA12864C3C0 18 stub<1172> AllocateTemporaryEntryPoints +00007FA128660040 18 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventAttribute.set_Level(object,object,native int*)[Optimized] +00007FA1277F40E0 18 stub<1173> GenerateResolveStub +00007FA1277C3040 20 stub<1174> GenerateDispatchStub +00007FA1286600C0 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventAttribute.set_Message(object,object,native int*)[Optimized] +00007FA128660140 18 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventAttribute.set_Task(object,object,native int*)[Optimized] +00007FA1286601C0 18 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventAttribute.set_Opcode(object,object,native int*)[Optimized] +00007FA128660240 1a object [System.Private.CoreLib] dynamicClass::InvokeStub_EventAttribute.set_Version(object,object,native int*)[Optimized] +00007FA1286602C0 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventAttribute.set_Keywords(object,object,native int*)[Optimized] +00007FA12864C438 630 stub<1175> AllocateTemporaryEntryPoints +00007FA12784B150 11 stub<1176> GenerateVTableCallStub +00007FA12784B170 e stub<1177> GenerateVTableCallStub +00007FA12864CA80 60 stub<1178> AllocateTemporaryEntryPoints +00007FA12864CAF8 60 stub<1179> AllocateTemporaryEntryPoints +00007FA12864CB58 348 stub<1180> AllocateTemporaryEntryPoints +00007FA12864CEA0 18 stub<1181> AllocateTemporaryEntryPoints +00007FA12864E000 708 stub<1182> AllocateTemporaryEntryPoints +00007FA12864E708 7f8 stub<1183> AllocateTemporaryEntryPoints +00007FA128670000 510 stub<1184> AllocateTemporaryEntryPoints +00007FA128670510 60 stub<1185> AllocateTemporaryEntryPoints +00007FA128670570 60 stub<1186> AllocateTemporaryEntryPoints +00007FA1286705D0 468 stub<1187> AllocateTemporaryEntryPoints +00007FA128424630 138 stub<1188> AllocateTemporaryEntryPoints +00007FA128670A38 60 stub<1189> AllocateTemporaryEntryPoints +00007FA128670A98 2b8 stub<1190> AllocateTemporaryEntryPoints +00007FA128672000 4c8 stub<1191> AllocateTemporaryEntryPoints +00007FA128426198 588 stub<1192> AllocateTemporaryEntryPoints +00007FA128426720 300 stub<1193> AllocateTemporaryEntryPoints +00007FA128426A20 2a0 stub<1194> AllocateTemporaryEntryPoints +00007FA128672900 d8 stub<1195> AllocateTemporaryEntryPoints +00007FA1286729D8 228 stub<1196> AllocateTemporaryEntryPoints +00007FA128672C00 168 stub<1197> AllocateTemporaryEntryPoints +00007FA128674000 810 stub<1198> AllocateTemporaryEntryPoints +00007FA128674810 228 stub<1199> AllocateTemporaryEntryPoints +00007FA128674A38 30 stub<1200> AllocateTemporaryEntryPoints +00007FA128674A68 a8 stub<1201> AllocateTemporaryEntryPoints +00007FA128676000 5e8 stub<1202> AllocateTemporaryEntryPoints +00007FA1286765E8 c0 stub<1203> AllocateTemporaryEntryPoints +00007FA1286766A8 90 stub<1204> AllocateTemporaryEntryPoints +00007FA128676738 a8 stub<1205> AllocateTemporaryEntryPoints +00007FA1286767E0 18 stub<1206> AllocateTemporaryEntryPoints +00007FA1286767F8 78 stub<1207> AllocateTemporaryEntryPoints +00007FA128676870 18 stub<1208> AllocateTemporaryEntryPoints +00007FA128676888 60 stub<1209> AllocateTemporaryEntryPoints +00007FA1286768E8 60 stub<1210> AllocateTemporaryEntryPoints +00007FA128676960 18 stub<1211> AllocateTemporaryEntryPoints +00007FA128676978 48 stub<1212> AllocateTemporaryEntryPoints +00007FA1286769C0 90 stub<1213> AllocateTemporaryEntryPoints +00007FA128676A50 48 stub<1214> AllocateTemporaryEntryPoints +00007FA128676A98 a8 stub<1215> AllocateTemporaryEntryPoints +00007FA128676B40 48 stub<1216> AllocateTemporaryEntryPoints +00007FA128676B88 90 stub<1217> AllocateTemporaryEntryPoints +00007FA128676C18 198 stub<1218> AllocateTemporaryEntryPoints +00007FA128676DB0 198 stub<1219> AllocateTemporaryEntryPoints +00007FA128676F48 18 stub<1220> AllocateTemporaryEntryPoints +00007FA128676F60 18 stub<1221> AllocateTemporaryEntryPoints +00007FA128678000 108 stub<1222> AllocateTemporaryEntryPoints +00007FA128678108 108 stub<1223> AllocateTemporaryEntryPoints +00007FA128678210 18 stub<1224> AllocateTemporaryEntryPoints +00007FA128678228 18 stub<1225> AllocateTemporaryEntryPoints +00007FA128678240 18 stub<1226> AllocateTemporaryEntryPoints +00007FA128678258 18 stub<1227> AllocateTemporaryEntryPoints +00007FA128678270 18 stub<1228> AllocateTemporaryEntryPoints +00007FA128678288 18 stub<1229> AllocateTemporaryEntryPoints +00007FA1286782A0 6f0 stub<1230> AllocateTemporaryEntryPoints +00007FA128678990 78 stub<1231> AllocateTemporaryEntryPoints +00007FA128678A08 a8 stub<1232> AllocateTemporaryEntryPoints +00007FA128678AB0 18 stub<1233> AllocateTemporaryEntryPoints +00007FA128678AC8 18 stub<1234> AllocateTemporaryEntryPoints +00007FA128678AE0 18 stub<1235> AllocateTemporaryEntryPoints +00007FA128678AF8 120 stub<1236> AllocateTemporaryEntryPoints +00007FA128678C18 18 stub<1237> AllocateTemporaryEntryPoints +00007FA128678C30 60 stub<1238> AllocateTemporaryEntryPoints +00007FA128678C90 60 stub<1239> AllocateTemporaryEntryPoints +00007FA12867A000 6f0 stub<1240> AllocateTemporaryEntryPoints +00007FA12867A6F0 78 stub<1241> AllocateTemporaryEntryPoints +00007FA12867A768 18 stub<1242> AllocateTemporaryEntryPoints +00007FA12867A780 120 stub<1243> AllocateTemporaryEntryPoints +00007FA12867A8A0 108 stub<1244> AllocateTemporaryEntryPoints +00007FA12867A9A8 108 stub<1245> AllocateTemporaryEntryPoints +00007FA12867AAB0 18 stub<1246> AllocateTemporaryEntryPoints +00007FA12867AAC8 150 stub<1247> AllocateTemporaryEntryPoints +00007FA12867AC18 150 stub<1248> AllocateTemporaryEntryPoints +00007FA12867AD68 a8 stub<1249> AllocateTemporaryEntryPoints +00007FA12867AE10 18 stub<1250> AllocateTemporaryEntryPoints +00007FA12867AE28 18 stub<1251> AllocateTemporaryEntryPoints +00007FA12867AE40 18 stub<1252> AllocateTemporaryEntryPoints +00007FA12867AE58 30 stub<1253> AllocateTemporaryEntryPoints +00007FA12867C000 180 stub<1254> AllocateTemporaryEntryPoints +00007FA12867C180 180 stub<1255> AllocateTemporaryEntryPoints +00007FA12867C300 30 stub<1256> AllocateTemporaryEntryPoints +00007FA12867C330 30 stub<1257> AllocateTemporaryEntryPoints +00007FA12867C360 138 stub<1258> AllocateTemporaryEntryPoints +00007FA12867C498 138 stub<1259> AllocateTemporaryEntryPoints +00007FA12867C5D0 30 stub<1260> AllocateTemporaryEntryPoints +00007FA12867C600 30 stub<1261> AllocateTemporaryEntryPoints +00007FA12867C630 18 stub<1262> AllocateTemporaryEntryPoints +00007FA12867C648 138 stub<1263> AllocateTemporaryEntryPoints +00007FA12867C780 6a8 stub<1264> AllocateTemporaryEntryPoints +00007FA12867E000 630 stub<1265> AllocateTemporaryEntryPoints +00007FA12867E630 4e0 stub<1266> AllocateTemporaryEntryPoints +00007FA12867EB10 468 stub<1267> AllocateTemporaryEntryPoints +00007FA128690000 90 stub<1268> AllocateTemporaryEntryPoints +00007FA128690090 60 stub<1269> AllocateTemporaryEntryPoints +00007FA1286900F0 30 stub<1270> AllocateTemporaryEntryPoints +00007FA128690120 60 stub<1271> AllocateTemporaryEntryPoints +00007FA128690198 150 stub<1272> AllocateTemporaryEntryPoints +00007FA1286902E8 150 stub<1273> AllocateTemporaryEntryPoints +00007FA128690438 a8 stub<1274> AllocateTemporaryEntryPoints +00007FA1286904E0 18 stub<1275> AllocateTemporaryEntryPoints +00007FA1286904F8 18 stub<1276> AllocateTemporaryEntryPoints +00007FA12784B180 e stub<1277> GenerateVTableCallStub +00007FA12784B190 e stub<1278> GenerateVTableCallStub +00007FA128690510 18 stub<1279> AllocateTemporaryEntryPoints +00007FA12784B1A0 e stub<1280> GenerateVTableCallStub +00007FA128690528 7f8 stub<1281> AllocateTemporaryEntryPoints +00007FA128692000 7f8 stub<1282> AllocateTemporaryEntryPoints +00007FA1286927F8 7f8 stub<1283> AllocateTemporaryEntryPoints +00007FA128694000 7f8 stub<1284> AllocateTemporaryEntryPoints +00007FA1286947F8 18 stub<1285> AllocateTemporaryEntryPoints +00007FA128694810 2a0 stub<1286> AllocateTemporaryEntryPoints +00007FA1277F4150 18 stub<1287> GenerateResolveStub +00007FA1277C3060 20 stub<1288> GenerateDispatchStub +00007FA1277F41C0 18 stub<1289> GenerateResolveStub +00007FA1277C3080 20 stub<1290> GenerateDispatchStub +00007FA128694AB0 150 stub<1291> AllocateTemporaryEntryPoints +00007FA128694C00 18 stub<1292> AllocateTemporaryEntryPoints +00007FA128694C18 2b8 stub<1293> AllocateTemporaryEntryPoints +00007FA128696000 180 stub<1294> AllocateTemporaryEntryPoints +00007FA128696180 30 stub<1295> AllocateTemporaryEntryPoints +00007FA1286961B0 18 stub<1296> AllocateTemporaryEntryPoints +00007FA1286961C8 138 stub<1297> AllocateTemporaryEntryPoints +00007FA128696300 60 stub<1298> AllocateTemporaryEntryPoints +00007FA128696378 150 stub<1299> AllocateTemporaryEntryPoints +00007FA1277BF040 18 stub<1300> GenerateLookupStub +00007FA1286964C8 180 stub<1301> AllocateTemporaryEntryPoints +00007FA1277BF060 18 stub<1302> GenerateLookupStub +00007FA1277F4230 18 stub<1303> GenerateResolveStub +00007FA1277C30A0 20 stub<1304> GenerateDispatchStub +00007FA12784B1B0 e stub<1305> GenerateVTableCallStub +00007FA12784B1C0 e stub<1306> GenerateVTableCallStub +00007FA128696648 2d0 stub<1307> AllocateTemporaryEntryPoints +00007FA128696918 2d0 stub<1308> AllocateTemporaryEntryPoints +00007FA128696BE8 18 stub<1309> AllocateTemporaryEntryPoints +00007FA128696C00 a8 stub<1310> AllocateTemporaryEntryPoints +00007FA128696CA8 138 stub<1311> AllocateTemporaryEntryPoints +00007FA128696DE0 60 stub<1312> AllocateTemporaryEntryPoints +00007FA128696E40 138 stub<1313> AllocateTemporaryEntryPoints +00007FA128698000 1b0 stub<1314> AllocateTemporaryEntryPoints +00007FA1286981B0 7c8 stub<1315> AllocateTemporaryEntryPoints +00007FA128698978 2e8 stub<1316> AllocateTemporaryEntryPoints +00007FA12869A000 7f8 stub<1317> AllocateTemporaryEntryPoints +00007FA12869A7F8 c0 stub<1318> AllocateTemporaryEntryPoints +00007FA12869A8B8 2a0 stub<1319> AllocateTemporaryEntryPoints +00007FA12869AB58 60 stub<1320> AllocateTemporaryEntryPoints +00007FA12869ABB8 60 stub<1321> AllocateTemporaryEntryPoints +00007FA12869AC18 210 stub<1322> AllocateTemporaryEntryPoints +00007FA12869AE28 1c8 stub<1323> AllocateTemporaryEntryPoints +00007FA1277F42A0 18 stub<1324> GenerateResolveStub +00007FA1277C30C0 20 stub<1325> GenerateDispatchStub +00007FA1277F4310 18 stub<1326> GenerateResolveStub +00007FA1277C30E0 20 stub<1327> GenerateDispatchStub +00007FA12869C018 18 stub<1328> AllocateTemporaryEntryPoints +00007FA12869C030 18 stub<1329> AllocateTemporaryEntryPoints +00007FA12869C048 138 stub<1330> AllocateTemporaryEntryPoints +00007FA12869C180 48 stub<1331> AllocateTemporaryEntryPoints +00007FA12869C1C8 60 stub<1332> AllocateTemporaryEntryPoints +00007FA12869C228 810 stub<1333> AllocateTemporaryEntryPoints +00007FA12869E000 750 stub<1334> AllocateTemporaryEntryPoints +00007FA12869E750 4f8 stub<1335> AllocateTemporaryEntryPoints +00007FA1284B3DB0 44 void [Samples.BuggyBits] BuggyBits.Program::
(string[])[QuickJitted] +00007FA1284B3E10 c9 void [Samples.BuggyBits] __DDVoidMethodType__::__DDVoidMethodCall__()[QuickJitted] +00007FA1284B3EF0 25 bool [Samples.BuggyBits] __DDVoidMethodType__::IsAlreadyLoaded()[QuickJitted] +00007FA12869EC48 18 stub<1336> AllocateTemporaryEntryPoints +00007FA1284B3F30 d4 void [Samples.BuggyBits] dynamicClass::IL_STUB_PInvoke(native int&,int32&,native int&,int32&)[Optimized] +00007FA12869EC60 1b0 stub<1337> AllocateTemporaryEntryPoints +00007FA12869EE10 138 stub<1338> AllocateTemporaryEntryPoints +00007FA12869EF48 18 stub<1339> AllocateTemporaryEntryPoints +00007FA12869EF60 18 stub<1340> AllocateTemporaryEntryPoints +00007FA1286B0000 5a0 stub<1341> AllocateTemporaryEntryPoints +00007FA1286B05A0 60 stub<1342> AllocateTemporaryEntryPoints +00007FA1286B0600 18 stub<1343> AllocateTemporaryEntryPoints +00007FA1286B0618 78 stub<1344> AllocateTemporaryEntryPoints +00007FA1286B0690 78 stub<1345> AllocateTemporaryEntryPoints +00007FA1286B0708 270 stub<1346> AllocateTemporaryEntryPoints +00007FA1286B0978 30 stub<1347> AllocateTemporaryEntryPoints +00007FA1286B09A8 48 stub<1348> AllocateTemporaryEntryPoints +00007FA1286B09F0 60 stub<1349> AllocateTemporaryEntryPoints +00007FA1286B0A50 1b0 stub<1350> AllocateTemporaryEntryPoints +00007FA1286B0C00 48 stub<1351> AllocateTemporaryEntryPoints +00007FA1286B2000 5e8 stub<1352> AllocateTemporaryEntryPoints +00007FA1286B25E8 c0 stub<1353> AllocateTemporaryEntryPoints +00007FA1286B26A8 90 stub<1354> AllocateTemporaryEntryPoints +00007FA1286B2738 a8 stub<1355> AllocateTemporaryEntryPoints +00007FA1286B27E0 18 stub<1356> AllocateTemporaryEntryPoints +00007FA1286B27F8 78 stub<1357> AllocateTemporaryEntryPoints +00007FA1286B2870 18 stub<1358> AllocateTemporaryEntryPoints +00007FA1286B2888 60 stub<1359> AllocateTemporaryEntryPoints +00007FA12784B1D0 e stub<1360> GenerateVTableCallStub +00007FA1286B28E8 18 stub<1361> AllocateTemporaryEntryPoints +00007FA1286B2900 30 stub<1362> AllocateTemporaryEntryPoints +00007FA1286B2930 390 stub<1363> AllocateTemporaryEntryPoints +00007FA1286B2CC0 138 stub<1364> AllocateTemporaryEntryPoints +00007FA1286B2DF8 180 stub<1365> AllocateTemporaryEntryPoints +00007FA1286B2F78 18 stub<1366> AllocateTemporaryEntryPoints +00007FA1286B4000 a8 stub<1367> AllocateTemporaryEntryPoints +00007FA1286B40A8 1f8 stub<1368> AllocateTemporaryEntryPoints +00007FA1286B42A0 18 stub<1369> AllocateTemporaryEntryPoints +00007FA1286B42B8 18 stub<1370> AllocateTemporaryEntryPoints +00007FA12784B1E0 e stub<1371> GenerateVTableCallStub +00007FA1286B42D0 18 stub<1372> AllocateTemporaryEntryPoints +00007FA1286B42E8 78 stub<1373> AllocateTemporaryEntryPoints +00007FA1284B4430 33 instance void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::.ctor()[QuickJitted] +00007FA1286B4378 30 stub<1374> AllocateTemporaryEntryPoints +00007FA1286B43A8 c0 stub<1375> AllocateTemporaryEntryPoints +00007FA1286B4468 7b0 stub<1376> AllocateTemporaryEntryPoints +00007FA1286B4C18 60 stub<1377> AllocateTemporaryEntryPoints +00007FA1286B4C78 18 stub<1378> AllocateTemporaryEntryPoints +00007FA1286B4C90 18 stub<1379> AllocateTemporaryEntryPoints +00007FA1284B4480 2ca void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::.cctor()[QuickJitted] +00007FA1284B4770 1f instance void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.ManagedProfilerAssemblyLoadContext::.ctor()[QuickJitted] +00007FA1286B4CA8 18 stub<1380> AllocateTemporaryEntryPoints +00007FA1286B6000 6f0 stub<1381> AllocateTemporaryEntryPoints +00007FA1286B66F0 78 stub<1382> AllocateTemporaryEntryPoints +00007FA1286B6768 a8 stub<1383> AllocateTemporaryEntryPoints +00007FA1286B6810 18 stub<1384> AllocateTemporaryEntryPoints +00007FA1286B6828 18 stub<1385> AllocateTemporaryEntryPoints +00007FA1286B6840 18 stub<1386> AllocateTemporaryEntryPoints +00007FA1286B6858 540 stub<1387> AllocateTemporaryEntryPoints +00007FA1286B8000 510 stub<1388> AllocateTemporaryEntryPoints +00007FA1277BF080 18 stub<1389> GenerateLookupStub +00007FA1277BF0A0 18 stub<1390> GenerateLookupStub +00007FA1277BF0C0 18 stub<1391> GenerateLookupStub +00007FA1286B8510 60 stub<1392> AllocateTemporaryEntryPoints +00007FA1277BF0E0 18 stub<1393> GenerateLookupStub +00007FA1284B47B0 311 string [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::ResolveManagedProfilerDirectory()[QuickJitted] +00007FA1286B8570 360 stub<1394> AllocateTemporaryEntryPoints +00007FA1286B88D0 30 stub<1395> AllocateTemporaryEntryPoints +00007FA1286B8900 18 stub<1396> AllocateTemporaryEntryPoints +00007FA1286B8918 18 stub<1397> AllocateTemporaryEntryPoints +00007FA1286B8930 18 stub<1398> AllocateTemporaryEntryPoints +00007FA1286B8948 48 stub<1399> AllocateTemporaryEntryPoints +00007FA1286B8990 48 stub<1400> AllocateTemporaryEntryPoints +00007FA1286B89D8 78 stub<1401> AllocateTemporaryEntryPoints +00007FA1286B8A50 30 stub<1402> AllocateTemporaryEntryPoints +00007FA1286B8A80 30 stub<1403> AllocateTemporaryEntryPoints +00007FA1286B8AB0 30 stub<1404> AllocateTemporaryEntryPoints +00007FA1286B8AE0 30 stub<1405> AllocateTemporaryEntryPoints +00007FA1286B8B10 48 stub<1406> AllocateTemporaryEntryPoints +00007FA1286B8B58 60 stub<1407> AllocateTemporaryEntryPoints +00007FA1286B8BB8 18 stub<1408> AllocateTemporaryEntryPoints +00007FA1286B8BD0 60 stub<1409> AllocateTemporaryEntryPoints +00007FA1286B8C30 30 stub<1410> AllocateTemporaryEntryPoints +00007FA1286B8C60 30 stub<1411> AllocateTemporaryEntryPoints +00007FA1286B8C90 30 stub<1412> AllocateTemporaryEntryPoints +00007FA1286B8CC0 30 stub<1413> AllocateTemporaryEntryPoints +00007FA1286B8CF0 30 stub<1414> AllocateTemporaryEntryPoints +00007FA1286B8D20 30 stub<1415> AllocateTemporaryEntryPoints +00007FA1286B8D50 30 stub<1416> AllocateTemporaryEntryPoints +00007FA1286B8D80 18 stub<1417> AllocateTemporaryEntryPoints +00007FA1286B8D98 a8 stub<1418> AllocateTemporaryEntryPoints +00007FA1286B8E40 18 stub<1419> AllocateTemporaryEntryPoints +00007FA1286B8E58 60 stub<1420> AllocateTemporaryEntryPoints +00007FA1286B8EB8 30 stub<1421> AllocateTemporaryEntryPoints +00007FA1286B8EE8 18 stub<1422> AllocateTemporaryEntryPoints +00007FA1286BA000 390 stub<1423> AllocateTemporaryEntryPoints +00007FA1286BA390 30 stub<1424> AllocateTemporaryEntryPoints +00007FA1286BA3C0 18 stub<1425> AllocateTemporaryEntryPoints +00007FA1286BA3D8 30 stub<1426> AllocateTemporaryEntryPoints +00007FA1286BA408 30 stub<1427> AllocateTemporaryEntryPoints +00007FA1286BA438 18 stub<1428> AllocateTemporaryEntryPoints +00007FA1286BA450 30 stub<1429> AllocateTemporaryEntryPoints +00007FA1286BA480 18 stub<1430> AllocateTemporaryEntryPoints +00007FA1286BA498 30 stub<1431> AllocateTemporaryEntryPoints +00007FA1286BA4C8 30 stub<1432> AllocateTemporaryEntryPoints +00007FA1286BA4F8 30 stub<1433> AllocateTemporaryEntryPoints +00007FA1286BA528 30 stub<1434> AllocateTemporaryEntryPoints +00007FA1286BA558 18 stub<1435> AllocateTemporaryEntryPoints +00007FA1286BA570 30 stub<1436> AllocateTemporaryEntryPoints +00007FA1286BA5A0 48 stub<1437> AllocateTemporaryEntryPoints +00007FA1286BA5E8 2d0 stub<1438> AllocateTemporaryEntryPoints +00007FA1286BA8B8 18 stub<1439> AllocateTemporaryEntryPoints +00007FA1286BA8D0 2d0 stub<1440> AllocateTemporaryEntryPoints +00007FA1286BABA0 18 stub<1441> AllocateTemporaryEntryPoints +00007FA1286BABB8 18 stub<1442> AllocateTemporaryEntryPoints +00007FA1286BABD0 18 stub<1443> AllocateTemporaryEntryPoints +00007FA1286BABE8 18 stub<1444> AllocateTemporaryEntryPoints +00007FA1286BAC00 18 stub<1445> AllocateTemporaryEntryPoints +00007FA1286BAC18 18 stub<1446> AllocateTemporaryEntryPoints +00007FA1286BAC30 18 stub<1447> AllocateTemporaryEntryPoints +00007FA1286BAC48 18 stub<1448> AllocateTemporaryEntryPoints +00007FA1286BAC60 18 stub<1449> AllocateTemporaryEntryPoints +00007FA1286BAC78 18 stub<1450> AllocateTemporaryEntryPoints +00007FA1286BAC90 18 stub<1451> AllocateTemporaryEntryPoints +00007FA1286BACA8 18 stub<1452> AllocateTemporaryEntryPoints +00007FA1284B4B00 356 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfAnyValueType(!!0&,!!0,!!0,!!0,int32)[OptimizedTier1] +00007FA1286BC000 720 stub<1453> AllocateTemporaryEntryPoints +00007FA1284B4EC0 bf string [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::ReadEnvironmentVariable(string)[QuickJitted] +00007FA1286BC720 288 stub<1454> AllocateTemporaryEntryPoints +00007FA1284B4FA0 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.Managed.Loader.Startup+CachedAssembly]::.ctor()[QuickJitted] +00007FA1284B5010 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.Managed.Loader.Startup+CachedAssembly]::.cctor()[QuickJitted] +00007FA1286BC9A8 210 stub<1455> AllocateTemporaryEntryPoints +00007FA1286BCBB8 c0 stub<1456> AllocateTemporaryEntryPoints +00007FA1286BCC78 18 stub<1457> AllocateTemporaryEntryPoints +00007FA1286BCC90 a8 stub<1458> AllocateTemporaryEntryPoints +00007FA1286BCD38 18 stub<1459> AllocateTemporaryEntryPoints +00007FA1286BCD50 60 stub<1460> AllocateTemporaryEntryPoints +00007FA1286BCDB0 30 stub<1461> AllocateTemporaryEntryPoints +00007FA1286BCDE0 18 stub<1462> AllocateTemporaryEntryPoints +00007FA1286BE000 390 stub<1463> AllocateTemporaryEntryPoints +00007FA1286BE390 30 stub<1464> AllocateTemporaryEntryPoints +00007FA1286BE3C0 18 stub<1465> AllocateTemporaryEntryPoints +00007FA1286BE3D8 30 stub<1466> AllocateTemporaryEntryPoints +00007FA1286BE408 30 stub<1467> AllocateTemporaryEntryPoints +00007FA1286BE438 18 stub<1468> AllocateTemporaryEntryPoints +00007FA1286BE450 30 stub<1469> AllocateTemporaryEntryPoints +00007FA1286BE480 18 stub<1470> AllocateTemporaryEntryPoints +00007FA1286BE498 30 stub<1471> AllocateTemporaryEntryPoints +00007FA1286BE4C8 30 stub<1472> AllocateTemporaryEntryPoints +00007FA1286BE4F8 30 stub<1473> AllocateTemporaryEntryPoints +00007FA1286BE528 30 stub<1474> AllocateTemporaryEntryPoints +00007FA1286BE558 18 stub<1475> AllocateTemporaryEntryPoints +00007FA1286BE570 30 stub<1476> AllocateTemporaryEntryPoints +00007FA1286BE5A0 2d0 stub<1477> AllocateTemporaryEntryPoints +00007FA1286BE870 18 stub<1478> AllocateTemporaryEntryPoints +00007FA1286BE888 2d0 stub<1479> AllocateTemporaryEntryPoints +00007FA1286BEB58 18 stub<1480> AllocateTemporaryEntryPoints +00007FA1286BEB70 18 stub<1481> AllocateTemporaryEntryPoints +00007FA1286BEB88 18 stub<1482> AllocateTemporaryEntryPoints +00007FA1286BEBA0 18 stub<1483> AllocateTemporaryEntryPoints +00007FA1286BEBB8 18 stub<1484> AllocateTemporaryEntryPoints +00007FA1286BEBD0 18 stub<1485> AllocateTemporaryEntryPoints +00007FA1286BEBE8 18 stub<1486> AllocateTemporaryEntryPoints +00007FA1286BEC00 18 stub<1487> AllocateTemporaryEntryPoints +00007FA1286BEC18 18 stub<1488> AllocateTemporaryEntryPoints +00007FA1286BEC30 18 stub<1489> AllocateTemporaryEntryPoints +00007FA1284B5060 119 bool [System.Private.CoreLib] System.SpanHelpers::ContainsValueType(!!0&,!!0,int32)[OptimizedTier1] +00007FA1286BEC48 1b0 stub<1490> AllocateTemporaryEntryPoints +00007FA1286BEDF8 18 stub<1491> AllocateTemporaryEntryPoints +00007FA1286BEE10 a8 stub<1492> AllocateTemporaryEntryPoints +00007FA1286BEEB8 18 stub<1493> AllocateTemporaryEntryPoints +00007FA1286BEED0 60 stub<1494> AllocateTemporaryEntryPoints +00007FA1286BEF30 30 stub<1495> AllocateTemporaryEntryPoints +00007FA1286BEF60 18 stub<1496> AllocateTemporaryEntryPoints +00007FA128770000 390 stub<1497> AllocateTemporaryEntryPoints +00007FA128770390 30 stub<1498> AllocateTemporaryEntryPoints +00007FA1287703C0 18 stub<1499> AllocateTemporaryEntryPoints +00007FA1287703D8 30 stub<1500> AllocateTemporaryEntryPoints +00007FA128770408 30 stub<1501> AllocateTemporaryEntryPoints +00007FA128770438 18 stub<1502> AllocateTemporaryEntryPoints +00007FA128770450 30 stub<1503> AllocateTemporaryEntryPoints +00007FA128770480 18 stub<1504> AllocateTemporaryEntryPoints +00007FA128770498 30 stub<1505> AllocateTemporaryEntryPoints +00007FA1287704C8 30 stub<1506> AllocateTemporaryEntryPoints +00007FA1287704F8 30 stub<1507> AllocateTemporaryEntryPoints +00007FA128770528 30 stub<1508> AllocateTemporaryEntryPoints +00007FA128770558 18 stub<1509> AllocateTemporaryEntryPoints +00007FA128770570 30 stub<1510> AllocateTemporaryEntryPoints +00007FA1287705A0 48 stub<1511> AllocateTemporaryEntryPoints +00007FA1287705E8 2d0 stub<1512> AllocateTemporaryEntryPoints +00007FA1287708B8 18 stub<1513> AllocateTemporaryEntryPoints +00007FA1287708D0 2d0 stub<1514> AllocateTemporaryEntryPoints +00007FA128770BA0 18 stub<1515> AllocateTemporaryEntryPoints +00007FA128770BB8 18 stub<1516> AllocateTemporaryEntryPoints +00007FA128770BD0 18 stub<1517> AllocateTemporaryEntryPoints +00007FA128770BE8 18 stub<1518> AllocateTemporaryEntryPoints +00007FA128770C00 18 stub<1519> AllocateTemporaryEntryPoints +00007FA128770C18 18 stub<1520> AllocateTemporaryEntryPoints +00007FA128770C30 18 stub<1521> AllocateTemporaryEntryPoints +00007FA128770C48 18 stub<1522> AllocateTemporaryEntryPoints +00007FA128770C60 18 stub<1523> AllocateTemporaryEntryPoints +00007FA128770C78 18 stub<1524> AllocateTemporaryEntryPoints +00007FA128770C90 18 stub<1525> AllocateTemporaryEntryPoints +00007FA128770CA8 18 stub<1526> AllocateTemporaryEntryPoints +00007FA1284B51A0 3bd int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfAnyValueType(!!0&,!!0,!!0,!!0,!!0,int32)[OptimizedTier1] +00007FA128770CC0 60 stub<1527> AllocateTemporaryEntryPoints +00007FA128770D20 30 stub<1528> AllocateTemporaryEntryPoints +00007FA128770D50 c0 stub<1529> AllocateTemporaryEntryPoints +00007FA128770E10 c0 stub<1530> AllocateTemporaryEntryPoints +00007FA128770ED0 18 stub<1531> AllocateTemporaryEntryPoints +00007FA128770EE8 60 stub<1532> AllocateTemporaryEntryPoints +00007FA128770F48 60 stub<1533> AllocateTemporaryEntryPoints +00007FA128772000 60 stub<1534> AllocateTemporaryEntryPoints +00007FA128772060 60 stub<1535> AllocateTemporaryEntryPoints +00007FA1287720C0 c0 stub<1536> AllocateTemporaryEntryPoints +00007FA128772180 18 stub<1537> AllocateTemporaryEntryPoints +00007FA128772198 270 stub<1538> AllocateTemporaryEntryPoints +00007FA128772408 270 stub<1539> AllocateTemporaryEntryPoints +00007FA128772678 60 stub<1540> AllocateTemporaryEntryPoints +00007FA1287726D8 270 stub<1541> AllocateTemporaryEntryPoints +00007FA128772948 60 stub<1542> AllocateTemporaryEntryPoints +00007FA1287729A8 18 stub<1543> AllocateTemporaryEntryPoints +00007FA1287729C0 18 stub<1544> AllocateTemporaryEntryPoints +00007FA1287729D8 a8 stub<1545> AllocateTemporaryEntryPoints +00007FA128772A98 a8 stub<1546> AllocateTemporaryEntryPoints +00007FA128772B40 a8 stub<1547> AllocateTemporaryEntryPoints +00007FA128772BE8 a8 stub<1548> AllocateTemporaryEntryPoints +00007FA128772C90 a8 stub<1549> AllocateTemporaryEntryPoints +00007FA128772D38 a8 stub<1550> AllocateTemporaryEntryPoints +00007FA128772DE0 138 stub<1551> AllocateTemporaryEntryPoints +00007FA128772F18 18 stub<1552> AllocateTemporaryEntryPoints +00007FA128772F30 18 stub<1553> AllocateTemporaryEntryPoints +00007FA128772F48 60 stub<1554> AllocateTemporaryEntryPoints +00007FA128774000 138 stub<1555> AllocateTemporaryEntryPoints +00007FA128774138 90 stub<1556> AllocateTemporaryEntryPoints +00007FA1287741C8 18 stub<1557> AllocateTemporaryEntryPoints +00007FA1287741E0 180 stub<1558> AllocateTemporaryEntryPoints +00007FA128774360 180 stub<1559> AllocateTemporaryEntryPoints +00007FA1287744E0 1e0 stub<1560> AllocateTemporaryEntryPoints +00007FA1287746C0 60 stub<1561> AllocateTemporaryEntryPoints +00007FA128774720 78 stub<1562> AllocateTemporaryEntryPoints +00007FA128774798 78 stub<1563> AllocateTemporaryEntryPoints +00007FA128774810 f0 stub<1564> AllocateTemporaryEntryPoints +00007FA128774900 a8 stub<1565> AllocateTemporaryEntryPoints +00007FA1287749A8 a8 stub<1566> AllocateTemporaryEntryPoints +00007FA128774A50 18 stub<1567> AllocateTemporaryEntryPoints +00007FA128774A68 60 stub<1568> AllocateTemporaryEntryPoints +00007FA128774AC8 60 stub<1569> AllocateTemporaryEntryPoints +00007FA128774B28 78 stub<1570> AllocateTemporaryEntryPoints +00007FA128774BA0 258 stub<1571> AllocateTemporaryEntryPoints +00007FA128776000 2a0 stub<1572> AllocateTemporaryEntryPoints +00007FA1287762A0 18 stub<1573> AllocateTemporaryEntryPoints +00007FA1287762B8 18 stub<1574> AllocateTemporaryEntryPoints +00007FA1287762D0 258 stub<1575> AllocateTemporaryEntryPoints +00007FA128776528 18 stub<1576> AllocateTemporaryEntryPoints +00007FA128776540 18 stub<1577> AllocateTemporaryEntryPoints +00007FA128776558 18 stub<1578> AllocateTemporaryEntryPoints +00007FA128776570 18 stub<1579> AllocateTemporaryEntryPoints +00007FA128776588 528 stub<1580> AllocateTemporaryEntryPoints +00007FA128776AB0 1f8 stub<1581> AllocateTemporaryEntryPoints +00007FA128776CA8 48 stub<1582> AllocateTemporaryEntryPoints +00007FA128776CF0 48 stub<1583> AllocateTemporaryEntryPoints +00007FA128776D38 18 stub<1584> AllocateTemporaryEntryPoints +00007FA128776D50 a8 stub<1585> AllocateTemporaryEntryPoints +00007FA128776DF8 18 stub<1586> AllocateTemporaryEntryPoints +00007FA128776E10 18 stub<1587> AllocateTemporaryEntryPoints +00007FA128778000 390 stub<1588> AllocateTemporaryEntryPoints +00007FA128778390 30 stub<1589> AllocateTemporaryEntryPoints +00007FA1287783C0 18 stub<1590> AllocateTemporaryEntryPoints +00007FA1287783D8 30 stub<1591> AllocateTemporaryEntryPoints +00007FA128778408 30 stub<1592> AllocateTemporaryEntryPoints +00007FA128778438 18 stub<1593> AllocateTemporaryEntryPoints +00007FA128778450 30 stub<1594> AllocateTemporaryEntryPoints +00007FA128778480 18 stub<1595> AllocateTemporaryEntryPoints +00007FA128778498 30 stub<1596> AllocateTemporaryEntryPoints +00007FA1287784C8 30 stub<1597> AllocateTemporaryEntryPoints +00007FA1287784F8 30 stub<1598> AllocateTemporaryEntryPoints +00007FA128778528 30 stub<1599> AllocateTemporaryEntryPoints +00007FA128778558 18 stub<1600> AllocateTemporaryEntryPoints +00007FA128778570 30 stub<1601> AllocateTemporaryEntryPoints +00007FA1287785A0 18 stub<1602> AllocateTemporaryEntryPoints +00007FA1287785B8 18 stub<1603> AllocateTemporaryEntryPoints +00007FA1287785D0 18 stub<1604> AllocateTemporaryEntryPoints +00007FA1287785E8 18 stub<1605> AllocateTemporaryEntryPoints +00007FA128778600 18 stub<1606> AllocateTemporaryEntryPoints +00007FA128778618 18 stub<1607> AllocateTemporaryEntryPoints +00007FA128778630 18 stub<1608> AllocateTemporaryEntryPoints +00007FA128778648 18 stub<1609> AllocateTemporaryEntryPoints +00007FA128778660 18 stub<1610> AllocateTemporaryEntryPoints +00007FA128778678 240 stub<1611> AllocateTemporaryEntryPoints +00007FA1287788B8 48 stub<1612> AllocateTemporaryEntryPoints +00007FA128778900 60 stub<1613> AllocateTemporaryEntryPoints +00007FA128778960 18 stub<1614> AllocateTemporaryEntryPoints +00007FA128778978 18 stub<1615> AllocateTemporaryEntryPoints +00007FA1284B5A00 236 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfValueType(!!0&,!!0,int32)[OptimizedTier1] +00007FA128778990 18 stub<1616> AllocateTemporaryEntryPoints +00007FA1287789A8 a8 stub<1617> AllocateTemporaryEntryPoints +00007FA128778A50 18 stub<1618> AllocateTemporaryEntryPoints +00007FA128778A68 60 stub<1619> AllocateTemporaryEntryPoints +00007FA128778AC8 30 stub<1620> AllocateTemporaryEntryPoints +00007FA128778AF8 18 stub<1621> AllocateTemporaryEntryPoints +00007FA128778B10 390 stub<1622> AllocateTemporaryEntryPoints +00007FA128778EA0 30 stub<1623> AllocateTemporaryEntryPoints +00007FA128778ED0 18 stub<1624> AllocateTemporaryEntryPoints +00007FA128778EE8 30 stub<1625> AllocateTemporaryEntryPoints +00007FA128778F18 30 stub<1626> AllocateTemporaryEntryPoints +00007FA128778F48 18 stub<1627> AllocateTemporaryEntryPoints +00007FA128778F60 30 stub<1628> AllocateTemporaryEntryPoints +00007FA128778F90 18 stub<1629> AllocateTemporaryEntryPoints +00007FA128778FA8 30 stub<1630> AllocateTemporaryEntryPoints +00007FA12877A000 30 stub<1631> AllocateTemporaryEntryPoints +00007FA12877A030 30 stub<1632> AllocateTemporaryEntryPoints +00007FA12877A060 30 stub<1633> AllocateTemporaryEntryPoints +00007FA12877A090 18 stub<1634> AllocateTemporaryEntryPoints +00007FA12877A0A8 30 stub<1635> AllocateTemporaryEntryPoints +00007FA12877A0D8 2d0 stub<1636> AllocateTemporaryEntryPoints +00007FA12877A3A8 18 stub<1637> AllocateTemporaryEntryPoints +00007FA12877A3C0 2d0 stub<1638> AllocateTemporaryEntryPoints +00007FA12877A690 18 stub<1639> AllocateTemporaryEntryPoints +00007FA12877A6A8 18 stub<1640> AllocateTemporaryEntryPoints +00007FA12877A6C0 18 stub<1641> AllocateTemporaryEntryPoints +00007FA12877A6D8 18 stub<1642> AllocateTemporaryEntryPoints +00007FA12877A6F0 18 stub<1643> AllocateTemporaryEntryPoints +00007FA12877A708 18 stub<1644> AllocateTemporaryEntryPoints +00007FA12877A720 18 stub<1645> AllocateTemporaryEntryPoints +00007FA12877A738 18 stub<1646> AllocateTemporaryEntryPoints +00007FA12877A750 18 stub<1647> AllocateTemporaryEntryPoints +00007FA12877A768 18 stub<1648> AllocateTemporaryEntryPoints +00007FA12877A780 18 stub<1649> AllocateTemporaryEntryPoints +00007FA12877A798 18 stub<1650> AllocateTemporaryEntryPoints +00007FA1284B5C60 424 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfAnyValueType(!!0&,!!0,!!0,!!0,!!0,!!0,int32)[OptimizedTier1] +00007FA12877A7B0 528 stub<1651> AllocateTemporaryEntryPoints +00007FA12877C000 510 stub<1652> AllocateTemporaryEntryPoints +00007FA12877C510 5e8 stub<1653> AllocateTemporaryEntryPoints +00007FA1284B6100 3b instance void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup+CachedAssembly::.ctor(string,class [System.Runtime]System.Reflection.Assembly)[QuickJitted] +00007FA1284B6150 9c instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.Managed.Loader.Startup+CachedAssembly]::Add(!0)[QuickJitted] +00007FA1284B6200 71 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.Managed.Loader.Startup+CachedAssembly]::AddWithResize(!0)[QuickJitted] +00007FA1284B6290 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.Managed.Loader.Startup+CachedAssembly]::Grow(int32)[QuickJitted] +00007FA12877E000 7b0 stub<1654> AllocateTemporaryEntryPoints +00007FA12877E7B0 150 stub<1655> AllocateTemporaryEntryPoints +00007FA1284B6320 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.Managed.Loader.Startup+CachedAssembly]::set_Capacity(int32)[QuickJitted] +00007FA1277F4380 18 stub<1656> GenerateResolveStub +00007FA1277C3100 20 stub<1657> GenerateDispatchStub +00007FA1277F43F0 18 stub<1658> GenerateResolveStub +00007FA1277C3120 20 stub<1659> GenerateDispatchStub +00007FA12877E900 78 stub<1660> AllocateTemporaryEntryPoints +00007FA12877E978 60 stub<1661> AllocateTemporaryEntryPoints +00007FA12877E9D8 48 stub<1662> AllocateTemporaryEntryPoints +00007FA12877EA20 48 stub<1663> AllocateTemporaryEntryPoints +00007FA12877EA68 48 stub<1664> AllocateTemporaryEntryPoints +00007FA1284B6400 71 instance !0[] [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.Managed.Loader.Startup+CachedAssembly]::ToArray()[QuickJitted] +00007FA1284B6490 47 void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.StartupLogger::Debug(string,object[])[QuickJitted] +00007FA1284B64F0 43 void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.StartupLogger::.cctor()[QuickJitted] +00007FA1284B6550 119 bool [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.StartupLogger::IsDebugEnabled()[QuickJitted] +00007FA12877EAB0 2d0 stub<1665> AllocateTemporaryEntryPoints +00007FA1284B6690 140 string [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.StartupLogger::GetLogDirectory()[QuickJitted] +00007FA12877ED80 60 stub<1666> AllocateTemporaryEntryPoints +00007FA12877EDE0 60 stub<1667> AllocateTemporaryEntryPoints +00007FA1287A0000 420 stub<1668> AllocateTemporaryEntryPoints +00007FA1287A0420 348 stub<1669> AllocateTemporaryEntryPoints +00007FA1284B6800 5f string [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.StartupLogger::CreateDirectoryIfMissing(string)[QuickJitted] +00007FA1287A0768 450 stub<1670> AllocateTemporaryEntryPoints +00007FA1287A0BB8 48 stub<1671> AllocateTemporaryEntryPoints +00007FA1287A0C00 60 stub<1672> AllocateTemporaryEntryPoints +00007FA1287A0C60 180 stub<1673> AllocateTemporaryEntryPoints +00007FA1287A0DE0 138 stub<1674> AllocateTemporaryEntryPoints +00007FA1287A2000 810 stub<1675> AllocateTemporaryEntryPoints +00007FA1287A4000 7f8 stub<1676> AllocateTemporaryEntryPoints +00007FA1287A47F8 60 stub<1677> AllocateTemporaryEntryPoints +00007FA1284B6880 154 string [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.StartupLogger::SetStartupLogFilePath()[QuickJitted] +00007FA1287A4858 30 stub<1678> AllocateTemporaryEntryPoints +00007FA1287A4888 a8 stub<1679> AllocateTemporaryEntryPoints +00007FA1287A4930 138 stub<1680> AllocateTemporaryEntryPoints +00007FA1287A4A68 1e0 stub<1681> AllocateTemporaryEntryPoints +00007FA1287A4C48 2d0 stub<1682> AllocateTemporaryEntryPoints +00007FA1287A4F18 18 stub<1683> AllocateTemporaryEntryPoints +00007FA1287A4F30 18 stub<1684> AllocateTemporaryEntryPoints +00007FA1287A4F48 18 stub<1685> AllocateTemporaryEntryPoints +00007FA1287A6000 6c0 stub<1686> AllocateTemporaryEntryPoints +00007FA1287A66C0 630 stub<1687> AllocateTemporaryEntryPoints +00007FA1287A6CF0 f0 stub<1688> AllocateTemporaryEntryPoints +00007FA1287A6DE0 18 stub<1689> AllocateTemporaryEntryPoints +00007FA1287A8000 528 stub<1690> AllocateTemporaryEntryPoints +00007FA1287A8528 378 stub<1691> AllocateTemporaryEntryPoints +00007FA1287A88A0 30 stub<1692> AllocateTemporaryEntryPoints +00007FA1287A88D0 138 stub<1693> AllocateTemporaryEntryPoints +00007FA1287A8A08 180 stub<1694> AllocateTemporaryEntryPoints +00007FA1287A8B88 138 stub<1695> AllocateTemporaryEntryPoints +00007FA1287A8CC0 288 stub<1696> AllocateTemporaryEntryPoints +00007FA1287A8F48 78 stub<1697> AllocateTemporaryEntryPoints +00007FA1287AA000 f0 stub<1698> AllocateTemporaryEntryPoints +00007FA1287AA0F0 348 stub<1699> AllocateTemporaryEntryPoints +00007FA12784B1F0 e stub<1700> GenerateVTableCallStub +00007FA12784B200 e stub<1701> GenerateVTableCallStub +00007FA1287AA438 270 stub<1702> AllocateTemporaryEntryPoints +00007FA12784B210 e stub<1703> GenerateVTableCallStub +00007FA1287AA6C0 120 stub<1704> AllocateTemporaryEntryPoints +00007FA1287AA7E0 60 stub<1705> AllocateTemporaryEntryPoints +00007FA1277F4460 18 stub<1706> GenerateResolveStub +00007FA1277C3140 20 stub<1707> GenerateDispatchStub +00007FA1287AA870 60 stub<1708> AllocateTemporaryEntryPoints +00007FA1287AA8D0 18 stub<1709> AllocateTemporaryEntryPoints +00007FA1287AA8E8 18 stub<1710> AllocateTemporaryEntryPoints +00007FA1287AA900 18 stub<1711> AllocateTemporaryEntryPoints +00007FA1287AA918 18 stub<1712> AllocateTemporaryEntryPoints +00007FA1287AA930 18 stub<1713> AllocateTemporaryEntryPoints +00007FA1287AA948 18 stub<1714> AllocateTemporaryEntryPoints +00007FA12784B220 e stub<1715> GenerateVTableCallStub +00007FA1287AC000 810 stub<1716> AllocateTemporaryEntryPoints +00007FA1287AC810 468 stub<1717> AllocateTemporaryEntryPoints +00007FA1287ACC78 288 stub<1718> AllocateTemporaryEntryPoints +00007FA1287ACF00 18 stub<1719> AllocateTemporaryEntryPoints +00007FA12784B230 e stub<1720> GenerateVTableCallStub +00007FA1287AE000 4f8 stub<1721> AllocateTemporaryEntryPoints +00007FA1287AE4F8 4f8 stub<1722> AllocateTemporaryEntryPoints +00007FA1287AE9F0 78 stub<1723> AllocateTemporaryEntryPoints +00007FA1287AEA68 a8 stub<1724> AllocateTemporaryEntryPoints +00007FA1287AEB10 18 stub<1725> AllocateTemporaryEntryPoints +00007FA1287AEB28 18 stub<1726> AllocateTemporaryEntryPoints +00007FA1287AEB40 18 stub<1727> AllocateTemporaryEntryPoints +00007FA1287AEB58 78 stub<1728> AllocateTemporaryEntryPoints +00007FA1287AEBD0 a8 stub<1729> AllocateTemporaryEntryPoints +00007FA1287AEC78 18 stub<1730> AllocateTemporaryEntryPoints +00007FA1287AEC90 18 stub<1731> AllocateTemporaryEntryPoints +00007FA1287AECA8 18 stub<1732> AllocateTemporaryEntryPoints +00007FA1287AECC0 18 stub<1733> AllocateTemporaryEntryPoints +00007FA1287AECD8 18 stub<1734> AllocateTemporaryEntryPoints +00007FA1287AECF0 18 stub<1735> AllocateTemporaryEntryPoints +00007FA1287AED08 18 stub<1736> AllocateTemporaryEntryPoints +00007FA1287AED20 18 stub<1737> AllocateTemporaryEntryPoints +00007FA1287AED38 18 stub<1738> AllocateTemporaryEntryPoints +00007FA1287AED50 18 stub<1739> AllocateTemporaryEntryPoints +00007FA1287AED68 18 stub<1740> AllocateTemporaryEntryPoints +00007FA128950000 2b8 stub<1741> AllocateTemporaryEntryPoints +00007FA1289502B8 18 stub<1742> AllocateTemporaryEntryPoints +00007FA1289502D0 18 stub<1743> AllocateTemporaryEntryPoints +00007FA1289502E8 18 stub<1744> AllocateTemporaryEntryPoints +00007FA128950300 18 stub<1745> AllocateTemporaryEntryPoints +00007FA128950318 18 stub<1746> AllocateTemporaryEntryPoints +00007FA128950330 18 stub<1747> AllocateTemporaryEntryPoints +00007FA128950348 18 stub<1748> AllocateTemporaryEntryPoints +00007FA128950360 a8 stub<1749> AllocateTemporaryEntryPoints +00007FA128950408 18 stub<1750> AllocateTemporaryEntryPoints +00007FA128950420 60 stub<1751> AllocateTemporaryEntryPoints +00007FA128950480 30 stub<1752> AllocateTemporaryEntryPoints +00007FA1289504B0 18 stub<1753> AllocateTemporaryEntryPoints +00007FA1289504C8 390 stub<1754> AllocateTemporaryEntryPoints +00007FA128950858 30 stub<1755> AllocateTemporaryEntryPoints +00007FA128950888 18 stub<1756> AllocateTemporaryEntryPoints +00007FA1289508A0 30 stub<1757> AllocateTemporaryEntryPoints +00007FA1289508D0 30 stub<1758> AllocateTemporaryEntryPoints +00007FA128950900 18 stub<1759> AllocateTemporaryEntryPoints +00007FA128950918 30 stub<1760> AllocateTemporaryEntryPoints +00007FA128950948 18 stub<1761> AllocateTemporaryEntryPoints +00007FA128950960 30 stub<1762> AllocateTemporaryEntryPoints +00007FA128950990 30 stub<1763> AllocateTemporaryEntryPoints +00007FA1289509C0 30 stub<1764> AllocateTemporaryEntryPoints +00007FA1289509F0 30 stub<1765> AllocateTemporaryEntryPoints +00007FA128950A20 18 stub<1766> AllocateTemporaryEntryPoints +00007FA128950A38 30 stub<1767> AllocateTemporaryEntryPoints +00007FA128950A68 a8 stub<1768> AllocateTemporaryEntryPoints +00007FA128950B10 18 stub<1769> AllocateTemporaryEntryPoints +00007FA128950B28 18 stub<1770> AllocateTemporaryEntryPoints +00007FA128950B40 390 stub<1771> AllocateTemporaryEntryPoints +00007FA128950ED0 30 stub<1772> AllocateTemporaryEntryPoints +00007FA128950F00 18 stub<1773> AllocateTemporaryEntryPoints +00007FA128950F18 30 stub<1774> AllocateTemporaryEntryPoints +00007FA128950F48 30 stub<1775> AllocateTemporaryEntryPoints +00007FA128950F78 18 stub<1776> AllocateTemporaryEntryPoints +00007FA128950F90 30 stub<1777> AllocateTemporaryEntryPoints +00007FA128950FC0 18 stub<1778> AllocateTemporaryEntryPoints +00007FA128952000 30 stub<1779> AllocateTemporaryEntryPoints +00007FA128952030 30 stub<1780> AllocateTemporaryEntryPoints +00007FA128952060 30 stub<1781> AllocateTemporaryEntryPoints +00007FA128952090 30 stub<1782> AllocateTemporaryEntryPoints +00007FA1289520C0 18 stub<1783> AllocateTemporaryEntryPoints +00007FA1289520D8 30 stub<1784> AllocateTemporaryEntryPoints +00007FA128952108 18 stub<1785> AllocateTemporaryEntryPoints +00007FA128952120 18 stub<1786> AllocateTemporaryEntryPoints +00007FA128952138 18 stub<1787> AllocateTemporaryEntryPoints +00007FA128952150 a8 stub<1788> AllocateTemporaryEntryPoints +00007FA1289521F8 18 stub<1789> AllocateTemporaryEntryPoints +00007FA128952210 390 stub<1790> AllocateTemporaryEntryPoints +00007FA1289525A0 30 stub<1791> AllocateTemporaryEntryPoints +00007FA1289525D0 18 stub<1792> AllocateTemporaryEntryPoints +00007FA1289525E8 30 stub<1793> AllocateTemporaryEntryPoints +00007FA128952618 30 stub<1794> AllocateTemporaryEntryPoints +00007FA128952648 30 stub<1795> AllocateTemporaryEntryPoints +00007FA128952678 18 stub<1796> AllocateTemporaryEntryPoints +00007FA128952690 30 stub<1797> AllocateTemporaryEntryPoints +00007FA1289526C0 30 stub<1798> AllocateTemporaryEntryPoints +00007FA1289526F0 30 stub<1799> AllocateTemporaryEntryPoints +00007FA128952720 30 stub<1800> AllocateTemporaryEntryPoints +00007FA128952750 18 stub<1801> AllocateTemporaryEntryPoints +00007FA128952768 30 stub<1802> AllocateTemporaryEntryPoints +00007FA128952798 18 stub<1803> AllocateTemporaryEntryPoints +00007FA1289527B0 18 stub<1804> AllocateTemporaryEntryPoints +00007FA1289527C8 18 stub<1805> AllocateTemporaryEntryPoints +00007FA1289527E0 18 stub<1806> AllocateTemporaryEntryPoints +00007FA1289527F8 18 stub<1807> AllocateTemporaryEntryPoints +00007FA128952810 18 stub<1808> AllocateTemporaryEntryPoints +00007FA1284B6A00 1b2 int32 [System.Private.CoreLib] System.MemoryExtensions::LastIndexOf(valuetype System.Span`1,!!0)[QuickJitted] +00007FA128952828 18 stub<1809> AllocateTemporaryEntryPoints +00007FA128952840 48 stub<1810> AllocateTemporaryEntryPoints +00007FA128952888 48 stub<1811> AllocateTemporaryEntryPoints +00007FA1289528D0 18 stub<1812> AllocateTemporaryEntryPoints +00007FA1284B6BD0 2f int32 [System.Private.CoreLib] System.SpanHelpers::LastIndexOfValueType(!!0&,!!0,int32)[QuickJitted] +00007FA1289528E8 18 stub<1813> AllocateTemporaryEntryPoints +00007FA128952900 18 stub<1814> AllocateTemporaryEntryPoints +00007FA1284B6C20 223 int32 [System.Private.CoreLib] System.SpanHelpers::LastIndexOfValueType(!!0&,!!0,int32)[OptimizedTier1] +00007FA128952918 a8 stub<1815> AllocateTemporaryEntryPoints +00007FA1289529C0 30 stub<1816> AllocateTemporaryEntryPoints +00007FA1277F44D0 18 stub<1817> GenerateResolveStub +00007FA1277C3160 20 stub<1818> GenerateDispatchStub +00007FA12784B240 e stub<1819> GenerateVTableCallStub +00007FA1289529F0 18 stub<1820> AllocateTemporaryEntryPoints +00007FA128952A08 a8 stub<1821> AllocateTemporaryEntryPoints +00007FA128952AB0 18 stub<1822> AllocateTemporaryEntryPoints +00007FA128952AC8 60 stub<1823> AllocateTemporaryEntryPoints +00007FA128952B28 30 stub<1824> AllocateTemporaryEntryPoints +00007FA128952B58 18 stub<1825> AllocateTemporaryEntryPoints +00007FA128952B70 390 stub<1826> AllocateTemporaryEntryPoints +00007FA128952F00 30 stub<1827> AllocateTemporaryEntryPoints +00007FA128952F30 18 stub<1828> AllocateTemporaryEntryPoints +00007FA128952F48 30 stub<1829> AllocateTemporaryEntryPoints +00007FA128952F78 30 stub<1830> AllocateTemporaryEntryPoints +00007FA128952FA8 18 stub<1831> AllocateTemporaryEntryPoints +00007FA128952FC0 30 stub<1832> AllocateTemporaryEntryPoints +00007FA128954000 18 stub<1833> AllocateTemporaryEntryPoints +00007FA128954018 30 stub<1834> AllocateTemporaryEntryPoints +00007FA128954048 30 stub<1835> AllocateTemporaryEntryPoints +00007FA128954078 30 stub<1836> AllocateTemporaryEntryPoints +00007FA1289540A8 30 stub<1837> AllocateTemporaryEntryPoints +00007FA1289540D8 18 stub<1838> AllocateTemporaryEntryPoints +00007FA1289540F0 30 stub<1839> AllocateTemporaryEntryPoints +00007FA128954120 48 stub<1840> AllocateTemporaryEntryPoints +00007FA128954168 2d0 stub<1841> AllocateTemporaryEntryPoints +00007FA128954438 18 stub<1842> AllocateTemporaryEntryPoints +00007FA128954450 2d0 stub<1843> AllocateTemporaryEntryPoints +00007FA128954720 18 stub<1844> AllocateTemporaryEntryPoints +00007FA128954738 18 stub<1845> AllocateTemporaryEntryPoints +00007FA128954750 18 stub<1846> AllocateTemporaryEntryPoints +00007FA128954768 18 stub<1847> AllocateTemporaryEntryPoints +00007FA128954780 18 stub<1848> AllocateTemporaryEntryPoints +00007FA128954798 18 stub<1849> AllocateTemporaryEntryPoints +00007FA1289547B0 18 stub<1850> AllocateTemporaryEntryPoints +00007FA1289547C8 18 stub<1851> AllocateTemporaryEntryPoints +00007FA1289547E0 18 stub<1852> AllocateTemporaryEntryPoints +00007FA1289547F8 18 stub<1853> AllocateTemporaryEntryPoints +00007FA128954810 18 stub<1854> AllocateTemporaryEntryPoints +00007FA128954828 18 stub<1855> AllocateTemporaryEntryPoints +00007FA1284B6E60 2ab int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfAnyValueType(!!0&,!!0,!!0,int32)[OptimizedTier1] +00007FA1284B7180 27 string [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::get_ManagedProfilerDirectory()[QuickJitted] +00007FA128954840 18 stub<1856> AllocateTemporaryEntryPoints +00007FA1284B71C0 2cb bool [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::ReadBooleanEnvironmentVariable(string,bool)[QuickJitted] +00007FA1284B74A0 8b uint32 [Datadog.Trace.ClrProfiler.Managed.Loader] ::ComputeStringHash(string)[QuickJitted] +00007FA128954858 108 stub<1857> AllocateTemporaryEntryPoints +00007FA1284B7540 274 void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::TryInvokeManagedMethod(string,string,string)[QuickJitted] +00007FA128954960 138 stub<1858> AllocateTemporaryEntryPoints +00007FA1284B77E0 10b class [System.Runtime]System.Reflection.Assembly [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::LoadAssembly(string)[QuickJitted] +00007FA128954A98 18 stub<1859> AllocateTemporaryEntryPoints +00007FA128954AB0 168 stub<1860> AllocateTemporaryEntryPoints +00007FA128954C18 18 stub<1861> AllocateTemporaryEntryPoints +00007FA128954C48 60 stub<1862> AllocateTemporaryEntryPoints +00007FA1284B7910 42 class [System.Runtime]System.Reflection.Assembly [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::AssemblyResolve_ManagedProfilerDependencies(object,class [System.Runtime]System.ResolveEventArgs)[QuickJitted] +00007FA1284B7970 2e5 class [System.Runtime]System.Reflection.Assembly [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::ResolveAssembly(string)[QuickJitted] +00007FA1284B7C80 f2 bool [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::IsDatadogAssembly(string,class [System.Runtime]System.Reflection.Assembly&)[QuickJitted] +00007FA1284B7D90 27 class [System.Runtime.Loader]System.Runtime.Loader.AssemblyLoadContext [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::get_DependencyLoadContext()[QuickJitted] +00007FA1284B7DD0 118 void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::SetDatadogAssembly(string,class [System.Runtime]System.Reflection.Assembly)[QuickJitted] +00007FA1284B7F00 1a instance class [System.Runtime]System.Reflection.Assembly [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.ManagedProfilerAssemblyLoadContext::Load(class [System.Runtime]System.Reflection.AssemblyName)[QuickJitted] +00007FA128954CC0 18 stub<1863> AllocateTemporaryEntryPoints +00007FA128954CD8 120 stub<1864> AllocateTemporaryEntryPoints +00007FA1284B7F30 25 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationLoader::.ctor()[QuickJitted] +00007FA128954DF8 60 stub<1865> AllocateTemporaryEntryPoints +00007FA128954E58 60 stub<1866> AllocateTemporaryEntryPoints +00007FA128954EB8 30 stub<1867> AllocateTemporaryEntryPoints +00007FA128956000 330 stub<1868> AllocateTemporaryEntryPoints +00007FA128956330 90 stub<1869> AllocateTemporaryEntryPoints +00007FA1289563C0 60 stub<1870> AllocateTemporaryEntryPoints +00007FA128956420 408 stub<1871> AllocateTemporaryEntryPoints +00007FA1277BF100 18 stub<1872> GenerateLookupStub +00007FA128956828 108 stub<1873> AllocateTemporaryEntryPoints +00007FA1277BF120 18 stub<1874> GenerateLookupStub +00007FA128956930 168 stub<1875> AllocateTemporaryEntryPoints +00007FA128956A98 18 stub<1876> AllocateTemporaryEntryPoints +00007FA128956AB0 18 stub<1877> AllocateTemporaryEntryPoints +00007FA128956AC8 30 stub<1878> AllocateTemporaryEntryPoints +00007FA128956AF8 60 stub<1879> AllocateTemporaryEntryPoints +00007FA128956B58 18 stub<1880> AllocateTemporaryEntryPoints +00007FA128956B70 108 stub<1881> AllocateTemporaryEntryPoints +00007FA128956C78 138 stub<1882> AllocateTemporaryEntryPoints +00007FA128958000 510 stub<1883> AllocateTemporaryEntryPoints +00007FA128958510 18 stub<1884> AllocateTemporaryEntryPoints +00007FA128958528 18 stub<1885> AllocateTemporaryEntryPoints +00007FA128958540 138 stub<1886> AllocateTemporaryEntryPoints +00007FA128958678 60 stub<1887> AllocateTemporaryEntryPoints +00007FA1277BF140 18 stub<1888> GenerateLookupStub +00007FA1284B7F70 1077 void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::Initialize()[QuickJitted] +00007FA1289586D8 d8 stub<1889> AllocateTemporaryEntryPoints +00007FA1284B9080 7f void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::.cctor()[QuickJitted] +00007FA1284B9120 ae class Datadog.Trace.Logging.IDatadogLogger [Datadog.Trace] Datadog.Trace.Logging.DatadogLogging::GetLoggerFor(class [System.Runtime]System.Type)[QuickJitted] +00007FA1289587B0 18 stub<1890> AllocateTemporaryEntryPoints +00007FA1289587C8 30 stub<1891> AllocateTemporaryEntryPoints +00007FA1289587F8 138 stub<1892> AllocateTemporaryEntryPoints +00007FA128958930 18 stub<1893> AllocateTemporaryEntryPoints +00007FA128958948 d8 stub<1894> AllocateTemporaryEntryPoints +00007FA128958A20 48 stub<1895> AllocateTemporaryEntryPoints +00007FA128958A68 4e0 stub<1896> AllocateTemporaryEntryPoints +00007FA12895A000 108 stub<1897> AllocateTemporaryEntryPoints +00007FA12895A108 c0 stub<1898> AllocateTemporaryEntryPoints +00007FA12895A1C8 90 stub<1899> AllocateTemporaryEntryPoints +00007FA12895A258 a8 stub<1900> AllocateTemporaryEntryPoints +00007FA1284B91F0 1fa void [Datadog.Trace] Datadog.Trace.Logging.DatadogLogging::.cctor()[QuickJitted] +00007FA1284B9420 2b instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch::.ctor(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel)[QuickJitted] +00007FA1284B9460 27 class Datadog.Trace.Logging.DatadogSerilogLogger [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::get_NullLogger()[QuickJitted] +00007FA12895A300 678 stub<1901> AllocateTemporaryEntryPoints +00007FA12895A978 f0 stub<1902> AllocateTemporaryEntryPoints +00007FA12895C000 690 stub<1903> AllocateTemporaryEntryPoints +00007FA12895C690 108 stub<1904> AllocateTemporaryEntryPoints +00007FA12895C798 18 stub<1905> AllocateTemporaryEntryPoints +00007FA12895C7B0 30 stub<1906> AllocateTemporaryEntryPoints +00007FA1284B94A0 bd void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::.cctor()[QuickJitted] +00007FA1284B9580 47 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Pipeline.SilentLogger::.cctor()[QuickJitted] +00007FA1284B95E0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Pipeline.SilentLogger::.ctor()[QuickJitted] +00007FA1284B9620 1f instance void [Datadog.Trace] Datadog.Trace.Logging.NullLogRateLimiter::.ctor()[QuickJitted] +00007FA1284B9660 49 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::.ctor(class Datadog.Trace.Vendors.Serilog.ILogger,class Datadog.Trace.Logging.ILogRateLimiter)[QuickJitted] +00007FA1284B96C0 1f instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogLogging+<>c__DisplayClass3_0::.ctor()[QuickJitted] +00007FA1284B9700 27 class Datadog.Trace.Configuration.GlobalSettings [Datadog.Trace] Datadog.Trace.Configuration.GlobalSettings::get_Instance()[QuickJitted] +00007FA1284B9740 1f void [Datadog.Trace] Datadog.Trace.Configuration.GlobalSettings::.cctor()[QuickJitted] +00007FA1284B9780 49 class Datadog.Trace.Configuration.GlobalSettings [Datadog.Trace] Datadog.Trace.Configuration.GlobalSettings::FromDefaultSources()[QuickJitted] +00007FA1284B97E0 27 class Datadog.Trace.Configuration.IConfigurationSource [Datadog.Trace] Datadog.Trace.Configuration.GlobalConfigurationSource::get_Instance()[QuickJitted] +00007FA12895C7E0 108 stub<1907> AllocateTemporaryEntryPoints +00007FA1284B9820 1f void [Datadog.Trace] Datadog.Trace.Configuration.GlobalConfigurationSource::.cctor()[QuickJitted] +00007FA12895C8E8 f0 stub<1908> AllocateTemporaryEntryPoints +00007FA12895C9D8 30 stub<1909> AllocateTemporaryEntryPoints +00007FA1284B9860 99 class Datadog.Trace.Configuration.CompositeConfigurationSource [Datadog.Trace] Datadog.Trace.Configuration.GlobalConfigurationSource::CreateDefaultConfigurationSource()[QuickJitted] +00007FA1284B9910 53 instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource::.ctor()[QuickJitted] +00007FA1284B9980 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.EnvironmentConfigurationSource::.ctor()[QuickJitted] +00007FA1284B99C0 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.StringConfigurationSource::.ctor()[QuickJitted] +00007FA12895CA08 138 stub<1910> AllocateTemporaryEntryPoints +00007FA1284B9A00 47 instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource::Add(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1277BF160 18 stub<1911> GenerateLookupStub +00007FA12895E000 7f8 stub<1912> AllocateTemporaryEntryPoints +00007FA12895E7F8 288 stub<1913> AllocateTemporaryEntryPoints +00007FA12895EA80 108 stub<1914> AllocateTemporaryEntryPoints +00007FA1284B9A60 16c bool [Datadog.Trace] Datadog.Trace.Configuration.GlobalConfigurationSource::TryLoadJsonConfigurationFile(class Datadog.Trace.Configuration.IConfigurationSource,string,class Datadog.Trace.Configuration.IConfigurationSource&)[QuickJitted] +00007FA12895EB88 30 stub<1915> AllocateTemporaryEntryPoints +00007FA12895EBB8 60 stub<1916> AllocateTemporaryEntryPoints +00007FA128B90000 528 stub<1917> AllocateTemporaryEntryPoints +00007FA128B90528 4c8 stub<1918> AllocateTemporaryEntryPoints +00007FA128B909F0 588 stub<1919> AllocateTemporaryEntryPoints +00007FA128B92000 4c8 stub<1920> AllocateTemporaryEntryPoints +00007FA128B924C8 528 stub<1921> AllocateTemporaryEntryPoints +00007FA128B929F0 120 stub<1922> AllocateTemporaryEntryPoints +00007FA128B92B10 a8 stub<1923> AllocateTemporaryEntryPoints +00007FA128B92BB8 18 stub<1924> AllocateTemporaryEntryPoints +00007FA128B92BD0 60 stub<1925> AllocateTemporaryEntryPoints +00007FA128B92C30 30 stub<1926> AllocateTemporaryEntryPoints +00007FA128B92C60 18 stub<1927> AllocateTemporaryEntryPoints +00007FA128B94000 390 stub<1928> AllocateTemporaryEntryPoints +00007FA128B94390 30 stub<1929> AllocateTemporaryEntryPoints +00007FA128B943C0 18 stub<1930> AllocateTemporaryEntryPoints +00007FA128B943D8 30 stub<1931> AllocateTemporaryEntryPoints +00007FA128B94408 30 stub<1932> AllocateTemporaryEntryPoints +00007FA128B94438 18 stub<1933> AllocateTemporaryEntryPoints +00007FA128B94450 30 stub<1934> AllocateTemporaryEntryPoints +00007FA128B94480 18 stub<1935> AllocateTemporaryEntryPoints +00007FA128B94498 30 stub<1936> AllocateTemporaryEntryPoints +00007FA128B944C8 30 stub<1937> AllocateTemporaryEntryPoints +00007FA128B944F8 30 stub<1938> AllocateTemporaryEntryPoints +00007FA128B94528 30 stub<1939> AllocateTemporaryEntryPoints +00007FA128B94558 18 stub<1940> AllocateTemporaryEntryPoints +00007FA128B94570 30 stub<1941> AllocateTemporaryEntryPoints +00007FA128B945A0 a8 stub<1942> AllocateTemporaryEntryPoints +00007FA128B94648 18 stub<1943> AllocateTemporaryEntryPoints +00007FA128B94660 60 stub<1944> AllocateTemporaryEntryPoints +00007FA128B946C0 30 stub<1945> AllocateTemporaryEntryPoints +00007FA128B946F0 18 stub<1946> AllocateTemporaryEntryPoints +00007FA128B94708 390 stub<1947> AllocateTemporaryEntryPoints +00007FA128B94A98 30 stub<1948> AllocateTemporaryEntryPoints +00007FA128B94AC8 18 stub<1949> AllocateTemporaryEntryPoints +00007FA128B94AE0 30 stub<1950> AllocateTemporaryEntryPoints +00007FA128B94B10 30 stub<1951> AllocateTemporaryEntryPoints +00007FA128B94B40 18 stub<1952> AllocateTemporaryEntryPoints +00007FA128B94B58 30 stub<1953> AllocateTemporaryEntryPoints +00007FA128B94B88 18 stub<1954> AllocateTemporaryEntryPoints +00007FA128B94BA0 30 stub<1955> AllocateTemporaryEntryPoints +00007FA128B94BD0 30 stub<1956> AllocateTemporaryEntryPoints +00007FA128B94C00 30 stub<1957> AllocateTemporaryEntryPoints +00007FA128B94C30 30 stub<1958> AllocateTemporaryEntryPoints +00007FA128B94C60 18 stub<1959> AllocateTemporaryEntryPoints +00007FA128B94C78 30 stub<1960> AllocateTemporaryEntryPoints +00007FA128B94CA8 a8 stub<1961> AllocateTemporaryEntryPoints +00007FA128B94D50 18 stub<1962> AllocateTemporaryEntryPoints +00007FA128B94D68 60 stub<1963> AllocateTemporaryEntryPoints +00007FA128B94DC8 30 stub<1964> AllocateTemporaryEntryPoints +00007FA128B94DF8 18 stub<1965> AllocateTemporaryEntryPoints +00007FA128B96000 390 stub<1966> AllocateTemporaryEntryPoints +00007FA128B96390 30 stub<1967> AllocateTemporaryEntryPoints +00007FA128B963C0 18 stub<1968> AllocateTemporaryEntryPoints +00007FA128B963D8 30 stub<1969> AllocateTemporaryEntryPoints +00007FA128B96408 30 stub<1970> AllocateTemporaryEntryPoints +00007FA128B96438 18 stub<1971> AllocateTemporaryEntryPoints +00007FA128B96450 30 stub<1972> AllocateTemporaryEntryPoints +00007FA128B96480 18 stub<1973> AllocateTemporaryEntryPoints +00007FA128B96498 30 stub<1974> AllocateTemporaryEntryPoints +00007FA128B964C8 30 stub<1975> AllocateTemporaryEntryPoints +00007FA128B964F8 30 stub<1976> AllocateTemporaryEntryPoints +00007FA128B96528 30 stub<1977> AllocateTemporaryEntryPoints +00007FA128B96558 18 stub<1978> AllocateTemporaryEntryPoints +00007FA128B96570 30 stub<1979> AllocateTemporaryEntryPoints +00007FA128B965A0 a8 stub<1980> AllocateTemporaryEntryPoints +00007FA128B96648 18 stub<1981> AllocateTemporaryEntryPoints +00007FA128B96660 60 stub<1982> AllocateTemporaryEntryPoints +00007FA128B966C0 30 stub<1983> AllocateTemporaryEntryPoints +00007FA128B966F0 18 stub<1984> AllocateTemporaryEntryPoints +00007FA128B96708 390 stub<1985> AllocateTemporaryEntryPoints +00007FA128B96A98 30 stub<1986> AllocateTemporaryEntryPoints +00007FA128B96AC8 18 stub<1987> AllocateTemporaryEntryPoints +00007FA128B96AE0 30 stub<1988> AllocateTemporaryEntryPoints +00007FA128B96B10 30 stub<1989> AllocateTemporaryEntryPoints +00007FA128B96B40 18 stub<1990> AllocateTemporaryEntryPoints +00007FA128B96B58 30 stub<1991> AllocateTemporaryEntryPoints +00007FA128B96B88 18 stub<1992> AllocateTemporaryEntryPoints +00007FA128B96BA0 30 stub<1993> AllocateTemporaryEntryPoints +00007FA128B96BD0 30 stub<1994> AllocateTemporaryEntryPoints +00007FA128B96C00 30 stub<1995> AllocateTemporaryEntryPoints +00007FA128B96C30 30 stub<1996> AllocateTemporaryEntryPoints +00007FA128B96C60 18 stub<1997> AllocateTemporaryEntryPoints +00007FA128B96C78 30 stub<1998> AllocateTemporaryEntryPoints +00007FA128B96CA8 a8 stub<1999> AllocateTemporaryEntryPoints +00007FA128B96D50 18 stub<2000> AllocateTemporaryEntryPoints +00007FA128B96D68 60 stub<2001> AllocateTemporaryEntryPoints +00007FA128B96DC8 30 stub<2002> AllocateTemporaryEntryPoints +00007FA128B96DF8 18 stub<2003> AllocateTemporaryEntryPoints +00007FA128B98000 390 stub<2004> AllocateTemporaryEntryPoints +00007FA128B98390 30 stub<2005> AllocateTemporaryEntryPoints +00007FA128B983C0 18 stub<2006> AllocateTemporaryEntryPoints +00007FA128B983D8 30 stub<2007> AllocateTemporaryEntryPoints +00007FA128B98408 30 stub<2008> AllocateTemporaryEntryPoints +00007FA128B98438 18 stub<2009> AllocateTemporaryEntryPoints +00007FA128B98450 30 stub<2010> AllocateTemporaryEntryPoints +00007FA128B98480 18 stub<2011> AllocateTemporaryEntryPoints +00007FA128B98498 30 stub<2012> AllocateTemporaryEntryPoints +00007FA128B984C8 30 stub<2013> AllocateTemporaryEntryPoints +00007FA128B984F8 30 stub<2014> AllocateTemporaryEntryPoints +00007FA128B98528 30 stub<2015> AllocateTemporaryEntryPoints +00007FA128B98558 18 stub<2016> AllocateTemporaryEntryPoints +00007FA128B98570 30 stub<2017> AllocateTemporaryEntryPoints +00007FA128B985A0 a8 stub<2018> AllocateTemporaryEntryPoints +00007FA128B98648 18 stub<2019> AllocateTemporaryEntryPoints +00007FA128B98660 60 stub<2020> AllocateTemporaryEntryPoints +00007FA128B986C0 30 stub<2021> AllocateTemporaryEntryPoints +00007FA128B986F0 18 stub<2022> AllocateTemporaryEntryPoints +00007FA128B98708 390 stub<2023> AllocateTemporaryEntryPoints +00007FA128B98A98 30 stub<2024> AllocateTemporaryEntryPoints +00007FA128B98AC8 18 stub<2025> AllocateTemporaryEntryPoints +00007FA128B98AE0 30 stub<2026> AllocateTemporaryEntryPoints +00007FA128B98B10 30 stub<2027> AllocateTemporaryEntryPoints +00007FA128B98B40 18 stub<2028> AllocateTemporaryEntryPoints +00007FA128B98B58 30 stub<2029> AllocateTemporaryEntryPoints +00007FA128B98B88 18 stub<2030> AllocateTemporaryEntryPoints +00007FA128B98BA0 30 stub<2031> AllocateTemporaryEntryPoints +00007FA128B98BD0 30 stub<2032> AllocateTemporaryEntryPoints +00007FA128B98C00 30 stub<2033> AllocateTemporaryEntryPoints +00007FA128B98C30 30 stub<2034> AllocateTemporaryEntryPoints +00007FA128B98C60 18 stub<2035> AllocateTemporaryEntryPoints +00007FA128B98C78 30 stub<2036> AllocateTemporaryEntryPoints +00007FA128B98CA8 a8 stub<2037> AllocateTemporaryEntryPoints +00007FA128B98D50 18 stub<2038> AllocateTemporaryEntryPoints +00007FA128B98D68 60 stub<2039> AllocateTemporaryEntryPoints +00007FA128B98DC8 30 stub<2040> AllocateTemporaryEntryPoints +00007FA128B98DF8 18 stub<2041> AllocateTemporaryEntryPoints +00007FA128B9A000 390 stub<2042> AllocateTemporaryEntryPoints +00007FA128B9A390 30 stub<2043> AllocateTemporaryEntryPoints +00007FA128B9A3C0 18 stub<2044> AllocateTemporaryEntryPoints +00007FA128B9A3D8 30 stub<2045> AllocateTemporaryEntryPoints +00007FA128B9A408 30 stub<2046> AllocateTemporaryEntryPoints +00007FA128B9A438 18 stub<2047> AllocateTemporaryEntryPoints +00007FA128B9A450 30 stub<2048> AllocateTemporaryEntryPoints +00007FA128B9A480 18 stub<2049> AllocateTemporaryEntryPoints +00007FA128B9A498 30 stub<2050> AllocateTemporaryEntryPoints +00007FA128B9A4C8 30 stub<2051> AllocateTemporaryEntryPoints +00007FA128B9A4F8 30 stub<2052> AllocateTemporaryEntryPoints +00007FA128B9A528 30 stub<2053> AllocateTemporaryEntryPoints +00007FA128B9A558 18 stub<2054> AllocateTemporaryEntryPoints +00007FA128B9A570 30 stub<2055> AllocateTemporaryEntryPoints +00007FA128B9A5A0 a8 stub<2056> AllocateTemporaryEntryPoints +00007FA128B9A648 18 stub<2057> AllocateTemporaryEntryPoints +00007FA128B9A660 60 stub<2058> AllocateTemporaryEntryPoints +00007FA128B9A6C0 30 stub<2059> AllocateTemporaryEntryPoints +00007FA128B9A6F0 18 stub<2060> AllocateTemporaryEntryPoints +00007FA128B9A708 390 stub<2061> AllocateTemporaryEntryPoints +00007FA128B9AA98 30 stub<2062> AllocateTemporaryEntryPoints +00007FA128B9AAC8 18 stub<2063> AllocateTemporaryEntryPoints +00007FA128B9AAE0 30 stub<2064> AllocateTemporaryEntryPoints +00007FA128B9AB10 30 stub<2065> AllocateTemporaryEntryPoints +00007FA128B9AB40 18 stub<2066> AllocateTemporaryEntryPoints +00007FA128B9AB58 30 stub<2067> AllocateTemporaryEntryPoints +00007FA128B9AB88 18 stub<2068> AllocateTemporaryEntryPoints +00007FA128B9ABA0 30 stub<2069> AllocateTemporaryEntryPoints +00007FA128B9ABD0 30 stub<2070> AllocateTemporaryEntryPoints +00007FA128B9AC00 30 stub<2071> AllocateTemporaryEntryPoints +00007FA128B9AC30 30 stub<2072> AllocateTemporaryEntryPoints +00007FA128B9AC60 18 stub<2073> AllocateTemporaryEntryPoints +00007FA128B9AC78 30 stub<2074> AllocateTemporaryEntryPoints +00007FA128B9ACA8 a8 stub<2075> AllocateTemporaryEntryPoints +00007FA128B9AD50 18 stub<2076> AllocateTemporaryEntryPoints +00007FA128B9AD68 60 stub<2077> AllocateTemporaryEntryPoints +00007FA128B9ADC8 30 stub<2078> AllocateTemporaryEntryPoints +00007FA128B9ADF8 18 stub<2079> AllocateTemporaryEntryPoints +00007FA128B9C000 390 stub<2080> AllocateTemporaryEntryPoints +00007FA128B9C390 30 stub<2081> AllocateTemporaryEntryPoints +00007FA128B9C3C0 18 stub<2082> AllocateTemporaryEntryPoints +00007FA128B9C3D8 30 stub<2083> AllocateTemporaryEntryPoints +00007FA128B9C408 30 stub<2084> AllocateTemporaryEntryPoints +00007FA128B9C438 18 stub<2085> AllocateTemporaryEntryPoints +00007FA128B9C450 30 stub<2086> AllocateTemporaryEntryPoints +00007FA128B9C480 18 stub<2087> AllocateTemporaryEntryPoints +00007FA128B9C498 30 stub<2088> AllocateTemporaryEntryPoints +00007FA128B9C4C8 30 stub<2089> AllocateTemporaryEntryPoints +00007FA128B9C4F8 30 stub<2090> AllocateTemporaryEntryPoints +00007FA128B9C528 30 stub<2091> AllocateTemporaryEntryPoints +00007FA128B9C558 18 stub<2092> AllocateTemporaryEntryPoints +00007FA128B9C570 30 stub<2093> AllocateTemporaryEntryPoints +00007FA128B9C5A0 a8 stub<2094> AllocateTemporaryEntryPoints +00007FA128B9C648 18 stub<2095> AllocateTemporaryEntryPoints +00007FA128B9C660 60 stub<2096> AllocateTemporaryEntryPoints +00007FA128B9C6C0 30 stub<2097> AllocateTemporaryEntryPoints +00007FA128B9C6F0 18 stub<2098> AllocateTemporaryEntryPoints +00007FA128B9C708 390 stub<2099> AllocateTemporaryEntryPoints +00007FA128B9CA98 30 stub<2100> AllocateTemporaryEntryPoints +00007FA128B9CAC8 18 stub<2101> AllocateTemporaryEntryPoints +00007FA128B9CAE0 30 stub<2102> AllocateTemporaryEntryPoints +00007FA128B9CB10 30 stub<2103> AllocateTemporaryEntryPoints +00007FA128B9CB40 18 stub<2104> AllocateTemporaryEntryPoints +00007FA128B9CB58 30 stub<2105> AllocateTemporaryEntryPoints +00007FA128B9CB88 18 stub<2106> AllocateTemporaryEntryPoints +00007FA128B9CBA0 30 stub<2107> AllocateTemporaryEntryPoints +00007FA128B9CBD0 30 stub<2108> AllocateTemporaryEntryPoints +00007FA128B9CC00 30 stub<2109> AllocateTemporaryEntryPoints +00007FA128B9CC30 30 stub<2110> AllocateTemporaryEntryPoints +00007FA128B9CC60 18 stub<2111> AllocateTemporaryEntryPoints +00007FA128B9CC78 30 stub<2112> AllocateTemporaryEntryPoints +00007FA128B9CCA8 a8 stub<2113> AllocateTemporaryEntryPoints +00007FA128B9CD50 18 stub<2114> AllocateTemporaryEntryPoints +00007FA128B9CD68 60 stub<2115> AllocateTemporaryEntryPoints +00007FA128B9CDC8 30 stub<2116> AllocateTemporaryEntryPoints +00007FA128B9CDF8 18 stub<2117> AllocateTemporaryEntryPoints +00007FA128B9E000 390 stub<2118> AllocateTemporaryEntryPoints +00007FA128B9E390 30 stub<2119> AllocateTemporaryEntryPoints +00007FA128B9E3C0 18 stub<2120> AllocateTemporaryEntryPoints +00007FA128B9E3D8 30 stub<2121> AllocateTemporaryEntryPoints +00007FA128B9E408 30 stub<2122> AllocateTemporaryEntryPoints +00007FA128B9E438 18 stub<2123> AllocateTemporaryEntryPoints +00007FA128B9E450 30 stub<2124> AllocateTemporaryEntryPoints +00007FA128B9E480 18 stub<2125> AllocateTemporaryEntryPoints +00007FA128B9E498 30 stub<2126> AllocateTemporaryEntryPoints +00007FA128B9E4C8 30 stub<2127> AllocateTemporaryEntryPoints +00007FA128B9E4F8 30 stub<2128> AllocateTemporaryEntryPoints +00007FA128B9E528 30 stub<2129> AllocateTemporaryEntryPoints +00007FA128B9E558 18 stub<2130> AllocateTemporaryEntryPoints +00007FA128B9E570 30 stub<2131> AllocateTemporaryEntryPoints +00007FA128B9E5A0 a8 stub<2132> AllocateTemporaryEntryPoints +00007FA128B9E648 18 stub<2133> AllocateTemporaryEntryPoints +00007FA128B9E660 60 stub<2134> AllocateTemporaryEntryPoints +00007FA128B9E6C0 30 stub<2135> AllocateTemporaryEntryPoints +00007FA128B9E6F0 18 stub<2136> AllocateTemporaryEntryPoints +00007FA128B9E708 390 stub<2137> AllocateTemporaryEntryPoints +00007FA128B9EA98 30 stub<2138> AllocateTemporaryEntryPoints +00007FA128B9EAC8 18 stub<2139> AllocateTemporaryEntryPoints +00007FA128B9EAE0 30 stub<2140> AllocateTemporaryEntryPoints +00007FA128B9EB10 30 stub<2141> AllocateTemporaryEntryPoints +00007FA128B9EB40 18 stub<2142> AllocateTemporaryEntryPoints +00007FA128B9EB58 30 stub<2143> AllocateTemporaryEntryPoints +00007FA128B9EB88 18 stub<2144> AllocateTemporaryEntryPoints +00007FA128B9EBA0 30 stub<2145> AllocateTemporaryEntryPoints +00007FA128B9EBD0 30 stub<2146> AllocateTemporaryEntryPoints +00007FA128B9EC00 30 stub<2147> AllocateTemporaryEntryPoints +00007FA128B9EC30 30 stub<2148> AllocateTemporaryEntryPoints +00007FA128B9EC60 18 stub<2149> AllocateTemporaryEntryPoints +00007FA128B9EC78 30 stub<2150> AllocateTemporaryEntryPoints +00007FA128B9ECA8 240 stub<2151> AllocateTemporaryEntryPoints +00007FA128B9EEE8 48 stub<2152> AllocateTemporaryEntryPoints +00007FA128B9EF30 60 stub<2153> AllocateTemporaryEntryPoints +00007FA128BB0000 a8 stub<2154> AllocateTemporaryEntryPoints +00007FA128BB00A8 18 stub<2155> AllocateTemporaryEntryPoints +00007FA128BB00C0 60 stub<2156> AllocateTemporaryEntryPoints +00007FA128BB0120 30 stub<2157> AllocateTemporaryEntryPoints +00007FA128BB0150 18 stub<2158> AllocateTemporaryEntryPoints +00007FA128BB0168 390 stub<2159> AllocateTemporaryEntryPoints +00007FA128BB04F8 30 stub<2160> AllocateTemporaryEntryPoints +00007FA128BB0528 18 stub<2161> AllocateTemporaryEntryPoints +00007FA128BB0540 30 stub<2162> AllocateTemporaryEntryPoints +00007FA128BB0570 30 stub<2163> AllocateTemporaryEntryPoints +00007FA128BB05A0 18 stub<2164> AllocateTemporaryEntryPoints +00007FA128BB05B8 30 stub<2165> AllocateTemporaryEntryPoints +00007FA128BB05E8 18 stub<2166> AllocateTemporaryEntryPoints +00007FA128BB0600 30 stub<2167> AllocateTemporaryEntryPoints +00007FA128BB0630 30 stub<2168> AllocateTemporaryEntryPoints +00007FA128BB0660 30 stub<2169> AllocateTemporaryEntryPoints +00007FA128BB0690 30 stub<2170> AllocateTemporaryEntryPoints +00007FA128BB06C0 18 stub<2171> AllocateTemporaryEntryPoints +00007FA128BB06D8 30 stub<2172> AllocateTemporaryEntryPoints +00007FA128BB0708 48 stub<2173> AllocateTemporaryEntryPoints +00007FA128BB0750 240 stub<2174> AllocateTemporaryEntryPoints +00007FA128BB0990 48 stub<2175> AllocateTemporaryEntryPoints +00007FA128BB09D8 60 stub<2176> AllocateTemporaryEntryPoints +00007FA128BB0A38 a8 stub<2177> AllocateTemporaryEntryPoints +00007FA128BB0AE0 18 stub<2178> AllocateTemporaryEntryPoints +00007FA128BB0AF8 60 stub<2179> AllocateTemporaryEntryPoints +00007FA128BB0B58 30 stub<2180> AllocateTemporaryEntryPoints +00007FA128BB0B88 18 stub<2181> AllocateTemporaryEntryPoints +00007FA128BB0BA0 390 stub<2182> AllocateTemporaryEntryPoints +00007FA128BB0F30 30 stub<2183> AllocateTemporaryEntryPoints +00007FA128BB0F60 18 stub<2184> AllocateTemporaryEntryPoints +00007FA128BB0F78 30 stub<2185> AllocateTemporaryEntryPoints +00007FA128BB0FA8 30 stub<2186> AllocateTemporaryEntryPoints +00007FA128BB0FD8 18 stub<2187> AllocateTemporaryEntryPoints +00007FA128BB2000 30 stub<2188> AllocateTemporaryEntryPoints +00007FA128BB2030 18 stub<2189> AllocateTemporaryEntryPoints +00007FA128BB2048 30 stub<2190> AllocateTemporaryEntryPoints +00007FA128BB2078 30 stub<2191> AllocateTemporaryEntryPoints +00007FA128BB20A8 30 stub<2192> AllocateTemporaryEntryPoints +00007FA128BB20D8 30 stub<2193> AllocateTemporaryEntryPoints +00007FA128BB2108 18 stub<2194> AllocateTemporaryEntryPoints +00007FA128BB2120 30 stub<2195> AllocateTemporaryEntryPoints +00007FA128BB2150 48 stub<2196> AllocateTemporaryEntryPoints +00007FA128BB2198 168 stub<2197> AllocateTemporaryEntryPoints +00007FA128BB2300 90 stub<2198> AllocateTemporaryEntryPoints +00007FA128BB2390 48 stub<2199> AllocateTemporaryEntryPoints +00007FA128BB23D8 390 stub<2200> AllocateTemporaryEntryPoints +00007FA128BB2768 30 stub<2201> AllocateTemporaryEntryPoints +00007FA128BB2798 18 stub<2202> AllocateTemporaryEntryPoints +00007FA128BB27B0 30 stub<2203> AllocateTemporaryEntryPoints +00007FA128BB27E0 30 stub<2204> AllocateTemporaryEntryPoints +00007FA128BB2810 18 stub<2205> AllocateTemporaryEntryPoints +00007FA128BB2828 30 stub<2206> AllocateTemporaryEntryPoints +00007FA128BB2858 30 stub<2207> AllocateTemporaryEntryPoints +00007FA128BB2888 18 stub<2208> AllocateTemporaryEntryPoints +00007FA128BB28A0 30 stub<2209> AllocateTemporaryEntryPoints +00007FA128BB28D0 30 stub<2210> AllocateTemporaryEntryPoints +00007FA128BB2900 30 stub<2211> AllocateTemporaryEntryPoints +00007FA128BB2930 30 stub<2212> AllocateTemporaryEntryPoints +00007FA128BB2960 18 stub<2213> AllocateTemporaryEntryPoints +00007FA128BB2978 30 stub<2214> AllocateTemporaryEntryPoints +00007FA128BB29A8 288 stub<2215> AllocateTemporaryEntryPoints +00007FA128BB2C30 a8 stub<2216> AllocateTemporaryEntryPoints +00007FA128BB2CD8 18 stub<2217> AllocateTemporaryEntryPoints +00007FA128BB2CF0 60 stub<2218> AllocateTemporaryEntryPoints +00007FA128BB2D50 18 stub<2219> AllocateTemporaryEntryPoints +00007FA128BB2D68 18 stub<2220> AllocateTemporaryEntryPoints +00007FA128BB2D80 90 stub<2221> AllocateTemporaryEntryPoints +00007FA128BB2E10 a8 stub<2222> AllocateTemporaryEntryPoints +00007FA128BB2EB8 18 stub<2223> AllocateTemporaryEntryPoints +00007FA128BB2ED0 60 stub<2224> AllocateTemporaryEntryPoints +00007FA128BB4000 150 stub<2225> AllocateTemporaryEntryPoints +00007FA128BB4150 168 stub<2226> AllocateTemporaryEntryPoints +00007FA128BB42B8 90 stub<2227> AllocateTemporaryEntryPoints +00007FA128BB4348 48 stub<2228> AllocateTemporaryEntryPoints +00007FA128BB4390 390 stub<2229> AllocateTemporaryEntryPoints +00007FA128BB4720 30 stub<2230> AllocateTemporaryEntryPoints +00007FA128BB4750 18 stub<2231> AllocateTemporaryEntryPoints +00007FA128BB4768 30 stub<2232> AllocateTemporaryEntryPoints +00007FA128BB4798 30 stub<2233> AllocateTemporaryEntryPoints +00007FA128BB47C8 18 stub<2234> AllocateTemporaryEntryPoints +00007FA128BB47E0 30 stub<2235> AllocateTemporaryEntryPoints +00007FA128BB4810 30 stub<2236> AllocateTemporaryEntryPoints +00007FA128BB4840 18 stub<2237> AllocateTemporaryEntryPoints +00007FA128BB4858 30 stub<2238> AllocateTemporaryEntryPoints +00007FA128BB4888 30 stub<2239> AllocateTemporaryEntryPoints +00007FA128BB48B8 30 stub<2240> AllocateTemporaryEntryPoints +00007FA128BB48E8 30 stub<2241> AllocateTemporaryEntryPoints +00007FA128BB4918 18 stub<2242> AllocateTemporaryEntryPoints +00007FA128BB4930 30 stub<2243> AllocateTemporaryEntryPoints +00007FA128BB4960 288 stub<2244> AllocateTemporaryEntryPoints +00007FA128BB4BE8 a8 stub<2245> AllocateTemporaryEntryPoints +00007FA128BB4C90 18 stub<2246> AllocateTemporaryEntryPoints +00007FA128BB4CA8 60 stub<2247> AllocateTemporaryEntryPoints +00007FA128BB4D08 18 stub<2248> AllocateTemporaryEntryPoints +00007FA128BB4D20 18 stub<2249> AllocateTemporaryEntryPoints +00007FA128BB4D38 90 stub<2250> AllocateTemporaryEntryPoints +00007FA128BB4DC8 a8 stub<2251> AllocateTemporaryEntryPoints +00007FA128BB4E70 18 stub<2252> AllocateTemporaryEntryPoints +00007FA128BB4E88 60 stub<2253> AllocateTemporaryEntryPoints +00007FA128BB6000 150 stub<2254> AllocateTemporaryEntryPoints +00007FA128BB6150 240 stub<2255> AllocateTemporaryEntryPoints +00007FA128BB6390 48 stub<2256> AllocateTemporaryEntryPoints +00007FA128BB63D8 60 stub<2257> AllocateTemporaryEntryPoints +00007FA128BB6438 a8 stub<2258> AllocateTemporaryEntryPoints +00007FA128BB64E0 18 stub<2259> AllocateTemporaryEntryPoints +00007FA128BB64F8 60 stub<2260> AllocateTemporaryEntryPoints +00007FA128BB6558 30 stub<2261> AllocateTemporaryEntryPoints +00007FA128BB6588 18 stub<2262> AllocateTemporaryEntryPoints +00007FA128BB65A0 390 stub<2263> AllocateTemporaryEntryPoints +00007FA128BB6930 30 stub<2264> AllocateTemporaryEntryPoints +00007FA128BB6960 18 stub<2265> AllocateTemporaryEntryPoints +00007FA128BB6978 30 stub<2266> AllocateTemporaryEntryPoints +00007FA128BB69A8 30 stub<2267> AllocateTemporaryEntryPoints +00007FA128BB69D8 18 stub<2268> AllocateTemporaryEntryPoints +00007FA128BB69F0 30 stub<2269> AllocateTemporaryEntryPoints +00007FA128BB6A20 18 stub<2270> AllocateTemporaryEntryPoints +00007FA128BB6A38 30 stub<2271> AllocateTemporaryEntryPoints +00007FA128BB6A68 30 stub<2272> AllocateTemporaryEntryPoints +00007FA128BB6A98 30 stub<2273> AllocateTemporaryEntryPoints +00007FA128BB6AC8 30 stub<2274> AllocateTemporaryEntryPoints +00007FA128BB6AF8 18 stub<2275> AllocateTemporaryEntryPoints +00007FA128BB6B10 30 stub<2276> AllocateTemporaryEntryPoints +00007FA128BB6B40 48 stub<2277> AllocateTemporaryEntryPoints +00007FA128BB6B88 240 stub<2278> AllocateTemporaryEntryPoints +00007FA128BB6DC8 48 stub<2279> AllocateTemporaryEntryPoints +00007FA128BB6E10 60 stub<2280> AllocateTemporaryEntryPoints +00007FA128BB6E70 a8 stub<2281> AllocateTemporaryEntryPoints +00007FA128BB6F18 18 stub<2282> AllocateTemporaryEntryPoints +00007FA128BB6F30 60 stub<2283> AllocateTemporaryEntryPoints +00007FA128BB6F90 30 stub<2284> AllocateTemporaryEntryPoints +00007FA128BB6FC0 18 stub<2285> AllocateTemporaryEntryPoints +00007FA128BB8000 390 stub<2286> AllocateTemporaryEntryPoints +00007FA128BB8390 30 stub<2287> AllocateTemporaryEntryPoints +00007FA128BB83C0 18 stub<2288> AllocateTemporaryEntryPoints +00007FA128BB83D8 30 stub<2289> AllocateTemporaryEntryPoints +00007FA128BB8408 30 stub<2290> AllocateTemporaryEntryPoints +00007FA128BB8438 18 stub<2291> AllocateTemporaryEntryPoints +00007FA128BB8450 30 stub<2292> AllocateTemporaryEntryPoints +00007FA128BB8480 18 stub<2293> AllocateTemporaryEntryPoints +00007FA128BB8498 30 stub<2294> AllocateTemporaryEntryPoints +00007FA128BB84C8 30 stub<2295> AllocateTemporaryEntryPoints +00007FA128BB84F8 30 stub<2296> AllocateTemporaryEntryPoints +00007FA128BB8528 30 stub<2297> AllocateTemporaryEntryPoints +00007FA128BB8558 18 stub<2298> AllocateTemporaryEntryPoints +00007FA128BB8570 30 stub<2299> AllocateTemporaryEntryPoints +00007FA128BB85A0 48 stub<2300> AllocateTemporaryEntryPoints +00007FA128BB85E8 168 stub<2301> AllocateTemporaryEntryPoints +00007FA128BB8750 90 stub<2302> AllocateTemporaryEntryPoints +00007FA128BB87E0 48 stub<2303> AllocateTemporaryEntryPoints +00007FA128BB8828 390 stub<2304> AllocateTemporaryEntryPoints +00007FA128BB8BB8 30 stub<2305> AllocateTemporaryEntryPoints +00007FA128BB8BE8 18 stub<2306> AllocateTemporaryEntryPoints +00007FA128BB8C00 30 stub<2307> AllocateTemporaryEntryPoints +00007FA128BB8C30 30 stub<2308> AllocateTemporaryEntryPoints +00007FA128BB8C60 18 stub<2309> AllocateTemporaryEntryPoints +00007FA128BB8C78 30 stub<2310> AllocateTemporaryEntryPoints +00007FA128BB8CA8 30 stub<2311> AllocateTemporaryEntryPoints +00007FA128BB8CD8 18 stub<2312> AllocateTemporaryEntryPoints +00007FA128BB8CF0 30 stub<2313> AllocateTemporaryEntryPoints +00007FA128BB8D20 30 stub<2314> AllocateTemporaryEntryPoints +00007FA128BB8D50 30 stub<2315> AllocateTemporaryEntryPoints +00007FA128BB8D80 30 stub<2316> AllocateTemporaryEntryPoints +00007FA128BB8DB0 18 stub<2317> AllocateTemporaryEntryPoints +00007FA128BB8DC8 30 stub<2318> AllocateTemporaryEntryPoints +00007FA128BBA000 288 stub<2319> AllocateTemporaryEntryPoints +00007FA128BBA288 a8 stub<2320> AllocateTemporaryEntryPoints +00007FA128BBA330 18 stub<2321> AllocateTemporaryEntryPoints +00007FA128BBA348 60 stub<2322> AllocateTemporaryEntryPoints +00007FA128BBA3A8 18 stub<2323> AllocateTemporaryEntryPoints +00007FA128BBA3C0 18 stub<2324> AllocateTemporaryEntryPoints +00007FA128BBA3D8 90 stub<2325> AllocateTemporaryEntryPoints +00007FA128BBA468 a8 stub<2326> AllocateTemporaryEntryPoints +00007FA128BBA510 18 stub<2327> AllocateTemporaryEntryPoints +00007FA128BBA528 60 stub<2328> AllocateTemporaryEntryPoints +00007FA128BBA588 150 stub<2329> AllocateTemporaryEntryPoints +00007FA128BBA6D8 168 stub<2330> AllocateTemporaryEntryPoints +00007FA128BBA840 90 stub<2331> AllocateTemporaryEntryPoints +00007FA128BBA8D0 48 stub<2332> AllocateTemporaryEntryPoints +00007FA128BBA918 390 stub<2333> AllocateTemporaryEntryPoints +00007FA128BBACA8 30 stub<2334> AllocateTemporaryEntryPoints +00007FA128BBACD8 18 stub<2335> AllocateTemporaryEntryPoints +00007FA128BBACF0 30 stub<2336> AllocateTemporaryEntryPoints +00007FA128BBAD20 30 stub<2337> AllocateTemporaryEntryPoints +00007FA128BBAD50 18 stub<2338> AllocateTemporaryEntryPoints +00007FA128BBAD68 30 stub<2339> AllocateTemporaryEntryPoints +00007FA128BBAD98 30 stub<2340> AllocateTemporaryEntryPoints +00007FA128BBADC8 18 stub<2341> AllocateTemporaryEntryPoints +00007FA128BBADE0 30 stub<2342> AllocateTemporaryEntryPoints +00007FA128BBAE10 30 stub<2343> AllocateTemporaryEntryPoints +00007FA128BBAE40 30 stub<2344> AllocateTemporaryEntryPoints +00007FA128BBAE70 30 stub<2345> AllocateTemporaryEntryPoints +00007FA128BBAEA0 18 stub<2346> AllocateTemporaryEntryPoints +00007FA128BBAEB8 30 stub<2347> AllocateTemporaryEntryPoints +00007FA128BBC000 288 stub<2348> AllocateTemporaryEntryPoints +00007FA128BBC288 a8 stub<2349> AllocateTemporaryEntryPoints +00007FA128BBC330 18 stub<2350> AllocateTemporaryEntryPoints +00007FA128BBC348 60 stub<2351> AllocateTemporaryEntryPoints +00007FA128BBC3A8 18 stub<2352> AllocateTemporaryEntryPoints +00007FA128BBC3C0 18 stub<2353> AllocateTemporaryEntryPoints +00007FA128BBC3D8 90 stub<2354> AllocateTemporaryEntryPoints +00007FA128BBC468 a8 stub<2355> AllocateTemporaryEntryPoints +00007FA128BBC510 18 stub<2356> AllocateTemporaryEntryPoints +00007FA128BBC528 60 stub<2357> AllocateTemporaryEntryPoints +00007FA128BBC588 150 stub<2358> AllocateTemporaryEntryPoints +00007FA128BBC6D8 240 stub<2359> AllocateTemporaryEntryPoints +00007FA128BBC918 48 stub<2360> AllocateTemporaryEntryPoints +00007FA128BBC960 60 stub<2361> AllocateTemporaryEntryPoints +00007FA128BBC9C0 a8 stub<2362> AllocateTemporaryEntryPoints +00007FA128BBCA68 18 stub<2363> AllocateTemporaryEntryPoints +00007FA128BBCA80 60 stub<2364> AllocateTemporaryEntryPoints +00007FA128BBCAE0 30 stub<2365> AllocateTemporaryEntryPoints +00007FA128BBCB10 18 stub<2366> AllocateTemporaryEntryPoints +00007FA128BBCB28 390 stub<2367> AllocateTemporaryEntryPoints +00007FA128BBCEB8 30 stub<2368> AllocateTemporaryEntryPoints +00007FA128BBCEE8 18 stub<2369> AllocateTemporaryEntryPoints +00007FA128BBCF00 30 stub<2370> AllocateTemporaryEntryPoints +00007FA128BBCF30 30 stub<2371> AllocateTemporaryEntryPoints +00007FA128BBCF60 18 stub<2372> AllocateTemporaryEntryPoints +00007FA128BBCF78 30 stub<2373> AllocateTemporaryEntryPoints +00007FA128BBCFA8 18 stub<2374> AllocateTemporaryEntryPoints +00007FA128BBCFC0 30 stub<2375> AllocateTemporaryEntryPoints +00007FA128BBE000 30 stub<2376> AllocateTemporaryEntryPoints +00007FA128BBE030 30 stub<2377> AllocateTemporaryEntryPoints +00007FA128BBE060 30 stub<2378> AllocateTemporaryEntryPoints +00007FA128BBE090 18 stub<2379> AllocateTemporaryEntryPoints +00007FA128BBE0A8 30 stub<2380> AllocateTemporaryEntryPoints +00007FA128BBE0D8 48 stub<2381> AllocateTemporaryEntryPoints +00007FA128BBE120 240 stub<2382> AllocateTemporaryEntryPoints +00007FA128BBE360 48 stub<2383> AllocateTemporaryEntryPoints +00007FA128BBE3A8 60 stub<2384> AllocateTemporaryEntryPoints +00007FA128BBE408 a8 stub<2385> AllocateTemporaryEntryPoints +00007FA128BBE4B0 18 stub<2386> AllocateTemporaryEntryPoints +00007FA128BBE4C8 60 stub<2387> AllocateTemporaryEntryPoints +00007FA128BBE528 30 stub<2388> AllocateTemporaryEntryPoints +00007FA128BBE558 18 stub<2389> AllocateTemporaryEntryPoints +00007FA128BBE570 390 stub<2390> AllocateTemporaryEntryPoints +00007FA128BBE900 30 stub<2391> AllocateTemporaryEntryPoints +00007FA128BBE930 18 stub<2392> AllocateTemporaryEntryPoints +00007FA128BBE948 30 stub<2393> AllocateTemporaryEntryPoints +00007FA128BBE978 30 stub<2394> AllocateTemporaryEntryPoints +00007FA128BBE9A8 18 stub<2395> AllocateTemporaryEntryPoints +00007FA128BBE9C0 30 stub<2396> AllocateTemporaryEntryPoints +00007FA128BBE9F0 18 stub<2397> AllocateTemporaryEntryPoints +00007FA128BBEA08 30 stub<2398> AllocateTemporaryEntryPoints +00007FA128BBEA38 30 stub<2399> AllocateTemporaryEntryPoints +00007FA128BBEA68 30 stub<2400> AllocateTemporaryEntryPoints +00007FA128BBEA98 30 stub<2401> AllocateTemporaryEntryPoints +00007FA128BBEAC8 18 stub<2402> AllocateTemporaryEntryPoints +00007FA128BBEAE0 30 stub<2403> AllocateTemporaryEntryPoints +00007FA128BBEB10 48 stub<2404> AllocateTemporaryEntryPoints +00007FA128BBEB58 168 stub<2405> AllocateTemporaryEntryPoints +00007FA128BBECC0 90 stub<2406> AllocateTemporaryEntryPoints +00007FA128BBED50 48 stub<2407> AllocateTemporaryEntryPoints +00007FA128BE0000 390 stub<2408> AllocateTemporaryEntryPoints +00007FA128BE0390 30 stub<2409> AllocateTemporaryEntryPoints +00007FA128BE03C0 18 stub<2410> AllocateTemporaryEntryPoints +00007FA128BE03D8 30 stub<2411> AllocateTemporaryEntryPoints +00007FA128BE0408 30 stub<2412> AllocateTemporaryEntryPoints +00007FA128BE0438 18 stub<2413> AllocateTemporaryEntryPoints +00007FA128BE0450 30 stub<2414> AllocateTemporaryEntryPoints +00007FA128BE0480 30 stub<2415> AllocateTemporaryEntryPoints +00007FA128BE04B0 18 stub<2416> AllocateTemporaryEntryPoints +00007FA128BE04C8 30 stub<2417> AllocateTemporaryEntryPoints +00007FA128BE04F8 30 stub<2418> AllocateTemporaryEntryPoints +00007FA128BE0528 30 stub<2419> AllocateTemporaryEntryPoints +00007FA128BE0558 30 stub<2420> AllocateTemporaryEntryPoints +00007FA128BE0588 18 stub<2421> AllocateTemporaryEntryPoints +00007FA128BE05A0 30 stub<2422> AllocateTemporaryEntryPoints +00007FA128BE05D0 288 stub<2423> AllocateTemporaryEntryPoints +00007FA128BE0858 a8 stub<2424> AllocateTemporaryEntryPoints +00007FA128BE0900 18 stub<2425> AllocateTemporaryEntryPoints +00007FA128BE0918 60 stub<2426> AllocateTemporaryEntryPoints +00007FA128BE0978 18 stub<2427> AllocateTemporaryEntryPoints +00007FA128BE0990 18 stub<2428> AllocateTemporaryEntryPoints +00007FA128BE09A8 90 stub<2429> AllocateTemporaryEntryPoints +00007FA128BE0A38 a8 stub<2430> AllocateTemporaryEntryPoints +00007FA128BE0AE0 18 stub<2431> AllocateTemporaryEntryPoints +00007FA128BE0AF8 60 stub<2432> AllocateTemporaryEntryPoints +00007FA128BE0B58 150 stub<2433> AllocateTemporaryEntryPoints +00007FA128BE0CA8 168 stub<2434> AllocateTemporaryEntryPoints +00007FA128BE0E10 90 stub<2435> AllocateTemporaryEntryPoints +00007FA128BE0EA0 48 stub<2436> AllocateTemporaryEntryPoints +00007FA128BE2000 390 stub<2437> AllocateTemporaryEntryPoints +00007FA128BE2390 30 stub<2438> AllocateTemporaryEntryPoints +00007FA128BE23C0 18 stub<2439> AllocateTemporaryEntryPoints +00007FA128BE23D8 30 stub<2440> AllocateTemporaryEntryPoints +00007FA128BE2408 30 stub<2441> AllocateTemporaryEntryPoints +00007FA128BE2438 18 stub<2442> AllocateTemporaryEntryPoints +00007FA128BE2450 30 stub<2443> AllocateTemporaryEntryPoints +00007FA128BE2480 30 stub<2444> AllocateTemporaryEntryPoints +00007FA128BE24B0 18 stub<2445> AllocateTemporaryEntryPoints +00007FA128BE24C8 30 stub<2446> AllocateTemporaryEntryPoints +00007FA128BE24F8 30 stub<2447> AllocateTemporaryEntryPoints +00007FA128BE2528 30 stub<2448> AllocateTemporaryEntryPoints +00007FA128BE2558 30 stub<2449> AllocateTemporaryEntryPoints +00007FA128BE2588 18 stub<2450> AllocateTemporaryEntryPoints +00007FA128BE25A0 30 stub<2451> AllocateTemporaryEntryPoints +00007FA128BE25D0 288 stub<2452> AllocateTemporaryEntryPoints +00007FA128BE2858 a8 stub<2453> AllocateTemporaryEntryPoints +00007FA128BE2900 18 stub<2454> AllocateTemporaryEntryPoints +00007FA128BE2918 60 stub<2455> AllocateTemporaryEntryPoints +00007FA128BE2978 18 stub<2456> AllocateTemporaryEntryPoints +00007FA128BE2990 18 stub<2457> AllocateTemporaryEntryPoints +00007FA128BE29A8 90 stub<2458> AllocateTemporaryEntryPoints +00007FA128BE2A38 a8 stub<2459> AllocateTemporaryEntryPoints +00007FA128BE2AE0 18 stub<2460> AllocateTemporaryEntryPoints +00007FA128BE2AF8 60 stub<2461> AllocateTemporaryEntryPoints +00007FA128BE2B58 150 stub<2462> AllocateTemporaryEntryPoints +00007FA128BE2CA8 240 stub<2463> AllocateTemporaryEntryPoints +00007FA128BE2EE8 48 stub<2464> AllocateTemporaryEntryPoints +00007FA128BE2F30 60 stub<2465> AllocateTemporaryEntryPoints +00007FA128BE4000 a8 stub<2466> AllocateTemporaryEntryPoints +00007FA128BE40A8 18 stub<2467> AllocateTemporaryEntryPoints +00007FA128BE40C0 60 stub<2468> AllocateTemporaryEntryPoints +00007FA128BE4120 30 stub<2469> AllocateTemporaryEntryPoints +00007FA128BE4150 18 stub<2470> AllocateTemporaryEntryPoints +00007FA128BE4168 390 stub<2471> AllocateTemporaryEntryPoints +00007FA128BE44F8 30 stub<2472> AllocateTemporaryEntryPoints +00007FA128BE4528 18 stub<2473> AllocateTemporaryEntryPoints +00007FA128BE4540 30 stub<2474> AllocateTemporaryEntryPoints +00007FA128BE4570 30 stub<2475> AllocateTemporaryEntryPoints +00007FA128BE45A0 18 stub<2476> AllocateTemporaryEntryPoints +00007FA128BE45B8 30 stub<2477> AllocateTemporaryEntryPoints +00007FA128BE45E8 18 stub<2478> AllocateTemporaryEntryPoints +00007FA128BE4600 30 stub<2479> AllocateTemporaryEntryPoints +00007FA128BE4630 30 stub<2480> AllocateTemporaryEntryPoints +00007FA128BE4660 30 stub<2481> AllocateTemporaryEntryPoints +00007FA128BE4690 30 stub<2482> AllocateTemporaryEntryPoints +00007FA128BE46C0 18 stub<2483> AllocateTemporaryEntryPoints +00007FA128BE46D8 30 stub<2484> AllocateTemporaryEntryPoints +00007FA128BE4708 48 stub<2485> AllocateTemporaryEntryPoints +00007FA128BE4750 240 stub<2486> AllocateTemporaryEntryPoints +00007FA128BE4990 48 stub<2487> AllocateTemporaryEntryPoints +00007FA128BE49D8 60 stub<2488> AllocateTemporaryEntryPoints +00007FA128BE4A38 a8 stub<2489> AllocateTemporaryEntryPoints +00007FA128BE4AE0 18 stub<2490> AllocateTemporaryEntryPoints +00007FA128BE4AF8 60 stub<2491> AllocateTemporaryEntryPoints +00007FA128BE4B58 30 stub<2492> AllocateTemporaryEntryPoints +00007FA128BE4B88 18 stub<2493> AllocateTemporaryEntryPoints +00007FA128BE4BA0 390 stub<2494> AllocateTemporaryEntryPoints +00007FA128BE4F30 30 stub<2495> AllocateTemporaryEntryPoints +00007FA128BE4F60 18 stub<2496> AllocateTemporaryEntryPoints +00007FA128BE4F78 30 stub<2497> AllocateTemporaryEntryPoints +00007FA128BE4FA8 30 stub<2498> AllocateTemporaryEntryPoints +00007FA128BE4FD8 18 stub<2499> AllocateTemporaryEntryPoints +00007FA128BE6000 30 stub<2500> AllocateTemporaryEntryPoints +00007FA128BE6030 18 stub<2501> AllocateTemporaryEntryPoints +00007FA128BE6048 30 stub<2502> AllocateTemporaryEntryPoints +00007FA128BE6078 30 stub<2503> AllocateTemporaryEntryPoints +00007FA128BE60A8 30 stub<2504> AllocateTemporaryEntryPoints +00007FA128BE60D8 30 stub<2505> AllocateTemporaryEntryPoints +00007FA128BE6108 18 stub<2506> AllocateTemporaryEntryPoints +00007FA128BE6120 30 stub<2507> AllocateTemporaryEntryPoints +00007FA128BE6150 48 stub<2508> AllocateTemporaryEntryPoints +00007FA128BE6198 168 stub<2509> AllocateTemporaryEntryPoints +00007FA128BE6300 90 stub<2510> AllocateTemporaryEntryPoints +00007FA128BE6390 48 stub<2511> AllocateTemporaryEntryPoints +00007FA128BE63D8 390 stub<2512> AllocateTemporaryEntryPoints +00007FA128BE6768 30 stub<2513> AllocateTemporaryEntryPoints +00007FA128BE6798 18 stub<2514> AllocateTemporaryEntryPoints +00007FA128BE67B0 30 stub<2515> AllocateTemporaryEntryPoints +00007FA128BE67E0 30 stub<2516> AllocateTemporaryEntryPoints +00007FA128BE6810 18 stub<2517> AllocateTemporaryEntryPoints +00007FA128BE6828 30 stub<2518> AllocateTemporaryEntryPoints +00007FA128BE6858 30 stub<2519> AllocateTemporaryEntryPoints +00007FA128BE6888 18 stub<2520> AllocateTemporaryEntryPoints +00007FA128BE68A0 30 stub<2521> AllocateTemporaryEntryPoints +00007FA128BE68D0 30 stub<2522> AllocateTemporaryEntryPoints +00007FA128BE6900 30 stub<2523> AllocateTemporaryEntryPoints +00007FA128BE6930 30 stub<2524> AllocateTemporaryEntryPoints +00007FA128BE6960 18 stub<2525> AllocateTemporaryEntryPoints +00007FA128BE6978 30 stub<2526> AllocateTemporaryEntryPoints +00007FA128BE69A8 288 stub<2527> AllocateTemporaryEntryPoints +00007FA128BE6C30 a8 stub<2528> AllocateTemporaryEntryPoints +00007FA128BE6CD8 18 stub<2529> AllocateTemporaryEntryPoints +00007FA128BE6CF0 60 stub<2530> AllocateTemporaryEntryPoints +00007FA128BE6D50 18 stub<2531> AllocateTemporaryEntryPoints +00007FA128BE6D68 18 stub<2532> AllocateTemporaryEntryPoints +00007FA128BE6D80 90 stub<2533> AllocateTemporaryEntryPoints +00007FA128BE6E10 a8 stub<2534> AllocateTemporaryEntryPoints +00007FA128BE6EB8 18 stub<2535> AllocateTemporaryEntryPoints +00007FA128BE6ED0 60 stub<2536> AllocateTemporaryEntryPoints +00007FA128BE8000 150 stub<2537> AllocateTemporaryEntryPoints +00007FA128BE8150 168 stub<2538> AllocateTemporaryEntryPoints +00007FA128BE82B8 90 stub<2539> AllocateTemporaryEntryPoints +00007FA128BE8348 48 stub<2540> AllocateTemporaryEntryPoints +00007FA128BE8390 390 stub<2541> AllocateTemporaryEntryPoints +00007FA128BE8720 30 stub<2542> AllocateTemporaryEntryPoints +00007FA128BE8750 18 stub<2543> AllocateTemporaryEntryPoints +00007FA128BE8768 30 stub<2544> AllocateTemporaryEntryPoints +00007FA128BE8798 30 stub<2545> AllocateTemporaryEntryPoints +00007FA128BE87C8 18 stub<2546> AllocateTemporaryEntryPoints +00007FA128BE87E0 30 stub<2547> AllocateTemporaryEntryPoints +00007FA128BE8810 30 stub<2548> AllocateTemporaryEntryPoints +00007FA128BE8840 18 stub<2549> AllocateTemporaryEntryPoints +00007FA128BE8858 30 stub<2550> AllocateTemporaryEntryPoints +00007FA128BE8888 30 stub<2551> AllocateTemporaryEntryPoints +00007FA128BE88B8 30 stub<2552> AllocateTemporaryEntryPoints +00007FA128BE88E8 30 stub<2553> AllocateTemporaryEntryPoints +00007FA128BE8918 18 stub<2554> AllocateTemporaryEntryPoints +00007FA128BE8930 30 stub<2555> AllocateTemporaryEntryPoints +00007FA128BE8960 288 stub<2556> AllocateTemporaryEntryPoints +00007FA128BE8BE8 a8 stub<2557> AllocateTemporaryEntryPoints +00007FA128BE8C90 18 stub<2558> AllocateTemporaryEntryPoints +00007FA128BE8CA8 60 stub<2559> AllocateTemporaryEntryPoints +00007FA128BE8D08 18 stub<2560> AllocateTemporaryEntryPoints +00007FA128BE8D20 18 stub<2561> AllocateTemporaryEntryPoints +00007FA128BE8D38 90 stub<2562> AllocateTemporaryEntryPoints +00007FA128BE8DC8 a8 stub<2563> AllocateTemporaryEntryPoints +00007FA128BE8E70 18 stub<2564> AllocateTemporaryEntryPoints +00007FA128BE8E88 60 stub<2565> AllocateTemporaryEntryPoints +00007FA128BEA000 150 stub<2566> AllocateTemporaryEntryPoints +00007FA128BEA150 a8 stub<2567> AllocateTemporaryEntryPoints +00007FA128BEA1F8 18 stub<2568> AllocateTemporaryEntryPoints +00007FA128BEA210 60 stub<2569> AllocateTemporaryEntryPoints +00007FA128BEA270 30 stub<2570> AllocateTemporaryEntryPoints +00007FA128BEA2A0 18 stub<2571> AllocateTemporaryEntryPoints +00007FA128BEA2B8 390 stub<2572> AllocateTemporaryEntryPoints +00007FA128BEA648 30 stub<2573> AllocateTemporaryEntryPoints +00007FA128BEA678 18 stub<2574> AllocateTemporaryEntryPoints +00007FA128BEA690 30 stub<2575> AllocateTemporaryEntryPoints +00007FA128BEA6C0 30 stub<2576> AllocateTemporaryEntryPoints +00007FA128BEA6F0 18 stub<2577> AllocateTemporaryEntryPoints +00007FA128BEA708 30 stub<2578> AllocateTemporaryEntryPoints +00007FA128BEA738 18 stub<2579> AllocateTemporaryEntryPoints +00007FA128BEA750 30 stub<2580> AllocateTemporaryEntryPoints +00007FA128BEA780 30 stub<2581> AllocateTemporaryEntryPoints +00007FA128BEA7B0 30 stub<2582> AllocateTemporaryEntryPoints +00007FA128BEA7E0 30 stub<2583> AllocateTemporaryEntryPoints +00007FA128BEA810 18 stub<2584> AllocateTemporaryEntryPoints +00007FA128BEA828 30 stub<2585> AllocateTemporaryEntryPoints +00007FA128BEA858 a8 stub<2586> AllocateTemporaryEntryPoints +00007FA128BEA900 18 stub<2587> AllocateTemporaryEntryPoints +00007FA128BEA918 60 stub<2588> AllocateTemporaryEntryPoints +00007FA128BEA978 30 stub<2589> AllocateTemporaryEntryPoints +00007FA128BEA9A8 18 stub<2590> AllocateTemporaryEntryPoints +00007FA128BEA9C0 390 stub<2591> AllocateTemporaryEntryPoints +00007FA128BEAD50 30 stub<2592> AllocateTemporaryEntryPoints +00007FA128BEAD80 18 stub<2593> AllocateTemporaryEntryPoints +00007FA128BEAD98 30 stub<2594> AllocateTemporaryEntryPoints +00007FA128BEADC8 30 stub<2595> AllocateTemporaryEntryPoints +00007FA128BEADF8 18 stub<2596> AllocateTemporaryEntryPoints +00007FA128BEAE10 30 stub<2597> AllocateTemporaryEntryPoints +00007FA128BEAE40 18 stub<2598> AllocateTemporaryEntryPoints +00007FA128BEAE58 30 stub<2599> AllocateTemporaryEntryPoints +00007FA128BEAE88 30 stub<2600> AllocateTemporaryEntryPoints +00007FA128BEAEB8 30 stub<2601> AllocateTemporaryEntryPoints +00007FA128BEAEE8 30 stub<2602> AllocateTemporaryEntryPoints +00007FA128BEAF18 18 stub<2603> AllocateTemporaryEntryPoints +00007FA128BEAF30 30 stub<2604> AllocateTemporaryEntryPoints +00007FA128BEC000 a8 stub<2605> AllocateTemporaryEntryPoints +00007FA128BEC0A8 18 stub<2606> AllocateTemporaryEntryPoints +00007FA128BEC0C0 60 stub<2607> AllocateTemporaryEntryPoints +00007FA128BEC120 30 stub<2608> AllocateTemporaryEntryPoints +00007FA128BEC150 18 stub<2609> AllocateTemporaryEntryPoints +00007FA128BEC168 390 stub<2610> AllocateTemporaryEntryPoints +00007FA128BEC4F8 30 stub<2611> AllocateTemporaryEntryPoints +00007FA128BEC528 18 stub<2612> AllocateTemporaryEntryPoints +00007FA128BEC540 30 stub<2613> AllocateTemporaryEntryPoints +00007FA128BEC570 30 stub<2614> AllocateTemporaryEntryPoints +00007FA128BEC5A0 18 stub<2615> AllocateTemporaryEntryPoints +00007FA128BEC5B8 30 stub<2616> AllocateTemporaryEntryPoints +00007FA128BEC5E8 18 stub<2617> AllocateTemporaryEntryPoints +00007FA128BEC600 30 stub<2618> AllocateTemporaryEntryPoints +00007FA128BEC630 30 stub<2619> AllocateTemporaryEntryPoints +00007FA128BEC660 30 stub<2620> AllocateTemporaryEntryPoints +00007FA128BEC690 30 stub<2621> AllocateTemporaryEntryPoints +00007FA128BEC6C0 18 stub<2622> AllocateTemporaryEntryPoints +00007FA128BEC6D8 30 stub<2623> AllocateTemporaryEntryPoints +00007FA128BEC708 a8 stub<2624> AllocateTemporaryEntryPoints +00007FA128BEC7B0 18 stub<2625> AllocateTemporaryEntryPoints +00007FA128BEC7C8 60 stub<2626> AllocateTemporaryEntryPoints +00007FA128BEC828 30 stub<2627> AllocateTemporaryEntryPoints +00007FA128BEC858 18 stub<2628> AllocateTemporaryEntryPoints +00007FA128BEC870 390 stub<2629> AllocateTemporaryEntryPoints +00007FA128BECC00 30 stub<2630> AllocateTemporaryEntryPoints +00007FA128BECC30 18 stub<2631> AllocateTemporaryEntryPoints +00007FA128BECC48 30 stub<2632> AllocateTemporaryEntryPoints +00007FA128BECC78 30 stub<2633> AllocateTemporaryEntryPoints +00007FA128BECCA8 18 stub<2634> AllocateTemporaryEntryPoints +00007FA128BECCC0 30 stub<2635> AllocateTemporaryEntryPoints +00007FA128BECCF0 18 stub<2636> AllocateTemporaryEntryPoints +00007FA128BECD08 30 stub<2637> AllocateTemporaryEntryPoints +00007FA128BECD38 30 stub<2638> AllocateTemporaryEntryPoints +00007FA128BECD68 30 stub<2639> AllocateTemporaryEntryPoints +00007FA128BECD98 30 stub<2640> AllocateTemporaryEntryPoints +00007FA128BECDC8 18 stub<2641> AllocateTemporaryEntryPoints +00007FA128BECDE0 30 stub<2642> AllocateTemporaryEntryPoints +00007FA128BECE10 a8 stub<2643> AllocateTemporaryEntryPoints +00007FA128BECEB8 18 stub<2644> AllocateTemporaryEntryPoints +00007FA128BECED0 60 stub<2645> AllocateTemporaryEntryPoints +00007FA128BECF30 30 stub<2646> AllocateTemporaryEntryPoints +00007FA128BECF60 18 stub<2647> AllocateTemporaryEntryPoints +00007FA128BEE000 390 stub<2648> AllocateTemporaryEntryPoints +00007FA128BEE390 30 stub<2649> AllocateTemporaryEntryPoints +00007FA128BEE3C0 18 stub<2650> AllocateTemporaryEntryPoints +00007FA128BEE3D8 30 stub<2651> AllocateTemporaryEntryPoints +00007FA128BEE408 30 stub<2652> AllocateTemporaryEntryPoints +00007FA128BEE438 18 stub<2653> AllocateTemporaryEntryPoints +00007FA128BEE450 30 stub<2654> AllocateTemporaryEntryPoints +00007FA128BEE480 18 stub<2655> AllocateTemporaryEntryPoints +00007FA128BEE498 30 stub<2656> AllocateTemporaryEntryPoints +00007FA128BEE4C8 30 stub<2657> AllocateTemporaryEntryPoints +00007FA128BEE4F8 30 stub<2658> AllocateTemporaryEntryPoints +00007FA128BEE528 30 stub<2659> AllocateTemporaryEntryPoints +00007FA128BEE558 18 stub<2660> AllocateTemporaryEntryPoints +00007FA128BEE570 30 stub<2661> AllocateTemporaryEntryPoints +00007FA128BEE5A0 a8 stub<2662> AllocateTemporaryEntryPoints +00007FA128BEE648 18 stub<2663> AllocateTemporaryEntryPoints +00007FA128BEE660 60 stub<2664> AllocateTemporaryEntryPoints +00007FA128BEE6C0 30 stub<2665> AllocateTemporaryEntryPoints +00007FA128BEE6F0 18 stub<2666> AllocateTemporaryEntryPoints +00007FA128BEE708 390 stub<2667> AllocateTemporaryEntryPoints +00007FA128BEEA98 30 stub<2668> AllocateTemporaryEntryPoints +00007FA128BEEAC8 18 stub<2669> AllocateTemporaryEntryPoints +00007FA128BEEAE0 30 stub<2670> AllocateTemporaryEntryPoints +00007FA128BEEB10 30 stub<2671> AllocateTemporaryEntryPoints +00007FA128BEEB40 18 stub<2672> AllocateTemporaryEntryPoints +00007FA128BEEB58 30 stub<2673> AllocateTemporaryEntryPoints +00007FA128BEEB88 18 stub<2674> AllocateTemporaryEntryPoints +00007FA128BEEBA0 30 stub<2675> AllocateTemporaryEntryPoints +00007FA128BEEBD0 30 stub<2676> AllocateTemporaryEntryPoints +00007FA128BEEC00 30 stub<2677> AllocateTemporaryEntryPoints +00007FA128BEEC30 30 stub<2678> AllocateTemporaryEntryPoints +00007FA128BEEC60 18 stub<2679> AllocateTemporaryEntryPoints +00007FA128BEEC78 30 stub<2680> AllocateTemporaryEntryPoints +00007FA128BEECA8 a8 stub<2681> AllocateTemporaryEntryPoints +00007FA128BEED50 18 stub<2682> AllocateTemporaryEntryPoints +00007FA128BEED68 60 stub<2683> AllocateTemporaryEntryPoints +00007FA128BEEDC8 30 stub<2684> AllocateTemporaryEntryPoints +00007FA128BEEDF8 18 stub<2685> AllocateTemporaryEntryPoints +00007FA128C00000 390 stub<2686> AllocateTemporaryEntryPoints +00007FA128C00390 30 stub<2687> AllocateTemporaryEntryPoints +00007FA128C003C0 18 stub<2688> AllocateTemporaryEntryPoints +00007FA128C003D8 30 stub<2689> AllocateTemporaryEntryPoints +00007FA128C00408 30 stub<2690> AllocateTemporaryEntryPoints +00007FA128C00438 18 stub<2691> AllocateTemporaryEntryPoints +00007FA128C00450 30 stub<2692> AllocateTemporaryEntryPoints +00007FA128C00480 18 stub<2693> AllocateTemporaryEntryPoints +00007FA128C00498 30 stub<2694> AllocateTemporaryEntryPoints +00007FA128C004C8 30 stub<2695> AllocateTemporaryEntryPoints +00007FA128C004F8 30 stub<2696> AllocateTemporaryEntryPoints +00007FA128C00528 30 stub<2697> AllocateTemporaryEntryPoints +00007FA128C00558 18 stub<2698> AllocateTemporaryEntryPoints +00007FA128C00570 30 stub<2699> AllocateTemporaryEntryPoints +00007FA128C005A0 a8 stub<2700> AllocateTemporaryEntryPoints +00007FA128C00648 18 stub<2701> AllocateTemporaryEntryPoints +00007FA128C00660 60 stub<2702> AllocateTemporaryEntryPoints +00007FA128C006C0 30 stub<2703> AllocateTemporaryEntryPoints +00007FA128C006F0 18 stub<2704> AllocateTemporaryEntryPoints +00007FA128C00708 390 stub<2705> AllocateTemporaryEntryPoints +00007FA128C00A98 30 stub<2706> AllocateTemporaryEntryPoints +00007FA128C00AC8 18 stub<2707> AllocateTemporaryEntryPoints +00007FA128C00AE0 30 stub<2708> AllocateTemporaryEntryPoints +00007FA128C00B10 30 stub<2709> AllocateTemporaryEntryPoints +00007FA128C00B40 18 stub<2710> AllocateTemporaryEntryPoints +00007FA128C00B58 30 stub<2711> AllocateTemporaryEntryPoints +00007FA128C00B88 18 stub<2712> AllocateTemporaryEntryPoints +00007FA128C00BA0 30 stub<2713> AllocateTemporaryEntryPoints +00007FA128C00BD0 30 stub<2714> AllocateTemporaryEntryPoints +00007FA128C00C00 30 stub<2715> AllocateTemporaryEntryPoints +00007FA128C00C30 30 stub<2716> AllocateTemporaryEntryPoints +00007FA128C00C60 18 stub<2717> AllocateTemporaryEntryPoints +00007FA128C00C78 30 stub<2718> AllocateTemporaryEntryPoints +00007FA128C00CA8 a8 stub<2719> AllocateTemporaryEntryPoints +00007FA128C00D50 18 stub<2720> AllocateTemporaryEntryPoints +00007FA128C00D68 60 stub<2721> AllocateTemporaryEntryPoints +00007FA128C00DC8 30 stub<2722> AllocateTemporaryEntryPoints +00007FA128C00DF8 18 stub<2723> AllocateTemporaryEntryPoints +00007FA128C02000 390 stub<2724> AllocateTemporaryEntryPoints +00007FA128C02390 30 stub<2725> AllocateTemporaryEntryPoints +00007FA128C023C0 18 stub<2726> AllocateTemporaryEntryPoints +00007FA128C023D8 30 stub<2727> AllocateTemporaryEntryPoints +00007FA128C02408 30 stub<2728> AllocateTemporaryEntryPoints +00007FA128C02438 18 stub<2729> AllocateTemporaryEntryPoints +00007FA128C02450 30 stub<2730> AllocateTemporaryEntryPoints +00007FA128C02480 18 stub<2731> AllocateTemporaryEntryPoints +00007FA128C02498 30 stub<2732> AllocateTemporaryEntryPoints +00007FA128C024C8 30 stub<2733> AllocateTemporaryEntryPoints +00007FA128C024F8 30 stub<2734> AllocateTemporaryEntryPoints +00007FA128C02528 30 stub<2735> AllocateTemporaryEntryPoints +00007FA128C02558 18 stub<2736> AllocateTemporaryEntryPoints +00007FA128C02570 30 stub<2737> AllocateTemporaryEntryPoints +00007FA128C025A0 a8 stub<2738> AllocateTemporaryEntryPoints +00007FA128C02648 18 stub<2739> AllocateTemporaryEntryPoints +00007FA128C02660 60 stub<2740> AllocateTemporaryEntryPoints +00007FA128C026C0 30 stub<2741> AllocateTemporaryEntryPoints +00007FA128C026F0 18 stub<2742> AllocateTemporaryEntryPoints +00007FA128C02708 390 stub<2743> AllocateTemporaryEntryPoints +00007FA128C02A98 30 stub<2744> AllocateTemporaryEntryPoints +00007FA128C02AC8 18 stub<2745> AllocateTemporaryEntryPoints +00007FA128C02AE0 30 stub<2746> AllocateTemporaryEntryPoints +00007FA128C02B10 30 stub<2747> AllocateTemporaryEntryPoints +00007FA128C02B40 18 stub<2748> AllocateTemporaryEntryPoints +00007FA128C02B58 30 stub<2749> AllocateTemporaryEntryPoints +00007FA128C02B88 18 stub<2750> AllocateTemporaryEntryPoints +00007FA128C02BA0 30 stub<2751> AllocateTemporaryEntryPoints +00007FA128C02BD0 30 stub<2752> AllocateTemporaryEntryPoints +00007FA128C02C00 30 stub<2753> AllocateTemporaryEntryPoints +00007FA128C02C30 30 stub<2754> AllocateTemporaryEntryPoints +00007FA128C02C60 18 stub<2755> AllocateTemporaryEntryPoints +00007FA128C02C78 30 stub<2756> AllocateTemporaryEntryPoints +00007FA128C02CA8 18 stub<2757> AllocateTemporaryEntryPoints +00007FA128C02CC0 18 stub<2758> AllocateTemporaryEntryPoints +00007FA128C02CD8 c0 stub<2759> AllocateTemporaryEntryPoints +00007FA128C02D98 18 stub<2760> AllocateTemporaryEntryPoints +00007FA128C02DB0 18 stub<2761> AllocateTemporaryEntryPoints +00007FA1284B9BF0 197 instance string [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource::GetString(string)[QuickJitted] +00007FA1284B9DA0 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass3_0::.ctor()[QuickJitted] +00007FA128C02DC8 108 stub<2762> AllocateTemporaryEntryPoints +00007FA128C02ED0 108 stub<2763> AllocateTemporaryEntryPoints +00007FA128C04000 48 stub<2764> AllocateTemporaryEntryPoints +00007FA128C04048 78 stub<2765> AllocateTemporaryEntryPoints +00007FA128C040C0 120 stub<2766> AllocateTemporaryEntryPoints +00007FA128C041E0 138 stub<2767> AllocateTemporaryEntryPoints +00007FA128C04318 108 stub<2768> AllocateTemporaryEntryPoints +00007FA128C04420 138 stub<2769> AllocateTemporaryEntryPoints +00007FA128C04558 18 stub<2770> AllocateTemporaryEntryPoints +00007FA128C04570 18 stub<2771> AllocateTemporaryEntryPoints +00007FA128C04588 18 stub<2772> AllocateTemporaryEntryPoints +00007FA128C045A0 48 stub<2773> AllocateTemporaryEntryPoints +00007FA128C045E8 18 stub<2774> AllocateTemporaryEntryPoints +00007FA128C04600 78 stub<2775> AllocateTemporaryEntryPoints +00007FA128C04678 48 stub<2776> AllocateTemporaryEntryPoints +00007FA128C046C0 18 stub<2777> AllocateTemporaryEntryPoints +00007FA128C046D8 18 stub<2778> AllocateTemporaryEntryPoints +00007FA128C046F0 78 stub<2779> AllocateTemporaryEntryPoints +00007FA128C04768 48 stub<2780> AllocateTemporaryEntryPoints +00007FA128C047B0 18 stub<2781> AllocateTemporaryEntryPoints +00007FA1284BA1E0 47 void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c::.cctor()[QuickJitted] +00007FA1284BA240 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c::.ctor()[QuickJitted] +00007FA128C047C8 18 stub<2782> AllocateTemporaryEntryPoints +00007FA128C047E0 18 stub<2783> AllocateTemporaryEntryPoints +00007FA1284BA280 32 instance string [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass3_0::b__0(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1284BA2D0 63 instance string [Datadog.Trace] Datadog.Trace.Configuration.EnvironmentConfigurationSource::GetString(string)[QuickJitted] +00007FA1284BA360 22 instance bool [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c::b__3_1(string)[QuickJitted] +00007FA1277C3180 20 stub<2784> GenerateDispatchStub +00007FA1277F4540 18 stub<2785> GenerateResolveStub +00007FA1277C31A0 20 stub<2786> GenerateDispatchStub +00007FA1277C31C0 20 stub<2787> GenerateDispatchStub +00007FA1277C31E0 20 stub<2788> GenerateDispatchStub +00007FA1277C3200 20 stub<2789> GenerateDispatchStub +00007FA1277C3220 20 stub<2790> GenerateDispatchStub +00007FA1284BA3A0 18 string [Datadog.Trace] Datadog.Trace.Configuration.GlobalConfigurationSource::GetCurrentDirectory()[QuickJitted] +00007FA128C047F8 60 stub<2791> AllocateTemporaryEntryPoints +00007FA1284BA3D0 51 class Datadog.Trace.Configuration.JsonConfigurationSource [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::FromFile(string)[QuickJitted] +00007FA128C04858 258 stub<2792> AllocateTemporaryEntryPoints +00007FA128C04AB0 4f8 stub<2793> AllocateTemporaryEntryPoints +00007FA128C06000 198 stub<2794> AllocateTemporaryEntryPoints +00007FA128C06198 1e0 stub<2795> AllocateTemporaryEntryPoints +00007FA128C06378 240 stub<2796> AllocateTemporaryEntryPoints +00007FA128C065B8 60 stub<2797> AllocateTemporaryEntryPoints +00007FA128C06618 5e8 stub<2798> AllocateTemporaryEntryPoints +00007FA128C06C00 288 stub<2799> AllocateTemporaryEntryPoints +00007FA128C08000 540 stub<2800> AllocateTemporaryEntryPoints +00007FA128C08540 540 stub<2801> AllocateTemporaryEntryPoints +00007FA128C08A80 d8 stub<2802> AllocateTemporaryEntryPoints +00007FA12784B250 e stub<2803> GenerateVTableCallStub +00007FA12784B260 e stub<2804> GenerateVTableCallStub +00007FA128C08B70 2e8 stub<2805> AllocateTemporaryEntryPoints +00007FA12784B270 e stub<2806> GenerateVTableCallStub +00007FA128C0A000 618 stub<2807> AllocateTemporaryEntryPoints +00007FA128C0A618 18 stub<2808> AllocateTemporaryEntryPoints +00007FA128C0A630 48 stub<2809> AllocateTemporaryEntryPoints +00007FA128C0A678 18 stub<2810> AllocateTemporaryEntryPoints +00007FA128C0A690 828 stub<2811> AllocateTemporaryEntryPoints +00007FA128C0C000 6f0 stub<2812> AllocateTemporaryEntryPoints +00007FA128C0C6F0 30 stub<2813> AllocateTemporaryEntryPoints +00007FA128C0C720 198 stub<2814> AllocateTemporaryEntryPoints +00007FA128C0C8B8 30 stub<2815> AllocateTemporaryEntryPoints +00007FA128C0E000 7f8 stub<2816> AllocateTemporaryEntryPoints +00007FA128C0E7F8 180 stub<2817> AllocateTemporaryEntryPoints +00007FA128C0E978 30 stub<2818> AllocateTemporaryEntryPoints +00007FA128C0E9A8 120 stub<2819> AllocateTemporaryEntryPoints +00007FA128C0EAC8 30 stub<2820> AllocateTemporaryEntryPoints +00007FA1291E0000 6a8 stub<2821> AllocateTemporaryEntryPoints +00007FA1291E06A8 18 stub<2822> AllocateTemporaryEntryPoints +00007FA1291E06C0 18 stub<2823> AllocateTemporaryEntryPoints +00007FA1284BA440 5b instance void [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::.ctor(string)[QuickJitted] +00007FA1284BA4B0 23 object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::DeserializeObject(string)[QuickJitted] +00007FA1291E06D8 c0 stub<2824> AllocateTemporaryEntryPoints +00007FA1291E0798 138 stub<2825> AllocateTemporaryEntryPoints +00007FA1291E08D0 138 stub<2826> AllocateTemporaryEntryPoints +00007FA1291E0A08 138 stub<2827> AllocateTemporaryEntryPoints +00007FA1291E0B40 138 stub<2828> AllocateTemporaryEntryPoints +00007FA1291E0C78 138 stub<2829> AllocateTemporaryEntryPoints +00007FA1291E0DB0 138 stub<2830> AllocateTemporaryEntryPoints +00007FA1291E2000 138 stub<2831> AllocateTemporaryEntryPoints +00007FA1291E2138 138 stub<2832> AllocateTemporaryEntryPoints +00007FA1291E2270 138 stub<2833> AllocateTemporaryEntryPoints +00007FA1291E23A8 138 stub<2834> AllocateTemporaryEntryPoints +00007FA1291E24E0 138 stub<2835> AllocateTemporaryEntryPoints +00007FA1291E2618 138 stub<2836> AllocateTemporaryEntryPoints +00007FA1291E2750 138 stub<2837> AllocateTemporaryEntryPoints +00007FA1291E2888 138 stub<2838> AllocateTemporaryEntryPoints +00007FA1291E29C0 138 stub<2839> AllocateTemporaryEntryPoints +00007FA1291E2AF8 138 stub<2840> AllocateTemporaryEntryPoints +00007FA1291E2C30 138 stub<2841> AllocateTemporaryEntryPoints +00007FA1291E2D68 138 stub<2842> AllocateTemporaryEntryPoints +00007FA1291E2EA0 138 stub<2843> AllocateTemporaryEntryPoints +00007FA1291E4000 648 stub<2844> AllocateTemporaryEntryPoints +00007FA1291E4648 840 stub<2845> AllocateTemporaryEntryPoints +00007FA1291E4E88 a8 stub<2846> AllocateTemporaryEntryPoints +00007FA1291E6000 7e0 stub<2847> AllocateTemporaryEntryPoints +00007FA1291E67E0 138 stub<2848> AllocateTemporaryEntryPoints +00007FA1291E6918 a8 stub<2849> AllocateTemporaryEntryPoints +00007FA1291E8000 888 stub<2850> AllocateTemporaryEntryPoints +00007FA1291E8888 408 stub<2851> AllocateTemporaryEntryPoints +00007FA1291E8C90 18 stub<2852> AllocateTemporaryEntryPoints +00007FA1291E8CA8 1c8 stub<2853> AllocateTemporaryEntryPoints +00007FA1284BA4F0 121 object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::DeserializeObject(string,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[QuickJitted] +00007FA1284BA640 50 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ValidationUtils::ArgumentNotNull(object,string)[QuickJitted] +00007FA1284BA6B0 3d class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::CreateDefault(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[QuickJitted] +00007FA1284BA710 5f class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::CreateDefault()[QuickJitted] +00007FA1284BA790 27 class [System.Runtime]System.Func`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::get_DefaultSettings()[QuickJitted] +00007FA1284BA7D0 cb void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::.cctor()[QuickJitted] +00007FA1284BA8B0 3d class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Create(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[QuickJitted] +00007FA1284BA910 37 class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Create()[QuickJitted] +00007FA1291E8E70 48 stub<2854> AllocateTemporaryEntryPoints +00007FA1291E8EB8 30 stub<2855> AllocateTemporaryEntryPoints +00007FA1291E8EE8 a8 stub<2856> AllocateTemporaryEntryPoints +00007FA1291E8F90 18 stub<2857> AllocateTemporaryEntryPoints +00007FA1291EA000 600 stub<2858> AllocateTemporaryEntryPoints +00007FA1284BA960 119 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::.ctor()[QuickJitted] +00007FA1284BAA90 36 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::.cctor()[QuickJitted] +00007FA1284BAAE0 47 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultSerializationBinder::.cctor()[QuickJitted] +00007FA1291EA600 a8 stub<2859> AllocateTemporaryEntryPoints +00007FA1291EA6A8 18 stub<2860> AllocateTemporaryEntryPoints +00007FA1291EA6C0 a8 stub<2861> AllocateTemporaryEntryPoints +00007FA1291EA768 18 stub<2862> AllocateTemporaryEntryPoints +00007FA1291EA780 60 stub<2863> AllocateTemporaryEntryPoints +00007FA1291EA7E0 30 stub<2864> AllocateTemporaryEntryPoints +00007FA1291EA810 30 stub<2865> AllocateTemporaryEntryPoints +00007FA1284BAB40 86 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultSerializationBinder::.ctor()[QuickJitted] +00007FA1291EA840 6f0 stub<2866> AllocateTemporaryEntryPoints +00007FA1291EAF30 c0 stub<2867> AllocateTemporaryEntryPoints +00007FA1291EC000 90 stub<2868> AllocateTemporaryEntryPoints +00007FA1291EC090 a8 stub<2869> AllocateTemporaryEntryPoints +00007FA1291EC138 18 stub<2870> AllocateTemporaryEntryPoints +00007FA1291EC150 78 stub<2871> AllocateTemporaryEntryPoints +00007FA1291EC1C8 18 stub<2872> AllocateTemporaryEntryPoints +00007FA1291EC1E0 6f0 stub<2873> AllocateTemporaryEntryPoints +00007FA1291EC8D0 c0 stub<2874> AllocateTemporaryEntryPoints +00007FA1291EC990 90 stub<2875> AllocateTemporaryEntryPoints +00007FA1291ECA20 a8 stub<2876> AllocateTemporaryEntryPoints +00007FA1291ECAC8 18 stub<2877> AllocateTemporaryEntryPoints +00007FA1291ECAE0 78 stub<2878> AllocateTemporaryEntryPoints +00007FA1291ECB58 18 stub<2879> AllocateTemporaryEntryPoints +00007FA1291EE000 6f0 stub<2880> AllocateTemporaryEntryPoints +00007FA1291EE6F0 c0 stub<2881> AllocateTemporaryEntryPoints +00007FA1291EE7B0 90 stub<2882> AllocateTemporaryEntryPoints +00007FA1291EE840 a8 stub<2883> AllocateTemporaryEntryPoints +00007FA1291EE8E8 18 stub<2884> AllocateTemporaryEntryPoints +00007FA1291EE900 78 stub<2885> AllocateTemporaryEntryPoints +00007FA1291EE978 18 stub<2886> AllocateTemporaryEntryPoints +00007FA1284BABE0 c6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ThreadSafeStore`2[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::.ctor(class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1284BACC0 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::.ctor()[QuickJitted] +00007FA1284BAD60 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA1291EE990 30 stub<2887> AllocateTemporaryEntryPoints +00007FA1291EE9C0 18 stub<2888> AllocateTemporaryEntryPoints +00007FA1291EE9D8 18 stub<2889> AllocateTemporaryEntryPoints +00007FA1291EE9F0 18 stub<2890> AllocateTemporaryEntryPoints +00007FA1291EEA08 48 stub<2891> AllocateTemporaryEntryPoints +00007FA1291EEA50 48 stub<2892> AllocateTemporaryEntryPoints +00007FA1291EEA98 48 stub<2893> AllocateTemporaryEntryPoints +00007FA1291EEAE0 d8 stub<2894> AllocateTemporaryEntryPoints +00007FA1291EEBB8 d8 stub<2895> AllocateTemporaryEntryPoints +00007FA1291EEC90 30 stub<2896> AllocateTemporaryEntryPoints +00007FA129340000 420 stub<2897> AllocateTemporaryEntryPoints +00007FA1284BAD90 3da instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA129340420 30 stub<2898> AllocateTemporaryEntryPoints +00007FA1284BB190 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA1284BB220 24 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon]]::get_Default()[QuickJitted] +00007FA1284BB260 7e void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon]]::.cctor()[QuickJitted] +00007FA129340450 a8 stub<2899> AllocateTemporaryEntryPoints +00007FA1284BB300 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA1284BB340 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA1284BB380 27 class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IContractResolver [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_Instance()[QuickJitted] +00007FA1293404F8 90 stub<2900> AllocateTemporaryEntryPoints +00007FA129340588 90 stub<2901> AllocateTemporaryEntryPoints +00007FA129340618 c0 stub<2902> AllocateTemporaryEntryPoints +00007FA1293406D8 3a8 stub<2903> AllocateTemporaryEntryPoints +00007FA129340A80 a8 stub<2904> AllocateTemporaryEntryPoints +00007FA129340B28 60 stub<2905> AllocateTemporaryEntryPoints +00007FA129340B88 90 stub<2906> AllocateTemporaryEntryPoints +00007FA129340C18 a8 stub<2907> AllocateTemporaryEntryPoints +00007FA129340CC0 90 stub<2908> AllocateTemporaryEntryPoints +00007FA129340D50 60 stub<2909> AllocateTemporaryEntryPoints +00007FA129340DB0 f0 stub<2910> AllocateTemporaryEntryPoints +00007FA1284BB3C0 2e4 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::.cctor()[QuickJitted] +00007FA129340EA0 30 stub<2911> AllocateTemporaryEntryPoints +00007FA129340ED0 a8 stub<2912> AllocateTemporaryEntryPoints +00007FA129342000 270 stub<2913> AllocateTemporaryEntryPoints +00007FA129342270 30 stub<2914> AllocateTemporaryEntryPoints +00007FA1284BB6C0 f3 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::.ctor()[QuickJitted] +00007FA1293422A0 18 stub<2915> AllocateTemporaryEntryPoints +00007FA1284BB7D0 69 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::.ctor()[QuickJitted] +00007FA1284BB850 11 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::.cctor()[QuickJitted] +00007FA1284BB880 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonNameTable::.ctor()[QuickJitted] +00007FA1284BB8C0 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::set_IgnoreSerializableAttribute(bool)[QuickJitted] +00007FA1284BB900 21 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::set_DefaultMembersSearchFlags(valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA1293422D0 6f0 stub<2916> AllocateTemporaryEntryPoints +00007FA1284BB940 c6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ThreadSafeStore`2[System.__Canon,System.__Canon]::.ctor(class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1293429C0 18 stub<2917> AllocateTemporaryEntryPoints +00007FA1293429D8 48 stub<2918> AllocateTemporaryEntryPoints +00007FA1284BBA20 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.EntityKeyMemberConverter::.ctor()[QuickJitted] +00007FA1284BBA60 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter::.ctor()[QuickJitted] +00007FA1284BBAA0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.ExpandoObjectConverter::.ctor()[QuickJitted] +00007FA1284BBAE0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.XmlNodeConverter::.ctor()[QuickJitted] +00007FA1284BBB20 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.BinaryConverter::.ctor()[QuickJitted] +00007FA1284BBB60 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.DataSetConverter::.ctor()[QuickJitted] +00007FA1284BBBA0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.DataTableConverter::.ctor()[QuickJitted] +00007FA1284BBBE0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.DiscriminatedUnionConverter::.ctor()[QuickJitted] +00007FA1284BBC20 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.KeyValuePairConverter::.ctor()[QuickJitted] +00007FA1284BBC60 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.BsonObjectIdConverter::.ctor()[QuickJitted] +00007FA1284BBCA0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.RegexConverter::.ctor()[QuickJitted] +00007FA1284BBCE0 2d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::IsCheckAdditionalContentSet()[QuickJitted] +00007FA1284BBD30 3d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::set_CheckAdditionalContent(bool)[QuickJitted] +00007FA1284BBD90 e5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::.ctor(class [System.Runtime]System.IO.TextReader)[QuickJitted] +00007FA1284BBE90 77 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::.ctor()[QuickJitted] +00007FA1284BBF20 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::set_CloseInput(bool)[QuickJitted] +00007FA1284BBF60 3a instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Deserialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type)[QuickJitted] +00007FA129342A20 228 stub<2919> AllocateTemporaryEntryPoints +00007FA129342C48 30 stub<2920> AllocateTemporaryEntryPoints +00007FA129342C78 90 stub<2921> AllocateTemporaryEntryPoints +00007FA129344000 480 stub<2922> AllocateTemporaryEntryPoints +00007FA1277BF180 18 stub<2923> GenerateLookupStub +00007FA1277BF1A0 18 stub<2924> GenerateLookupStub +00007FA1284BBFB0 209 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::DeserializeInternal(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type)[QuickJitted] +00007FA1284BC1E0 53a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::SetupReader(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Globalization.CultureInfo&,valuetype [System.Runtime]System.Nullable`1&,valuetype [System.Runtime]System.Nullable`1&,valuetype [System.Runtime]System.Nullable`1&,valuetype [System.Runtime]System.Nullable`1&,string&)[QuickJitted] +00007FA1284BC740 47 instance class [System.Runtime]System.Globalization.CultureInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_Culture()[QuickJitted] +00007FA1284BC7A0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling]::get_HasValue()[QuickJitted] +00007FA1284BC7D0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DateParseHandling]::get_HasValue()[QuickJitted] +00007FA1284BC800 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.FloatParseHandling]::get_HasValue()[QuickJitted] +00007FA1284BC830 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonNameTable [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::get_PropertyNameTable()[QuickJitted] +00007FA1284BC870 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetNameTable()[QuickJitted] +00007FA1284BC8A0 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::set_PropertyNameTable(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonNameTable)[QuickJitted] +00007FA1284BC8F0 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ITraceWriter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::get_TraceWriter()[QuickJitted] +00007FA1284BC920 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::.ctor(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[QuickJitted] +00007FA1284BC960 6d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::.ctor(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[QuickJitted] +00007FA1284BC9F0 2d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::get_CheckAdditionalContent()[QuickJitted] +00007FA129344480 78 stub<2925> AllocateTemporaryEntryPoints +00007FA1293444F8 108 stub<2926> AllocateTemporaryEntryPoints +00007FA129344600 210 stub<2927> AllocateTemporaryEntryPoints +00007FA1284BCA40 38e instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::Deserialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,bool)[QuickJitted] +00007FA1284BCE00 3f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetContractSafe(class [System.Runtime]System.Type)[QuickJitted] +00007FA129344810 120 stub<2928> AllocateTemporaryEntryPoints +00007FA129344930 138 stub<2929> AllocateTemporaryEntryPoints +00007FA129346000 618 stub<2930> AllocateTemporaryEntryPoints +00007FA1284BCE60 15d instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetConverter(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA1284BCFE0 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_TokenType()[QuickJitted] +00007FA129346618 138 stub<2931> AllocateTemporaryEntryPoints +00007FA129346750 138 stub<2932> AllocateTemporaryEntryPoints +00007FA129346888 108 stub<2933> AllocateTemporaryEntryPoints +00007FA1284BD010 3a3 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::ReadForType(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,bool)[QuickJitted] +00007FA1284BD400 3d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::ReadAndMoveToContent()[QuickJitted] +00007FA1284BD460 27d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::Read()[QuickJitted] +00007FA129346990 30 stub<2934> AllocateTemporaryEntryPoints +00007FA1293469C0 30 stub<2935> AllocateTemporaryEntryPoints +00007FA1293469F0 48 stub<2936> AllocateTemporaryEntryPoints +00007FA1284BD730 63 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::EnsureBuffer()[QuickJitted] +00007FA1277BF1C0 18 stub<2937> GenerateLookupStub +00007FA1284BD7B0 4f char[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BufferUtils::RentBuffer(class Datadog.Trace.Vendors.Newtonsoft.Json.IArrayPool`1,int32)[QuickJitted] +00007FA1284BD820 464 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseValue()[QuickJitted] +00007FA1284BDCE0 2b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadData(bool)[QuickJitted] +00007FA1284BDD20 e9 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadData(bool,int32)[QuickJitted] +00007FA129348000 7f8 stub<2938> AllocateTemporaryEntryPoints +00007FA1293487F8 3a8 stub<2939> AllocateTemporaryEntryPoints +00007FA1284BDE20 1fa instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::PrepareBufferForReadData(bool,int32)[QuickJitted] +00007FA1284BE030 2c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284BE070 138 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken,object,bool)[QuickJitted] +00007FA12934A000 6f0 stub<2940> AllocateTemporaryEntryPoints +00007FA12934A6F0 78 stub<2941> AllocateTemporaryEntryPoints +00007FA12934A768 a8 stub<2942> AllocateTemporaryEntryPoints +00007FA12934A810 18 stub<2943> AllocateTemporaryEntryPoints +00007FA12934A828 18 stub<2944> AllocateTemporaryEntryPoints +00007FA12934A840 18 stub<2945> AllocateTemporaryEntryPoints +00007FA1284BE200 209 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Push(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1284BE430 42 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::UpdateScopeWithFinishedValue()[QuickJitted] +00007FA1284BE490 45 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition::.ctor(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1284BE4F0 2d bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition::TypeHasIndex(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1284BE540 95 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::MoveToContent()[QuickJitted] +00007FA12934A858 5e8 stub<2946> AllocateTemporaryEntryPoints +00007FA12934AE40 90 stub<2947> AllocateTemporaryEntryPoints +00007FA1284BE5F0 543 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateValueInternal(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[QuickJitted] +00007FA12934C000 168 stub<2948> AllocateTemporaryEntryPoints +00007FA12934C168 c0 stub<2949> AllocateTemporaryEntryPoints +00007FA12934C228 48 stub<2950> AllocateTemporaryEntryPoints +00007FA12934C270 258 stub<2951> AllocateTemporaryEntryPoints +00007FA12934C4C8 60 stub<2952> AllocateTemporaryEntryPoints +00007FA12934C528 180 stub<2953> AllocateTemporaryEntryPoints +00007FA12934C6A8 18 stub<2954> AllocateTemporaryEntryPoints +00007FA1277BF1E0 18 stub<2955> GenerateLookupStub +00007FA12934C6C0 60 stub<2956> AllocateTemporaryEntryPoints +00007FA12934C720 60 stub<2957> AllocateTemporaryEntryPoints +00007FA12934C780 60 stub<2958> AllocateTemporaryEntryPoints +00007FA1277BF200 18 stub<2959> GenerateLookupStub +00007FA12934C7E0 60 stub<2960> AllocateTemporaryEntryPoints +00007FA1277BF220 18 stub<2961> GenerateLookupStub +00007FA1284BEBA0 c57 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateObject(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[QuickJitted] +00007FA1284BF840 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.MetadataPropertyHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling()[QuickJitted] +00007FA1284BF870 5f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::ReadAndAssert()[QuickJitted] +00007FA1284BF8F0 192 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseObject()[QuickJitted] +00007FA1284BFAB0 33 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ProcessLineFeed()[QuickJitted] +00007FA1284BFB00 2e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::OnNewLine(int32)[QuickJitted] +00007FA1284BFB50 332 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseProperty()[QuickJitted] +00007FA1284BFEA0 ff instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ShiftBufferIfNeeded()[QuickJitted] +00007FA1284BFFD0 6e5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadStringIntoBuffer(char)[QuickJitted] +00007FA1284C06E0 21 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringBuffer::set_Position(int32)[QuickJitted] +00007FA1284C0720 124 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::FinishReadStringIntoBuffer(int32,int32,int32)[QuickJitted] +00007FA1284C0860 3f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::.ctor(char[],int32,int32)[QuickJitted] +00007FA1284C08C0 1b instance char[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::get_Chars()[QuickJitted] +00007FA1284C08F0 1b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::get_StartIndex()[QuickJitted] +00007FA1284C0920 1b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::get_Length()[QuickJitted] +00007FA1284C0950 1c4 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::Get(char[],int32,int32)[QuickJitted] +00007FA1284C0B30 2f instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::ToString()[QuickJitted] +00007FA1284C0B80 f8 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::EatWhitespace()[QuickJitted] +00007FA1284C0C90 32 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken,object)[QuickJitted] +00007FA1284C0CE0 42 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ClearRecentString()[QuickJitted] +00007FA12934C840 60 stub<2962> AllocateTemporaryEntryPoints +00007FA1277BF240 18 stub<2963> GenerateLookupStub +00007FA1284C0D40 6df instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadMetadataProperties(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object,object&,string&)[QuickJitted] +00007FA1284C1440 1c instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_Value()[QuickJitted] +00007FA1284C1470 cf instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasNoDefinedType(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[QuickJitted] +00007FA12934E000 9f0 stub<2964> AllocateTemporaryEntryPoints +00007FA1293D0000 8b8 stub<2965> AllocateTemporaryEntryPoints +00007FA1293D08B8 3f0 stub<2966> AllocateTemporaryEntryPoints +00007FA1284C1560 22f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJObject(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[QuickJitted] +00007FA1284C17C0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::.ctor()[QuickJitted] +00007FA1284C1800 6e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::.ctor()[QuickJitted] +00007FA1293D0CA8 60 stub<2967> AllocateTemporaryEntryPoints +00007FA1293D0D08 78 stub<2968> AllocateTemporaryEntryPoints +00007FA1293D0D80 18 stub<2969> AllocateTemporaryEntryPoints +00007FA1284C1890 2e9 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::.cctor()[QuickJitted] +00007FA1293D0D98 30 stub<2970> AllocateTemporaryEntryPoints +00007FA1293D0DC8 18 stub<2971> AllocateTemporaryEntryPoints +00007FA1293D0DE0 18 stub<2972> AllocateTemporaryEntryPoints +00007FA1293D0DF8 108 stub<2973> AllocateTemporaryEntryPoints +00007FA1293D0F00 18 stub<2974> AllocateTemporaryEntryPoints +00007FA1284C1BA0 1a2 valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter/State[][] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::BuildStateArray()[QuickJitted] +00007FA1277BF260 18 stub<2975> GenerateLookupStub +00007FA1293D0F18 18 stub<2976> AllocateTemporaryEntryPoints +00007FA1293D0F30 18 stub<2977> AllocateTemporaryEntryPoints +00007FA1277BF280 18 stub<2978> GenerateLookupStub +00007FA1293D0F48 18 stub<2979> AllocateTemporaryEntryPoints +00007FA1293D0F60 18 stub<2980> AllocateTemporaryEntryPoints +00007FA1293D2000 150 stub<2981> AllocateTemporaryEntryPoints +00007FA1284C2170 78 class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.EnumInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.EnumUtils::GetEnumValuesAndNames(class [System.Runtime]System.Type)[QuickJitted] +00007FA1293D2150 60 stub<2982> AllocateTemporaryEntryPoints +00007FA1284C2200 b8 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.EnumUtils::.cctor()[QuickJitted] +00007FA1284C22D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.CamelCaseNamingStrategy::.ctor()[QuickJitted] +00007FA1284C2310 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.NamingStrategy::.ctor()[QuickJitted] +00007FA1284C2350 3f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon]::.ctor(!0,!1)[QuickJitted] +00007FA1284C23B0 3d instance !1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ThreadSafeStore`2[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::Get(!0)[QuickJitted] +00007FA1293D21B0 18 stub<2983> AllocateTemporaryEntryPoints +00007FA1293D21C8 60 stub<2984> AllocateTemporaryEntryPoints +00007FA1293D2228 78 stub<2985> AllocateTemporaryEntryPoints +00007FA1284C2410 239 instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::GetOrAdd(!0,class [System.Private.CoreLib]System.Func`2)[QuickJitted] +00007FA1293D22A0 18 stub<2986> AllocateTemporaryEntryPoints +00007FA1284C2670 cc instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon]::GetHashCode()[QuickJitted] +00007FA1293D22B8 18 stub<2987> AllocateTemporaryEntryPoints +00007FA1293D22D0 18 stub<2988> AllocateTemporaryEntryPoints +00007FA1293D22E8 18 stub<2989> AllocateTemporaryEntryPoints +00007FA1284C2760 556 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::TryGetValueInternal(!0,int32,!1&)[QuickJitted] +00007FA1284C2CE0 126 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::GetBucket(int32)[QuickJitted] +00007FA1293D2300 18 stub<2990> AllocateTemporaryEntryPoints +00007FA1284C2E20 2b8 class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.EnumInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.EnumUtils::InitializeValuesAndNames(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2)[QuickJitted] +00007FA12784B280 11 stub<2991> GenerateVTableCallStub +00007FA1293D2318 18 stub<2992> AllocateTemporaryEntryPoints +00007FA1293D2348 1f8 stub<2993> AllocateTemporaryEntryPoints +00007FA1284C3100 214 uint64 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.EnumUtils::ToUInt64(object)[QuickJitted] +00007FA1293D2540 5e8 stub<2994> AllocateTemporaryEntryPoints +00007FA1293D2B28 c0 stub<2995> AllocateTemporaryEntryPoints +00007FA1293D2BE8 90 stub<2996> AllocateTemporaryEntryPoints +00007FA1293D2C78 a8 stub<2997> AllocateTemporaryEntryPoints +00007FA1293D2D20 18 stub<2998> AllocateTemporaryEntryPoints +00007FA1293D2D38 78 stub<2999> AllocateTemporaryEntryPoints +00007FA1293D2DB0 18 stub<3000> AllocateTemporaryEntryPoints +00007FA1293D2DC8 1b0 stub<3001> AllocateTemporaryEntryPoints +00007FA1293D4000 450 stub<3002> AllocateTemporaryEntryPoints +00007FA1284C3380 176 valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(class [System.Runtime]System.Type,bool&)[QuickJitted] +00007FA1293D4450 138 stub<3003> AllocateTemporaryEntryPoints +00007FA1293D4588 138 stub<3004> AllocateTemporaryEntryPoints +00007FA1293D46C0 138 stub<3005> AllocateTemporaryEntryPoints +00007FA1293D47F8 138 stub<3006> AllocateTemporaryEntryPoints +00007FA1293D4930 138 stub<3007> AllocateTemporaryEntryPoints +00007FA1293D4A68 138 stub<3008> AllocateTemporaryEntryPoints +00007FA1293D4BA0 138 stub<3009> AllocateTemporaryEntryPoints +00007FA1293D4CD8 138 stub<3010> AllocateTemporaryEntryPoints +00007FA1293D4E10 138 stub<3011> AllocateTemporaryEntryPoints +00007FA1293D6000 138 stub<3012> AllocateTemporaryEntryPoints +00007FA1293D6138 138 stub<3013> AllocateTemporaryEntryPoints +00007FA1293D6270 780 stub<3014> AllocateTemporaryEntryPoints +00007FA1293D8000 6c0 stub<3015> AllocateTemporaryEntryPoints +00007FA1293D86C0 528 stub<3016> AllocateTemporaryEntryPoints +00007FA1293D8BE8 240 stub<3017> AllocateTemporaryEntryPoints +00007FA1293D8E28 18 stub<3018> AllocateTemporaryEntryPoints +00007FA1293D8E40 18 stub<3019> AllocateTemporaryEntryPoints +00007FA1293DA000 240 stub<3020> AllocateTemporaryEntryPoints +00007FA1293DA240 48 stub<3021> AllocateTemporaryEntryPoints +00007FA1293DA288 60 stub<3022> AllocateTemporaryEntryPoints +00007FA1293DA2E8 a8 stub<3023> AllocateTemporaryEntryPoints +00007FA1293DA390 60 stub<3024> AllocateTemporaryEntryPoints +00007FA1293DA3F0 30 stub<3025> AllocateTemporaryEntryPoints +00007FA1293DA420 18 stub<3026> AllocateTemporaryEntryPoints +00007FA1293DA438 390 stub<3027> AllocateTemporaryEntryPoints +00007FA1293DA7C8 30 stub<3028> AllocateTemporaryEntryPoints +00007FA1293DA7F8 18 stub<3029> AllocateTemporaryEntryPoints +00007FA1293DA810 30 stub<3030> AllocateTemporaryEntryPoints +00007FA1293DA840 30 stub<3031> AllocateTemporaryEntryPoints +00007FA1293DA870 30 stub<3032> AllocateTemporaryEntryPoints +00007FA1293DA8A0 18 stub<3033> AllocateTemporaryEntryPoints +00007FA1293DA8B8 30 stub<3034> AllocateTemporaryEntryPoints +00007FA1293DA8E8 30 stub<3035> AllocateTemporaryEntryPoints +00007FA1293DA918 30 stub<3036> AllocateTemporaryEntryPoints +00007FA1293DA948 30 stub<3037> AllocateTemporaryEntryPoints +00007FA1293DA978 18 stub<3038> AllocateTemporaryEntryPoints +00007FA1293DA990 30 stub<3039> AllocateTemporaryEntryPoints +00007FA1293DA9C0 48 stub<3040> AllocateTemporaryEntryPoints +00007FA1293DAA08 18 stub<3041> AllocateTemporaryEntryPoints +00007FA1293DAA20 390 stub<3042> AllocateTemporaryEntryPoints +00007FA1293DADB0 30 stub<3043> AllocateTemporaryEntryPoints +00007FA1293DADE0 18 stub<3044> AllocateTemporaryEntryPoints +00007FA1293DADF8 30 stub<3045> AllocateTemporaryEntryPoints +00007FA1293DAE28 30 stub<3046> AllocateTemporaryEntryPoints +00007FA1293DAE58 18 stub<3047> AllocateTemporaryEntryPoints +00007FA1293DAE70 30 stub<3048> AllocateTemporaryEntryPoints +00007FA1293DAEA0 30 stub<3049> AllocateTemporaryEntryPoints +00007FA1293DAED0 18 stub<3050> AllocateTemporaryEntryPoints +00007FA1293DAEE8 30 stub<3051> AllocateTemporaryEntryPoints +00007FA1293DAF18 30 stub<3052> AllocateTemporaryEntryPoints +00007FA1293DAF48 30 stub<3053> AllocateTemporaryEntryPoints +00007FA1293DAF78 30 stub<3054> AllocateTemporaryEntryPoints +00007FA1293DAFA8 18 stub<3055> AllocateTemporaryEntryPoints +00007FA1293DAFC0 30 stub<3056> AllocateTemporaryEntryPoints +00007FA1293DC000 390 stub<3057> AllocateTemporaryEntryPoints +00007FA1293DC390 30 stub<3058> AllocateTemporaryEntryPoints +00007FA1293DC3C0 18 stub<3059> AllocateTemporaryEntryPoints +00007FA1293DC3D8 30 stub<3060> AllocateTemporaryEntryPoints +00007FA1293DC408 30 stub<3061> AllocateTemporaryEntryPoints +00007FA1293DC438 18 stub<3062> AllocateTemporaryEntryPoints +00007FA1293DC450 30 stub<3063> AllocateTemporaryEntryPoints +00007FA1293DC480 30 stub<3064> AllocateTemporaryEntryPoints +00007FA1293DC4B0 18 stub<3065> AllocateTemporaryEntryPoints +00007FA1293DC4C8 30 stub<3066> AllocateTemporaryEntryPoints +00007FA1293DC4F8 30 stub<3067> AllocateTemporaryEntryPoints +00007FA1293DC528 30 stub<3068> AllocateTemporaryEntryPoints +00007FA1293DC558 30 stub<3069> AllocateTemporaryEntryPoints +00007FA1293DC588 18 stub<3070> AllocateTemporaryEntryPoints +00007FA1293DC5A0 30 stub<3071> AllocateTemporaryEntryPoints +00007FA1293DC5D0 390 stub<3072> AllocateTemporaryEntryPoints +00007FA1293DC960 30 stub<3073> AllocateTemporaryEntryPoints +00007FA1293DC990 18 stub<3074> AllocateTemporaryEntryPoints +00007FA1293DC9A8 30 stub<3075> AllocateTemporaryEntryPoints +00007FA1293DC9D8 30 stub<3076> AllocateTemporaryEntryPoints +00007FA1293DCA08 18 stub<3077> AllocateTemporaryEntryPoints +00007FA1293DCA20 30 stub<3078> AllocateTemporaryEntryPoints +00007FA1293DCA50 30 stub<3079> AllocateTemporaryEntryPoints +00007FA1293DCA80 18 stub<3080> AllocateTemporaryEntryPoints +00007FA1293DCA98 30 stub<3081> AllocateTemporaryEntryPoints +00007FA1293DCAC8 30 stub<3082> AllocateTemporaryEntryPoints +00007FA1293DCAF8 30 stub<3083> AllocateTemporaryEntryPoints +00007FA1293DCB28 30 stub<3084> AllocateTemporaryEntryPoints +00007FA1293DCB58 18 stub<3085> AllocateTemporaryEntryPoints +00007FA1293DCB70 30 stub<3086> AllocateTemporaryEntryPoints +00007FA1293DCBA0 390 stub<3087> AllocateTemporaryEntryPoints +00007FA1293DCF30 30 stub<3088> AllocateTemporaryEntryPoints +00007FA1293DCF60 18 stub<3089> AllocateTemporaryEntryPoints +00007FA1293DCF78 30 stub<3090> AllocateTemporaryEntryPoints +00007FA1293DCFA8 30 stub<3091> AllocateTemporaryEntryPoints +00007FA1293DCFD8 18 stub<3092> AllocateTemporaryEntryPoints +00007FA1293DE000 30 stub<3093> AllocateTemporaryEntryPoints +00007FA1293DE030 30 stub<3094> AllocateTemporaryEntryPoints +00007FA1293DE060 18 stub<3095> AllocateTemporaryEntryPoints +00007FA1293DE078 30 stub<3096> AllocateTemporaryEntryPoints +00007FA1293DE0A8 30 stub<3097> AllocateTemporaryEntryPoints +00007FA1293DE0D8 30 stub<3098> AllocateTemporaryEntryPoints +00007FA1293DE108 30 stub<3099> AllocateTemporaryEntryPoints +00007FA1293DE138 18 stub<3100> AllocateTemporaryEntryPoints +00007FA1293DE150 30 stub<3101> AllocateTemporaryEntryPoints +00007FA1293DE180 390 stub<3102> AllocateTemporaryEntryPoints +00007FA1293DE510 30 stub<3103> AllocateTemporaryEntryPoints +00007FA1293DE540 18 stub<3104> AllocateTemporaryEntryPoints +00007FA1293DE558 30 stub<3105> AllocateTemporaryEntryPoints +00007FA1293DE588 30 stub<3106> AllocateTemporaryEntryPoints +00007FA1293DE5B8 18 stub<3107> AllocateTemporaryEntryPoints +00007FA1293DE5D0 30 stub<3108> AllocateTemporaryEntryPoints +00007FA1293DE600 30 stub<3109> AllocateTemporaryEntryPoints +00007FA1293DE630 18 stub<3110> AllocateTemporaryEntryPoints +00007FA1293DE648 30 stub<3111> AllocateTemporaryEntryPoints +00007FA1293DE678 30 stub<3112> AllocateTemporaryEntryPoints +00007FA1293DE6A8 30 stub<3113> AllocateTemporaryEntryPoints +00007FA1293DE6D8 30 stub<3114> AllocateTemporaryEntryPoints +00007FA1293DE708 18 stub<3115> AllocateTemporaryEntryPoints +00007FA1293DE720 30 stub<3116> AllocateTemporaryEntryPoints +00007FA1293DE750 390 stub<3117> AllocateTemporaryEntryPoints +00007FA1293DEAE0 30 stub<3118> AllocateTemporaryEntryPoints +00007FA1293DEB10 18 stub<3119> AllocateTemporaryEntryPoints +00007FA1293DEB28 30 stub<3120> AllocateTemporaryEntryPoints +00007FA1293DEB58 30 stub<3121> AllocateTemporaryEntryPoints +00007FA1293DEB88 18 stub<3122> AllocateTemporaryEntryPoints +00007FA1293DEBA0 30 stub<3123> AllocateTemporaryEntryPoints +00007FA1293DEBD0 30 stub<3124> AllocateTemporaryEntryPoints +00007FA1293DEC00 18 stub<3125> AllocateTemporaryEntryPoints +00007FA1293DEC18 30 stub<3126> AllocateTemporaryEntryPoints +00007FA1293DEC48 30 stub<3127> AllocateTemporaryEntryPoints +00007FA1293DEC78 30 stub<3128> AllocateTemporaryEntryPoints +00007FA1293DECA8 30 stub<3129> AllocateTemporaryEntryPoints +00007FA1293DECD8 18 stub<3130> AllocateTemporaryEntryPoints +00007FA1293DECF0 30 stub<3131> AllocateTemporaryEntryPoints +00007FA1294B0000 390 stub<3132> AllocateTemporaryEntryPoints +00007FA1294B0390 30 stub<3133> AllocateTemporaryEntryPoints +00007FA1294B03C0 18 stub<3134> AllocateTemporaryEntryPoints +00007FA1294B03D8 30 stub<3135> AllocateTemporaryEntryPoints +00007FA1294B0408 30 stub<3136> AllocateTemporaryEntryPoints +00007FA1294B0438 18 stub<3137> AllocateTemporaryEntryPoints +00007FA1294B0450 30 stub<3138> AllocateTemporaryEntryPoints +00007FA1294B0480 30 stub<3139> AllocateTemporaryEntryPoints +00007FA1294B04B0 18 stub<3140> AllocateTemporaryEntryPoints +00007FA1294B04C8 30 stub<3141> AllocateTemporaryEntryPoints +00007FA1294B04F8 30 stub<3142> AllocateTemporaryEntryPoints +00007FA1294B0528 30 stub<3143> AllocateTemporaryEntryPoints +00007FA1294B0558 30 stub<3144> AllocateTemporaryEntryPoints +00007FA1294B0588 18 stub<3145> AllocateTemporaryEntryPoints +00007FA1294B05A0 30 stub<3146> AllocateTemporaryEntryPoints +00007FA1294B05D0 390 stub<3147> AllocateTemporaryEntryPoints +00007FA1294B0960 30 stub<3148> AllocateTemporaryEntryPoints +00007FA1294B0990 18 stub<3149> AllocateTemporaryEntryPoints +00007FA1294B09A8 30 stub<3150> AllocateTemporaryEntryPoints +00007FA1294B09D8 30 stub<3151> AllocateTemporaryEntryPoints +00007FA1294B0A08 18 stub<3152> AllocateTemporaryEntryPoints +00007FA1294B0A20 30 stub<3153> AllocateTemporaryEntryPoints +00007FA1294B0A50 30 stub<3154> AllocateTemporaryEntryPoints +00007FA1294B0A80 18 stub<3155> AllocateTemporaryEntryPoints +00007FA1294B0A98 30 stub<3156> AllocateTemporaryEntryPoints +00007FA1294B0AC8 30 stub<3157> AllocateTemporaryEntryPoints +00007FA1294B0AF8 30 stub<3158> AllocateTemporaryEntryPoints +00007FA1294B0B28 30 stub<3159> AllocateTemporaryEntryPoints +00007FA1294B0B58 18 stub<3160> AllocateTemporaryEntryPoints +00007FA1294B0B70 30 stub<3161> AllocateTemporaryEntryPoints +00007FA1294B0BA0 390 stub<3162> AllocateTemporaryEntryPoints +00007FA1294B0F30 30 stub<3163> AllocateTemporaryEntryPoints +00007FA1294B0F60 18 stub<3164> AllocateTemporaryEntryPoints +00007FA1294B0F78 30 stub<3165> AllocateTemporaryEntryPoints +00007FA1294B0FA8 30 stub<3166> AllocateTemporaryEntryPoints +00007FA1294B0FD8 18 stub<3167> AllocateTemporaryEntryPoints +00007FA1294B2000 30 stub<3168> AllocateTemporaryEntryPoints +00007FA1294B2030 30 stub<3169> AllocateTemporaryEntryPoints +00007FA1294B2060 18 stub<3170> AllocateTemporaryEntryPoints +00007FA1294B2078 30 stub<3171> AllocateTemporaryEntryPoints +00007FA1294B20A8 30 stub<3172> AllocateTemporaryEntryPoints +00007FA1294B20D8 30 stub<3173> AllocateTemporaryEntryPoints +00007FA1294B2108 30 stub<3174> AllocateTemporaryEntryPoints +00007FA1294B2138 18 stub<3175> AllocateTemporaryEntryPoints +00007FA1294B2150 30 stub<3176> AllocateTemporaryEntryPoints +00007FA1294B2180 390 stub<3177> AllocateTemporaryEntryPoints +00007FA1294B2510 30 stub<3178> AllocateTemporaryEntryPoints +00007FA1294B2540 18 stub<3179> AllocateTemporaryEntryPoints +00007FA1294B2558 30 stub<3180> AllocateTemporaryEntryPoints +00007FA1294B2588 30 stub<3181> AllocateTemporaryEntryPoints +00007FA1294B25B8 18 stub<3182> AllocateTemporaryEntryPoints +00007FA1294B25D0 30 stub<3183> AllocateTemporaryEntryPoints +00007FA1294B2600 30 stub<3184> AllocateTemporaryEntryPoints +00007FA1294B2630 18 stub<3185> AllocateTemporaryEntryPoints +00007FA1294B2648 30 stub<3186> AllocateTemporaryEntryPoints +00007FA1294B2678 30 stub<3187> AllocateTemporaryEntryPoints +00007FA1294B26A8 30 stub<3188> AllocateTemporaryEntryPoints +00007FA1294B26D8 30 stub<3189> AllocateTemporaryEntryPoints +00007FA1294B2708 18 stub<3190> AllocateTemporaryEntryPoints +00007FA1294B2720 30 stub<3191> AllocateTemporaryEntryPoints +00007FA1294B2750 390 stub<3192> AllocateTemporaryEntryPoints +00007FA1294B2AE0 30 stub<3193> AllocateTemporaryEntryPoints +00007FA1294B2B10 18 stub<3194> AllocateTemporaryEntryPoints +00007FA1294B2B28 30 stub<3195> AllocateTemporaryEntryPoints +00007FA1294B2B58 30 stub<3196> AllocateTemporaryEntryPoints +00007FA1294B2B88 18 stub<3197> AllocateTemporaryEntryPoints +00007FA1294B2BA0 30 stub<3198> AllocateTemporaryEntryPoints +00007FA1294B2BD0 30 stub<3199> AllocateTemporaryEntryPoints +00007FA1294B2C00 18 stub<3200> AllocateTemporaryEntryPoints +00007FA1294B2C18 30 stub<3201> AllocateTemporaryEntryPoints +00007FA1294B2C48 30 stub<3202> AllocateTemporaryEntryPoints +00007FA1294B2C78 30 stub<3203> AllocateTemporaryEntryPoints +00007FA1294B2CA8 30 stub<3204> AllocateTemporaryEntryPoints +00007FA1294B2CD8 18 stub<3205> AllocateTemporaryEntryPoints +00007FA1294B2CF0 30 stub<3206> AllocateTemporaryEntryPoints +00007FA1294B4000 390 stub<3207> AllocateTemporaryEntryPoints +00007FA1294B4390 30 stub<3208> AllocateTemporaryEntryPoints +00007FA1294B43C0 18 stub<3209> AllocateTemporaryEntryPoints +00007FA1294B43D8 30 stub<3210> AllocateTemporaryEntryPoints +00007FA1294B4408 30 stub<3211> AllocateTemporaryEntryPoints +00007FA1294B4438 18 stub<3212> AllocateTemporaryEntryPoints +00007FA1294B4450 30 stub<3213> AllocateTemporaryEntryPoints +00007FA1294B4480 30 stub<3214> AllocateTemporaryEntryPoints +00007FA1294B44B0 18 stub<3215> AllocateTemporaryEntryPoints +00007FA1294B44C8 30 stub<3216> AllocateTemporaryEntryPoints +00007FA1294B44F8 30 stub<3217> AllocateTemporaryEntryPoints +00007FA1294B4528 30 stub<3218> AllocateTemporaryEntryPoints +00007FA1294B4558 30 stub<3219> AllocateTemporaryEntryPoints +00007FA1294B4588 18 stub<3220> AllocateTemporaryEntryPoints +00007FA1294B45A0 30 stub<3221> AllocateTemporaryEntryPoints +00007FA1294B45D0 138 stub<3222> AllocateTemporaryEntryPoints +00007FA1294B4708 810 stub<3223> AllocateTemporaryEntryPoints +00007FA1294B6000 4c8 stub<3224> AllocateTemporaryEntryPoints +00007FA1294B64C8 48 stub<3225> AllocateTemporaryEntryPoints +00007FA1284C3510 137b void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ConvertUtils::.cctor()[QuickJitted] +00007FA1284C48B0 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::.ctor()[QuickJitted] +00007FA1294B6510 30 stub<3226> AllocateTemporaryEntryPoints +00007FA1294B6540 d8 stub<3227> AllocateTemporaryEntryPoints +00007FA1284C48F0 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA1284C4AD0 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::Add(!0,!1)[QuickJitted] +00007FA1294B6618 60 stub<3228> AllocateTemporaryEntryPoints +00007FA1294B6678 18 stub<3229> AllocateTemporaryEntryPoints +00007FA1294B6690 18 stub<3230> AllocateTemporaryEntryPoints +00007FA1294B66A8 18 stub<3231> AllocateTemporaryEntryPoints +00007FA1284C4B20 9a0 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA1284C54E0 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::Initialize(int32)[QuickJitted] +00007FA1294B66C0 60 stub<3232> AllocateTemporaryEntryPoints +00007FA1284C55E0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::GetBucket(uint32)[QuickJitted] +00007FA1284C5650 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::Resize()[QuickJitted] +00007FA1294B6720 48 stub<3233> AllocateTemporaryEntryPoints +00007FA1284C56A0 4c5 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::Resize(int32,bool)[QuickJitted] +00007FA1284C5B90 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeInformation::.ctor(class [System.Runtime]System.Type,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode)[QuickJitted] +00007FA1294B6768 18 stub<3234> AllocateTemporaryEntryPoints +00007FA1294B6780 18 stub<3235> AllocateTemporaryEntryPoints +00007FA1284C5BF0 5c instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::TryGetValue(!0,!1&)[QuickJitted] +00007FA1294B6798 18 stub<3236> AllocateTemporaryEntryPoints +00007FA1294B67B0 18 stub<3237> AllocateTemporaryEntryPoints +00007FA1294B67C8 18 stub<3238> AllocateTemporaryEntryPoints +00007FA1294B67E0 18 stub<3239> AllocateTemporaryEntryPoints +00007FA1294B67F8 18 stub<3240> AllocateTemporaryEntryPoints +00007FA1284C5C60 5bb instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode]::FindValue(!0)[QuickJitted] +00007FA1284C6240 27 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsEnum(class [System.Runtime]System.Type)[QuickJitted] +00007FA1284C6280 29 valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(class [System.Runtime]System.Type)[QuickJitted] +00007FA12784B2A0 e stub<3241> GenerateVTableCallStub +00007FA1284C62C0 6c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.EnumInfo::.ctor(bool,uint64[],string[],string[])[QuickJitted] +00007FA1294B6810 18 stub<3242> AllocateTemporaryEntryPoints +00007FA1294B6828 18 stub<3243> AllocateTemporaryEntryPoints +00007FA1294B6840 18 stub<3244> AllocateTemporaryEntryPoints +00007FA1284C6340 8e1 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA1284C6C60 db instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA1284C6D50 74 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StructMultiKey`2[System.__Canon,System.__Canon],System.__Canon]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA1294B6858 18 stub<3245> AllocateTemporaryEntryPoints +00007FA1284C6DE0 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::set_CloseOutput(bool)[QuickJitted] +00007FA1284C6E20 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::set_AutoCompleteOnClose(bool)[QuickJitted] +00007FA1284C6E60 50 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteStartObject()[QuickJitted] +00007FA1284C6ED0 29 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteStartObject()[QuickJitted] +00007FA1284C6F10 3f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::InternalWriteStart(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1284C6F70 42 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::UpdateScopeWithFinishedValue()[QuickJitted] +00007FA1294B6870 c0 stub<3246> AllocateTemporaryEntryPoints +00007FA1284C6FD0 20e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::AutoComplete(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284C7200 bd instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Push(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1294B6930 330 stub<3247> AllocateTemporaryEntryPoints +00007FA1294B6C60 330 stub<3248> AllocateTemporaryEntryPoints +00007FA1294B8000 1e0 stub<3249> AllocateTemporaryEntryPoints +00007FA1294B81E0 78 stub<3250> AllocateTemporaryEntryPoints +00007FA1294B8258 a8 stub<3251> AllocateTemporaryEntryPoints +00007FA1294B8300 18 stub<3252> AllocateTemporaryEntryPoints +00007FA1294B8318 18 stub<3253> AllocateTemporaryEntryPoints +00007FA1294B8330 18 stub<3254> AllocateTemporaryEntryPoints +00007FA1284C72E0 53 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::.ctor()[QuickJitted] +00007FA1284C7350 46 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::.ctor()[QuickJitted] +00007FA1284C73B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::.ctor()[QuickJitted] +00007FA1284C73F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::.ctor()[QuickJitted] +00007FA1284C7430 6d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::AddParent(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer)[QuickJitted] +00007FA1284C74C0 52 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseString(char,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[QuickJitted] +00007FA1294B8348 1b0 stub<3255> AllocateTemporaryEntryPoints +00007FA1294B84F8 18 stub<3256> AllocateTemporaryEntryPoints +00007FA1294B8510 318 stub<3257> AllocateTemporaryEntryPoints +00007FA1284C7530 39a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseReadString(char,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[QuickJitted] +00007FA1284C7920 60 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetPostValueState(bool)[QuickJitted] +00007FA1284C79A0 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Peek()[QuickJitted] +00007FA1284C79D0 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_DateTimeZoneHandling()[QuickJitted] +00007FA1284C7A00 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_DateFormatString()[QuickJitted] +00007FA1294B8828 48 stub<3258> AllocateTemporaryEntryPoints +00007FA1284C7A30 1b5 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTime(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling,string,class [System.Runtime]System.Globalization.CultureInfo,valuetype [System.Runtime]System.DateTime&)[QuickJitted] +00007FA1284C7C00 c7 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::.cctor()[QuickJitted] +00007FA1284C7CE0 36 instance char [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::get_Item(int32)[QuickJitted] +00007FA1284C7D30 1f bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringUtils::IsNullOrEmpty(string)[QuickJitted] +00007FA1284C7D70 ce instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CheckPropertyName(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,string)[QuickJitted] +00007FA1294B8870 2d0 stub<3259> AllocateTemporaryEntryPoints +00007FA1284C7E60 a1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WritePropertyName(string)[QuickJitted] +00007FA1284C7F20 55 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::Remove(string)[QuickJitted] +00007FA1284C7F90 12a instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::Property(string,valuetype [System.Runtime]System.StringComparison)[QuickJitted] +00007FA1284C80E0 51 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::TryGetValue(string,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken&)[QuickJitted] +00007FA1294B8B40 168 stub<3260> AllocateTemporaryEntryPoints +00007FA1284C8150 7f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::.ctor(string)[QuickJitted] +00007FA1284C81F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty+JPropertyList::.ctor()[QuickJitted] +00007FA1277BF2A0 18 stub<3261> GenerateLookupStub +00007FA1284C8230 65 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::AddAndSkipParentCheck(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1284C82B0 1c instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::get_ChildrenTokens()[QuickJitted] +00007FA1277F45B0 18 stub<3262> GenerateResolveStub +00007FA1277C3240 20 stub<3263> GenerateDispatchStub +00007FA1277BF2C0 18 stub<3264> GenerateLookupStub +00007FA1277BF2E0 18 stub<3265> GenerateLookupStub +00007FA1284C82E0 1a2 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::TryAddInternal(int32,object,bool,bool)[QuickJitted] +00007FA1284C84B0 88 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::IsMultiContent(object)[QuickJitted] +00007FA1284C8550 6c class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::CreateFromContent(object)[QuickJitted] +00007FA1284C85D0 68 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::InsertItem(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,bool,bool)[QuickJitted] +00007FA1284C8650 19 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::get_Type()[QuickJitted] +00007FA1277BF300 18 stub<3266> GenerateLookupStub +00007FA1294B8CA8 60 stub<3267> AllocateTemporaryEntryPoints +00007FA1294B8D08 60 stub<3268> AllocateTemporaryEntryPoints +00007FA1294B8D68 180 stub<3269> AllocateTemporaryEntryPoints +00007FA1294B8EE8 c0 stub<3270> AllocateTemporaryEntryPoints +00007FA1277BF320 18 stub<3271> GenerateLookupStub +00007FA1284C8680 280 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::InsertItem(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,bool,bool)[QuickJitted] +00007FA1277C3260 20 stub<3272> GenerateDispatchStub +00007FA1284C8920 a5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::CheckReentrancy()[QuickJitted] +00007FA1294BA000 60 stub<3273> AllocateTemporaryEntryPoints +00007FA1284C89E0 ee instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::EnsureParentToken(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,bool,bool)[QuickJitted] +00007FA1284C8AF0 268 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::ValidateToken(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1284C8D80 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::get_Name()[QuickJitted] +00007FA1284C8DB0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::set_Parent(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer)[QuickJitted] +00007FA1284C8DF0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::set_Previous(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1284C8E30 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::set_Next(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1277BF340 18 stub<3274> GenerateLookupStub +00007FA12784B2B0 e stub<3275> GenerateVTableCallStub +00007FA1284C8E70 57 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::InsertItem(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1284C8EE0 38 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::GetKeyForItem(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1284C8F30 3f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::AddKey(string,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1284C8F90 81 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::EnsureDictionary()[QuickJitted] +00007FA1284C9030 1f void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::.cctor()[QuickJitted] +00007FA1294BA060 60 stub<3276> AllocateTemporaryEntryPoints +00007FA1284C9070 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WritePropertyName(string)[QuickJitted] +00007FA1284C90B0 39 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::InternalWritePropertyName(string)[QuickJitted] +00007FA1284C9100 22e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,bool,bool,bool)[QuickJitted] +00007FA1294BA0C0 48 stub<3277> AllocateTemporaryEntryPoints +00007FA1284C9350 283 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,bool,bool,bool)[QuickJitted] +00007FA1284C95F0 7c instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::CalculateWriteTokenInitialDepth(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[QuickJitted] +00007FA1284C9680 2a bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JsonTokenUtils::IsStartToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284C96C0 91 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_Depth()[QuickJitted] +00007FA1294BA108 d8 stub<3278> AllocateTemporaryEntryPoints +00007FA1284C9770 797 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken,object)[QuickJitted] +00007FA1284C9F80 61 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(string)[QuickJitted] +00007FA1284CA000 28 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(string)[QuickJitted] +00007FA1284CA040 2f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::InternalWriteValue(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284CA090 2c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(string)[QuickJitted] +00007FA1284CA0D0 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(object,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType)[QuickJitted] +00007FA1284CA130 11a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::AddJValue(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284CA260 62 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::TryAdd(object)[QuickJitted] +00007FA1284CA2E0 1c instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::get_ChildrenTokens()[QuickJitted] +00007FA1284CA310 2c instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty+JPropertyList::get_Count()[QuickJitted] +00007FA1284CA350 10d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::InsertItem(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,bool,bool)[QuickJitted] +00007FA1284CA480 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::get_Type()[QuickJitted] +00007FA1284CA4B0 20 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::get_Value()[QuickJitted] +00007FA1284CA4F0 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::get_Parent()[QuickJitted] +00007FA1284CA520 16 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::get_HasValues()[QuickJitted] +00007FA1284CA550 ea instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::ValidateToken(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1284CA650 33 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty+JPropertyList::Insert(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[QuickJitted] +00007FA1284CA6A0 6c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::get_Last()[QuickJitted] +00007FA1277C3280 20 stub<3279> GenerateDispatchStub +00007FA1284CA720 51 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty+JPropertyList::get_Item(int32)[QuickJitted] +00007FA1284CA790 2b bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JsonTokenUtils::IsEndToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284CA7D0 7c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::IsWriteTokenIncomplete(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,bool,int32)[QuickJitted] +00007FA1284CA860 7c instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::CalculateWriteTokenFinalDepth(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[QuickJitted] +00007FA1284CA8F0 2d4 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParsePostValue(bool)[QuickJitted] +00007FA1284CABF0 103 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetStateBasedOnCurrent()[QuickJitted] +00007FA1277F4620 18 stub<3280> GenerateResolveStub +00007FA1277C32A0 20 stub<3281> GenerateDispatchStub +00007FA1277F4690 18 stub<3282> GenerateResolveStub +00007FA1277C32C0 20 stub<3283> GenerateDispatchStub +00007FA1277C32E0 20 stub<3284> GenerateDispatchStub +00007FA1284CAD20 14 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValueDelimiter()[QuickJitted] +00007FA1277F4700 18 stub<3285> GenerateResolveStub +00007FA1277C3300 20 stub<3286> GenerateDispatchStub +00007FA1277C3320 20 stub<3287> GenerateDispatchStub +00007FA1277C3340 20 stub<3288> GenerateDispatchStub +00007FA1284CAD50 116 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::ValidateEnd(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284CAE80 180 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Pop()[QuickJitted] +00007FA1284CB020 d9 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::GetTypeForCloseToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284CB120 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_SupportMultipleContent()[QuickJitted] +00007FA1284CB150 5c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetFinished()[QuickJitted] +00007FA1284CB1C0 24 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteEndObject()[QuickJitted] +00007FA1284CB200 25 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::InternalWriteEnd(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1284CB240 102 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::AutoCompleteClose(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1284CB360 103 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::CalculateLevelsToComplete(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1284CB480 14b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Pop()[QuickJitted] +00007FA1284CB5F0 f0 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::GetCloseTokenForType(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[QuickJitted] +00007FA1284CB710 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteEnd(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA1284CB750 9e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::RemoveParent()[QuickJitted] +00007FA1284CB810 117 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::UpdateCurrentState()[QuickJitted] +00007FA1284CB960 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Peek()[QuickJitted] +00007FA1284CB990 35 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::get_Token()[QuickJitted] +00007FA1284CB9E0 39 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::System.IDisposable.Dispose()[QuickJitted] +00007FA1284CBA30 49 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Dispose(bool)[QuickJitted] +00007FA1284CBA90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::Close()[QuickJitted] +00007FA1284CBAD0 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Close()[QuickJitted] +00007FA1284CBB20 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_AutoCompleteOnClose()[QuickJitted] +00007FA1284CBB50 5c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::AutoCompleteAll()[QuickJitted] +00007FA1284CBBC0 75 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_Top()[QuickJitted] +00007FA1284CBC50 52 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::EnsureChars(int32,bool)[QuickJitted] +00007FA1284CBCC0 c4 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadChars(int32,bool)[QuickJitted] +00007FA1284CBDA0 191 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::ResetReader(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Globalization.CultureInfo,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,string)[QuickJitted] +00007FA1284CBF50 36 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::System.IDisposable.Dispose()[QuickJitted] +00007FA1284CBFA0 45 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Dispose(bool)[QuickJitted] +00007FA1284CC000 b1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::Close()[QuickJitted] +00007FA1284CC0D0 32 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Close()[QuickJitted] +00007FA1277BF360 18 stub<3289> GenerateLookupStub +00007FA1284CC120 35 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BufferUtils::ReturnBuffer(class Datadog.Trace.Vendors.Newtonsoft.Json.IArrayPool`1,char[])[QuickJitted] +00007FA1284CC170 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_CloseInput()[QuickJitted] +00007FA1284CC1A0 45 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringBuffer::Clear(class Datadog.Trace.Vendors.Newtonsoft.Json.IArrayPool`1)[QuickJitted] +00007FA1277BF380 18 stub<3290> GenerateLookupStub +00007FA1284CC200 158 instance void [Datadog.Trace] Datadog.Trace.Configuration.GlobalSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1294BA1E0 30 stub<3291> AllocateTemporaryEntryPoints +00007FA1294BA210 60 stub<3292> AllocateTemporaryEntryPoints +00007FA1294BA270 18 stub<3293> AllocateTemporaryEntryPoints +00007FA1294BA288 18 stub<3294> AllocateTemporaryEntryPoints +00007FA1294BA2A0 18 stub<3295> AllocateTemporaryEntryPoints +00007FA1294BA2B8 60 stub<3296> AllocateTemporaryEntryPoints +00007FA1294BA318 18 stub<3297> AllocateTemporaryEntryPoints +00007FA1284CC380 146 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource::GetBool(string)[QuickJitted] +00007FA1284CC4E0 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass6_0::.ctor()[QuickJitted] +00007FA1294BA330 108 stub<3298> AllocateTemporaryEntryPoints +00007FA1294BA438 18 stub<3299> AllocateTemporaryEntryPoints +00007FA1294BA450 18 stub<3300> AllocateTemporaryEntryPoints +00007FA1294BA468 78 stub<3301> AllocateTemporaryEntryPoints +00007FA1294BA4E0 a8 stub<3302> AllocateTemporaryEntryPoints +00007FA1294BA588 78 stub<3303> AllocateTemporaryEntryPoints +00007FA1294BA600 48 stub<3304> AllocateTemporaryEntryPoints +00007FA1294BA648 108 stub<3305> AllocateTemporaryEntryPoints +00007FA1294BA750 c0 stub<3306> AllocateTemporaryEntryPoints +00007FA1294BA810 18 stub<3307> AllocateTemporaryEntryPoints +00007FA1294BA828 18 stub<3308> AllocateTemporaryEntryPoints +00007FA1294BA840 48 stub<3309> AllocateTemporaryEntryPoints +00007FA1294BA888 108 stub<3310> AllocateTemporaryEntryPoints +00007FA1294BA990 c0 stub<3311> AllocateTemporaryEntryPoints +00007FA1294BAA50 18 stub<3312> AllocateTemporaryEntryPoints +00007FA1294BAA68 48 stub<3313> AllocateTemporaryEntryPoints +00007FA1294BAAB0 108 stub<3314> AllocateTemporaryEntryPoints +00007FA1294BABB8 c0 stub<3315> AllocateTemporaryEntryPoints +00007FA1294BAC78 18 stub<3316> AllocateTemporaryEntryPoints +00007FA1294BAC90 18 stub<3317> AllocateTemporaryEntryPoints +00007FA1294BACA8 48 stub<3318> AllocateTemporaryEntryPoints +00007FA1294BACF0 18 stub<3319> AllocateTemporaryEntryPoints +00007FA1294BAD08 18 stub<3320> AllocateTemporaryEntryPoints +00007FA1294BAD20 18 stub<3321> AllocateTemporaryEntryPoints +00007FA1294BAD38 60 stub<3322> AllocateTemporaryEntryPoints +00007FA1294BC000 6f0 stub<3323> AllocateTemporaryEntryPoints +00007FA1294BC6F0 18 stub<3324> AllocateTemporaryEntryPoints +00007FA1294BC708 18 stub<3325> AllocateTemporaryEntryPoints +00007FA1294BC720 108 stub<3326> AllocateTemporaryEntryPoints +00007FA1294BC828 150 stub<3327> AllocateTemporaryEntryPoints +00007FA1294BC978 18 stub<3328> AllocateTemporaryEntryPoints +00007FA1294BC990 18 stub<3329> AllocateTemporaryEntryPoints +00007FA1294BC9A8 78 stub<3330> AllocateTemporaryEntryPoints +00007FA1294BCA20 48 stub<3331> AllocateTemporaryEntryPoints +00007FA1294BCA68 150 stub<3332> AllocateTemporaryEntryPoints +00007FA1294BCBB8 78 stub<3333> AllocateTemporaryEntryPoints +00007FA1294BCC30 150 stub<3334> AllocateTemporaryEntryPoints +00007FA1294BCD80 78 stub<3335> AllocateTemporaryEntryPoints +00007FA1294BCDF8 138 stub<3336> AllocateTemporaryEntryPoints +00007FA1294BE000 120 stub<3337> AllocateTemporaryEntryPoints +00007FA1294BE120 138 stub<3338> AllocateTemporaryEntryPoints +00007FA1294BE258 18 stub<3339> AllocateTemporaryEntryPoints +00007FA1294BE270 18 stub<3340> AllocateTemporaryEntryPoints +00007FA1294BE288 108 stub<3341> AllocateTemporaryEntryPoints +00007FA1294BE390 138 stub<3342> AllocateTemporaryEntryPoints +00007FA1294BE4C8 18 stub<3343> AllocateTemporaryEntryPoints +00007FA1294BE4E0 18 stub<3344> AllocateTemporaryEntryPoints +00007FA1294BE4F8 78 stub<3345> AllocateTemporaryEntryPoints +00007FA1294BE570 48 stub<3346> AllocateTemporaryEntryPoints +00007FA1294BE5B8 138 stub<3347> AllocateTemporaryEntryPoints +00007FA1294BE6F0 138 stub<3348> AllocateTemporaryEntryPoints +00007FA1294BE828 18 stub<3349> AllocateTemporaryEntryPoints +00007FA1294BE840 18 stub<3350> AllocateTemporaryEntryPoints +00007FA1294BE858 18 stub<3351> AllocateTemporaryEntryPoints +00007FA1294BE870 c0 stub<3352> AllocateTemporaryEntryPoints +00007FA1284CC520 617 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Select(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1284CCB60 49 instance void [System.Linq] System.Linq.Enumerable+SelectListIterator`2[System.__Canon,System.Nullable`1[System.Boolean]]::.ctor(class [System.Collections]System.Collections.Generic.List`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1284CCBC0 2a instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Boolean]]::.ctor()[QuickJitted] +00007FA1294BE930 18 stub<3353> AllocateTemporaryEntryPoints +00007FA1294BE948 18 stub<3354> AllocateTemporaryEntryPoints +00007FA1284CCC00 2b !!0 [System.Linq] System.Linq.Enumerable::FirstOrDefault(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1277BF3A0 18 stub<3355> GenerateLookupStub +00007FA1294BE960 18 stub<3356> AllocateTemporaryEntryPoints +00007FA1277BF3C0 18 stub<3357> GenerateLookupStub +00007FA1294BE978 18 stub<3358> AllocateTemporaryEntryPoints +00007FA1294BE990 60 stub<3359> AllocateTemporaryEntryPoints +00007FA1284CCC40 133 !!0 [System.Linq] System.Linq.Enumerable::TryGetFirst(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,bool&)[QuickJitted] +00007FA1284CCDA0 73 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Boolean]]::GetEnumerator()[QuickJitted] +00007FA129560000 6f0 stub<3360> AllocateTemporaryEntryPoints +00007FA1295606F0 78 stub<3361> AllocateTemporaryEntryPoints +00007FA129560768 a8 stub<3362> AllocateTemporaryEntryPoints +00007FA129560810 18 stub<3363> AllocateTemporaryEntryPoints +00007FA129560828 18 stub<3364> AllocateTemporaryEntryPoints +00007FA129560840 18 stub<3365> AllocateTemporaryEntryPoints +00007FA129560858 60 stub<3366> AllocateTemporaryEntryPoints +00007FA1284CCE30 1a1 instance bool [System.Linq] System.Linq.Enumerable+SelectListIterator`2[System.__Canon,System.Nullable`1[System.Boolean]]::MoveNext()[QuickJitted] +00007FA1284CCFF0 32 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass6_0::b__0(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1295608B8 48 stub<3367> AllocateTemporaryEntryPoints +00007FA1284CD040 6b instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.StringConfigurationSource::GetBool(string)[QuickJitted] +00007FA1284CD0C0 1d instance !0 [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Boolean]]::get_Current()[QuickJitted] +00007FA1284CD100 22 instance bool [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c::b__6_1(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1277C3360 20 stub<3368> GenerateDispatchStub +00007FA129560900 18 stub<3369> AllocateTemporaryEntryPoints +00007FA1284CD140 27 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::Datadog.Trace.Configuration.IConfigurationSource.GetBool(string)[QuickJitted] +00007FA129560918 1b0 stub<3370> AllocateTemporaryEntryPoints +00007FA129560AC8 18 stub<3371> AllocateTemporaryEntryPoints +00007FA129560AE0 18 stub<3372> AllocateTemporaryEntryPoints +00007FA1284CD180 5d instance !!0 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::GetValue(string)[QuickJitted] +00007FA129560AF8 78 stub<3373> AllocateTemporaryEntryPoints +00007FA1284CD200 8f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::SelectToken(string,bool)[QuickJitted] +00007FA129560B70 228 stub<3374> AllocateTemporaryEntryPoints +00007FA1277BF3E0 18 stub<3375> GenerateLookupStub +00007FA1277BF400 18 stub<3376> GenerateLookupStub +00007FA1284CD2B0 180 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::SelectToken(string,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonSelectSettings)[QuickJitted] +00007FA129560D98 60 stub<3377> AllocateTemporaryEntryPoints +00007FA1284CD460 89 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.JPath::.ctor(string)[QuickJitted] +00007FA1284CD500 1ab instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.JPath::ParseMain()[QuickJitted] +00007FA1284CD6D0 7b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.JPath::EatWhitespace()[QuickJitted] +00007FA1284CD760 1c instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.JPath::get_Filters()[QuickJitted] +00007FA1284CD790 547 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.JPath::ParsePath(class [System.Collections]System.Collections.Generic.List`1,int32,bool)[QuickJitted] +00007FA129560DF8 30 stub<3378> AllocateTemporaryEntryPoints +00007FA129560E28 30 stub<3379> AllocateTemporaryEntryPoints +00007FA1284CDD00 7c class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.PathFilter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.JPath::CreatePathFilter(string,bool)[QuickJitted] +00007FA1284CDD90 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.FieldFilter::.ctor(string)[QuickJitted] +00007FA1284CDDE0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.PathFilter::.ctor()[QuickJitted] +00007FA1284CDE20 4b instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.JPath::Evaluate(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonSelectSettings)[QuickJitted] +00007FA129560E58 18 stub<3380> AllocateTemporaryEntryPoints +00007FA1284CDE80 13b class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.JPath::Evaluate(class [System.Collections]System.Collections.Generic.List`1,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonSelectSettings)[QuickJitted] +00007FA129560E70 f0 stub<3381> AllocateTemporaryEntryPoints +00007FA1284CDFF0 7f instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.FieldFilter::ExecuteFilter(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class [System.Runtime]System.Collections.Generic.IEnumerable`1,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonSelectSettings)[QuickJitted] +00007FA1284CE090 37 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.FieldFilter+d__2::.ctor(int32)[QuickJitted] +00007FA1284CE0E0 b9 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.FieldFilter+d__2::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA129560F60 18 stub<3382> AllocateTemporaryEntryPoints +00007FA1277BF420 18 stub<3383> GenerateLookupStub +00007FA1284CE1B0 526 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.FieldFilter+d__2::MoveNext()[QuickJitted] +00007FA129560F78 18 stub<3384> AllocateTemporaryEntryPoints +00007FA129560F90 18 stub<3385> AllocateTemporaryEntryPoints +00007FA129562000 a8 stub<3386> AllocateTemporaryEntryPoints +00007FA1295620A8 a8 stub<3387> AllocateTemporaryEntryPoints +00007FA129562150 18 stub<3388> AllocateTemporaryEntryPoints +00007FA1284CE710 72 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::get_Item(string)[QuickJitted] +00007FA1277C3380 20 stub<3389> GenerateDispatchStub +00007FA1284CE7A0 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.FieldFilter+d__2::<>m__Finally1()[QuickJitted] +00007FA1284CE800 a9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JsonPath.FieldFilter+d__2::System.IDisposable.Dispose()[QuickJitted] +00007FA1277F4770 18 stub<3390> GenerateResolveStub +00007FA1277C33A0 20 stub<3391> GenerateDispatchStub +00007FA1284CE8E0 29 instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Boolean]]::Dispose()[QuickJitted] +00007FA1277C33C0 20 stub<3392> GenerateDispatchStub +00007FA1284CE920 22 instance void [Datadog.Trace] Datadog.Trace.Configuration.GlobalSettings::set_DebugEnabled(bool)[QuickJitted] +00007FA1277F47E0 18 stub<3393> GenerateResolveStub +00007FA1277C33E0 20 stub<3394> GenerateDispatchStub +00007FA1277F4850 18 stub<3395> GenerateResolveStub +00007FA1277C3400 20 stub<3396> GenerateDispatchStub +00007FA1277C3420 20 stub<3397> GenerateDispatchStub +00007FA1277F48C0 18 stub<3398> GenerateResolveStub +00007FA1277C3440 20 stub<3399> GenerateDispatchStub +00007FA1277C3460 20 stub<3400> GenerateDispatchStub +00007FA1277C3480 20 stub<3401> GenerateDispatchStub +00007FA1277F4930 18 stub<3402> GenerateResolveStub +00007FA1277C34A0 20 stub<3403> GenerateDispatchStub +00007FA1277C34C0 20 stub<3404> GenerateDispatchStub +00007FA1277C34E0 20 stub<3405> GenerateDispatchStub +00007FA1284CE960 1c instance bool [Datadog.Trace] Datadog.Trace.Configuration.GlobalSettings::get_DebugEnabled()[QuickJitted] +00007FA1277BF440 18 stub<3406> GenerateLookupStub +00007FA1284CE990 1df valuetype Datadog.Trace.Logging.Internal.Configuration.DatadogLoggingConfiguration [Datadog.Trace] Datadog.Trace.Logging.DatadogLoggingFactory::GetConfiguration(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA129562168 18 stub<3407> AllocateTemporaryEntryPoints +00007FA129562180 18 stub<3408> AllocateTemporaryEntryPoints +00007FA1284CEB90 31 instance string [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::Datadog.Trace.Configuration.IConfigurationSource.GetString(string)[QuickJitted] +00007FA129562198 18 stub<3409> AllocateTemporaryEntryPoints +00007FA1295621B0 18 stub<3410> AllocateTemporaryEntryPoints +00007FA1284CEBE0 a2 instance !!0 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::GetValue(string)[QuickJitted] +00007FA1284CECA0 242 valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Logging.DatadogLoggingFactory::GetFileLoggingConfiguration(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1284CEF10 cf string [Datadog.Trace] Datadog.Trace.Logging.DatadogLoggingFactory::GetLogDirectory(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1295621C8 1c8 stub<3411> AllocateTemporaryEntryPoints +00007FA129562390 90 stub<3412> AllocateTemporaryEntryPoints +00007FA1284CF000 e1 string [Datadog.Trace] Datadog.Trace.Logging.DatadogLoggingFactory::GetDefaultLogDirectory(string)[QuickJitted] +00007FA129562420 30 stub<3413> AllocateTemporaryEntryPoints +00007FA129562450 60 stub<3414> AllocateTemporaryEntryPoints +00007FA1295624B0 18 stub<3415> AllocateTemporaryEntryPoints +00007FA1295624C8 18 stub<3416> AllocateTemporaryEntryPoints +00007FA1295624E0 18 stub<3417> AllocateTemporaryEntryPoints +00007FA1295624F8 60 stub<3418> AllocateTemporaryEntryPoints +00007FA129562558 18 stub<3419> AllocateTemporaryEntryPoints +00007FA1284CF110 146 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource::GetInt32(string)[QuickJitted] +00007FA1284CF270 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass4_0::.ctor()[QuickJitted] +00007FA129562570 108 stub<3420> AllocateTemporaryEntryPoints +00007FA129562678 c0 stub<3421> AllocateTemporaryEntryPoints +00007FA129562738 18 stub<3422> AllocateTemporaryEntryPoints +00007FA129562750 48 stub<3423> AllocateTemporaryEntryPoints +00007FA129562798 18 stub<3424> AllocateTemporaryEntryPoints +00007FA1295627B0 18 stub<3425> AllocateTemporaryEntryPoints +00007FA1295627C8 150 stub<3426> AllocateTemporaryEntryPoints +00007FA129562918 78 stub<3427> AllocateTemporaryEntryPoints +00007FA129562990 138 stub<3428> AllocateTemporaryEntryPoints +00007FA129562AC8 18 stub<3429> AllocateTemporaryEntryPoints +00007FA129562AE0 138 stub<3430> AllocateTemporaryEntryPoints +00007FA129562C18 18 stub<3431> AllocateTemporaryEntryPoints +00007FA129562C30 18 stub<3432> AllocateTemporaryEntryPoints +00007FA1284CF2B0 617 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Select(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1284CF8F0 49 instance void [System.Linq] System.Linq.Enumerable+SelectListIterator`2[System.__Canon,System.Nullable`1[System.Int32]]::.ctor(class [System.Collections]System.Collections.Generic.List`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1284CF950 2a instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Int32]]::.ctor()[QuickJitted] +00007FA129562C48 18 stub<3433> AllocateTemporaryEntryPoints +00007FA1284CF990 2b !!0 [System.Linq] System.Linq.Enumerable::FirstOrDefault(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1277BF460 18 stub<3434> GenerateLookupStub +00007FA1277BF480 18 stub<3435> GenerateLookupStub +00007FA1284CF9D0 134 !!0 [System.Linq] System.Linq.Enumerable::TryGetFirst(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,bool&)[QuickJitted] +00007FA1284CFB30 73 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Int32]]::GetEnumerator()[QuickJitted] +00007FA1284CFBC0 1a1 instance bool [System.Linq] System.Linq.Enumerable+SelectListIterator`2[System.__Canon,System.Nullable`1[System.Int32]]::MoveNext()[QuickJitted] +00007FA1284CFD80 32 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass4_0::b__0(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1284CFDD0 7a instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.StringConfigurationSource::GetInt32(string)[QuickJitted] +00007FA1284CFE60 1c instance !0 [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Int32]]::get_Current()[QuickJitted] +00007FA1284CFE90 23 instance bool [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c::b__4_1(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1277C3500 20 stub<3436> GenerateDispatchStub +00007FA129562C60 18 stub<3437> AllocateTemporaryEntryPoints +00007FA1284CFED0 27 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::Datadog.Trace.Configuration.IConfigurationSource.GetInt32(string)[QuickJitted] +00007FA129562C78 18 stub<3438> AllocateTemporaryEntryPoints +00007FA1284CFF10 5e instance !!0 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::GetValue(string)[QuickJitted] +00007FA1277F49A0 18 stub<3439> GenerateResolveStub +00007FA1277C3520 20 stub<3440> GenerateDispatchStub +00007FA1284CFF90 29 instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Int32]]::Dispose()[QuickJitted] +00007FA1277C3540 20 stub<3441> GenerateDispatchStub +00007FA1284CFFD0 42 instance void [Datadog.Trace] Datadog.Trace.Logging.Internal.Configuration.FileLoggingConfiguration::.ctor(int64,string,int32)[QuickJitted] +00007FA1284D0030 30 instance void [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Logging.Internal.Configuration.FileLoggingConfiguration]::.ctor(!0)[QuickJitted] +00007FA1277F4A10 18 stub<3442> GenerateResolveStub +00007FA1277C3560 20 stub<3443> GenerateDispatchStub +00007FA1277F4A80 18 stub<3444> GenerateResolveStub +00007FA1277C3580 20 stub<3445> GenerateDispatchStub +00007FA1277C35A0 20 stub<3446> GenerateDispatchStub +00007FA1284D0080 37 instance void [Datadog.Trace] Datadog.Trace.Logging.Internal.Configuration.DatadogLoggingConfiguration::.ctor(int32,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1284D00D0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Logging.Internal.Configuration.FileLoggingConfiguration]::get_HasValue()[QuickJitted] +00007FA1284D0100 31 instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Logging.Internal.Configuration.FileLoggingConfiguration]::GetValueOrDefault()[QuickJitted] +00007FA129562C90 228 stub<3447> AllocateTemporaryEntryPoints +00007FA129562EB8 c0 stub<3448> AllocateTemporaryEntryPoints +00007FA129564000 138 stub<3449> AllocateTemporaryEntryPoints +00007FA129564138 78 stub<3450> AllocateTemporaryEntryPoints +00007FA1295641B0 2b8 stub<3451> AllocateTemporaryEntryPoints +00007FA129564468 630 stub<3452> AllocateTemporaryEntryPoints +00007FA129564A98 1f8 stub<3453> AllocateTemporaryEntryPoints +00007FA129564C90 60 stub<3454> AllocateTemporaryEntryPoints +00007FA129564CF0 60 stub<3455> AllocateTemporaryEntryPoints +00007FA129564D50 30 stub<3456> AllocateTemporaryEntryPoints +00007FA129564D80 108 stub<3457> AllocateTemporaryEntryPoints +00007FA129564E88 108 stub<3458> AllocateTemporaryEntryPoints +00007FA129564F90 60 stub<3459> AllocateTemporaryEntryPoints +00007FA129566000 258 stub<3460> AllocateTemporaryEntryPoints +00007FA129566258 258 stub<3461> AllocateTemporaryEntryPoints +00007FA1295664B0 18 stub<3462> AllocateTemporaryEntryPoints +00007FA1295664C8 60 stub<3463> AllocateTemporaryEntryPoints +00007FA129566528 60 stub<3464> AllocateTemporaryEntryPoints +00007FA129566588 18 stub<3465> AllocateTemporaryEntryPoints +00007FA1295665A0 18 stub<3466> AllocateTemporaryEntryPoints +00007FA1295665B8 a8 stub<3467> AllocateTemporaryEntryPoints +00007FA129566660 a8 stub<3468> AllocateTemporaryEntryPoints +00007FA129566708 60 stub<3469> AllocateTemporaryEntryPoints +00007FA129566768 18 stub<3470> AllocateTemporaryEntryPoints +00007FA129566780 150 stub<3471> AllocateTemporaryEntryPoints +00007FA1295668D0 48 stub<3472> AllocateTemporaryEntryPoints +00007FA129566918 48 stub<3473> AllocateTemporaryEntryPoints +00007FA129566960 1c8 stub<3474> AllocateTemporaryEntryPoints +00007FA129566B28 180 stub<3475> AllocateTemporaryEntryPoints +00007FA129566CA8 318 stub<3476> AllocateTemporaryEntryPoints +00007FA129568000 60 stub<3477> AllocateTemporaryEntryPoints +00007FA129568060 78 stub<3478> AllocateTemporaryEntryPoints +00007FA1295680D8 a8 stub<3479> AllocateTemporaryEntryPoints +00007FA129568180 288 stub<3480> AllocateTemporaryEntryPoints +00007FA129568408 f0 stub<3481> AllocateTemporaryEntryPoints +00007FA1295684F8 3f0 stub<3482> AllocateTemporaryEntryPoints +00007FA1295688E8 f0 stub<3483> AllocateTemporaryEntryPoints +00007FA1295689D8 60 stub<3484> AllocateTemporaryEntryPoints +00007FA129568A38 48 stub<3485> AllocateTemporaryEntryPoints +00007FA129568A80 60 stub<3486> AllocateTemporaryEntryPoints +00007FA129568AE0 48 stub<3487> AllocateTemporaryEntryPoints +00007FA129568B28 48 stub<3488> AllocateTemporaryEntryPoints +00007FA129568B70 90 stub<3489> AllocateTemporaryEntryPoints +00007FA129568C00 18 stub<3490> AllocateTemporaryEntryPoints +00007FA129568C18 c0 stub<3491> AllocateTemporaryEntryPoints +00007FA129568CD8 18 stub<3492> AllocateTemporaryEntryPoints +00007FA129568CF0 2a0 stub<3493> AllocateTemporaryEntryPoints +00007FA12956A000 1e0 stub<3494> AllocateTemporaryEntryPoints +00007FA12956A1E0 120 stub<3495> AllocateTemporaryEntryPoints +00007FA12956A300 150 stub<3496> AllocateTemporaryEntryPoints +00007FA12956A450 168 stub<3497> AllocateTemporaryEntryPoints +00007FA12956A5B8 d8 stub<3498> AllocateTemporaryEntryPoints +00007FA12956A690 60 stub<3499> AllocateTemporaryEntryPoints +00007FA12956A6F0 30 stub<3500> AllocateTemporaryEntryPoints +00007FA1284D0550 2a instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogLogging+<>c__DisplayClass3_0::<.cctor>b__0()[QuickJitted] +00007FA1284D0590 2aa void [Datadog.Trace] Datadog.Trace.Logging.DatadogLogging::CleanLogFiles(int32,string)[QuickJitted] +00007FA1284D0870 30 class Datadog.Trace.Util.DomainMetadata [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::get_Instance()[QuickJitted] +00007FA12956A720 48 stub<3501> AllocateTemporaryEntryPoints +00007FA12956A768 60 stub<3502> AllocateTemporaryEntryPoints +00007FA1284D08C0 aa void [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::.cctor()[QuickJitted] +00007FA12956A7C8 18 stub<3503> AllocateTemporaryEntryPoints +00007FA1284D0980 47 void [Datadog.Trace] Datadog.Trace.Util.DomainMetadata+<>c::.cctor()[QuickJitted] +00007FA12956A7E0 18 stub<3504> AllocateTemporaryEntryPoints +00007FA1284D09E0 1f instance void [Datadog.Trace] Datadog.Trace.Util.DomainMetadata+<>c::.ctor()[QuickJitted] +00007FA12956A7F8 198 stub<3505> AllocateTemporaryEntryPoints +00007FA12956A990 60 stub<3506> AllocateTemporaryEntryPoints +00007FA1284D0A20 3b instance class Datadog.Trace.Util.DomainMetadata [Datadog.Trace] Datadog.Trace.Util.DomainMetadata+<>c::<.cctor>b__21_0()[QuickJitted] +00007FA12956A9F0 48 stub<3507> AllocateTemporaryEntryPoints +00007FA12956AA38 90 stub<3508> AllocateTemporaryEntryPoints +00007FA12956AAC8 f0 stub<3509> AllocateTemporaryEntryPoints +00007FA12956ABB8 18 stub<3510> AllocateTemporaryEntryPoints +00007FA12784B2C0 e stub<3511> GenerateVTableCallStub +00007FA1284D0A70 1c5 instance void [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::.ctor()[QuickJitted] +00007FA12956ABE8 f0 stub<3512> AllocateTemporaryEntryPoints +00007FA12956ACD8 a8 stub<3513> AllocateTemporaryEntryPoints +00007FA1284D0C70 aa void [Datadog.Trace] Datadog.Trace.Util.ProcessHelpers::GetCurrentProcessInformation(string&,string&,int32&)[QuickJitted] +00007FA12784B2D0 e stub<3514> GenerateVTableCallStub +00007FA12956C000 468 stub<3515> AllocateTemporaryEntryPoints +00007FA12956C468 60 stub<3516> AllocateTemporaryEntryPoints +00007FA12956C4C8 1f8 stub<3517> AllocateTemporaryEntryPoints +00007FA12956C6C0 18 stub<3518> AllocateTemporaryEntryPoints +00007FA12956C6D8 690 stub<3519> AllocateTemporaryEntryPoints +00007FA12956CD68 1b0 stub<3520> AllocateTemporaryEntryPoints +00007FA12956CF18 d8 stub<3521> AllocateTemporaryEntryPoints +00007FA12956E000 18 stub<3522> AllocateTemporaryEntryPoints +00007FA12956E018 108 stub<3523> AllocateTemporaryEntryPoints +00007FA12956E120 18 stub<3524> AllocateTemporaryEntryPoints +00007FA12956E138 48 stub<3525> AllocateTemporaryEntryPoints +00007FA12956E180 d8 stub<3526> AllocateTemporaryEntryPoints +00007FA12956E258 108 stub<3527> AllocateTemporaryEntryPoints +00007FA1284D0D40 7cb class Datadog.Trace.Logging.IDatadogLogger [Datadog.Trace] Datadog.Trace.Logging.DatadogLoggingFactory::CreateFromConfiguration(valuetype Datadog.Trace.Logging.Internal.Configuration.DatadogLoggingConfiguration&,class Datadog.Trace.Util.DomainMetadata)[QuickJitted] +00007FA12956E360 18 stub<3528> AllocateTemporaryEntryPoints +00007FA12956E378 18 stub<3529> AllocateTemporaryEntryPoints +00007FA1284D1550 26d instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::.ctor()[QuickJitted] +00007FA1284D17E0 119 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerSinkConfiguration::.ctor(class Datadog.Trace.Vendors.Serilog.LoggerConfiguration,class [System.Runtime]System.Action`1)[QuickJitted] +00007FA1284D1910 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::set_WriteTo(class Datadog.Trace.Vendors.Serilog.Configuration.LoggerSinkConfiguration)[QuickJitted] +00007FA1284D1950 119 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerEnrichmentConfiguration::.ctor(class Datadog.Trace.Vendors.Serilog.LoggerConfiguration,class [System.Runtime]System.Action`1)[QuickJitted] +00007FA1284D1A80 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::set_Enrich(class Datadog.Trace.Vendors.Serilog.Configuration.LoggerEnrichmentConfiguration)[QuickJitted] +00007FA1284D1AC0 1c instance class Datadog.Trace.Vendors.Serilog.Configuration.LoggerEnrichmentConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::get_Enrich()[QuickJitted] +00007FA12956E390 30 stub<3530> AllocateTemporaryEntryPoints +00007FA12956E3C0 18 stub<3531> AllocateTemporaryEntryPoints +00007FA12956E3D8 18 stub<3532> AllocateTemporaryEntryPoints +00007FA1284D1AF0 29 instance class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerEnrichmentConfiguration::FromLogContext()[QuickJitted] +00007FA12956E3F0 18 stub<3533> AllocateTemporaryEntryPoints +00007FA12956E408 18 stub<3534> AllocateTemporaryEntryPoints +00007FA12956E420 18 stub<3535> AllocateTemporaryEntryPoints +00007FA1284D1B30 a2 instance class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerEnrichmentConfiguration::With()[QuickJitted] +00007FA12956E438 18 stub<3536> AllocateTemporaryEntryPoints +00007FA1284D1BF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Context.LogContextEnricher::.ctor()[QuickJitted] +00007FA1284D1C30 16a instance class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerEnrichmentConfiguration::With(class Datadog.Trace.Vendors.Serilog.Core.ILogEventEnricher[])[QuickJitted] +00007FA1284D1DC0 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::<.ctor>b__13_1(class Datadog.Trace.Vendors.Serilog.Core.ILogEventEnricher)[QuickJitted] +00007FA12956E450 60 stub<3537> AllocateTemporaryEntryPoints +00007FA12956E4B0 60 stub<3538> AllocateTemporaryEntryPoints +00007FA12956E510 60 stub<3539> AllocateTemporaryEntryPoints +00007FA1284D1E10 da instance class Datadog.Trace.Vendors.Serilog.Configuration.LoggerMinimumLevelConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::get_MinimumLevel()[QuickJitted] +00007FA1284D1F00 1b8 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerMinimumLevelConfiguration::.ctor(class Datadog.Trace.Vendors.Serilog.LoggerConfiguration,class [System.Runtime]System.Action`1,class [System.Runtime]System.Action`1,class [System.Runtime]System.Action`2)[QuickJitted] +00007FA1284D20E0 98 instance class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerMinimumLevelConfiguration::ControlledBy(class Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch)[QuickJitted] +00007FA1284D2190 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::b__21_1(class Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch)[QuickJitted] +00007FA1284D21D0 1c instance string [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::get_ProcessName()[QuickJitted] +00007FA1284D2200 1c instance class Datadog.Trace.Vendors.Serilog.Configuration.LoggerSinkConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::get_WriteTo()[QuickJitted] +00007FA12956E570 48 stub<3540> AllocateTemporaryEntryPoints +00007FA12956E5B8 18 stub<3541> AllocateTemporaryEntryPoints +00007FA12956E5D0 30 stub<3542> AllocateTemporaryEntryPoints +00007FA1284D2230 1d0 class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.FileLoggerConfigurationExtensions::File(class Datadog.Trace.Vendors.Serilog.Configuration.LoggerSinkConfiguration,string,valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,string,class [System.Runtime]System.IFormatProvider,valuetype [System.Runtime]System.Nullable`1,class Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch,bool,bool,valuetype [System.Runtime]System.Nullable`1,valuetype Datadog.Trace.Vendors.Serilog.RollingInterval,bool,valuetype [System.Runtime]System.Nullable`1,class [System.Runtime]System.Text.Encoding,class Datadog.Trace.Vendors.Serilog.Sinks.File.FileLifecycleHooks)[QuickJitted] +00007FA12956E600 18 stub<3543> AllocateTemporaryEntryPoints +00007FA12956E618 120 stub<3544> AllocateTemporaryEntryPoints +00007FA12956E738 138 stub<3545> AllocateTemporaryEntryPoints +00007FA1284D2420 cc instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Display.MessageTemplateTextFormatter::.ctor(string,class [System.Runtime]System.IFormatProvider)[QuickJitted] +00007FA1284D2510 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::.ctor()[QuickJitted] +00007FA12956E870 60 stub<3546> AllocateTemporaryEntryPoints +00007FA1284D2550 a7 instance class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::Parse(string)[QuickJitted] +00007FA12956E8D0 c0 stub<3547> AllocateTemporaryEntryPoints +00007FA1284D2610 51 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::Tokenize(string)[QuickJitted] +00007FA1284D2680 37 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser+d__1::.ctor(int32)[QuickJitted] +00007FA12956E990 48 stub<3548> AllocateTemporaryEntryPoints +00007FA12956E9D8 138 stub<3549> AllocateTemporaryEntryPoints +00007FA12956EB10 150 stub<3550> AllocateTemporaryEntryPoints +00007FA12956EC60 18 stub<3551> AllocateTemporaryEntryPoints +00007FA12956EC78 18 stub<3552> AllocateTemporaryEntryPoints +00007FA12956EC90 18 stub<3553> AllocateTemporaryEntryPoints +00007FA12956ECA8 18 stub<3554> AllocateTemporaryEntryPoints +00007FA12956ECC0 78 stub<3555> AllocateTemporaryEntryPoints +00007FA1284D26D0 27d instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.MessageTemplate::.ctor(string,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12956ED38 60 stub<3556> AllocateTemporaryEntryPoints +00007FA12956ED98 18 stub<3557> AllocateTemporaryEntryPoints +00007FA12956EDB0 18 stub<3558> AllocateTemporaryEntryPoints +00007FA12956EDC8 c0 stub<3559> AllocateTemporaryEntryPoints +00007FA12956EE88 c0 stub<3560> AllocateTemporaryEntryPoints +00007FA129590000 168 stub<3561> AllocateTemporaryEntryPoints +00007FA129590168 168 stub<3562> AllocateTemporaryEntryPoints +00007FA1295902D0 60 stub<3563> AllocateTemporaryEntryPoints +00007FA129590330 18 stub<3564> AllocateTemporaryEntryPoints +00007FA1277BF4A0 18 stub<3565> GenerateLookupStub +00007FA1284D2D70 8f instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser+d__1::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA129590348 a8 stub<3566> AllocateTemporaryEntryPoints +00007FA1284D2E20 221 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser+d__1::MoveNext()[QuickJitted] +00007FA1284D3070 19c class Datadog.Trace.Vendors.Serilog.Parsing.TextToken [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::ParseTextToken(int32,string,int32&)[QuickJitted] +00007FA1284D3230 a7 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.TextToken::.ctor(string,int32)[QuickJitted] +00007FA1284D32F0 2b instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateToken::.ctor(int32)[QuickJitted] +00007FA1284D3330 6cd class Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateToken [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::ParsePropertyToken(int32,string,int32&)[QuickJitted] +00007FA1284D3A20 5d bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::IsValidInPropertyTag(char)[QuickJitted] +00007FA1284D3AA0 38 bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::IsValidInDestructuringHint(char)[QuickJitted] +00007FA1284D3AF0 3d bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::IsValidInPropertyName(char)[QuickJitted] +00007FA1284D3B50 6b bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::IsValidInFormat(char)[QuickJitted] +00007FA1284D3BD0 25f bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::TrySplitTagContent(string,string&,string&,string&)[QuickJitted] +00007FA1284D3E50 61 bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser::TryGetDestructuringHint(char,valuetype Datadog.Trace.Vendors.Serilog.Parsing.Destructuring&)[QuickJitted] +00007FA1284D3ED0 1c9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken::.ctor(string,string,string,valuetype [System.Runtime]System.Nullable`1,valuetype Datadog.Trace.Vendors.Serilog.Parsing.Destructuring,int32)[QuickJitted] +00007FA1284D40C0 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken::get_PropertyName()[QuickJitted] +00007FA1277BF4C0 18 stub<3567> GenerateLookupStub +00007FA1284D40F0 1c instance class Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateToken [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser+d__1::System.Collections.Generic.IEnumerator.get_Current()[QuickJitted] +00007FA1277F4AF0 18 stub<3568> GenerateResolveStub +00007FA1277C35C0 20 stub<3569> GenerateDispatchStub +00007FA1284D4120 14 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateParser+d__1::System.IDisposable.Dispose()[QuickJitted] +00007FA1295903F0 6f0 stub<3570> AllocateTemporaryEntryPoints +00007FA129590AE0 78 stub<3571> AllocateTemporaryEntryPoints +00007FA129590B58 a8 stub<3572> AllocateTemporaryEntryPoints +00007FA129590C00 18 stub<3573> AllocateTemporaryEntryPoints +00007FA129590C18 18 stub<3574> AllocateTemporaryEntryPoints +00007FA129590C30 18 stub<3575> AllocateTemporaryEntryPoints +00007FA1284D4150 16d !!0[] [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.MessageTemplate::GetElementsOfTypeToArray(class Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateToken[])[QuickJitted] +00007FA1284D42E0 2a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken::get_IsPositional()[QuickJitted] +00007FA129590C48 60 stub<3576> AllocateTemporaryEntryPoints +00007FA129590CA8 60 stub<3577> AllocateTemporaryEntryPoints +00007FA1284D4320 1d7 class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.FileLoggerConfigurationExtensions::File(class Datadog.Trace.Vendors.Serilog.Configuration.LoggerSinkConfiguration,class Datadog.Trace.Vendors.Serilog.Formatting.ITextFormatter,string,valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,valuetype [System.Runtime]System.Nullable`1,class Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch,bool,bool,valuetype [System.Runtime]System.Nullable`1,valuetype Datadog.Trace.Vendors.Serilog.RollingInterval,bool,valuetype [System.Runtime]System.Nullable`1,class [System.Runtime]System.Text.Encoding,class Datadog.Trace.Vendors.Serilog.Sinks.File.FileLifecycleHooks)[QuickJitted] +00007FA129590D08 18 stub<3578> AllocateTemporaryEntryPoints +00007FA129590D20 c0 stub<3579> AllocateTemporaryEntryPoints +00007FA129590DE0 60 stub<3580> AllocateTemporaryEntryPoints +00007FA129590E40 18 stub<3581> AllocateTemporaryEntryPoints +00007FA129590E58 90 stub<3582> AllocateTemporaryEntryPoints +00007FA129590EE8 a8 stub<3583> AllocateTemporaryEntryPoints +00007FA129590F90 30 stub<3584> AllocateTemporaryEntryPoints +00007FA1284D4520 64f class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.FileLoggerConfigurationExtensions::ConfigureFile(class [System.Runtime]System.Func`4,class Datadog.Trace.Vendors.Serilog.Formatting.ITextFormatter,string,valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,valuetype [System.Runtime]System.Nullable`1,class Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch,bool,bool,bool,valuetype [System.Runtime]System.Nullable`1,class [System.Runtime]System.Text.Encoding,valuetype Datadog.Trace.Vendors.Serilog.RollingInterval,bool,valuetype [System.Runtime]System.Nullable`1,class Datadog.Trace.Vendors.Serilog.Sinks.File.FileLifecycleHooks)[QuickJitted] +00007FA129592000 a8 stub<3585> AllocateTemporaryEntryPoints +00007FA1284D4BA0 2ce instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink::.ctor(string,class Datadog.Trace.Vendors.Serilog.Formatting.ITextFormatter,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,class [System.Runtime]System.Text.Encoding,bool,bool,valuetype Datadog.Trace.Vendors.Serilog.RollingInterval,bool,class Datadog.Trace.Vendors.Serilog.Sinks.File.FileLifecycleHooks)[QuickJitted] +00007FA1295920A8 48 stub<3586> AllocateTemporaryEntryPoints +00007FA1295920F0 7c8 stub<3587> AllocateTemporaryEntryPoints +00007FA1295928B8 198 stub<3588> AllocateTemporaryEntryPoints +00007FA1284D4E90 29d instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller::.ctor(string,valuetype Datadog.Trace.Vendors.Serilog.RollingInterval)[QuickJitted] +00007FA1284D5150 104 string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingIntervalExtensions::GetFormat(valuetype Datadog.Trace.Vendors.Serilog.RollingInterval)[QuickJitted] +00007FA129592A50 2b8 stub<3589> AllocateTemporaryEntryPoints +00007FA129592D08 f0 stub<3590> AllocateTemporaryEntryPoints +00007FA129592DF8 f0 stub<3591> AllocateTemporaryEntryPoints +00007FA129594000 750 stub<3592> AllocateTemporaryEntryPoints +00007FA129594750 1b0 stub<3593> AllocateTemporaryEntryPoints +00007FA129594900 18 stub<3594> AllocateTemporaryEntryPoints +00007FA129594918 78 stub<3595> AllocateTemporaryEntryPoints +00007FA129594990 30 stub<3596> AllocateTemporaryEntryPoints +00007FA1295949C0 30 stub<3597> AllocateTemporaryEntryPoints +00007FA1295949F0 30 stub<3598> AllocateTemporaryEntryPoints +00007FA129594A20 558 stub<3599> AllocateTemporaryEntryPoints +00007FA129596000 2a0 stub<3600> AllocateTemporaryEntryPoints +00007FA1295962A0 2a0 stub<3601> AllocateTemporaryEntryPoints +00007FA129596540 2a0 stub<3602> AllocateTemporaryEntryPoints +00007FA1295967E0 2a0 stub<3603> AllocateTemporaryEntryPoints +00007FA129596A80 138 stub<3604> AllocateTemporaryEntryPoints +00007FA129596BB8 138 stub<3605> AllocateTemporaryEntryPoints +00007FA129596CF0 18 stub<3606> AllocateTemporaryEntryPoints +00007FA129596D08 18 stub<3607> AllocateTemporaryEntryPoints +00007FA129596D20 18 stub<3608> AllocateTemporaryEntryPoints +00007FA129596D38 18 stub<3609> AllocateTemporaryEntryPoints +00007FA129598000 5e8 stub<3610> AllocateTemporaryEntryPoints +00007FA1295985E8 18 stub<3611> AllocateTemporaryEntryPoints +00007FA129598600 18 stub<3612> AllocateTemporaryEntryPoints +00007FA129598618 18 stub<3613> AllocateTemporaryEntryPoints +00007FA129598630 18 stub<3614> AllocateTemporaryEntryPoints +00007FA129598648 18 stub<3615> AllocateTemporaryEntryPoints +00007FA129598660 60 stub<3616> AllocateTemporaryEntryPoints +00007FA12784B2E0 e stub<3617> GenerateVTableCallStub +00007FA1295986C0 618 stub<3618> AllocateTemporaryEntryPoints +00007FA129598CD8 c0 stub<3619> AllocateTemporaryEntryPoints +00007FA12959A000 2a0 stub<3620> AllocateTemporaryEntryPoints +00007FA12959A2B8 6f0 stub<3621> AllocateTemporaryEntryPoints +00007FA12959A9A8 78 stub<3622> AllocateTemporaryEntryPoints +00007FA12959AA20 a8 stub<3623> AllocateTemporaryEntryPoints +00007FA12959AAC8 18 stub<3624> AllocateTemporaryEntryPoints +00007FA12959AAE0 18 stub<3625> AllocateTemporaryEntryPoints +00007FA12959AAF8 18 stub<3626> AllocateTemporaryEntryPoints +00007FA12959AB10 60 stub<3627> AllocateTemporaryEntryPoints +00007FA12959AB70 78 stub<3628> AllocateTemporaryEntryPoints +00007FA12959ABE8 240 stub<3629> AllocateTemporaryEntryPoints +00007FA12959C000 240 stub<3630> AllocateTemporaryEntryPoints +00007FA12959C240 18 stub<3631> AllocateTemporaryEntryPoints +00007FA12959C258 60 stub<3632> AllocateTemporaryEntryPoints +00007FA12959C2B8 138 stub<3633> AllocateTemporaryEntryPoints +00007FA12959C3F0 2a0 stub<3634> AllocateTemporaryEntryPoints +00007FA12959C690 18 stub<3635> AllocateTemporaryEntryPoints +00007FA12959C6A8 18 stub<3636> AllocateTemporaryEntryPoints +00007FA12959C6C0 6f0 stub<3637> AllocateTemporaryEntryPoints +00007FA12959CDB0 78 stub<3638> AllocateTemporaryEntryPoints +00007FA12959CE28 a8 stub<3639> AllocateTemporaryEntryPoints +00007FA12959CED0 18 stub<3640> AllocateTemporaryEntryPoints +00007FA12959CEE8 18 stub<3641> AllocateTemporaryEntryPoints +00007FA12959CF00 18 stub<3642> AllocateTemporaryEntryPoints +00007FA12959E000 138 stub<3643> AllocateTemporaryEntryPoints +00007FA12959E138 48 stub<3644> AllocateTemporaryEntryPoints +00007FA12959E180 768 stub<3645> AllocateTemporaryEntryPoints +00007FA12959E8E8 60 stub<3646> AllocateTemporaryEntryPoints +00007FA12959E948 318 stub<3647> AllocateTemporaryEntryPoints +00007FA12959EC60 30 stub<3648> AllocateTemporaryEntryPoints +00007FA12959EC90 30 stub<3649> AllocateTemporaryEntryPoints +00007FA12784B2F0 e stub<3650> GenerateVTableCallStub +00007FA12959ECC0 a8 stub<3651> AllocateTemporaryEntryPoints +00007FA12959EDB0 c0 stub<3652> AllocateTemporaryEntryPoints +00007FA12784B300 11 stub<3653> GenerateVTableCallStub +00007FA12959EE88 d8 stub<3654> AllocateTemporaryEntryPoints +00007FA12784B320 11 stub<3655> GenerateVTableCallStub +00007FA129700000 2b8 stub<3656> AllocateTemporaryEntryPoints +00007FA1297002B8 2b8 stub<3657> AllocateTemporaryEntryPoints +00007FA129700570 270 stub<3658> AllocateTemporaryEntryPoints +00007FA1297007E0 270 stub<3659> AllocateTemporaryEntryPoints +00007FA129700A50 270 stub<3660> AllocateTemporaryEntryPoints +00007FA12784B340 e stub<3661> GenerateVTableCallStub +00007FA12784B350 e stub<3662> GenerateVTableCallStub +00007FA129700CC0 270 stub<3663> AllocateTemporaryEntryPoints +00007FA129700FA8 18 stub<3664> AllocateTemporaryEntryPoints +00007FA12784B360 e stub<3665> GenerateVTableCallStub +00007FA129702000 60 stub<3666> AllocateTemporaryEntryPoints +00007FA129702060 258 stub<3667> AllocateTemporaryEntryPoints +00007FA1297022B8 18 stub<3668> AllocateTemporaryEntryPoints +00007FA1297022D0 18 stub<3669> AllocateTemporaryEntryPoints +00007FA129702300 2b8 stub<3670> AllocateTemporaryEntryPoints +00007FA1297025B8 2b8 stub<3671> AllocateTemporaryEntryPoints +00007FA129702870 2b8 stub<3672> AllocateTemporaryEntryPoints +00007FA129702B28 270 stub<3673> AllocateTemporaryEntryPoints +00007FA129704000 270 stub<3674> AllocateTemporaryEntryPoints +00007FA129704270 270 stub<3675> AllocateTemporaryEntryPoints +00007FA1297044E0 270 stub<3676> AllocateTemporaryEntryPoints +00007FA129704750 270 stub<3677> AllocateTemporaryEntryPoints +00007FA1297049C0 18 stub<3678> AllocateTemporaryEntryPoints +00007FA1297049D8 18 stub<3679> AllocateTemporaryEntryPoints +00007FA1297049F0 270 stub<3680> AllocateTemporaryEntryPoints +00007FA129704C60 18 stub<3681> AllocateTemporaryEntryPoints +00007FA129704C78 18 stub<3682> AllocateTemporaryEntryPoints +00007FA129704C90 18 stub<3683> AllocateTemporaryEntryPoints +00007FA129704CA8 18 stub<3684> AllocateTemporaryEntryPoints +00007FA129704CC0 2b8 stub<3685> AllocateTemporaryEntryPoints +00007FA129706000 2b8 stub<3686> AllocateTemporaryEntryPoints +00007FA1297062B8 2b8 stub<3687> AllocateTemporaryEntryPoints +00007FA129706570 2b8 stub<3688> AllocateTemporaryEntryPoints +00007FA129706828 270 stub<3689> AllocateTemporaryEntryPoints +00007FA129706A98 270 stub<3690> AllocateTemporaryEntryPoints +00007FA129706D08 270 stub<3691> AllocateTemporaryEntryPoints +00007FA129708000 270 stub<3692> AllocateTemporaryEntryPoints +00007FA129708270 270 stub<3693> AllocateTemporaryEntryPoints +00007FA1297084E0 270 stub<3694> AllocateTemporaryEntryPoints +00007FA129708750 18 stub<3695> AllocateTemporaryEntryPoints +00007FA129708768 18 stub<3696> AllocateTemporaryEntryPoints +00007FA129708780 18 stub<3697> AllocateTemporaryEntryPoints +00007FA129708798 270 stub<3698> AllocateTemporaryEntryPoints +00007FA129708A08 18 stub<3699> AllocateTemporaryEntryPoints +00007FA129708A20 18 stub<3700> AllocateTemporaryEntryPoints +00007FA129708A38 270 stub<3701> AllocateTemporaryEntryPoints +00007FA129708CA8 18 stub<3702> AllocateTemporaryEntryPoints +00007FA129708CC0 18 stub<3703> AllocateTemporaryEntryPoints +00007FA129708CD8 18 stub<3704> AllocateTemporaryEntryPoints +00007FA129708CF0 2b8 stub<3705> AllocateTemporaryEntryPoints +00007FA12970A000 270 stub<3706> AllocateTemporaryEntryPoints +00007FA12970A270 270 stub<3707> AllocateTemporaryEntryPoints +00007FA12970A4E0 270 stub<3708> AllocateTemporaryEntryPoints +00007FA12970A750 270 stub<3709> AllocateTemporaryEntryPoints +00007FA12970A9C0 18 stub<3710> AllocateTemporaryEntryPoints +00007FA12970A9D8 18 stub<3711> AllocateTemporaryEntryPoints +00007FA12970A9F0 18 stub<3712> AllocateTemporaryEntryPoints +00007FA12970AA08 2b8 stub<3713> AllocateTemporaryEntryPoints +00007FA12970ACC0 2b8 stub<3714> AllocateTemporaryEntryPoints +00007FA12970C000 2b8 stub<3715> AllocateTemporaryEntryPoints +00007FA12970C2B8 270 stub<3716> AllocateTemporaryEntryPoints +00007FA12970C528 270 stub<3717> AllocateTemporaryEntryPoints +00007FA12970C798 270 stub<3718> AllocateTemporaryEntryPoints +00007FA12970CA08 270 stub<3719> AllocateTemporaryEntryPoints +00007FA12970CC78 270 stub<3720> AllocateTemporaryEntryPoints +00007FA12970CEE8 18 stub<3721> AllocateTemporaryEntryPoints +00007FA12970CF00 18 stub<3722> AllocateTemporaryEntryPoints +00007FA12970E000 270 stub<3723> AllocateTemporaryEntryPoints +00007FA12970E270 18 stub<3724> AllocateTemporaryEntryPoints +00007FA12970E288 18 stub<3725> AllocateTemporaryEntryPoints +00007FA12970E2A0 18 stub<3726> AllocateTemporaryEntryPoints +00007FA12970E2B8 18 stub<3727> AllocateTemporaryEntryPoints +00007FA12970E2D0 18 stub<3728> AllocateTemporaryEntryPoints +00007FA12970E2E8 2b8 stub<3729> AllocateTemporaryEntryPoints +00007FA12970E5A0 2b8 stub<3730> AllocateTemporaryEntryPoints +00007FA12970E858 2b8 stub<3731> AllocateTemporaryEntryPoints +00007FA12970EB10 2b8 stub<3732> AllocateTemporaryEntryPoints +00007FA129730000 270 stub<3733> AllocateTemporaryEntryPoints +00007FA129730270 270 stub<3734> AllocateTemporaryEntryPoints +00007FA1297304E0 270 stub<3735> AllocateTemporaryEntryPoints +00007FA129730750 270 stub<3736> AllocateTemporaryEntryPoints +00007FA1297309C0 270 stub<3737> AllocateTemporaryEntryPoints +00007FA129730C30 270 stub<3738> AllocateTemporaryEntryPoints +00007FA129730EA0 18 stub<3739> AllocateTemporaryEntryPoints +00007FA129730EB8 18 stub<3740> AllocateTemporaryEntryPoints +00007FA129730ED0 18 stub<3741> AllocateTemporaryEntryPoints +00007FA129732000 270 stub<3742> AllocateTemporaryEntryPoints +00007FA129732270 18 stub<3743> AllocateTemporaryEntryPoints +00007FA129732288 18 stub<3744> AllocateTemporaryEntryPoints +00007FA1297322A0 270 stub<3745> AllocateTemporaryEntryPoints +00007FA129732510 18 stub<3746> AllocateTemporaryEntryPoints +00007FA129732528 18 stub<3747> AllocateTemporaryEntryPoints +00007FA129732540 18 stub<3748> AllocateTemporaryEntryPoints +00007FA129732558 2b8 stub<3749> AllocateTemporaryEntryPoints +00007FA129732810 270 stub<3750> AllocateTemporaryEntryPoints +00007FA129732A80 270 stub<3751> AllocateTemporaryEntryPoints +00007FA129732CF0 18 stub<3752> AllocateTemporaryEntryPoints +00007FA129732D08 18 stub<3753> AllocateTemporaryEntryPoints +00007FA129732D20 2b8 stub<3754> AllocateTemporaryEntryPoints +00007FA129734000 60 stub<3755> AllocateTemporaryEntryPoints +00007FA129734060 2b8 stub<3756> AllocateTemporaryEntryPoints +00007FA129734318 60 stub<3757> AllocateTemporaryEntryPoints +00007FA129734378 1c8 stub<3758> AllocateTemporaryEntryPoints +00007FA129734540 2b8 stub<3759> AllocateTemporaryEntryPoints +00007FA1297347F8 60 stub<3760> AllocateTemporaryEntryPoints +00007FA129734858 168 stub<3761> AllocateTemporaryEntryPoints +00007FA1297349C0 2b8 stub<3762> AllocateTemporaryEntryPoints +00007FA129734C78 60 stub<3763> AllocateTemporaryEntryPoints +00007FA129734CD8 2b8 stub<3764> AllocateTemporaryEntryPoints +00007FA129734F90 60 stub<3765> AllocateTemporaryEntryPoints +00007FA129736000 2b8 stub<3766> AllocateTemporaryEntryPoints +00007FA1297362B8 4f8 stub<3767> AllocateTemporaryEntryPoints +00007FA1297367B0 78 stub<3768> AllocateTemporaryEntryPoints +00007FA129736828 a8 stub<3769> AllocateTemporaryEntryPoints +00007FA1297368D0 18 stub<3770> AllocateTemporaryEntryPoints +00007FA1297368E8 18 stub<3771> AllocateTemporaryEntryPoints +00007FA129736900 18 stub<3772> AllocateTemporaryEntryPoints +00007FA129736918 2b8 stub<3773> AllocateTemporaryEntryPoints +00007FA129738000 4f8 stub<3774> AllocateTemporaryEntryPoints +00007FA1297384F8 78 stub<3775> AllocateTemporaryEntryPoints +00007FA129738570 a8 stub<3776> AllocateTemporaryEntryPoints +00007FA129738618 18 stub<3777> AllocateTemporaryEntryPoints +00007FA129738630 18 stub<3778> AllocateTemporaryEntryPoints +00007FA129738648 18 stub<3779> AllocateTemporaryEntryPoints +00007FA129738660 2b8 stub<3780> AllocateTemporaryEntryPoints +00007FA129738918 4f8 stub<3781> AllocateTemporaryEntryPoints +00007FA129738E10 78 stub<3782> AllocateTemporaryEntryPoints +00007FA129738E88 a8 stub<3783> AllocateTemporaryEntryPoints +00007FA129738F30 18 stub<3784> AllocateTemporaryEntryPoints +00007FA129738F48 18 stub<3785> AllocateTemporaryEntryPoints +00007FA129738F60 18 stub<3786> AllocateTemporaryEntryPoints +00007FA12973A000 2b8 stub<3787> AllocateTemporaryEntryPoints +00007FA12973A2B8 4f8 stub<3788> AllocateTemporaryEntryPoints +00007FA12973A7B0 78 stub<3789> AllocateTemporaryEntryPoints +00007FA12973A828 a8 stub<3790> AllocateTemporaryEntryPoints +00007FA12973A8D0 18 stub<3791> AllocateTemporaryEntryPoints +00007FA12973A8E8 18 stub<3792> AllocateTemporaryEntryPoints +00007FA12973A900 18 stub<3793> AllocateTemporaryEntryPoints +00007FA12973A918 2b8 stub<3794> AllocateTemporaryEntryPoints +00007FA12973C000 4f8 stub<3795> AllocateTemporaryEntryPoints +00007FA12973C4F8 78 stub<3796> AllocateTemporaryEntryPoints +00007FA12973C570 a8 stub<3797> AllocateTemporaryEntryPoints +00007FA12973C618 18 stub<3798> AllocateTemporaryEntryPoints +00007FA12973C630 18 stub<3799> AllocateTemporaryEntryPoints +00007FA12973C648 18 stub<3800> AllocateTemporaryEntryPoints +00007FA12973C660 18 stub<3801> AllocateTemporaryEntryPoints +00007FA12973C678 60 stub<3802> AllocateTemporaryEntryPoints +00007FA12973C6D8 60 stub<3803> AllocateTemporaryEntryPoints +00007FA12973C738 60 stub<3804> AllocateTemporaryEntryPoints +00007FA12973C798 60 stub<3805> AllocateTemporaryEntryPoints +00007FA12973C7F8 3d8 stub<3806> AllocateTemporaryEntryPoints +00007FA12973CBD0 30 stub<3807> AllocateTemporaryEntryPoints +00007FA12973CC00 90 stub<3808> AllocateTemporaryEntryPoints +00007FA12973CC90 60 stub<3809> AllocateTemporaryEntryPoints +00007FA12973CD08 d8 stub<3810> AllocateTemporaryEntryPoints +00007FA12973CDE0 18 stub<3811> AllocateTemporaryEntryPoints +00007FA12973CDF8 18 stub<3812> AllocateTemporaryEntryPoints +00007FA12973CE10 60 stub<3813> AllocateTemporaryEntryPoints +00007FA12973CE70 60 stub<3814> AllocateTemporaryEntryPoints +00007FA12784B370 e stub<3815> GenerateVTableCallStub +00007FA12973CED0 30 stub<3816> AllocateTemporaryEntryPoints +00007FA12973CF00 48 stub<3817> AllocateTemporaryEntryPoints +00007FA12973E000 2a0 stub<3818> AllocateTemporaryEntryPoints +00007FA12973E2A0 2a0 stub<3819> AllocateTemporaryEntryPoints +00007FA12973E540 18 stub<3820> AllocateTemporaryEntryPoints +00007FA12973E558 18 stub<3821> AllocateTemporaryEntryPoints +00007FA12973E570 18 stub<3822> AllocateTemporaryEntryPoints +00007FA12973E588 18 stub<3823> AllocateTemporaryEntryPoints +00007FA12973E5A0 138 stub<3824> AllocateTemporaryEntryPoints +00007FA12973E6D8 18 stub<3825> AllocateTemporaryEntryPoints +00007FA12973E6F0 18 stub<3826> AllocateTemporaryEntryPoints +00007FA12973E708 60 stub<3827> AllocateTemporaryEntryPoints +00007FA12973E768 60 stub<3828> AllocateTemporaryEntryPoints +00007FA12973E7C8 2b8 stub<3829> AllocateTemporaryEntryPoints +00007FA12973EA80 18 stub<3830> AllocateTemporaryEntryPoints +00007FA12973EA98 18 stub<3831> AllocateTemporaryEntryPoints +00007FA12973EAB0 60 stub<3832> AllocateTemporaryEntryPoints +00007FA12973EB10 18 stub<3833> AllocateTemporaryEntryPoints +00007FA12973EB28 240 stub<3834> AllocateTemporaryEntryPoints +00007FA12973ED68 240 stub<3835> AllocateTemporaryEntryPoints +00007FA12973EFA8 18 stub<3836> AllocateTemporaryEntryPoints +00007FA12973EFC0 18 stub<3837> AllocateTemporaryEntryPoints +00007FA12973EFD8 18 stub<3838> AllocateTemporaryEntryPoints +00007FA129750000 18 stub<3839> AllocateTemporaryEntryPoints +00007FA129750018 18 stub<3840> AllocateTemporaryEntryPoints +00007FA129750030 18 stub<3841> AllocateTemporaryEntryPoints +00007FA129750048 18 stub<3842> AllocateTemporaryEntryPoints +00007FA129750060 60 stub<3843> AllocateTemporaryEntryPoints +00007FA1297500D8 48 stub<3844> AllocateTemporaryEntryPoints +00007FA1284D5AA0 12b instance class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerSinkConfiguration::Sink(class Datadog.Trace.Vendors.Serilog.Core.ILogEventSink,valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch)[QuickJitted] +00007FA1284D5BF0 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::<.ctor>b__13_0(class Datadog.Trace.Vendors.Serilog.Core.ILogEventSink)[QuickJitted] +00007FA1284D5C40 1c instance string [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::get_MachineName()[QuickJitted] +00007FA129750120 30 stub<3845> AllocateTemporaryEntryPoints +00007FA1284D5C70 8a instance class Datadog.Trace.Vendors.Serilog.LoggerConfiguration [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Configuration.LoggerEnrichmentConfiguration::WithProperty(string,object,bool)[QuickJitted] +00007FA129750150 90 stub<3846> AllocateTemporaryEntryPoints +00007FA1284D5D10 60 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Enrichers.PropertyEnricher::.ctor(string,object,bool)[QuickJitted] +00007FA1284D5D90 df void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEventProperty::EnsureValidName(string)[QuickJitted] +00007FA1284D5E90 26 bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEventProperty::IsValidName(string)[QuickJitted] +00007FA1284D5ED0 1b instance int32 [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::get_ProcessId()[QuickJitted] +00007FA1284D5F00 1b instance int32 [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::get_AppDomainId()[QuickJitted] +00007FA1284D5F30 1c instance string [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::get_AppDomainName()[QuickJitted] +00007FA1297501E0 18 stub<3847> AllocateTemporaryEntryPoints +00007FA1297501F8 18 stub<3848> AllocateTemporaryEntryPoints +00007FA129750210 18 stub<3849> AllocateTemporaryEntryPoints +00007FA129750228 18 stub<3850> AllocateTemporaryEntryPoints +00007FA12784B380 e stub<3851> GenerateVTableCallStub +00007FA129750240 18 stub<3852> AllocateTemporaryEntryPoints +00007FA129750258 30 stub<3853> AllocateTemporaryEntryPoints +00007FA129750288 18 stub<3854> AllocateTemporaryEntryPoints +00007FA1297502A0 60 stub<3855> AllocateTemporaryEntryPoints +00007FA129750300 30 stub<3856> AllocateTemporaryEntryPoints +00007FA129750330 30 stub<3857> AllocateTemporaryEntryPoints +00007FA129750360 18 stub<3858> AllocateTemporaryEntryPoints +00007FA129750378 18 stub<3859> AllocateTemporaryEntryPoints +00007FA129750390 18 stub<3860> AllocateTemporaryEntryPoints +00007FA1297503A8 18 stub<3861> AllocateTemporaryEntryPoints +00007FA1297503C0 1b0 stub<3862> AllocateTemporaryEntryPoints +00007FA129750570 30 stub<3863> AllocateTemporaryEntryPoints +00007FA1297505A0 18 stub<3864> AllocateTemporaryEntryPoints +00007FA1297505B8 18 stub<3865> AllocateTemporaryEntryPoints +00007FA1297505D0 18 stub<3866> AllocateTemporaryEntryPoints +00007FA1297505E8 18 stub<3867> AllocateTemporaryEntryPoints +00007FA129750600 18 stub<3868> AllocateTemporaryEntryPoints +00007FA129750618 30 stub<3869> AllocateTemporaryEntryPoints +00007FA129750648 30 stub<3870> AllocateTemporaryEntryPoints +00007FA129750678 30 stub<3871> AllocateTemporaryEntryPoints +00007FA1284D5F60 4ff instance class Datadog.Trace.Vendors.Serilog.Core.Logger [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration::CreateLogger()[QuickJitted] +00007FA1284D6480 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.LoggerConfiguration+<>c__DisplayClass32_0::.ctor()[QuickJitted] +00007FA1297506A8 18 stub<3872> AllocateTemporaryEntryPoints +00007FA1284D64C0 9a instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Sinks.SafeAggregateSink::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1297506C0 18 stub<3873> AllocateTemporaryEntryPoints +00007FA1277BF4E0 18 stub<3874> GenerateLookupStub +00007FA1277F4B60 18 stub<3875> GenerateResolveStub +00007FA1277C35E0 20 stub<3876> GenerateDispatchStub +00007FA1277BF500 18 stub<3877> GenerateLookupStub +00007FA1277BF520 18 stub<3878> GenerateLookupStub +00007FA1277F4BD0 18 stub<3879> GenerateResolveStub +00007FA1277C3600 20 stub<3880> GenerateDispatchStub +00007FA1297506D8 18 stub<3881> AllocateTemporaryEntryPoints +00007FA1297506F0 18 stub<3882> AllocateTemporaryEntryPoints +00007FA129750708 30 stub<3883> AllocateTemporaryEntryPoints +00007FA129750738 30 stub<3884> AllocateTemporaryEntryPoints +00007FA129750768 30 stub<3885> AllocateTemporaryEntryPoints +00007FA129750798 30 stub<3886> AllocateTemporaryEntryPoints +00007FA1297507C8 30 stub<3887> AllocateTemporaryEntryPoints +00007FA1297507F8 18 stub<3888> AllocateTemporaryEntryPoints +00007FA129750810 18 stub<3889> AllocateTemporaryEntryPoints +00007FA129750828 78 stub<3890> AllocateTemporaryEntryPoints +00007FA1284D6570 417 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter::.ctor(int32,int32,int32,class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1,bool)[QuickJitted] +00007FA1284D69B0 471 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter::.cctor()[QuickJitted] +00007FA1297508A0 60 stub<3891> AllocateTemporaryEntryPoints +00007FA129750900 108 stub<3892> AllocateTemporaryEntryPoints +00007FA129750A08 c0 stub<3893> AllocateTemporaryEntryPoints +00007FA129750AC8 c0 stub<3894> AllocateTemporaryEntryPoints +00007FA129750B88 18 stub<3895> AllocateTemporaryEntryPoints +00007FA129750BA0 18 stub<3896> AllocateTemporaryEntryPoints +00007FA129750BB8 48 stub<3897> AllocateTemporaryEntryPoints +00007FA129750C00 108 stub<3898> AllocateTemporaryEntryPoints +00007FA129750D08 c0 stub<3899> AllocateTemporaryEntryPoints +00007FA129750DC8 90 stub<3900> AllocateTemporaryEntryPoints +00007FA129750E58 90 stub<3901> AllocateTemporaryEntryPoints +00007FA129750EE8 18 stub<3902> AllocateTemporaryEntryPoints +00007FA129750F00 18 stub<3903> AllocateTemporaryEntryPoints +00007FA129750F18 48 stub<3904> AllocateTemporaryEntryPoints +00007FA1284D6E40 5b instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Policies.SimpleScalarConversionPolicy::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1277BF540 18 stub<3905> GenerateLookupStub +00007FA129752000 108 stub<3906> AllocateTemporaryEntryPoints +00007FA129752108 108 stub<3907> AllocateTemporaryEntryPoints +00007FA129752210 18 stub<3908> AllocateTemporaryEntryPoints +00007FA1277BF560 18 stub<3909> GenerateLookupStub +00007FA1277C3620 20 stub<3910> GenerateDispatchStub +00007FA1277F4C40 18 stub<3911> GenerateResolveStub +00007FA1277C3640 20 stub<3912> GenerateDispatchStub +00007FA1277C3660 20 stub<3913> GenerateDispatchStub +00007FA1277C3680 20 stub<3914> GenerateDispatchStub +00007FA1284D72C0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Policies.EnumScalarConversionPolicy::.ctor()[QuickJitted] +00007FA1284D7300 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Policies.ByteArrayScalarConversionPolicy::.ctor()[QuickJitted] +00007FA1284D7340 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Policies.DelegateDestructuringPolicy::.ctor()[QuickJitted] +00007FA1284D7380 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Policies.ReflectionTypesScalarDestructuringPolicy::.ctor()[QuickJitted] +00007FA1277BF580 18 stub<3915> GenerateLookupStub +00007FA129752228 60 stub<3916> AllocateTemporaryEntryPoints +00007FA129752288 c0 stub<3917> AllocateTemporaryEntryPoints +00007FA129752348 168 stub<3918> AllocateTemporaryEntryPoints +00007FA1297524B0 c0 stub<3919> AllocateTemporaryEntryPoints +00007FA129752570 c0 stub<3920> AllocateTemporaryEntryPoints +00007FA129752630 60 stub<3921> AllocateTemporaryEntryPoints +00007FA129752690 18 stub<3922> AllocateTemporaryEntryPoints +00007FA1297526A8 18 stub<3923> AllocateTemporaryEntryPoints +00007FA1297526C0 18 stub<3924> AllocateTemporaryEntryPoints +00007FA1277BF5A0 18 stub<3925> GenerateLookupStub +00007FA1277F4CB0 18 stub<3926> GenerateResolveStub +00007FA1277C36A0 20 stub<3927> GenerateDispatchStub +00007FA1297526D8 60 stub<3928> AllocateTemporaryEntryPoints +00007FA129752738 90 stub<3929> AllocateTemporaryEntryPoints +00007FA1297527C8 18 stub<3930> AllocateTemporaryEntryPoints +00007FA1297527E0 18 stub<3931> AllocateTemporaryEntryPoints +00007FA1277BF5C0 18 stub<3932> GenerateLookupStub +00007FA1277F4D20 18 stub<3933> GenerateResolveStub +00007FA1277C36C0 20 stub<3934> GenerateDispatchStub +00007FA1284D73C0 41 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter+DepthLimiter::.ctor(int32,class Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter)[QuickJitted] +00007FA1297527F8 30 stub<3935> AllocateTemporaryEntryPoints +00007FA129752828 90 stub<3936> AllocateTemporaryEntryPoints +00007FA1284D7420 c9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.MessageTemplateProcessor::.ctor(class Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter)[QuickJitted] +00007FA1284D7500 fd instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Pipeline.MessageTemplateCache::.ctor(class Datadog.Trace.Vendors.Serilog.Core.IMessageTemplateParser)[QuickJitted] +00007FA1284D7620 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyBinder::.ctor(class Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter)[QuickJitted] +00007FA1297528B8 18 stub<3937> AllocateTemporaryEntryPoints +00007FA1284D7670 9a instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Enrichers.SafeAggregateEnricher::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1297528D0 18 stub<3938> AllocateTemporaryEntryPoints +00007FA1277BF5E0 18 stub<3939> GenerateLookupStub +00007FA1277F4D90 18 stub<3940> GenerateResolveStub +00007FA1277C36E0 20 stub<3941> GenerateDispatchStub +00007FA1277BF600 18 stub<3942> GenerateLookupStub +00007FA1277F4E00 18 stub<3943> GenerateResolveStub +00007FA1277C3700 20 stub<3944> GenerateDispatchStub +00007FA1297528E8 18 stub<3945> AllocateTemporaryEntryPoints +00007FA129752900 18 stub<3946> AllocateTemporaryEntryPoints +00007FA129752918 d8 stub<3947> AllocateTemporaryEntryPoints +00007FA1297529F0 d8 stub<3948> AllocateTemporaryEntryPoints +00007FA129752AC8 18 stub<3949> AllocateTemporaryEntryPoints +00007FA129752AE0 18 stub<3950> AllocateTemporaryEntryPoints +00007FA129752AF8 18 stub<3951> AllocateTemporaryEntryPoints +00007FA129752B10 18 stub<3952> AllocateTemporaryEntryPoints +00007FA1277BF620 18 stub<3953> GenerateLookupStub +00007FA1277BF640 18 stub<3954> GenerateLookupStub +00007FA1277F4E70 18 stub<3955> GenerateResolveStub +00007FA1277C3720 20 stub<3956> GenerateDispatchStub +00007FA1277BF660 18 stub<3957> GenerateLookupStub +00007FA1277BF680 18 stub<3958> GenerateLookupStub +00007FA1284D7720 56 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Logger::.ctor(class Datadog.Trace.Vendors.Serilog.Capturing.MessageTemplateProcessor,class Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch,class Datadog.Trace.Vendors.Serilog.Core.ILogEventSink,class Datadog.Trace.Vendors.Serilog.Core.ILogEventEnricher,class [System.Runtime]System.Action,class Datadog.Trace.Vendors.Serilog.Core.LevelOverrideMap)[QuickJitted] +00007FA1284D7790 a2 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Logger::.ctor(class Datadog.Trace.Vendors.Serilog.Capturing.MessageTemplateProcessor,valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class Datadog.Trace.Vendors.Serilog.Core.ILogEventSink,class Datadog.Trace.Vendors.Serilog.Core.ILogEventEnricher,class [System.Runtime]System.Action,class Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch,class Datadog.Trace.Vendors.Serilog.Core.LevelOverrideMap)[QuickJitted] +00007FA1284D7850 4e instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,int32,string)[QuickJitted] +00007FA1277BF6A0 18 stub<3959> GenerateLookupStub +00007FA129752B40 228 stub<3960> AllocateTemporaryEntryPoints +00007FA1284D78C0 69 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,object[],int32,string)[QuickJitted] +00007FA129754000 810 stub<3961> AllocateTemporaryEntryPoints +00007FA129754810 570 stub<3962> AllocateTemporaryEntryPoints +00007FA1284D7940 5a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Logger::IsEnabled(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel)[QuickJitted] +00007FA129754D80 60 stub<3963> AllocateTemporaryEntryPoints +00007FA1284D79B0 1b instance valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch::get_MinimumLevel()[QuickJitted] +00007FA1277F4EE0 18 stub<3964> GenerateResolveStub +00007FA1277C3740 20 stub<3965> GenerateDispatchStub +00007FA1277F4F50 18 stub<3966> GenerateResolveStub +00007FA1277C3760 20 stub<3967> GenerateDispatchStub +00007FA128428000 f0 stub<3968> AllocateTemporaryEntryPoints +00007FA1284281E0 f0 stub<3969> AllocateTemporaryEntryPoints +00007FA1284D79E0 110 void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeMethods::EnableByRefInstrumentation()[QuickJitted] +00007FA129754DE0 60 stub<3970> AllocateTemporaryEntryPoints +00007FA129754E40 168 stub<3971> AllocateTemporaryEntryPoints +00007FA1284D7B10 1d void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeMethods::.cctor()[QuickJitted] +00007FA129756000 60 stub<3972> AllocateTemporaryEntryPoints +00007FA1284D7B50 91 class Datadog.Trace.FrameworkDescription [Datadog.Trace] Datadog.Trace.FrameworkDescription::get_Instance()[QuickJitted] +00007FA129756060 30 stub<3973> AllocateTemporaryEntryPoints +00007FA129756090 1b0 stub<3974> AllocateTemporaryEntryPoints +00007FA129756240 2a0 stub<3975> AllocateTemporaryEntryPoints +00007FA1297564E0 1b0 stub<3976> AllocateTemporaryEntryPoints +00007FA129756690 168 stub<3977> AllocateTemporaryEntryPoints +00007FA1297567F8 18 stub<3978> AllocateTemporaryEntryPoints +00007FA129756810 18 stub<3979> AllocateTemporaryEntryPoints +00007FA129756828 228 stub<3980> AllocateTemporaryEntryPoints +00007FA1284D7C00 366 void [Datadog.Trace] Datadog.Trace.FrameworkDescription::.cctor()[QuickJitted] +00007FA129756A68 1b0 stub<3981> AllocateTemporaryEntryPoints +00007FA1284D7F80 7f class System.Tuple`2 [System.Private.CoreLib] System.Tuple::Create(!!0,!!1)[QuickJitted] +00007FA1277C3780 20 stub<3982> GenerateDispatchStub +00007FA1284D8020 319 class Datadog.Trace.FrameworkDescription [Datadog.Trace] Datadog.Trace.FrameworkDescription::Create()[QuickJitted] +00007FA1284D8780 138 void [Datadog.Trace] Datadog.Trace.Logging.DatadogLogging::CleanInstrumentationVerificationLogFiles(string,valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA129756C30 48 stub<3983> AllocateTemporaryEntryPoints +00007FA129756C78 48 stub<3984> AllocateTemporaryEntryPoints +00007FA129756CC0 18 stub<3985> AllocateTemporaryEntryPoints +00007FA129756CD8 a8 stub<3986> AllocateTemporaryEntryPoints +00007FA129758000 2d0 stub<3987> AllocateTemporaryEntryPoints +00007FA1297582D0 60 stub<3988> AllocateTemporaryEntryPoints +00007FA129758330 2d0 stub<3989> AllocateTemporaryEntryPoints +00007FA129758600 18 stub<3990> AllocateTemporaryEntryPoints +00007FA129758618 2a0 stub<3991> AllocateTemporaryEntryPoints +00007FA1297588B8 18 stub<3992> AllocateTemporaryEntryPoints +00007FA1297588D0 18 stub<3993> AllocateTemporaryEntryPoints +00007FA1297588E8 18 stub<3994> AllocateTemporaryEntryPoints +00007FA129758900 c0 stub<3995> AllocateTemporaryEntryPoints +00007FA1297589C0 18 stub<3996> AllocateTemporaryEntryPoints +00007FA1297589D8 18 stub<3997> AllocateTemporaryEntryPoints +00007FA129758A08 18 stub<3998> AllocateTemporaryEntryPoints +00007FA129758A20 18 stub<3999> AllocateTemporaryEntryPoints +00007FA129758A38 18 stub<4000> AllocateTemporaryEntryPoints +00007FA129758A50 18 stub<4001> AllocateTemporaryEntryPoints +00007FA129758A68 18 stub<4002> AllocateTemporaryEntryPoints +00007FA129758A80 240 stub<4003> AllocateTemporaryEntryPoints +00007FA129758CC0 48 stub<4004> AllocateTemporaryEntryPoints +00007FA129758D08 60 stub<4005> AllocateTemporaryEntryPoints +00007FA129758D68 18 stub<4006> AllocateTemporaryEntryPoints +00007FA129758D80 18 stub<4007> AllocateTemporaryEntryPoints +00007FA129758D98 18 stub<4008> AllocateTemporaryEntryPoints +00007FA129758DB0 18 stub<4009> AllocateTemporaryEntryPoints +00007FA1284D88E0 238 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfValueType(!!0&,!!0,int32)[OptimizedTier1] +00007FA129758DC8 18 stub<4010> AllocateTemporaryEntryPoints +00007FA129758DE0 18 stub<4011> AllocateTemporaryEntryPoints +00007FA129758DF8 120 stub<4012> AllocateTemporaryEntryPoints +00007FA129758F18 90 stub<4013> AllocateTemporaryEntryPoints +00007FA12975A000 1c8 stub<4014> AllocateTemporaryEntryPoints +00007FA12975A1C8 390 stub<4015> AllocateTemporaryEntryPoints +00007FA1284D8B30 219 string [Datadog.Trace] Datadog.Trace.FrameworkDescription::GetNetCoreOrNetFrameworkVersion()[QuickJitted] +00007FA1284D8D70 88 instance void [Datadog.Trace] Datadog.Trace.FrameworkDescription::.ctor(string,string,string,string,string)[QuickJitted] +00007FA1284D8E10 45 instance bool [Datadog.Trace] Datadog.Trace.FrameworkDescription::IsWindows()[QuickJitted] +00007FA1284D8E70 1c instance string [Datadog.Trace] Datadog.Trace.FrameworkDescription::get_OSPlatform()[QuickJitted] +00007FA1284D8EA0 4e instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Information(string,int32,string)[QuickJitted] +00007FA1277BF6C0 18 stub<4016> GenerateLookupStub +00007FA1277BF6E0 18 stub<4017> GenerateLookupStub +00007FA12975A558 7f8 stub<4018> AllocateTemporaryEntryPoints +00007FA12975C000 2b8 stub<4019> AllocateTemporaryEntryPoints +00007FA12975C2B8 660 stub<4020> AllocateTemporaryEntryPoints +00007FA12975C918 18 stub<4021> AllocateTemporaryEntryPoints +00007FA1284D8F10 327 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::WriteIfNotRateLimited(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,object[],int32,string)[QuickJitted] +00007FA1284D9270 2c instance bool [Datadog.Trace] Datadog.Trace.Logging.NullLogRateLimiter::ShouldLog(string,int32,uint32&)[QuickJitted] +00007FA12975C930 f0 stub<4022> AllocateTemporaryEntryPoints +00007FA12975CA20 60 stub<4023> AllocateTemporaryEntryPoints +00007FA12975CA80 180 stub<4024> AllocateTemporaryEntryPoints +00007FA1284D92B0 16e instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Logger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,object[])[QuickJitted] +00007FA1284D9440 6c instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.MessageTemplateProcessor::Process(string,object[],class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate&,valuetype Datadog.Trace.Vendors.Serilog.Events.EventProperty[]&)[QuickJitted] +00007FA1277BF700 18 stub<4025> GenerateLookupStub +00007FA1284D94C0 1f3 instance class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Pipeline.MessageTemplateCache::Parse(string)[QuickJitted] +00007FA1277F4FC0 18 stub<4026> GenerateResolveStub +00007FA1277C37A0 20 stub<4027> GenerateDispatchStub +00007FA1277F5030 18 stub<4028> GenerateResolveStub +00007FA1277C37C0 20 stub<4029> GenerateDispatchStub +00007FA12975CC00 60 stub<4030> AllocateTemporaryEntryPoints +00007FA1284D96F0 ce instance valuetype Datadog.Trace.Vendors.Serilog.Events.EventProperty[] [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyBinder::ConstructProperties(class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate,object[])[QuickJitted] +00007FA1284D97E0 1c instance class Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken[] [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.MessageTemplate::get_NamedProperties()[QuickJitted] +00007FA1284D9810 1c instance class Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken[] [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.MessageTemplate::get_PositionalProperties()[QuickJitted] +00007FA1284D9840 2a void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyBinder::.cctor()[QuickJitted] +00007FA12975CC60 60 stub<4031> AllocateTemporaryEntryPoints +00007FA1284D9880 218 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEvent::.ctor(valuetype [System.Runtime]System.DateTimeOffset,valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate,valuetype Datadog.Trace.Vendors.Serilog.Events.EventProperty[])[QuickJitted] +00007FA1284D9AC0 14b instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEvent::.ctor(valuetype [System.Runtime]System.DateTimeOffset,valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate,class [System.Collections]System.Collections.Generic.Dictionary`2)[QuickJitted] +00007FA1277BF720 18 stub<4032> GenerateLookupStub +00007FA1277BF740 18 stub<4033> GenerateLookupStub +00007FA1284D9C30 af instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Logger::Dispatch(class Datadog.Trace.Vendors.Serilog.Events.LogEvent)[QuickJitted] +00007FA1284D9D00 10e instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Enrichers.SafeAggregateEnricher::Enrich(class Datadog.Trace.Vendors.Serilog.Events.LogEvent,class Datadog.Trace.Vendors.Serilog.Core.ILogEventPropertyFactory)[QuickJitted] +00007FA12975CCC0 108 stub<4034> AllocateTemporaryEntryPoints +00007FA1284D9E30 2b instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Context.LogContextEnricher::Enrich(class Datadog.Trace.Vendors.Serilog.Events.LogEvent,class Datadog.Trace.Vendors.Serilog.Core.ILogEventPropertyFactory)[QuickJitted] +00007FA12975CDC8 108 stub<4035> AllocateTemporaryEntryPoints +00007FA12975CED0 18 stub<4036> AllocateTemporaryEntryPoints +00007FA12975CEE8 108 stub<4037> AllocateTemporaryEntryPoints +00007FA12975E000 108 stub<4038> AllocateTemporaryEntryPoints +00007FA12975E108 18 stub<4039> AllocateTemporaryEntryPoints +00007FA12975E120 108 stub<4040> AllocateTemporaryEntryPoints +00007FA12975E228 18 stub<4041> AllocateTemporaryEntryPoints +00007FA1284D9E70 115 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Context.LogContext::Enrich(class Datadog.Trace.Vendors.Serilog.Events.LogEvent,class Datadog.Trace.Vendors.Serilog.Core.ILogEventPropertyFactory)[QuickJitted] +00007FA1284D9FB0 1e class Datadog.Trace.Vendors.Serilog.Context.ImmutableStack`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Context.LogContext::get_Enrichers()[QuickJitted] +00007FA1277BF760 18 stub<4042> GenerateLookupStub +00007FA1284D9FF0 101 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Enrichers.PropertyEnricher::Enrich(class Datadog.Trace.Vendors.Serilog.Events.LogEvent,class Datadog.Trace.Vendors.Serilog.Core.ILogEventPropertyFactory)[QuickJitted] +00007FA1284DA110 3e instance class Datadog.Trace.Vendors.Serilog.Events.LogEventProperty [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.MessageTemplateProcessor::CreateProperty(string,object,bool)[QuickJitted] +00007FA1284DA170 6a instance class Datadog.Trace.Vendors.Serilog.Events.LogEventProperty [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter::CreateProperty(string,object,bool)[QuickJitted] +00007FA1284DA1F0 35 instance class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter::CreatePropertyValue(object,bool)[QuickJitted] +00007FA1284DA240 90 instance class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter::CreatePropertyValue(object,bool,int32)[QuickJitted] +00007FA12975E240 90 stub<4043> AllocateTemporaryEntryPoints +00007FA1277BF780 18 stub<4044> GenerateLookupStub +00007FA1277BF7A0 18 stub<4045> GenerateLookupStub +00007FA1284DA2F0 3c1 instance class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter::CreatePropertyValue(object,valuetype Datadog.Trace.Vendors.Serilog.Parsing.Destructuring,int32)[QuickJitted] +00007FA1284DA6D0 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.ScalarValue::.ctor(object)[QuickJitted] +00007FA1284DA720 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue::.ctor()[QuickJitted] +00007FA1284DA760 a6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEventProperty::.ctor(string,class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue)[QuickJitted] +00007FA1284DA820 ec instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEvent::AddPropertyIfAbsent(class Datadog.Trace.Vendors.Serilog.Events.LogEventProperty)[QuickJitted] +00007FA1284DA930 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEventProperty::get_Name()[QuickJitted] +00007FA1284DA960 1c instance class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEventProperty::get_Value()[QuickJitted] +00007FA12975E2D0 60 stub<4046> AllocateTemporaryEntryPoints +00007FA1277F50A0 18 stub<4047> GenerateResolveStub +00007FA1277C37E0 20 stub<4048> GenerateDispatchStub +00007FA1277F5110 18 stub<4049> GenerateResolveStub +00007FA1277C3800 20 stub<4050> GenerateDispatchStub +00007FA1284DA990 f9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Sinks.SafeAggregateSink::Emit(class Datadog.Trace.Vendors.Serilog.Events.LogEvent)[QuickJitted] +00007FA12975E330 48 stub<4051> AllocateTemporaryEntryPoints +00007FA1277BF7C0 18 stub<4052> GenerateLookupStub +00007FA1284DAAB0 1f3 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink::Emit(class Datadog.Trace.Vendors.Serilog.Events.LogEvent)[QuickJitted] +00007FA12975E378 60 stub<4053> AllocateTemporaryEntryPoints +00007FA1284DACD0 4b valuetype [System.Runtime]System.DateTime [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.Clock::get_DateTimeNow()[QuickJitted] +00007FA12975E3D8 60 stub<4054> AllocateTemporaryEntryPoints +00007FA1284DAD30 7e void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.Clock::.cctor()[QuickJitted] +00007FA1284DADD0 47 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.Clock+<>c::.cctor()[QuickJitted] +00007FA1284DAE30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.Clock+<>c::.ctor()[QuickJitted] +00007FA1284DAE70 1b instance valuetype [System.Runtime]System.DateTime [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.Clock+<>c::<.cctor>b__5_0()[QuickJitted] +00007FA1284DAEA0 116 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink::AlignCurrentFileTo(valuetype [System.Runtime]System.DateTime,bool)[QuickJitted] +00007FA12975E438 30 stub<4055> AllocateTemporaryEntryPoints +00007FA12975E468 18 stub<4056> AllocateTemporaryEntryPoints +00007FA12975E480 18 stub<4057> AllocateTemporaryEntryPoints +00007FA12975E498 60 stub<4058> AllocateTemporaryEntryPoints +00007FA12975E4F8 60 stub<4059> AllocateTemporaryEntryPoints +00007FA12975E558 18 stub<4060> AllocateTemporaryEntryPoints +00007FA12975E570 18 stub<4061> AllocateTemporaryEntryPoints +00007FA12975E588 90 stub<4062> AllocateTemporaryEntryPoints +00007FA12975E618 18 stub<4063> AllocateTemporaryEntryPoints +00007FA12975E630 18 stub<4064> AllocateTemporaryEntryPoints +00007FA12975E648 18 stub<4065> AllocateTemporaryEntryPoints +00007FA12975E660 18 stub<4066> AllocateTemporaryEntryPoints +00007FA12975E678 18 stub<4067> AllocateTemporaryEntryPoints +00007FA12975E690 18 stub<4068> AllocateTemporaryEntryPoints +00007FA12975E6A8 18 stub<4069> AllocateTemporaryEntryPoints +00007FA12975E6C0 18 stub<4070> AllocateTemporaryEntryPoints +00007FA12975E6D8 18 stub<4071> AllocateTemporaryEntryPoints +00007FA1284DAFD0 78b instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink::OpenFile(valuetype [System.Runtime]System.DateTime,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1284DB7A0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink+<>c__DisplayClass17_0::.ctor()[QuickJitted] +00007FA1284DB7E0 39 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller::GetCurrentCheckpoint(valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA1284DB830 417 valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingIntervalExtensions::GetCurrentCheckpoint(valuetype Datadog.Trace.Vendors.Serilog.RollingInterval,valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA1284DBCA0 39 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller::GetNextCheckpoint(valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA1284DBCF0 2cb valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingIntervalExtensions::GetNextCheckpoint(valuetype Datadog.Trace.Vendors.Serilog.RollingInterval,valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA12975E6F0 198 stub<4072> AllocateTemporaryEntryPoints +00007FA12975E888 198 stub<4073> AllocateTemporaryEntryPoints +00007FA12975EA20 78 stub<4074> AllocateTemporaryEntryPoints +00007FA12975EA98 48 stub<4075> AllocateTemporaryEntryPoints +00007FA12975EAE0 18 stub<4076> AllocateTemporaryEntryPoints +00007FA12975EAF8 18 stub<4077> AllocateTemporaryEntryPoints +00007FA1284DC020 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller::get_LogFileDirectory()[QuickJitted] +00007FA1284DC050 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller::get_DirectorySearchPattern()[QuickJitted] +00007FA12975EB10 d8 stub<4078> AllocateTemporaryEntryPoints +00007FA1284DC080 66 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller::SelectMatches(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1284DC100 37 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller+d__15::.ctor(int32)[QuickJitted] +00007FA12975EBE8 138 stub<4079> AllocateTemporaryEntryPoints +00007FA12975ED20 108 stub<4080> AllocateTemporaryEntryPoints +00007FA12975EE28 120 stub<4081> AllocateTemporaryEntryPoints +00007FA129820000 c0 stub<4082> AllocateTemporaryEntryPoints +00007FA1298200C0 c0 stub<4083> AllocateTemporaryEntryPoints +00007FA129820180 18 stub<4084> AllocateTemporaryEntryPoints +00007FA129820198 18 stub<4085> AllocateTemporaryEntryPoints +00007FA1298201B0 48 stub<4086> AllocateTemporaryEntryPoints +00007FA1298201F8 108 stub<4087> AllocateTemporaryEntryPoints +00007FA129820300 d8 stub<4088> AllocateTemporaryEntryPoints +00007FA1298203D8 d8 stub<4089> AllocateTemporaryEntryPoints +00007FA1298204B0 18 stub<4090> AllocateTemporaryEntryPoints +00007FA1298204C8 18 stub<4091> AllocateTemporaryEntryPoints +00007FA1298204E0 48 stub<4092> AllocateTemporaryEntryPoints +00007FA1284DC150 47 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink+<>c::.cctor()[QuickJitted] +00007FA1284DC1B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink+<>c::.ctor()[QuickJitted] +00007FA129820528 258 stub<4093> AllocateTemporaryEntryPoints +00007FA129820780 258 stub<4094> AllocateTemporaryEntryPoints +00007FA1298209D8 48 stub<4095> AllocateTemporaryEntryPoints +00007FA129820A20 78 stub<4096> AllocateTemporaryEntryPoints +00007FA129820A98 48 stub<4097> AllocateTemporaryEntryPoints +00007FA129820AE0 18 stub<4098> AllocateTemporaryEntryPoints +00007FA129820AF8 18 stub<4099> AllocateTemporaryEntryPoints +00007FA129820B10 78 stub<4100> AllocateTemporaryEntryPoints +00007FA129820B88 48 stub<4101> AllocateTemporaryEntryPoints +00007FA129820BD0 18 stub<4102> AllocateTemporaryEntryPoints +00007FA129820BE8 18 stub<4103> AllocateTemporaryEntryPoints +00007FA129820C00 258 stub<4104> AllocateTemporaryEntryPoints +00007FA129820E58 48 stub<4105> AllocateTemporaryEntryPoints +00007FA129822000 258 stub<4106> AllocateTemporaryEntryPoints +00007FA129822258 48 stub<4107> AllocateTemporaryEntryPoints +00007FA1298222A0 78 stub<4108> AllocateTemporaryEntryPoints +00007FA129822318 48 stub<4109> AllocateTemporaryEntryPoints +00007FA129822360 18 stub<4110> AllocateTemporaryEntryPoints +00007FA129822378 18 stub<4111> AllocateTemporaryEntryPoints +00007FA1284DC1F0 8c class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.Enumerable::OrderByDescending(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA129822390 18 stub<4112> AllocateTemporaryEntryPoints +00007FA1298223A8 90 stub<4113> AllocateTemporaryEntryPoints +00007FA129822438 18 stub<4114> AllocateTemporaryEntryPoints +00007FA129822450 90 stub<4115> AllocateTemporaryEntryPoints +00007FA1298224E0 90 stub<4116> AllocateTemporaryEntryPoints +00007FA129822570 18 stub<4117> AllocateTemporaryEntryPoints +00007FA1284DC290 c3 instance void [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.Nullable`1[System.Int32]]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.OrderedEnumerable`1)[QuickJitted] +00007FA1284DC370 27 class System.Collections.Generic.Comparer`1 [System.Private.CoreLib] System.Collections.Generic.Comparer`1[System.Nullable`1[System.Int32]]::get_Default()[QuickJitted] +00007FA1284DC3B0 6b void [System.Private.CoreLib] System.Collections.Generic.Comparer`1[System.Nullable`1[System.Int32]]::.cctor()[QuickJitted] +00007FA129822588 90 stub<4118> AllocateTemporaryEntryPoints +00007FA129822618 60 stub<4119> AllocateTemporaryEntryPoints +00007FA129822678 90 stub<4120> AllocateTemporaryEntryPoints +00007FA129822708 60 stub<4121> AllocateTemporaryEntryPoints +00007FA129822768 18 stub<4122> AllocateTemporaryEntryPoints +00007FA129822780 90 stub<4123> AllocateTemporaryEntryPoints +00007FA129822810 60 stub<4124> AllocateTemporaryEntryPoints +00007FA129822870 90 stub<4125> AllocateTemporaryEntryPoints +00007FA129822900 60 stub<4126> AllocateTemporaryEntryPoints +00007FA129822960 18 stub<4127> AllocateTemporaryEntryPoints +00007FA129822978 18 stub<4128> AllocateTemporaryEntryPoints +00007FA129822990 138 stub<4129> AllocateTemporaryEntryPoints +00007FA129822AC8 90 stub<4130> AllocateTemporaryEntryPoints +00007FA129822B58 90 stub<4131> AllocateTemporaryEntryPoints +00007FA129822BE8 90 stub<4132> AllocateTemporaryEntryPoints +00007FA129822C78 18 stub<4133> AllocateTemporaryEntryPoints +00007FA129822C90 18 stub<4134> AllocateTemporaryEntryPoints +00007FA12784B390 e stub<4135> GenerateVTableCallStub +00007FA12784B3A0 e stub<4136> GenerateVTableCallStub +00007FA129822CA8 18 stub<4137> AllocateTemporaryEntryPoints +00007FA129822CC0 18 stub<4138> AllocateTemporaryEntryPoints +00007FA1277BF7E0 18 stub<4139> GenerateLookupStub +00007FA129822CD8 48 stub<4140> AllocateTemporaryEntryPoints +00007FA129822D20 48 stub<4141> AllocateTemporaryEntryPoints +00007FA129822D68 48 stub<4142> AllocateTemporaryEntryPoints +00007FA129822DB0 48 stub<4143> AllocateTemporaryEntryPoints +00007FA129822DF8 48 stub<4144> AllocateTemporaryEntryPoints +00007FA129822E40 48 stub<4145> AllocateTemporaryEntryPoints +00007FA129822E88 48 stub<4146> AllocateTemporaryEntryPoints +00007FA129822ED0 48 stub<4147> AllocateTemporaryEntryPoints +00007FA129822F18 48 stub<4148> AllocateTemporaryEntryPoints +00007FA129822F60 48 stub<4149> AllocateTemporaryEntryPoints +00007FA129822FA8 48 stub<4150> AllocateTemporaryEntryPoints +00007FA129824000 48 stub<4151> AllocateTemporaryEntryPoints +00007FA1284DC430 1f2 instance class System.Linq.CachingComparer`1 [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.Nullable`1[System.Int32]]::GetComparer(class System.Linq.CachingComparer`1)[QuickJitted] +00007FA1284DC640 56 instance void [System.Linq] System.Linq.CachingComparer`2[System.__Canon,System.Nullable`1[System.Int32]]::.ctor(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool)[QuickJitted] +00007FA1277BF800 18 stub<4152> GenerateLookupStub +00007FA1284DC6B0 a4 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller+d__15::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA129824048 2e8 stub<4153> AllocateTemporaryEntryPoints +00007FA1284DC770 3e0 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller+d__15::MoveNext()[QuickJitted] +00007FA1284DCB80 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller+d__15::<>m__Finally1()[QuickJitted] +00007FA1284DCBE0 5d instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller+d__15::System.IDisposable.Dispose()[QuickJitted] +00007FA1284DCC60 1b2 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller::GetLogFilePath(valuetype [System.Runtime]System.DateTime,valuetype [System.Runtime]System.Nullable`1,string&)[QuickJitted] +00007FA129824330 348 stub<4154> AllocateTemporaryEntryPoints +00007FA129824678 5e8 stub<4155> AllocateTemporaryEntryPoints +00007FA129824C60 348 stub<4156> AllocateTemporaryEntryPoints +00007FA129826000 f0 stub<4157> AllocateTemporaryEntryPoints +00007FA1298260F0 5a0 stub<4158> AllocateTemporaryEntryPoints +00007FA1284DCE30 3b1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.SharedFileSink::.ctor(string,class Datadog.Trace.Vendors.Serilog.Formatting.ITextFormatter,valuetype [System.Runtime]System.Nullable`1,class [System.Runtime]System.Text.Encoding)[QuickJitted] +00007FA129826690 18 stub<4159> AllocateTemporaryEntryPoints +00007FA1298266A8 18 stub<4160> AllocateTemporaryEntryPoints +00007FA1298266C0 18 stub<4161> AllocateTemporaryEntryPoints +00007FA1298266D8 18 stub<4162> AllocateTemporaryEntryPoints +00007FA1298266F0 540 stub<4163> AllocateTemporaryEntryPoints +00007FA129826C30 18 stub<4164> AllocateTemporaryEntryPoints +00007FA129826C48 18 stub<4165> AllocateTemporaryEntryPoints +00007FA1284DD210 3e valuetype System.Numerics.Vector`1 [System.Private.CoreLib] System.Numerics.Vector::LoadUnsafe(!!0&,native uint)[QuickJitted] +00007FA1284DD270 32 !!0 [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::ReadUnaligned(uint8&)[QuickJitted] +00007FA129826C60 18 stub<4166> AllocateTemporaryEntryPoints +00007FA129826C78 18 stub<4167> AllocateTemporaryEntryPoints +00007FA129826C90 18 stub<4168> AllocateTemporaryEntryPoints +00007FA129828000 540 stub<4169> AllocateTemporaryEntryPoints +00007FA129828540 18 stub<4170> AllocateTemporaryEntryPoints +00007FA129828558 18 stub<4171> AllocateTemporaryEntryPoints +00007FA1284DD2C0 40 void [System.Private.CoreLib] System.Numerics.Vector::StoreUnsafe(valuetype System.Numerics.Vector`1,!!0&,native uint)[QuickJitted] +00007FA1284DD320 27 void [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::WriteUnaligned(uint8&,!!0)[QuickJitted] +00007FA129828588 168 stub<4172> AllocateTemporaryEntryPoints +00007FA1298286F0 168 stub<4173> AllocateTemporaryEntryPoints +00007FA129828858 d8 stub<4174> AllocateTemporaryEntryPoints +00007FA129828930 30 stub<4175> AllocateTemporaryEntryPoints +00007FA129828960 18 stub<4176> AllocateTemporaryEntryPoints +00007FA129828978 18 stub<4177> AllocateTemporaryEntryPoints +00007FA129828990 60 stub<4178> AllocateTemporaryEntryPoints +00007FA1298289F0 18 stub<4179> AllocateTemporaryEntryPoints +00007FA129828A08 18 stub<4180> AllocateTemporaryEntryPoints +00007FA129828A20 18 stub<4181> AllocateTemporaryEntryPoints +00007FA129828A38 18 stub<4182> AllocateTemporaryEntryPoints +00007FA129828A50 18 stub<4183> AllocateTemporaryEntryPoints +00007FA129828A68 18 stub<4184> AllocateTemporaryEntryPoints +00007FA129828A80 18 stub<4185> AllocateTemporaryEntryPoints +00007FA129828A98 18 stub<4186> AllocateTemporaryEntryPoints +00007FA129828AB0 18 stub<4187> AllocateTemporaryEntryPoints +00007FA129828AC8 18 stub<4188> AllocateTemporaryEntryPoints +00007FA1284DD360 69e instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink::ApplyRetentionPolicy(string)[QuickJitted] +00007FA1284DDA40 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink+<>c__DisplayClass18_0::.ctor()[QuickJitted] +00007FA129828AE0 18 stub<4189> AllocateTemporaryEntryPoints +00007FA129828AF8 18 stub<4190> AllocateTemporaryEntryPoints +00007FA129828B10 108 stub<4191> AllocateTemporaryEntryPoints +00007FA129828C18 120 stub<4192> AllocateTemporaryEntryPoints +00007FA129828D38 120 stub<4193> AllocateTemporaryEntryPoints +00007FA129828E58 18 stub<4194> AllocateTemporaryEntryPoints +00007FA129828E70 18 stub<4195> AllocateTemporaryEntryPoints +00007FA129828E88 48 stub<4196> AllocateTemporaryEntryPoints +00007FA129828ED0 108 stub<4197> AllocateTemporaryEntryPoints +00007FA12982A000 120 stub<4198> AllocateTemporaryEntryPoints +00007FA12982A120 60 stub<4199> AllocateTemporaryEntryPoints +00007FA12982A180 60 stub<4200> AllocateTemporaryEntryPoints +00007FA12982A1E0 18 stub<4201> AllocateTemporaryEntryPoints +00007FA12982A1F8 18 stub<4202> AllocateTemporaryEntryPoints +00007FA12982A210 48 stub<4203> AllocateTemporaryEntryPoints +00007FA12982A258 48 stub<4204> AllocateTemporaryEntryPoints +00007FA1284DDE80 8c class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.Enumerable::OrderByDescending(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12982A2A0 18 stub<4205> AllocateTemporaryEntryPoints +00007FA12982A2B8 90 stub<4206> AllocateTemporaryEntryPoints +00007FA1284DDF20 c3 instance void [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.Nullable`1[System.DateTime]]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.OrderedEnumerable`1)[QuickJitted] +00007FA1284DE000 27 class System.Collections.Generic.Comparer`1 [System.Private.CoreLib] System.Collections.Generic.Comparer`1[System.Nullable`1[System.DateTime]]::get_Default()[QuickJitted] +00007FA1284DE040 6b void [System.Private.CoreLib] System.Collections.Generic.Comparer`1[System.Nullable`1[System.DateTime]]::.cctor()[QuickJitted] +00007FA12982A348 18 stub<4207> AllocateTemporaryEntryPoints +00007FA12982A360 90 stub<4208> AllocateTemporaryEntryPoints +00007FA1284DE0C0 1f instance void [System.Private.CoreLib] System.Collections.Generic.NullableComparer`1[System.DateTime]::.ctor()[QuickJitted] +00007FA1284DE100 1f instance void [System.Private.CoreLib] System.Collections.Generic.Comparer`1[System.Nullable`1[System.DateTime]]::.ctor()[QuickJitted] +00007FA12982A3F0 18 stub<4209> AllocateTemporaryEntryPoints +00007FA12982A408 18 stub<4210> AllocateTemporaryEntryPoints +00007FA12982A420 18 stub<4211> AllocateTemporaryEntryPoints +00007FA12982A438 18 stub<4212> AllocateTemporaryEntryPoints +00007FA12982A450 18 stub<4213> AllocateTemporaryEntryPoints +00007FA1284DE140 cd class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.Enumerable::ThenByDescending(class System.Linq.IOrderedEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12982A468 18 stub<4214> AllocateTemporaryEntryPoints +00007FA12982A480 18 stub<4215> AllocateTemporaryEntryPoints +00007FA12982A498 18 stub<4216> AllocateTemporaryEntryPoints +00007FA12982A4B0 48 stub<4217> AllocateTemporaryEntryPoints +00007FA1284DE230 a9 instance class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.OrderedEnumerable`1[System.__Canon]::System.Linq.IOrderedEnumerable.CreateOrderedEnumerable(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool)[QuickJitted] +00007FA12982A4F8 18 stub<4218> AllocateTemporaryEntryPoints +00007FA12982A510 18 stub<4219> AllocateTemporaryEntryPoints +00007FA12982A528 108 stub<4220> AllocateTemporaryEntryPoints +00007FA12982A630 168 stub<4221> AllocateTemporaryEntryPoints +00007FA12982A798 168 stub<4222> AllocateTemporaryEntryPoints +00007FA12982A900 18 stub<4223> AllocateTemporaryEntryPoints +00007FA12982A918 18 stub<4224> AllocateTemporaryEntryPoints +00007FA12982A930 78 stub<4225> AllocateTemporaryEntryPoints +00007FA12982A9A8 48 stub<4226> AllocateTemporaryEntryPoints +00007FA12982A9F0 18 stub<4227> AllocateTemporaryEntryPoints +00007FA12982AA08 18 stub<4228> AllocateTemporaryEntryPoints +00007FA12982AA20 108 stub<4229> AllocateTemporaryEntryPoints +00007FA12982AB28 1c8 stub<4230> AllocateTemporaryEntryPoints +00007FA12982ACF0 1c8 stub<4231> AllocateTemporaryEntryPoints +00007FA12982AEB8 18 stub<4232> AllocateTemporaryEntryPoints +00007FA12982AED0 18 stub<4233> AllocateTemporaryEntryPoints +00007FA12982AEE8 78 stub<4234> AllocateTemporaryEntryPoints +00007FA12982AF60 48 stub<4235> AllocateTemporaryEntryPoints +00007FA1277BF820 18 stub<4236> GenerateLookupStub +00007FA1277C3820 20 stub<4237> GenerateDispatchStub +00007FA12982AFA8 18 stub<4238> AllocateTemporaryEntryPoints +00007FA12982AFC0 18 stub<4239> AllocateTemporaryEntryPoints +00007FA12982C000 90 stub<4240> AllocateTemporaryEntryPoints +00007FA12982C090 18 stub<4241> AllocateTemporaryEntryPoints +00007FA12982C0A8 90 stub<4242> AllocateTemporaryEntryPoints +00007FA12982C138 18 stub<4243> AllocateTemporaryEntryPoints +00007FA12982C150 18 stub<4244> AllocateTemporaryEntryPoints +00007FA12982C168 18 stub<4245> AllocateTemporaryEntryPoints +00007FA1277F5180 18 stub<4246> GenerateResolveStub +00007FA1277C3840 20 stub<4247> GenerateDispatchStub +00007FA12982C180 60 stub<4248> AllocateTemporaryEntryPoints +00007FA12982C1E0 18 stub<4249> AllocateTemporaryEntryPoints +00007FA12982C1F8 18 stub<4250> AllocateTemporaryEntryPoints +00007FA12982C210 318 stub<4251> AllocateTemporaryEntryPoints +00007FA12982C528 30 stub<4252> AllocateTemporaryEntryPoints +00007FA12982C558 18 stub<4253> AllocateTemporaryEntryPoints +00007FA12982C570 18 stub<4254> AllocateTemporaryEntryPoints +00007FA12784B3B0 e stub<4255> GenerateVTableCallStub +00007FA12982C588 360 stub<4256> AllocateTemporaryEntryPoints +00007FA12982C8E8 30 stub<4257> AllocateTemporaryEntryPoints +00007FA128660340 48 void [System.Text.RegularExpressions] dynamicClass::Regex1_Scan(System.Text.RegularExpressions.RegexRunner /* MT: 0x00007FA1295AE1E8 */,System.ReadOnlySpan`1 /* MT: 0x00007FA128531658 */)[Optimized] +00007FA1286603F0 20 bool [System.Text.RegularExpressions] dynamicClass::Regex1_TryFindNextPossibleStartingPosition(System.Text.RegularExpressions.RegexRunner /* MT: 0x00007FA1295AE1E8 */,System.ReadOnlySpan`1 /* MT: 0x00007FA128531658 */)[Optimized] +00007FA12982C918 18 stub<4258> AllocateTemporaryEntryPoints +00007FA12982C930 3d8 stub<4259> AllocateTemporaryEntryPoints +00007FA12982CD08 18 stub<4260> AllocateTemporaryEntryPoints +00007FA12982CD20 18 stub<4261> AllocateTemporaryEntryPoints +00007FA12982CD38 18 stub<4262> AllocateTemporaryEntryPoints +00007FA12982CD50 18 stub<4263> AllocateTemporaryEntryPoints +00007FA12982CD68 18 stub<4264> AllocateTemporaryEntryPoints +00007FA128660480 63d bool [System.Text.RegularExpressions] dynamicClass::Regex1_TryMatchAtCurrentPosition(System.Text.RegularExpressions.RegexRunner /* MT: 0x00007FA1295AE1E8 */,System.ReadOnlySpan`1 /* MT: 0x00007FA128531658 */)[Optimized] +00007FA12982CD80 18 stub<4265> AllocateTemporaryEntryPoints +00007FA12982CD98 18 stub<4266> AllocateTemporaryEntryPoints +00007FA12982E000 7f8 stub<4267> AllocateTemporaryEntryPoints +00007FA12982E7F8 258 stub<4268> AllocateTemporaryEntryPoints +00007FA12982EA68 150 stub<4269> AllocateTemporaryEntryPoints +00007FA12982EBB8 18 stub<4270> AllocateTemporaryEntryPoints +00007FA12982EBD0 18 stub<4271> AllocateTemporaryEntryPoints +00007FA12982EBE8 18 stub<4272> AllocateTemporaryEntryPoints +00007FA1277BF840 18 stub<4273> GenerateLookupStub +00007FA1277F51F0 18 stub<4274> GenerateResolveStub +00007FA1277C3860 20 stub<4275> GenerateDispatchStub +00007FA12784B3C0 e stub<4276> GenerateVTableCallStub +00007FA1284DEB00 5c instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingLogFile::.ctor(string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1277BF860 18 stub<4277> GenerateLookupStub +00007FA1284DEB80 1c instance class Datadog.Trace.Vendors.Serilog.Sinks.File.RollingLogFile [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.PathRoller+d__15::System.Collections.Generic.IEnumerator.get_Current()[QuickJitted] +00007FA1277C3880 20 stub<4278> GenerateDispatchStub +00007FA12982EC18 18 stub<4279> AllocateTemporaryEntryPoints +00007FA1277C38A0 20 stub<4280> GenerateDispatchStub +00007FA1277C38C0 20 stub<4281> GenerateDispatchStub +00007FA12982EC30 120 stub<4282> AllocateTemporaryEntryPoints +00007FA12982ED50 120 stub<4283> AllocateTemporaryEntryPoints +00007FA12982EE70 120 stub<4284> AllocateTemporaryEntryPoints +00007FA129850000 c0 stub<4285> AllocateTemporaryEntryPoints +00007FA1298500C0 c0 stub<4286> AllocateTemporaryEntryPoints +00007FA129850180 120 stub<4287> AllocateTemporaryEntryPoints +00007FA1298502A0 c0 stub<4288> AllocateTemporaryEntryPoints +00007FA1284DEBB0 1ad instance class System.Linq.EnumerableSorter`1 [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.Nullable`1[System.Int32]]::GetEnumerableSorter(class System.Linq.EnumerableSorter`1)[QuickJitted] +00007FA1284DED80 6c instance void [System.Linq] System.Linq.EnumerableSorter`2[System.__Canon,System.Nullable`1[System.Int32]]::.ctor(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.EnumerableSorter`1)[QuickJitted] +00007FA129850360 c0 stub<4289> AllocateTemporaryEntryPoints +00007FA1284DEE00 1ad instance class System.Linq.EnumerableSorter`1 [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.Nullable`1[System.DateTime]]::GetEnumerableSorter(class System.Linq.EnumerableSorter`1)[QuickJitted] +00007FA1284DEFD0 6c instance void [System.Linq] System.Linq.EnumerableSorter`2[System.__Canon,System.Nullable`1[System.DateTime]]::.ctor(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.EnumerableSorter`1)[QuickJitted] +00007FA129850420 60 stub<4290> AllocateTemporaryEntryPoints +00007FA129850480 60 stub<4291> AllocateTemporaryEntryPoints +00007FA1298504E0 60 stub<4292> AllocateTemporaryEntryPoints +00007FA1284DF050 1f5 instance void [System.Linq] System.Linq.EnumerableSorter`2[System.__Canon,System.Nullable`1[System.DateTime]]::ComputeKeys(!0[],int32)[QuickJitted] +00007FA129850540 48 stub<4293> AllocateTemporaryEntryPoints +00007FA129850588 48 stub<4294> AllocateTemporaryEntryPoints +00007FA1284DF270 34 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink+<>c::b__18_0(class Datadog.Trace.Vendors.Serilog.Sinks.File.RollingLogFile)[QuickJitted] +00007FA1284DF2C0 2d instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingLogFile::get_DateTime()[QuickJitted] +00007FA1298505D0 60 stub<4295> AllocateTemporaryEntryPoints +00007FA1284DF310 1e5 instance void [System.Linq] System.Linq.EnumerableSorter`2[System.__Canon,System.Nullable`1[System.Int32]]::ComputeKeys(!0[],int32)[QuickJitted] +00007FA1284DF510 25 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink+<>c::b__18_1(class Datadog.Trace.Vendors.Serilog.Sinks.File.RollingLogFile)[QuickJitted] +00007FA1284DF550 1c instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingLogFile::get_SequenceNumber()[QuickJitted] +00007FA129850630 18 stub<4296> AllocateTemporaryEntryPoints +00007FA1284DF580 fa instance void [System.Linq] System.Linq.EnumerableSorter`2[System.__Canon,System.Nullable`1[System.DateTime]]::QuickSort(int32[],int32,int32)[QuickJitted] +00007FA1284DF6A0 25 instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink+<>c::b__18_2(class Datadog.Trace.Vendors.Serilog.Sinks.File.RollingLogFile)[QuickJitted] +00007FA1284DF6E0 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingLogFile::get_Filename()[QuickJitted] +00007FA1284DF710 4e instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.RollingFileSink+<>c__DisplayClass18_0::b__3(string)[QuickJitted] +00007FA1277BF880 18 stub<4297> GenerateLookupStub +00007FA1284DF780 227 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.SharedFileSink::Datadog.Trace.Vendors.Serilog.Sinks.File.IFileSink.EmitOrOverflow(class Datadog.Trace.Vendors.Serilog.Events.LogEvent)[QuickJitted] +00007FA1284DF9E0 db instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.SharedFileSink::TryAcquireMutex()[QuickJitted] +00007FA129850678 288 stub<4298> AllocateTemporaryEntryPoints +00007FA1277BF8A0 18 stub<4299> GenerateLookupStub +00007FA129850900 30 stub<4300> AllocateTemporaryEntryPoints +00007FA129850930 18 stub<4301> AllocateTemporaryEntryPoints +00007FA129850948 48 stub<4302> AllocateTemporaryEntryPoints +00007FA129850990 78 stub<4303> AllocateTemporaryEntryPoints +00007FA129850A08 60 stub<4304> AllocateTemporaryEntryPoints +00007FA1284DFAE0 8f0 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Display.MessageTemplateTextFormatter::Format(class Datadog.Trace.Vendors.Serilog.Events.LogEvent,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA1284E0400 1c instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.MessageTemplate::get_Tokens()[QuickJitted] +00007FA129850A68 18 stub<4305> AllocateTemporaryEntryPoints +00007FA1277C38E0 20 stub<4306> GenerateDispatchStub +00007FA1277C3900 20 stub<4307> GenerateDispatchStub +00007FA1284E0430 2f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken::get_Alignment()[QuickJitted] +00007FA1284E0480 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Serilog.Parsing.Alignment]::get_HasValue()[QuickJitted] +00007FA1284E04B0 2d instance valuetype [System.Runtime]System.DateTimeOffset [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEvent::get_Timestamp()[QuickJitted] +00007FA1284E0500 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken::get_Format()[QuickJitted] +00007FA1277BF8C0 18 stub<4308> GenerateLookupStub +00007FA1277BF8E0 18 stub<4309> GenerateLookupStub +00007FA1277BF900 18 stub<4310> GenerateLookupStub +00007FA1284E0530 31e void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.ScalarValue::Render(object,class [System.Runtime]System.IO.TextWriter,string,class [System.Runtime]System.IFormatProvider)[QuickJitted] +00007FA129850A80 18 stub<4311> AllocateTemporaryEntryPoints +00007FA1284E0870 45 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Rendering.MessageTemplateRenderer::RenderTextToken(class Datadog.Trace.Vendors.Serilog.Parsing.TextToken,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA1284E08D0 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.TextToken::get_Text()[QuickJitted] +00007FA1284E0900 1b instance valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEvent::get_Level()[QuickJitted] +00007FA129850A98 78 stub<4312> AllocateTemporaryEntryPoints +00007FA1284E0930 2d3 string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Display.LevelOutputFormat::GetLevelMoniker(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,string)[QuickJitted] +00007FA1284E0C30 10b0 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Display.LevelOutputFormat::.cctor()[QuickJitted] +00007FA1284E1D00 65 string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Display.LevelOutputFormat::GetLevelMoniker(string[][],int32,int32)[QuickJitted] +00007FA1284E1D80 1b4 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Rendering.Padding::Apply(class [System.Runtime]System.IO.TextWriter,string,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1284E1F50 1c instance class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEvent::get_MessageTemplate()[QuickJitted] +00007FA1284E1F80 1c instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEvent::get_Properties()[QuickJitted] +00007FA1284E1FB0 1a4 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Rendering.MessageTemplateRenderer::Render(class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,class [System.Runtime]System.IO.TextWriter,string,class [System.Runtime]System.IFormatProvider)[QuickJitted] +00007FA1284E2170 1c instance class Datadog.Trace.Vendors.Serilog.Parsing.MessageTemplateToken[] [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.MessageTemplate::get_TokenArray()[QuickJitted] +00007FA1284E21A0 1c instance class [System.Runtime]System.Exception [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.LogEvent::get_Exception()[QuickJitted] +00007FA129850B10 30 stub<4313> AllocateTemporaryEntryPoints +00007FA129850B40 78 stub<4314> AllocateTemporaryEntryPoints +00007FA1277BF920 18 stub<4315> GenerateLookupStub +00007FA1277BF940 18 stub<4316> GenerateLookupStub +00007FA129850BB8 60 stub<4317> AllocateTemporaryEntryPoints +00007FA129850C18 18 stub<4318> AllocateTemporaryEntryPoints +00007FA129850C30 18 stub<4319> AllocateTemporaryEntryPoints +00007FA129850C48 48 stub<4320> AllocateTemporaryEntryPoints +00007FA129850C90 60 stub<4321> AllocateTemporaryEntryPoints +00007FA129850CF0 18 stub<4322> AllocateTemporaryEntryPoints +00007FA129850D08 18 stub<4323> AllocateTemporaryEntryPoints +00007FA129850D20 a8 stub<4324> AllocateTemporaryEntryPoints +00007FA129850DC8 a8 stub<4325> AllocateTemporaryEntryPoints +00007FA129852000 198 stub<4326> AllocateTemporaryEntryPoints +00007FA1284E21D0 538 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Display.PropertiesOutputFormat::Render(class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate,class [System.Runtime]System.IO.TextWriter,string,class [System.Runtime]System.IFormatProvider)[QuickJitted] +00007FA1284E2740 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Display.PropertiesOutputFormat+<>c__DisplayClass1_0::.ctor()[QuickJitted] +00007FA129852198 198 stub<4327> AllocateTemporaryEntryPoints +00007FA1284E2780 181 bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Display.PropertiesOutputFormat::TemplateContainsPropertyName(class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate,string)[QuickJitted] +00007FA1284E2920 4b instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.ScalarValue::Render(class [System.Runtime]System.IO.TextWriter,string,class [System.Runtime]System.IFormatProvider)[QuickJitted] +00007FA1284E2980 1c instance object [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.ScalarValue::get_Value()[QuickJitted] +00007FA1277C3920 20 stub<4328> GenerateDispatchStub +00007FA1277F5260 18 stub<4329> GenerateResolveStub +00007FA1277C3940 20 stub<4330> GenerateDispatchStub +00007FA1277C3960 20 stub<4331> GenerateDispatchStub +00007FA129852330 90 stub<4332> AllocateTemporaryEntryPoints +00007FA12784B3D0 e stub<4333> GenerateVTableCallStub +00007FA12784B3E0 e stub<4334> GenerateVTableCallStub +00007FA1284E29B0 25 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Sinks.File.SharedFileSink::ReleaseMutex()[QuickJitted] +00007FA1284E29F0 f7 void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeMethods::EnableCallTargetStateByRef()[QuickJitted] +00007FA1277F52D0 18 stub<4335> GenerateResolveStub +00007FA1277C3980 20 stub<4336> GenerateDispatchStub +00007FA1277F5340 18 stub<4337> GenerateResolveStub +00007FA1277C39A0 20 stub<4338> GenerateDispatchStub +00007FA1277F53B0 18 stub<4339> GenerateResolveStub +00007FA1277C39C0 20 stub<4340> GenerateDispatchStub +00007FA1277C39E0 20 stub<4341> GenerateDispatchStub +00007FA1277F5420 18 stub<4342> GenerateResolveStub +00007FA1277C3A00 20 stub<4343> GenerateDispatchStub +00007FA1277C3A20 20 stub<4344> GenerateDispatchStub +00007FA1277F5490 18 stub<4345> GenerateResolveStub +00007FA1277C3A40 20 stub<4346> GenerateDispatchStub +00007FA1277F5500 18 stub<4347> GenerateResolveStub +00007FA1277C3A60 20 stub<4348> GenerateDispatchStub +00007FA1277C3A80 20 stub<4349> GenerateDispatchStub +00007FA1277F5570 18 stub<4350> GenerateResolveStub +00007FA1277C3AA0 20 stub<4351> GenerateDispatchStub +00007FA1277F55E0 18 stub<4352> GenerateResolveStub +00007FA1277C3AC0 20 stub<4353> GenerateDispatchStub +00007FA1277C3AE0 20 stub<4354> GenerateDispatchStub +00007FA129852408 90 stub<4355> AllocateTemporaryEntryPoints +00007FA1284E2B10 e1 valuetype Datadog.Trace.ClrProfiler.InstrumentationDefinitions/TraceMethodPayload [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetTraceAttributeDefinitions()[QuickJitted] +00007FA129852498 5e8 stub<4356> AllocateTemporaryEntryPoints +00007FA129852A80 c0 stub<4357> AllocateTemporaryEntryPoints +00007FA129852B40 90 stub<4358> AllocateTemporaryEntryPoints +00007FA129852BD0 a8 stub<4359> AllocateTemporaryEntryPoints +00007FA129852C78 18 stub<4360> AllocateTemporaryEntryPoints +00007FA129852C90 78 stub<4361> AllocateTemporaryEntryPoints +00007FA129852D08 18 stub<4362> AllocateTemporaryEntryPoints +00007FA129854000 6f0 stub<4363> AllocateTemporaryEntryPoints +00007FA1298546F0 78 stub<4364> AllocateTemporaryEntryPoints +00007FA129854768 a8 stub<4365> AllocateTemporaryEntryPoints +00007FA129854810 18 stub<4366> AllocateTemporaryEntryPoints +00007FA129854828 18 stub<4367> AllocateTemporaryEntryPoints +00007FA129854840 18 stub<4368> AllocateTemporaryEntryPoints +00007FA1277BF960 18 stub<4369> GenerateLookupStub +00007FA129854858 18 stub<4370> AllocateTemporaryEntryPoints +00007FA1284E2C10 1a3b4 void [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::.cctor()[QuickJitted] +00007FA1284FD010 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.ClrProfiler.InstrumentationCategory,Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload]::.ctor()[QuickJitted] +00007FA129854870 30 stub<4371> AllocateTemporaryEntryPoints +00007FA1298548A0 d8 stub<4372> AllocateTemporaryEntryPoints +00007FA1284FD050 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.ClrProfiler.InstrumentationCategory,Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA1284FD180 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.NativeCallTargetDefinition]::.ctor()[QuickJitted] +00007FA1284FD1F0 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.ClrProfiler.NativeCallTargetDefinition]::.cctor()[QuickJitted] +00007FA1284FD230 26 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload::set_DefinitionsId(string)[QuickJitted] +00007FA1284FD270 27b instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeCallTargetDefinition::.ctor(string,string,string,string[],uint16,uint16,uint16,uint16,uint16,uint16,string,string)[QuickJitted] +00007FA129854978 138 stub<4373> AllocateTemporaryEntryPoints +00007FA129854AB0 60 stub<4374> AllocateTemporaryEntryPoints +00007FA129854B10 60 stub<4375> AllocateTemporaryEntryPoints +00007FA1284FD510 2a instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload::set_Definitions(valuetype Datadog.Trace.ClrProfiler.NativeCallTargetDefinition[])[QuickJitted] +00007FA1284FD550 3d instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.ClrProfiler.InstrumentationCategory,Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload]::Add(!0,!1)[QuickJitted] +00007FA129854B70 60 stub<4376> AllocateTemporaryEntryPoints +00007FA1277BF980 18 stub<4377> GenerateLookupStub +00007FA129854BD0 18 stub<4378> AllocateTemporaryEntryPoints +00007FA1277BF9A0 18 stub<4379> GenerateLookupStub +00007FA1284FD5B0 67b instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.ClrProfiler.InstrumentationCategory,Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA1284FDC50 a0 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.ClrProfiler.InstrumentationCategory,Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload]::Initialize(int32)[QuickJitted] +00007FA1284FDD10 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.ClrProfiler.InstrumentationCategory,Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload]::GetBucket(uint32)[QuickJitted] +00007FA1284FDD80 1c instance valuetype Datadog.Trace.ClrProfiler.NativeCallTargetDefinition[] [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload::get_Definitions()[QuickJitted] +00007FA129854BE8 108 stub<4380> AllocateTemporaryEntryPoints +00007FA129854CF0 c0 stub<4381> AllocateTemporaryEntryPoints +00007FA129854DB0 18 stub<4382> AllocateTemporaryEntryPoints +00007FA129854DC8 48 stub<4383> AllocateTemporaryEntryPoints +00007FA129854E10 108 stub<4384> AllocateTemporaryEntryPoints +00007FA129854F18 c0 stub<4385> AllocateTemporaryEntryPoints +00007FA129854FD8 18 stub<4386> AllocateTemporaryEntryPoints +00007FA129856000 18 stub<4387> AllocateTemporaryEntryPoints +00007FA129856018 48 stub<4388> AllocateTemporaryEntryPoints +00007FA129856060 90 stub<4389> AllocateTemporaryEntryPoints +00007FA1298560F0 90 stub<4390> AllocateTemporaryEntryPoints +00007FA1284FDDB0 ab class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Concat(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1284FDE70 49 instance void [System.Linq] System.Linq.Enumerable+Concat2Iterator`1[Datadog.Trace.ClrProfiler.NativeCallTargetDefinition]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1284FDED0 1f instance void [System.Linq] System.Linq.Enumerable+ConcatIterator`1[Datadog.Trace.ClrProfiler.NativeCallTargetDefinition]::.ctor()[QuickJitted] +00007FA1284FDF10 2a instance void [System.Linq] System.Linq.Enumerable+Iterator`1[Datadog.Trace.ClrProfiler.NativeCallTargetDefinition]::.ctor()[QuickJitted] +00007FA1277F5650 18 stub<4391> GenerateResolveStub +00007FA1277C3B00 20 stub<4392> GenerateDispatchStub +00007FA129856180 a8 stub<4393> AllocateTemporaryEntryPoints +00007FA129856228 108 stub<4394> AllocateTemporaryEntryPoints +00007FA129856330 c0 stub<4395> AllocateTemporaryEntryPoints +00007FA1298563F0 d8 stub<4396> AllocateTemporaryEntryPoints +00007FA1298564C8 18 stub<4397> AllocateTemporaryEntryPoints +00007FA1298564E0 18 stub<4398> AllocateTemporaryEntryPoints +00007FA1298564F8 48 stub<4399> AllocateTemporaryEntryPoints +00007FA129856540 d8 stub<4400> AllocateTemporaryEntryPoints +00007FA129856618 d8 stub<4401> AllocateTemporaryEntryPoints +00007FA1284FDF50 bb instance class System.Linq.Enumerable/ConcatIterator`1 [System.Linq] System.Linq.Enumerable+Concat2Iterator`1[Datadog.Trace.ClrProfiler.NativeCallTargetDefinition]::Concat(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1284FE020 64 instance void [System.Linq] System.Linq.Enumerable+ConcatNIterator`1[Datadog.Trace.ClrProfiler.NativeCallTargetDefinition]::.ctor(class System.Linq.Enumerable/ConcatIterator`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1,int32,bool)[QuickJitted] +00007FA1298566F0 a8 stub<4402> AllocateTemporaryEntryPoints +00007FA129856798 90 stub<4403> AllocateTemporaryEntryPoints +00007FA1284FE0A0 d2 instance class System.Linq.Enumerable/ConcatIterator`1 [System.Linq] System.Linq.Enumerable+ConcatNIterator`1[Datadog.Trace.ClrProfiler.NativeCallTargetDefinition]::Concat(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1284FE190 26 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+TraceMethodPayload::set_DefinitionsId(string)[QuickJitted] +00007FA1284FE1D0 2a instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+TraceMethodPayload::set_AssemblyName(string)[QuickJitted] +00007FA1284FE210 2a instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+TraceMethodPayload::set_TypeName(string)[QuickJitted] +00007FA1284FE250 1b instance string [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+TraceMethodPayload::get_DefinitionsId()[QuickJitted] +00007FA1284FE280 1c instance string [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+TraceMethodPayload::get_AssemblyName()[QuickJitted] +00007FA1284FE2B0 1c instance string [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+TraceMethodPayload::get_TypeName()[QuickJitted] +00007FA1284FE2E0 6e void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeMethods::AddTraceAttributeInstrumentation(string,string,string)[QuickJitted] +00007FA129856828 18 stub<4404> AllocateTemporaryEntryPoints +00007FA1284FE370 df void [Samples.BuggyBits] dynamicClass::IL_STUB_PInvoke(string,string,string)[Optimized] +00007FA129856840 18 stub<4405> AllocateTemporaryEntryPoints +00007FA129856858 18 stub<4406> AllocateTemporaryEntryPoints +00007FA129856870 18 stub<4407> AllocateTemporaryEntryPoints +00007FA1284FE470 40 instance void [Datadog.Trace] dynamicClass::IL_STUB_InstantiatingStub(string,System.String /* MT: 0x00007FA128531038 */,System.String /* MT: 0x00007FA128531038 */,int32,string)[Optimized] +00007FA129856888 18 stub<4408> AllocateTemporaryEntryPoints +00007FA1298568A0 18 stub<4409> AllocateTemporaryEntryPoints +00007FA1298568B8 18 stub<4410> AllocateTemporaryEntryPoints +00007FA1284FE4D0 9a instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Information(string,!!0,!!1,int32,string)[QuickJitted] +00007FA1298568D0 18 stub<4411> AllocateTemporaryEntryPoints +00007FA1284FE580 a8 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,!!1,int32,string)[QuickJitted] +00007FA1284FE640 2fb instance valuetype Datadog.Trace.Vendors.Serilog.Events.EventProperty[] [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyBinder::ConstructNamedProperties(class Datadog.Trace.Vendors.Serilog.Events.MessageTemplate,object[])[QuickJitted] +00007FA1284FE960 91 instance valuetype Datadog.Trace.Vendors.Serilog.Events.EventProperty [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyBinder::ConstructProperty(class Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken,object)[QuickJitted] +00007FA1284FEA10 1b instance valuetype Datadog.Trace.Vendors.Serilog.Parsing.Destructuring [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken::get_Destructuring()[QuickJitted] +00007FA1284FEA40 116 instance class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Capturing.PropertyValueConverter::CreatePropertyValue(object,valuetype Datadog.Trace.Vendors.Serilog.Parsing.Destructuring)[QuickJitted] +00007FA1284FEB80 98 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.EventProperty::.ctor(string,class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue)[QuickJitted] +00007FA1284FEC30 1b instance string [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.EventProperty::get_Name()[QuickJitted] +00007FA1284FEC60 1c instance class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Events.EventProperty::get_Value()[QuickJitted] +00007FA1284FEC90 2d1 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Rendering.MessageTemplateRenderer::RenderPropertyToken(class Datadog.Trace.Vendors.Serilog.Parsing.PropertyToken,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,class [System.Runtime]System.IO.TextWriter,class [System.Runtime]System.IFormatProvider,bool,bool)[QuickJitted] +00007FA1277F56C0 18 stub<4412> GenerateResolveStub +00007FA1277C3B20 20 stub<4413> GenerateDispatchStub +00007FA1284FEF80 121 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Rendering.MessageTemplateRenderer::RenderValue(class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue,bool,bool,class [System.Runtime]System.IO.TextWriter,string,class [System.Runtime]System.IFormatProvider)[QuickJitted] +00007FA1298568E8 18 stub<4414> AllocateTemporaryEntryPoints +00007FA129856900 240 stub<4415> AllocateTemporaryEntryPoints +00007FA129856B40 18 stub<4416> AllocateTemporaryEntryPoints +00007FA129856B58 2b8 stub<4417> AllocateTemporaryEntryPoints +00007FA129856E10 120 stub<4418> AllocateTemporaryEntryPoints +00007FA129856F30 60 stub<4419> AllocateTemporaryEntryPoints +00007FA129856F90 60 stub<4420> AllocateTemporaryEntryPoints +00007FA1277BF9C0 18 stub<4421> GenerateLookupStub +00007FA1284FF0C0 6d4 void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::InitializeNoNativeParts()[QuickJitted] +00007FA1277BF9E0 18 stub<4422> GenerateLookupStub +00007FA129858000 18 stub<4423> AllocateTemporaryEntryPoints +00007FA129858018 18 stub<4424> AllocateTemporaryEntryPoints +00007FA1284FF810 24c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::AppendFormatted(!!0)[QuickJitted] +00007FA129858030 228 stub<4425> AllocateTemporaryEntryPoints +00007FA1284FFA80 30 bool [Datadog.Trace] Datadog.Trace.Ci.CIVisibility::get_Enabled()[QuickJitted] +00007FA129858258 288 stub<4426> AllocateTemporaryEntryPoints +00007FA1284FFAD0 e7 void [Datadog.Trace] Datadog.Trace.Ci.CIVisibility::.cctor()[QuickJitted] +00007FA1284FFBD0 49 class Datadog.Trace.Ci.Configuration.CIVisibilitySettings [Datadog.Trace] Datadog.Trace.Ci.Configuration.CIVisibilitySettings::FromDefaultSources()[QuickJitted] +00007FA1284FFC30 97e instance void [Datadog.Trace] Datadog.Trace.Ci.Configuration.CIVisibilitySettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1285005D0 23 instance void [Datadog.Trace] Datadog.Trace.Ci.Configuration.CIVisibilitySettings::set_TestsSkippingEnabled(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA128500610 23 instance void [Datadog.Trace] Datadog.Trace.Ci.Configuration.CIVisibilitySettings::set_CodeCoverageEnabled(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA128500650 3f instance void [System.Private.CoreLib] System.Lazy`1[System.Boolean]::.ctor(class System.Func`1,bool)[QuickJitted] +00007FA1298584E0 18 stub<4427> AllocateTemporaryEntryPoints +00007FA1298584F8 18 stub<4428> AllocateTemporaryEntryPoints +00007FA1277BFA00 18 stub<4429> GenerateLookupStub +00007FA1285006B0 39e bool [Datadog.Trace] Datadog.Trace.Ci.CIVisibility::InternalEnabled()[QuickJitted] +00007FA128500A80 74 string [Datadog.Trace] Datadog.Trace.Util.ProcessHelpers::GetCurrentProcessName()[QuickJitted] +00007FA1277C3B40 20 stub<4430> GenerateDispatchStub +00007FA128500B20 1c instance bool [Datadog.Trace] Datadog.Trace.Ci.Configuration.CIVisibilitySettings::get_Enabled()[QuickJitted] +00007FA129858510 108 stub<4431> AllocateTemporaryEntryPoints +00007FA129858618 18 stub<4432> AllocateTemporaryEntryPoints +00007FA129858630 18 stub<4433> AllocateTemporaryEntryPoints +00007FA128500B50 49 class Datadog.Trace.AppSec.Security [Datadog.Trace] Datadog.Trace.AppSec.Security::get_Instance()[QuickJitted] +00007FA129858648 18 stub<4434> AllocateTemporaryEntryPoints +00007FA129858660 18 stub<4435> AllocateTemporaryEntryPoints +00007FA128500BB0 69 void [Datadog.Trace] Datadog.Trace.AppSec.Security::.cctor()[QuickJitted] +00007FA128500C30 46 class Datadog.Trace.Logging.IDatadogLogger [Datadog.Trace] Datadog.Trace.Logging.DatadogLogging::GetLoggerFor()[QuickJitted] +00007FA129858678 18 stub<4436> AllocateTemporaryEntryPoints +00007FA129858690 18 stub<4437> AllocateTemporaryEntryPoints +00007FA1298586A8 18 stub<4438> AllocateTemporaryEntryPoints +00007FA128500C90 23 instance void [Datadog.Trace] Datadog.Trace.AppSec.Security::.ctor()[QuickJitted] +00007FA1298586C0 198 stub<4439> AllocateTemporaryEntryPoints +00007FA129858858 78 stub<4440> AllocateTemporaryEntryPoints +00007FA1298588D0 c0 stub<4441> AllocateTemporaryEntryPoints +00007FA129858990 48 stub<4442> AllocateTemporaryEntryPoints +00007FA1298589D8 78 stub<4443> AllocateTemporaryEntryPoints +00007FA129858A50 f0 stub<4444> AllocateTemporaryEntryPoints +00007FA129858B40 30 stub<4445> AllocateTemporaryEntryPoints +00007FA129858B70 60 stub<4446> AllocateTemporaryEntryPoints +00007FA129858BD0 c0 stub<4447> AllocateTemporaryEntryPoints +00007FA129858C90 60 stub<4448> AllocateTemporaryEntryPoints +00007FA129858CF0 30 stub<4449> AllocateTemporaryEntryPoints +00007FA128500CD0 2e1 instance void [Datadog.Trace] Datadog.Trace.AppSec.Security::.ctor(class Datadog.Trace.AppSec.SecuritySettings,class Datadog.Trace.AppSec.Waf.IWaf)[QuickJitted] +00007FA129858D20 c0 stub<4450> AllocateTemporaryEntryPoints +00007FA12985A000 528 stub<4451> AllocateTemporaryEntryPoints +00007FA128500FE0 53 instance void [Datadog.Trace] Datadog.Trace.AppSec.Concurrency.ReaderWriterLock::.ctor()[QuickJitted] +00007FA128501050 49 class Datadog.Trace.AppSec.SecuritySettings [Datadog.Trace] Datadog.Trace.AppSec.SecuritySettings::FromDefaultSources()[QuickJitted] +00007FA12985A528 18 stub<4452> AllocateTemporaryEntryPoints +00007FA12985A540 18 stub<4453> AllocateTemporaryEntryPoints +00007FA12985A558 18 stub<4454> AllocateTemporaryEntryPoints +00007FA1285010B0 826 instance void [Datadog.Trace] Datadog.Trace.AppSec.SecuritySettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12985A570 18 stub<4455> AllocateTemporaryEntryPoints +00007FA12985A588 18 stub<4456> AllocateTemporaryEntryPoints +00007FA128501900 47 class Datadog.Trace.LifetimeManager [Datadog.Trace] Datadog.Trace.LifetimeManager::get_Instance()[QuickJitted] +00007FA12985A5A0 18 stub<4457> AllocateTemporaryEntryPoints +00007FA128501960 29 void [Datadog.Trace] Datadog.Trace.LifetimeManager::.cctor()[QuickJitted] +00007FA12985A5B8 18 stub<4458> AllocateTemporaryEntryPoints +00007FA12985A5D0 18 stub<4459> AllocateTemporaryEntryPoints +00007FA12985A5E8 18 stub<4460> AllocateTemporaryEntryPoints +00007FA12985A600 60 stub<4461> AllocateTemporaryEntryPoints +00007FA12985A660 60 stub<4462> AllocateTemporaryEntryPoints +00007FA12985A6C0 60 stub<4463> AllocateTemporaryEntryPoints +00007FA128501DB0 26c instance void [Datadog.Trace] Datadog.Trace.LifetimeManager::.ctor()[QuickJitted] +00007FA12985A720 78 stub<4464> AllocateTemporaryEntryPoints +00007FA12985A798 720 stub<4465> AllocateTemporaryEntryPoints +00007FA12985AEB8 90 stub<4466> AllocateTemporaryEntryPoints +00007FA12985AF48 78 stub<4467> AllocateTemporaryEntryPoints +00007FA12985C000 48 stub<4468> AllocateTemporaryEntryPoints +00007FA12985C048 d8 stub<4469> AllocateTemporaryEntryPoints +00007FA12985C120 18 stub<4470> AllocateTemporaryEntryPoints +00007FA12985C138 a8 stub<4471> AllocateTemporaryEntryPoints +00007FA12985C1E0 18 stub<4472> AllocateTemporaryEntryPoints +00007FA12985C1F8 18 stub<4473> AllocateTemporaryEntryPoints +00007FA12985C210 198 stub<4474> AllocateTemporaryEntryPoints +00007FA12985C3A8 78 stub<4475> AllocateTemporaryEntryPoints +00007FA12985C420 30 stub<4476> AllocateTemporaryEntryPoints +00007FA12985C450 408 stub<4477> AllocateTemporaryEntryPoints +00007FA12985C858 90 stub<4478> AllocateTemporaryEntryPoints +00007FA12985C8E8 2a0 stub<4479> AllocateTemporaryEntryPoints +00007FA12985CB88 48 stub<4480> AllocateTemporaryEntryPoints +00007FA12985CBD0 18 stub<4481> AllocateTemporaryEntryPoints +00007FA12985CBE8 2b8 stub<4482> AllocateTemporaryEntryPoints +00007FA12784B3F0 11 stub<4483> GenerateVTableCallStub +00007FA12985E000 5a0 stub<4484> AllocateTemporaryEntryPoints +00007FA12985E5A0 30 stub<4485> AllocateTemporaryEntryPoints +00007FA12985E5D0 60 stub<4486> AllocateTemporaryEntryPoints +00007FA12985E630 60 stub<4487> AllocateTemporaryEntryPoints +00007FA12985E690 f0 stub<4488> AllocateTemporaryEntryPoints +00007FA12985E780 60 stub<4489> AllocateTemporaryEntryPoints +00007FA12985E7E0 60 stub<4490> AllocateTemporaryEntryPoints +00007FA12985E840 60 stub<4491> AllocateTemporaryEntryPoints +00007FA128502060 2d instance void [Datadog.Trace] Datadog.Trace.LifetimeManager::AddShutdownTask(class [System.Runtime]System.Action)[QuickJitted] +00007FA1285020B0 1c instance bool [Datadog.Trace] Datadog.Trace.AppSec.SecuritySettings::get_CanBeEnabled()[QuickJitted] +00007FA12985E8A0 f0 stub<4492> AllocateTemporaryEntryPoints +00007FA12985E990 288 stub<4493> AllocateTemporaryEntryPoints +00007FA12985EC18 150 stub<4494> AllocateTemporaryEntryPoints +00007FA12985ED68 180 stub<4495> AllocateTemporaryEntryPoints +00007FA12985EEE8 18 stub<4496> AllocateTemporaryEntryPoints +00007FA12985EF00 18 stub<4497> AllocateTemporaryEntryPoints +00007FA1285020E0 3a4 instance void [Datadog.Trace] Datadog.Trace.AppSec.Security::UpdateStatus(bool)[QuickJitted] +00007FA1285024B0 34 instance bool [Datadog.Trace] Datadog.Trace.AppSec.SecuritySettings::get_Enabled()[QuickJitted] +00007FA12985EF18 30 stub<4498> AllocateTemporaryEntryPoints +00007FA12985EF48 30 stub<4499> AllocateTemporaryEntryPoints +00007FA12985EF78 18 stub<4500> AllocateTemporaryEntryPoints +00007FA128502500 14e instance void [Datadog.Trace] Datadog.Trace.AppSec.Security::RemoveInstrumentationsAndProducts(bool)[QuickJitted] +00007FA128502670 27 class Datadog.Trace.AppSec.AsmFeaturesProduct [Datadog.Trace] Datadog.Trace.AppSec.AsmRemoteConfigurationProducts::get_AsmFeaturesProduct()[QuickJitted] +00007FA1285026B0 e0 void [Datadog.Trace] Datadog.Trace.AppSec.AsmRemoteConfigurationProducts::.cctor()[QuickJitted] +00007FA1285027B0 1f instance void [Datadog.Trace] Datadog.Trace.AppSec.AsmFeaturesProduct::.ctor()[QuickJitted] +00007FA1298D0000 108 stub<4501> AllocateTemporaryEntryPoints +00007FA1285027F0 53 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Product::.ctor()[QuickJitted] +00007FA128502860 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.AsmDataProduct::.ctor()[QuickJitted] +00007FA1285028A0 1f instance void [Datadog.Trace] Datadog.Trace.AppSec.AsmDDProduct::.ctor()[QuickJitted] +00007FA1285028E0 1f instance void [Datadog.Trace] Datadog.Trace.AppSec.AsmProduct::.ctor()[QuickJitted] +00007FA1298D0108 18 stub<4502> AllocateTemporaryEntryPoints +00007FA1298D0120 18 stub<4503> AllocateTemporaryEntryPoints +00007FA128502920 c7 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Product::add_ConfigChanged(class [System.Runtime]System.EventHandler`1)[QuickJitted] +00007FA128502A00 13 class Datadog.Trace.AppSec.AsmDDProduct [Datadog.Trace] Datadog.Trace.AppSec.AsmRemoteConfigurationProducts::get_AsmDDProduct()[QuickJitted] +00007FA1298D0138 60 stub<4504> AllocateTemporaryEntryPoints +00007FA1298D0198 168 stub<4505> AllocateTemporaryEntryPoints +00007FA128502A30 50 instance void [Datadog.Trace] Datadog.Trace.AppSec.Security::SetRemoteConfigCapabilites()[QuickJitted] +00007FA128502AA0 106 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::CallbackWithInitializedInstance(class [System.Runtime]System.Action`1)[QuickJitted] +00007FA128502BD0 b9 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::.cctor()[QuickJitted] +00007FA1298D0300 60 stub<4506> AllocateTemporaryEntryPoints +00007FA128502CA0 13 class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::get_Instance()[QuickJitted] +00007FA128502CD0 1c instance bool [Datadog.Trace] Datadog.Trace.Configuration.GlobalSettings::get_DiagnosticSourceEnabled()[QuickJitted] +00007FA1298D0360 18 stub<4507> AllocateTemporaryEntryPoints +00007FA1298D0378 c0 stub<4508> AllocateTemporaryEntryPoints +00007FA1298D0438 48 stub<4509> AllocateTemporaryEntryPoints +00007FA1298D0480 f0 stub<4510> AllocateTemporaryEntryPoints +00007FA1298D0570 48 stub<4511> AllocateTemporaryEntryPoints +00007FA1298D05B8 288 stub<4512> AllocateTemporaryEntryPoints +00007FA1298D0840 168 stub<4513> AllocateTemporaryEntryPoints +00007FA1298D09A8 30 stub<4514> AllocateTemporaryEntryPoints +00007FA1298D09D8 108 stub<4515> AllocateTemporaryEntryPoints +00007FA1298D0AE0 18 stub<4516> AllocateTemporaryEntryPoints +00007FA1298D0AF8 1e0 stub<4517> AllocateTemporaryEntryPoints +00007FA1298D0CD8 48 stub<4518> AllocateTemporaryEntryPoints +00007FA1298D0D20 18 stub<4519> AllocateTemporaryEntryPoints +00007FA128502D00 143 void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::StartDiagnosticManager()[QuickJitted] +00007FA1298D2000 2d0 stub<4520> AllocateTemporaryEntryPoints +00007FA128502E60 1bd class Datadog.Trace.Tracer [Datadog.Trace] Datadog.Trace.Tracer::get_Instance()[QuickJitted] +00007FA128503040 47 void [Datadog.Trace] Datadog.Trace.Tracer::.cctor()[QuickJitted] +00007FA1285030A0 51 instance void [Datadog.Trace] Datadog.Trace.Tracer::.ctor(class Datadog.Trace.TracerManager)[QuickJitted] +00007FA1298D22D0 48 stub<4521> AllocateTemporaryEntryPoints +00007FA1298D2318 18 stub<4522> AllocateTemporaryEntryPoints +00007FA1298D2330 18 stub<4523> AllocateTemporaryEntryPoints +00007FA128503110 184 class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.TracerManager::get_Instance()[QuickJitted] +00007FA1298D2348 18 stub<4524> AllocateTemporaryEntryPoints +00007FA1285032B0 70 void [Datadog.Trace] Datadog.Trace.TracerManager::.cctor()[QuickJitted] +00007FA128503340 47 void [Datadog.Trace] Datadog.Trace.TracerManager+<>c::.cctor()[QuickJitted] +00007FA1285033A0 1f instance void [Datadog.Trace] Datadog.Trace.TracerManager+<>c::.ctor()[QuickJitted] +00007FA1298D2360 18 stub<4525> AllocateTemporaryEntryPoints +00007FA1298D2378 18 stub<4526> AllocateTemporaryEntryPoints +00007FA1298D2390 120 stub<4527> AllocateTemporaryEntryPoints +00007FA1285033E0 4c instance class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.TracerManager+<>c::b__9_0()[QuickJitted] +00007FA1298D24B0 18 stub<4528> AllocateTemporaryEntryPoints +00007FA128503440 69 void [Datadog.Trace] Datadog.Trace.TracerManagerFactory::.cctor()[QuickJitted] +00007FA1285034C0 1f instance void [Datadog.Trace] Datadog.Trace.TracerManagerFactory::.ctor()[QuickJitted] +00007FA1298D24C8 30 stub<4529> AllocateTemporaryEntryPoints +00007FA128503500 123 class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.TracerManager::CreateInitializedTracer(class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.TracerManagerFactory)[QuickJitted] +00007FA128503640 1f instance void [Datadog.Trace] Datadog.Trace.TracerManager+<>c__DisplayClass59_0::.ctor()[QuickJitted] +00007FA1298D24F8 48 stub<4530> AllocateTemporaryEntryPoints +00007FA1298D2540 a8 stub<4531> AllocateTemporaryEntryPoints +00007FA1298D25E8 90 stub<4532> AllocateTemporaryEntryPoints +00007FA1298D2678 18 stub<4533> AllocateTemporaryEntryPoints +00007FA1277BFA20 18 stub<4534> GenerateLookupStub +00007FA1298D2690 48 stub<4535> AllocateTemporaryEntryPoints +00007FA1298D26D8 78 stub<4536> AllocateTemporaryEntryPoints +00007FA128503680 37f instance class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.TracerManagerFactory::CreateTracerManager(class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.TracerManager)[QuickJitted] +00007FA1298D2750 60 stub<4537> AllocateTemporaryEntryPoints +00007FA1298D27B0 48 stub<4538> AllocateTemporaryEntryPoints +00007FA1298D27F8 180 stub<4539> AllocateTemporaryEntryPoints +00007FA1298D2978 d8 stub<4540> AllocateTemporaryEntryPoints +00007FA1298D2A50 f0 stub<4541> AllocateTemporaryEntryPoints +00007FA1298D2B40 48 stub<4542> AllocateTemporaryEntryPoints +00007FA1298D2B88 18 stub<4543> AllocateTemporaryEntryPoints +00007FA1298D2BA0 c0 stub<4544> AllocateTemporaryEntryPoints +00007FA1298D2C60 30 stub<4545> AllocateTemporaryEntryPoints +00007FA1298D2C90 1b0 stub<4546> AllocateTemporaryEntryPoints +00007FA1277BFA40 18 stub<4547> GenerateLookupStub +00007FA1277BFA60 18 stub<4548> GenerateLookupStub +00007FA1298D2E40 a8 stub<4549> AllocateTemporaryEntryPoints +00007FA1298D4000 138 stub<4550> AllocateTemporaryEntryPoints +00007FA1277BFA80 18 stub<4551> GenerateLookupStub +00007FA1277BFAA0 18 stub<4552> GenerateLookupStub +00007FA1298D4138 48 stub<4553> AllocateTemporaryEntryPoints +00007FA1298D4180 138 stub<4554> AllocateTemporaryEntryPoints +00007FA1298D42B8 60 stub<4555> AllocateTemporaryEntryPoints +00007FA1298D4318 18 stub<4556> AllocateTemporaryEntryPoints +00007FA1298D4330 18 stub<4557> AllocateTemporaryEntryPoints +00007FA1298D4348 18 stub<4558> AllocateTemporaryEntryPoints +00007FA1298D4360 18 stub<4559> AllocateTemporaryEntryPoints +00007FA1298D4378 48 stub<4560> AllocateTemporaryEntryPoints +00007FA1298D43C0 78 stub<4561> AllocateTemporaryEntryPoints +00007FA1298D4438 18 stub<4562> AllocateTemporaryEntryPoints +00007FA1298D4450 c0 stub<4563> AllocateTemporaryEntryPoints +00007FA1277BFAC0 18 stub<4564> GenerateLookupStub +00007FA1298D4510 30 stub<4565> AllocateTemporaryEntryPoints +00007FA1298D4540 d8 stub<4566> AllocateTemporaryEntryPoints +00007FA128503A30 430 instance class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.TracerManagerFactory::CreateTracerManager(class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.Agent.IAgentWriter,class Datadog.Trace.Sampling.ITraceSampler,class Datadog.Trace.IScopeManager,class Datadog.Trace.Vendors.StatsdClient.IDogStatsd,class Datadog.Trace.RuntimeMetrics.RuntimeMetricsWriter,class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager,class Datadog.Trace.Telemetry.ITelemetryController,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,class Datadog.Trace.DataStreamsMonitoring.DataStreamsManager)[QuickJitted] +00007FA128503E90 49 class Datadog.Trace.Configuration.ImmutableTracerSettings [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::FromDefaultSources()[QuickJitted] +00007FA1298D4618 7f8 stub<4567> AllocateTemporaryEntryPoints +00007FA1298D4E10 1b0 stub<4568> AllocateTemporaryEntryPoints +00007FA128503EF0 4e instance void [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1298D6000 a8 stub<4569> AllocateTemporaryEntryPoints +00007FA1298D60A8 78 stub<4570> AllocateTemporaryEntryPoints +00007FA1298D6120 300 stub<4571> AllocateTemporaryEntryPoints +00007FA1277BFAE0 18 stub<4572> GenerateLookupStub +00007FA1298D6420 c0 stub<4573> AllocateTemporaryEntryPoints +00007FA1298D64E0 18 stub<4574> AllocateTemporaryEntryPoints +00007FA1298D64F8 18 stub<4575> AllocateTemporaryEntryPoints +00007FA1298D6510 18 stub<4576> AllocateTemporaryEntryPoints +00007FA1277BFB00 18 stub<4577> GenerateLookupStub +00007FA1298D6528 60 stub<4578> AllocateTemporaryEntryPoints +00007FA1277BFB20 18 stub<4579> GenerateLookupStub +00007FA1298D6588 60 stub<4580> AllocateTemporaryEntryPoints +00007FA1298D65E8 240 stub<4581> AllocateTemporaryEntryPoints +00007FA1298D6828 18 stub<4582> AllocateTemporaryEntryPoints +00007FA1298D6840 18 stub<4583> AllocateTemporaryEntryPoints +00007FA1298D6858 18 stub<4584> AllocateTemporaryEntryPoints +00007FA128503F60 2de6 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA128506D90 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_Environment(string)[QuickJitted] +00007FA128506DD0 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_ServiceName(string)[QuickJitted] +00007FA128506E10 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_ServiceVersion(string)[QuickJitted] +00007FA128506E50 24a valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.ExtensionMethods.StringExtensions::ToBoolean(string)[QuickJitted] +00007FA1285070B0 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_TraceEnabled(bool)[QuickJitted] +00007FA1277C3B60 20 stub<4585> GenerateDispatchStub +00007FA1285070F0 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_DisabledIntegrationNames(class [System.Collections]System.Collections.Generic.HashSet`1)[QuickJitted] +00007FA1298D6888 c0 stub<4586> AllocateTemporaryEntryPoints +00007FA128507130 3d instance void [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettingsCollection::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1298D6948 48 stub<4587> AllocateTemporaryEntryPoints +00007FA128507190 12e class Datadog.Trace.Configuration.IntegrationSettings[] [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettingsCollection::GetIntegrationSettings(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1298D6990 5e8 stub<4588> AllocateTemporaryEntryPoints +00007FA1298D8000 c0 stub<4589> AllocateTemporaryEntryPoints +00007FA1298D80C0 90 stub<4590> AllocateTemporaryEntryPoints +00007FA1298D8150 a8 stub<4591> AllocateTemporaryEntryPoints +00007FA1298D81F8 18 stub<4592> AllocateTemporaryEntryPoints +00007FA1298D8210 78 stub<4593> AllocateTemporaryEntryPoints +00007FA1298D8288 18 stub<4594> AllocateTemporaryEntryPoints +00007FA1298D82A0 18 stub<4595> AllocateTemporaryEntryPoints +00007FA1285072E0 26e void [Datadog.Trace] Datadog.Trace.Configuration.IntegrationRegistry::.cctor()[QuickJitted] +00007FA12784B410 11 stub<4596> GenerateVTableCallStub +00007FA1298D82B8 60 stub<4597> AllocateTemporaryEntryPoints +00007FA1298D8318 60 stub<4598> AllocateTemporaryEntryPoints +00007FA1298D8378 18 stub<4599> AllocateTemporaryEntryPoints +00007FA1298D8390 18 stub<4600> AllocateTemporaryEntryPoints +00007FA1298D83A8 18 stub<4601> AllocateTemporaryEntryPoints +00007FA128507580 60 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Cast(class [System.Runtime]System.Collections.IEnumerable)[QuickJitted] +00007FA1298D83C0 18 stub<4602> AllocateTemporaryEntryPoints +00007FA1298D83D8 240 stub<4603> AllocateTemporaryEntryPoints +00007FA1298D8618 48 stub<4604> AllocateTemporaryEntryPoints +00007FA1298D8660 60 stub<4605> AllocateTemporaryEntryPoints +00007FA1298D86C0 48 stub<4606> AllocateTemporaryEntryPoints +00007FA1298D8708 540 stub<4607> AllocateTemporaryEntryPoints +00007FA1298D8C48 18 stub<4608> AllocateTemporaryEntryPoints +00007FA1298D8C60 18 stub<4609> AllocateTemporaryEntryPoints +00007FA1277BFB40 18 stub<4610> GenerateLookupStub +00007FA1298D8C78 18 stub<4611> AllocateTemporaryEntryPoints +00007FA1277BFB60 18 stub<4612> GenerateLookupStub +00007FA1298D8C90 18 stub<4613> AllocateTemporaryEntryPoints +00007FA1298D8CA8 270 stub<4614> AllocateTemporaryEntryPoints +00007FA1298DA000 540 stub<4615> AllocateTemporaryEntryPoints +00007FA1298DA540 18 stub<4616> AllocateTemporaryEntryPoints +00007FA1298DA558 18 stub<4617> AllocateTemporaryEntryPoints +00007FA1298DA570 18 stub<4618> AllocateTemporaryEntryPoints +00007FA128507600 399 !!0 [System.Linq] System.Linq.Enumerable::MaxInteger(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1298DA588 18 stub<4619> AllocateTemporaryEntryPoints +00007FA1298DA5A0 6f0 stub<4620> AllocateTemporaryEntryPoints +00007FA1298DAC90 78 stub<4621> AllocateTemporaryEntryPoints +00007FA1298DAD08 a8 stub<4622> AllocateTemporaryEntryPoints +00007FA1298DADB0 18 stub<4623> AllocateTemporaryEntryPoints +00007FA1298DADC8 18 stub<4624> AllocateTemporaryEntryPoints +00007FA1298DADE0 18 stub<4625> AllocateTemporaryEntryPoints +00007FA1298DADF8 18 stub<4626> AllocateTemporaryEntryPoints +00007FA1298DAE10 48 stub<4627> AllocateTemporaryEntryPoints +00007FA1298DAE58 18 stub<4628> AllocateTemporaryEntryPoints +00007FA1298DAE70 18 stub<4629> AllocateTemporaryEntryPoints +00007FA1298DC000 2b8 stub<4630> AllocateTemporaryEntryPoints +00007FA1298DC2B8 18 stub<4631> AllocateTemporaryEntryPoints +00007FA1298DC2D0 60 stub<4632> AllocateTemporaryEntryPoints +00007FA1298DC330 18 stub<4633> AllocateTemporaryEntryPoints +00007FA1298DC348 270 stub<4634> AllocateTemporaryEntryPoints +00007FA1285079D0 15a bool [System.Linq] System.Linq.Enumerable::TryGetSpan(class [System.Runtime]System.Collections.Generic.IEnumerable`1,valuetype [System.Runtime]System.ReadOnlySpan`1&)[QuickJitted] +00007FA1298DC5B8 18 stub<4635> AllocateTemporaryEntryPoints +00007FA1298DC5D0 60 stub<4636> AllocateTemporaryEntryPoints +00007FA1298DC630 18 stub<4637> AllocateTemporaryEntryPoints +00007FA1298DC648 a8 stub<4638> AllocateTemporaryEntryPoints +00007FA1298DC6F0 a8 stub<4639> AllocateTemporaryEntryPoints +00007FA1298DC798 18 stub<4640> AllocateTemporaryEntryPoints +00007FA128507B50 7c instance class System.Collections.Generic.IEnumerator`1 [System.Private.CoreLib] System.SZArrayHelper::GetEnumerator()[QuickJitted] +00007FA128507BE0 3e instance void [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.Int32]::.ctor(!0[])[QuickJitted] +00007FA128507C40 59 instance bool [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.Int32]::MoveNext()[QuickJitted] +00007FA128507CB0 60 instance !0 [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.Int32]::get_Current()[QuickJitted] +00007FA1277C3B80 20 stub<4641> GenerateDispatchStub +00007FA1277F5730 18 stub<4642> GenerateResolveStub +00007FA1277C3BA0 20 stub<4643> GenerateDispatchStub +00007FA128507D30 14 instance void [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.Int32]::Dispose()[QuickJitted] +00007FA1298DC7B0 78 stub<4644> AllocateTemporaryEntryPoints +00007FA1298DC828 18 stub<4645> AllocateTemporaryEntryPoints +00007FA1298DC840 18 stub<4646> AllocateTemporaryEntryPoints +00007FA1277C3BC0 20 stub<4647> GenerateDispatchStub +00007FA1277F57A0 18 stub<4648> GenerateResolveStub +00007FA1277C3BE0 20 stub<4649> GenerateDispatchStub +00007FA1277C3C00 20 stub<4650> GenerateDispatchStub +00007FA128507D60 349 instance void [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettings::.ctor(string,class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1285080E0 23 instance void [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettings::set_Enabled(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA128508120 23 instance void [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettings::set_AnalyticsEnabled(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1298DC858 30 stub<4651> AllocateTemporaryEntryPoints +00007FA1298DC888 60 stub<4652> AllocateTemporaryEntryPoints +00007FA1298DC8E8 18 stub<4653> AllocateTemporaryEntryPoints +00007FA1298DC900 18 stub<4654> AllocateTemporaryEntryPoints +00007FA1298DC918 18 stub<4655> AllocateTemporaryEntryPoints +00007FA1298DC930 60 stub<4656> AllocateTemporaryEntryPoints +00007FA1298DC990 18 stub<4657> AllocateTemporaryEntryPoints +00007FA128508160 15c instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource::GetDouble(string)[QuickJitted] +00007FA1285082E0 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass5_0::.ctor()[QuickJitted] +00007FA1298DC9A8 108 stub<4658> AllocateTemporaryEntryPoints +00007FA1298DCAB0 c0 stub<4659> AllocateTemporaryEntryPoints +00007FA1298DCB70 18 stub<4660> AllocateTemporaryEntryPoints +00007FA1298DCB88 48 stub<4661> AllocateTemporaryEntryPoints +00007FA1298DCBD0 18 stub<4662> AllocateTemporaryEntryPoints +00007FA1298DCBE8 18 stub<4663> AllocateTemporaryEntryPoints +00007FA1298DCC00 150 stub<4664> AllocateTemporaryEntryPoints +00007FA1298DCD50 78 stub<4665> AllocateTemporaryEntryPoints +00007FA1298DCDC8 138 stub<4666> AllocateTemporaryEntryPoints +00007FA1298DCF00 18 stub<4667> AllocateTemporaryEntryPoints +00007FA1298DE000 138 stub<4668> AllocateTemporaryEntryPoints +00007FA1298DE138 18 stub<4669> AllocateTemporaryEntryPoints +00007FA1298DE150 18 stub<4670> AllocateTemporaryEntryPoints +00007FA128508320 617 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Select(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA128508960 49 instance void [System.Linq] System.Linq.Enumerable+SelectListIterator`2[System.__Canon,System.Nullable`1[System.Double]]::.ctor(class [System.Collections]System.Collections.Generic.List`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1285089C0 2a instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Double]]::.ctor()[QuickJitted] +00007FA1298DE168 18 stub<4671> AllocateTemporaryEntryPoints +00007FA128508A00 3c !!0 [System.Linq] System.Linq.Enumerable::FirstOrDefault(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1277BFB80 18 stub<4672> GenerateLookupStub +00007FA1277BFBA0 18 stub<4673> GenerateLookupStub +00007FA128508A60 188 !!0 [System.Linq] System.Linq.Enumerable::TryGetFirst(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,bool&)[QuickJitted] +00007FA128508C20 73 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Double]]::GetEnumerator()[QuickJitted] +00007FA128508CB0 1b8 instance bool [System.Linq] System.Linq.Enumerable+SelectListIterator`2[System.__Canon,System.Nullable`1[System.Double]]::MoveNext()[QuickJitted] +00007FA128508E90 43 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass5_0::b__0(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA128508EF0 ad instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.StringConfigurationSource::GetDouble(string)[QuickJitted] +00007FA128508FC0 2e instance !0 [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Double]]::get_Current()[QuickJitted] +00007FA128509010 28 instance bool [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c::b__5_1(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1277C3C20 20 stub<4674> GenerateDispatchStub +00007FA1298DE180 18 stub<4675> AllocateTemporaryEntryPoints +00007FA128509050 38 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::Datadog.Trace.Configuration.IConfigurationSource.GetDouble(string)[QuickJitted] +00007FA1298DE198 18 stub<4676> AllocateTemporaryEntryPoints +00007FA1285090A0 80 instance !!0 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::GetValue(string)[QuickJitted] +00007FA1277F5810 18 stub<4677> GenerateResolveStub +00007FA1277C3C40 20 stub<4678> GenerateDispatchStub +00007FA128509140 2f instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.Nullable`1[System.Double]]::Dispose()[QuickJitted] +00007FA1277C3C60 20 stub<4679> GenerateDispatchStub +00007FA1277F5880 18 stub<4680> GenerateResolveStub +00007FA1277C3C80 20 stub<4681> GenerateDispatchStub +00007FA1277F58F0 18 stub<4682> GenerateResolveStub +00007FA1277C3CA0 20 stub<4683> GenerateDispatchStub +00007FA1277C3CC0 20 stub<4684> GenerateDispatchStub +00007FA128509190 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettings::set_AnalyticsSampleRate(float64)[QuickJitted] +00007FA1285091E0 be instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA1285092C0 63a instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA128509920 3da instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::ConfigureTraceTransport(string,string,string,valuetype [System.Runtime]System.Nullable`1,string)[QuickJitted] +00007FA128509D20 ae instance bool [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::TrySetAgentUriAndTransport(string,int32)[QuickJitted] +00007FA128509DF0 a0 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::TrySetAgentUriAndTransport(string)[QuickJitted] +00007FA1298DE1B0 78 stub<4685> AllocateTemporaryEntryPoints +00007FA1298DE228 1c8 stub<4686> AllocateTemporaryEntryPoints +00007FA1298DE3F0 2a0 stub<4687> AllocateTemporaryEntryPoints +00007FA1298DE690 60 stub<4688> AllocateTemporaryEntryPoints +00007FA1298DE6F0 2d0 stub<4689> AllocateTemporaryEntryPoints +00007FA1298DE9C0 18 stub<4690> AllocateTemporaryEntryPoints +00007FA1298DE9D8 270 stub<4691> AllocateTemporaryEntryPoints +00007FA1298DEC48 90 stub<4692> AllocateTemporaryEntryPoints +00007FA1298DECD8 18 stub<4693> AllocateTemporaryEntryPoints +00007FA12850A2B0 254 instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::SetAgentUriAndTransport(class [System.Runtime]System.Uri)[QuickJitted] +00007FA12850A530 21 instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::set_TracesTransport(valuetype Datadog.Trace.Agent.TracesTransportType)[QuickJitted] +00007FA1298DECF0 2a0 stub<4694> AllocateTemporaryEntryPoints +00007FA12850A570 cf instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::SetAgentUriReplacingLocalhost(class [System.Runtime]System.Uri)[QuickJitted] +00007FA1298DEF90 30 stub<4695> AllocateTemporaryEntryPoints +00007FA1298DEFC0 18 stub<4696> AllocateTemporaryEntryPoints +00007FA12850A660 2f3 instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::ConfigureMetricsTransport(string,string,int32,string,string)[QuickJitted] +00007FA12850A970 21 instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::set_MetricsTransport(valuetype Datadog.Trace.Vendors.StatsdClient.Transport.TransportType)[QuickJitted] +00007FA12850A9B0 21 instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::set_DogStatsdPort(int32)[QuickJitted] +00007FA12850A9F0 21 instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::set_TracesPipeTimeoutMs(int32)[QuickJitted] +00007FA12850AA30 22 instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::set_PartialFlushEnabled(bool)[QuickJitted] +00007FA12850AA70 95 instance void [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::set_PartialFlushMinSpans(int32)[QuickJitted] +00007FA12850AB20 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_Exporter(class Datadog.Trace.Configuration.ExporterSettings)[QuickJitted] +00007FA12850AB60 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_AnalyticsEnabled(bool)[QuickJitted] +00007FA12850ABA0 24 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_MaxTracesSubmittedPerSecond(int32)[QuickJitted] +00007FA1299C0000 30 stub<4697> AllocateTemporaryEntryPoints +00007FA1299C0030 18 stub<4698> AllocateTemporaryEntryPoints +00007FA1299C0048 18 stub<4699> AllocateTemporaryEntryPoints +00007FA12850ABE0 150 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource::GetDictionary(string)[QuickJitted] +00007FA12850AD50 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass9_0::.ctor()[QuickJitted] +00007FA1299C0060 18 stub<4700> AllocateTemporaryEntryPoints +00007FA1277BFBC0 18 stub<4701> GenerateLookupStub +00007FA1277F5960 18 stub<4702> GenerateResolveStub +00007FA1277C3CE0 20 stub<4703> GenerateDispatchStub +00007FA12850AD90 32 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass9_0::b__0(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12850ADE0 45 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.StringConfigurationSource::GetDictionary(string)[QuickJitted] +00007FA12850AE40 228 class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.StringConfigurationSource::ParseCustomKeyValues(string,bool)[QuickJitted] +00007FA1277BFBE0 18 stub<4704> GenerateLookupStub +00007FA1277F59D0 18 stub<4705> GenerateResolveStub +00007FA1277C3D00 20 stub<4706> GenerateDispatchStub +00007FA12850B090 22 instance bool [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c::b__9_1(class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA12850B0D0 29 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::GetDictionary(string)[QuickJitted] +00007FA1299C0078 18 stub<4707> AllocateTemporaryEntryPoints +00007FA1299C0090 18 stub<4708> AllocateTemporaryEntryPoints +00007FA1299C00A8 18 stub<4709> AllocateTemporaryEntryPoints +00007FA1299C00C0 18 stub<4710> AllocateTemporaryEntryPoints +00007FA12850B110 187 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::GetDictionaryInternal(string,bool)[QuickJitted] +00007FA1277F5A40 18 stub<4711> GenerateResolveStub +00007FA1277C3D20 20 stub<4712> GenerateDispatchStub +00007FA1277C3D40 20 stub<4713> GenerateDispatchStub +00007FA12850B2C0 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_GlobalTags(class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA12850B300 1c instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_GlobalTags()[QuickJitted] +00007FA12850B330 47 void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings+<>c::.cctor()[QuickJitted] +00007FA12850B390 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings+<>c::.ctor()[QuickJitted] +00007FA1299C00D8 108 stub<4714> AllocateTemporaryEntryPoints +00007FA1299C01E0 60 stub<4715> AllocateTemporaryEntryPoints +00007FA1299C0240 6f0 stub<4716> AllocateTemporaryEntryPoints +00007FA1299C0930 78 stub<4717> AllocateTemporaryEntryPoints +00007FA1299C09A8 18 stub<4718> AllocateTemporaryEntryPoints +00007FA1299C09C0 108 stub<4719> AllocateTemporaryEntryPoints +00007FA1299C0AC8 18 stub<4720> AllocateTemporaryEntryPoints +00007FA1299C0AE0 18 stub<4721> AllocateTemporaryEntryPoints +00007FA1299C0AF8 60 stub<4722> AllocateTemporaryEntryPoints +00007FA1299C2000 6f0 stub<4723> AllocateTemporaryEntryPoints +00007FA1299C26F0 78 stub<4724> AllocateTemporaryEntryPoints +00007FA1299C2768 a8 stub<4725> AllocateTemporaryEntryPoints +00007FA1299C2810 18 stub<4726> AllocateTemporaryEntryPoints +00007FA1299C2828 18 stub<4727> AllocateTemporaryEntryPoints +00007FA1299C2840 d8 stub<4728> AllocateTemporaryEntryPoints +00007FA1299C2918 48 stub<4729> AllocateTemporaryEntryPoints +00007FA1299C2960 d8 stub<4730> AllocateTemporaryEntryPoints +00007FA1299C2A38 48 stub<4731> AllocateTemporaryEntryPoints +00007FA1299C2A80 120 stub<4732> AllocateTemporaryEntryPoints +00007FA1299C2BA0 c0 stub<4733> AllocateTemporaryEntryPoints +00007FA1299C2C60 120 stub<4734> AllocateTemporaryEntryPoints +00007FA1299C2D80 c0 stub<4735> AllocateTemporaryEntryPoints +00007FA1299C2E40 18 stub<4736> AllocateTemporaryEntryPoints +00007FA1299C2E58 18 stub<4737> AllocateTemporaryEntryPoints +00007FA1299C2E70 18 stub<4738> AllocateTemporaryEntryPoints +00007FA1299C2E88 108 stub<4739> AllocateTemporaryEntryPoints +00007FA1299C4000 c0 stub<4740> AllocateTemporaryEntryPoints +00007FA1299C40C0 18 stub<4741> AllocateTemporaryEntryPoints +00007FA1299C40D8 18 stub<4742> AllocateTemporaryEntryPoints +00007FA1299C40F0 48 stub<4743> AllocateTemporaryEntryPoints +00007FA1299C4138 c0 stub<4744> AllocateTemporaryEntryPoints +00007FA1299C41F8 c0 stub<4745> AllocateTemporaryEntryPoints +00007FA12850B3D0 384 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Where(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1299C42B8 60 stub<4746> AllocateTemporaryEntryPoints +00007FA12850B770 49 instance void [System.Linq] System.Linq.Enumerable+WhereEnumerableIterator`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12850B7D0 2a instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA1299C4318 18 stub<4747> AllocateTemporaryEntryPoints +00007FA1299C4330 18 stub<4748> AllocateTemporaryEntryPoints +00007FA1299C4348 18 stub<4749> AllocateTemporaryEntryPoints +00007FA12850B810 76 class [System.Collections]System.Collections.Generic.Dictionary`2 [System.Linq] System.Linq.Enumerable::ToDictionary(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1299C4360 18 stub<4750> AllocateTemporaryEntryPoints +00007FA1299C4378 a8 stub<4751> AllocateTemporaryEntryPoints +00007FA1299C4420 18 stub<4752> AllocateTemporaryEntryPoints +00007FA1299C4438 5e8 stub<4753> AllocateTemporaryEntryPoints +00007FA1299C4A20 c0 stub<4754> AllocateTemporaryEntryPoints +00007FA1299C4AE0 90 stub<4755> AllocateTemporaryEntryPoints +00007FA1299C4B70 a8 stub<4756> AllocateTemporaryEntryPoints +00007FA1299C4C18 18 stub<4757> AllocateTemporaryEntryPoints +00007FA1299C4C30 78 stub<4758> AllocateTemporaryEntryPoints +00007FA1299C4CA8 18 stub<4759> AllocateTemporaryEntryPoints +00007FA1299C4CC0 18 stub<4760> AllocateTemporaryEntryPoints +00007FA1299C4CD8 60 stub<4761> AllocateTemporaryEntryPoints +00007FA1299C4D38 60 stub<4762> AllocateTemporaryEntryPoints +00007FA1299C4D98 60 stub<4763> AllocateTemporaryEntryPoints +00007FA1299C6000 6f0 stub<4764> AllocateTemporaryEntryPoints +00007FA1299C66F0 78 stub<4765> AllocateTemporaryEntryPoints +00007FA1299C6768 18 stub<4766> AllocateTemporaryEntryPoints +00007FA1299C6780 18 stub<4767> AllocateTemporaryEntryPoints +00007FA1299C6798 18 stub<4768> AllocateTemporaryEntryPoints +00007FA1299C67B0 18 stub<4769> AllocateTemporaryEntryPoints +00007FA1299C67C8 18 stub<4770> AllocateTemporaryEntryPoints +00007FA1299C67E0 18 stub<4771> AllocateTemporaryEntryPoints +00007FA1299C67F8 18 stub<4772> AllocateTemporaryEntryPoints +00007FA1299C6810 18 stub<4773> AllocateTemporaryEntryPoints +00007FA12850B8A0 640 class [System.Collections]System.Collections.Generic.Dictionary`2 [System.Linq] System.Linq.Enumerable::ToDictionary(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA1277BFC00 18 stub<4774> GenerateLookupStub +00007FA12850BF10 73 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.Enumerable+Iterator`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::GetEnumerator()[QuickJitted] +00007FA1299C6828 60 stub<4775> AllocateTemporaryEntryPoints +00007FA12850BFA0 250 instance bool [System.Linq] System.Linq.Enumerable+WhereEnumerableIterator`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::MoveNext()[QuickJitted] +00007FA1299C6888 90 stub<4776> AllocateTemporaryEntryPoints +00007FA1299C6918 a8 stub<4777> AllocateTemporaryEntryPoints +00007FA1299C69C0 a8 stub<4778> AllocateTemporaryEntryPoints +00007FA1299C6A68 18 stub<4779> AllocateTemporaryEntryPoints +00007FA12850C210 49 instance void [System.Linq] System.Linq.Enumerable+WhereEnumerableIterator`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Dispose()[QuickJitted] +00007FA12850C270 2d instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Dispose()[QuickJitted] +00007FA1277C3D60 20 stub<4780> GenerateDispatchStub +00007FA1299C6A80 30 stub<4781> AllocateTemporaryEntryPoints +00007FA12850C2C0 15d instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource::GetDictionary(string,bool)[QuickJitted] +00007FA12850C440 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass10_0::.ctor()[QuickJitted] +00007FA12850C480 3a instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c__DisplayClass10_0::b__0(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12850C4D0 4d instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.StringConfigurationSource::GetDictionary(string,bool)[QuickJitted] +00007FA12850C540 22 instance bool [Datadog.Trace] Datadog.Trace.Configuration.CompositeConfigurationSource+<>c::b__10_1(class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA12850C580 30 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.JsonConfigurationSource::GetDictionary(string,bool)[QuickJitted] +00007FA1277BFC20 18 stub<4782> GenerateLookupStub +00007FA12850C5D0 272 class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::InitializeHeaderTags(class [System.Runtime]System.Collections.Generic.IDictionary`2,bool)[QuickJitted] +00007FA1277F5AB0 18 stub<4783> GenerateResolveStub +00007FA1277C3D80 20 stub<4784> GenerateDispatchStub +00007FA1277C3DA0 20 stub<4785> GenerateDispatchStub +00007FA1277C3DC0 20 stub<4786> GenerateDispatchStub +00007FA12850C870 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_HeaderTags(class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA1277BFC40 18 stub<4787> GenerateLookupStub +00007FA12850C8B0 a9 instance void [Datadog.Trace] Datadog.Trace.Configuration.ServiceNames::.ctor(class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA12850C970 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_TracerMetricsEnabled(bool)[QuickJitted] +00007FA12850C9B0 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_StatsComputationEnabled(bool)[QuickJitted] +00007FA12850C9F0 24 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_StatsComputationInterval(int32)[QuickJitted] +00007FA12850CA30 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_RuntimeMetricsEnabled(bool)[QuickJitted] +00007FA12850CA70 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_CustomSamplingRules(string)[QuickJitted] +00007FA12850CAB0 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_SpanSamplingRules(string)[QuickJitted] +00007FA12850CAF0 31 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_GlobalSamplingRate(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12850CB40 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_StartupDiagnosticLogEnabled(bool)[QuickJitted] +00007FA1299C8000 5e8 stub<4788> AllocateTemporaryEntryPoints +00007FA1299C85E8 1e0 stub<4789> AllocateTemporaryEntryPoints +00007FA1299C87C8 18 stub<4790> AllocateTemporaryEntryPoints +00007FA1299C87E0 18 stub<4791> AllocateTemporaryEntryPoints +00007FA12850CB80 236 bool[] [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::ParseHttpCodesToArray(string)[QuickJitted] +00007FA1299C87F8 c0 stub<4792> AllocateTemporaryEntryPoints +00007FA1299C88B8 a8 stub<4793> AllocateTemporaryEntryPoints +00007FA1299C8960 18 stub<4794> AllocateTemporaryEntryPoints +00007FA1299C8978 1b0 stub<4795> AllocateTemporaryEntryPoints +00007FA1299CA000 6f0 stub<4796> AllocateTemporaryEntryPoints +00007FA1299CA6F0 c0 stub<4797> AllocateTemporaryEntryPoints +00007FA1299CA7B0 90 stub<4798> AllocateTemporaryEntryPoints +00007FA1299CA840 a8 stub<4799> AllocateTemporaryEntryPoints +00007FA1299CA8E8 18 stub<4800> AllocateTemporaryEntryPoints +00007FA1299CA900 78 stub<4801> AllocateTemporaryEntryPoints +00007FA1299CA978 18 stub<4802> AllocateTemporaryEntryPoints +00007FA12850CDD0 30 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::.ctor(int32,int32)[QuickJitted] +00007FA1299CA990 30 stub<4803> AllocateTemporaryEntryPoints +00007FA1299CA9C0 18 stub<4804> AllocateTemporaryEntryPoints +00007FA1299CA9D8 48 stub<4805> AllocateTemporaryEntryPoints +00007FA1299CAA20 d8 stub<4806> AllocateTemporaryEntryPoints +00007FA12850CE20 388 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12850D1D0 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12850D260 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Text.RegularExpressions.RegexCache+Key]::get_Default()[QuickJitted] +00007FA12850D2A0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Text.RegularExpressions.RegexCache+Key]::.cctor()[QuickJitted] +00007FA1299CAAF8 18 stub<4807> AllocateTemporaryEntryPoints +00007FA1299CAB10 a8 stub<4808> AllocateTemporaryEntryPoints +00007FA12850D320 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.Text.RegularExpressions.RegexCache+Key]::.ctor()[QuickJitted] +00007FA12850D360 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Text.RegularExpressions.RegexCache+Key]::.ctor()[QuickJitted] +00007FA1299CABB8 78 stub<4809> AllocateTemporaryEntryPoints +00007FA1299CAC30 150 stub<4810> AllocateTemporaryEntryPoints +00007FA1277BFC60 18 stub<4811> GenerateLookupStub +00007FA1299CAD80 18 stub<4812> AllocateTemporaryEntryPoints +00007FA1277BFC80 18 stub<4813> GenerateLookupStub +00007FA12850D3A0 591 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12850D950 126 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::GetBucket(int32)[QuickJitted] +00007FA1299CAD98 18 stub<4814> AllocateTemporaryEntryPoints +00007FA1299CADB0 18 stub<4815> AllocateTemporaryEntryPoints +00007FA1299CADC8 f0 stub<4816> AllocateTemporaryEntryPoints +00007FA1299CAEB8 30 stub<4817> AllocateTemporaryEntryPoints +00007FA1299CC000 198 stub<4818> AllocateTemporaryEntryPoints +00007FA1299CC198 18 stub<4819> AllocateTemporaryEntryPoints +00007FA1299CC1B0 18 stub<4820> AllocateTemporaryEntryPoints +00007FA1299CC1C8 18 stub<4821> AllocateTemporaryEntryPoints +00007FA1299CC1E0 18 stub<4822> AllocateTemporaryEntryPoints +00007FA1299CC1F8 18 stub<4823> AllocateTemporaryEntryPoints +00007FA1299CC210 18 stub<4824> AllocateTemporaryEntryPoints +00007FA1299CC228 78 stub<4825> AllocateTemporaryEntryPoints +00007FA12850DA90 7b instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::TryAdd(!0,!1)[QuickJitted] +00007FA1299CC2A0 18 stub<4826> AllocateTemporaryEntryPoints +00007FA12850DB20 851 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12850E3A0 db instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA12850E490 6f instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[System.Text.RegularExpressions.RegexCache+Key,System.__Canon]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA1299CC2B8 18 stub<4827> AllocateTemporaryEntryPoints +00007FA1299CC2D0 18 stub<4828> AllocateTemporaryEntryPoints +00007FA1299CC2E8 18 stub<4829> AllocateTemporaryEntryPoints +00007FA1299CC300 d8 stub<4830> AllocateTemporaryEntryPoints +00007FA1299CC3D8 30 stub<4831> AllocateTemporaryEntryPoints +00007FA1299CC408 a8 stub<4832> AllocateTemporaryEntryPoints +00007FA12850E520 4b void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::g__TrySetValue|196_0(int32,valuetype Datadog.Trace.Configuration.TracerSettings/<>c__DisplayClass196_0&)[QuickJitted] +00007FA12850E580 2d instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_HttpServerErrorStatusCodes(bool[])[QuickJitted] +00007FA12850E5D0 2d instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_HttpClientErrorStatusCodes(bool[])[QuickJitted] +00007FA12850E620 24 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_TraceBufferSize(int32)[QuickJitted] +00007FA12850E660 24 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_TraceBatchInterval(int32)[QuickJitted] +00007FA12850E6A0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_RouteTemplateResourceNamesEnabled()[QuickJitted] +00007FA12850E6E0 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_KafkaCreateConsumerScopeEnabled(bool)[QuickJitted] +00007FA12850E720 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_DelayWcfInstrumentationEnabled(bool)[QuickJitted] +00007FA12850E760 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_WcfObfuscationEnabled(bool)[QuickJitted] +00007FA12850E7A0 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_ObfuscationQueryStringRegex(string)[QuickJitted] +00007FA12850E7E0 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_QueryStringReportingEnabled(bool)[QuickJitted] +00007FA12850E820 2d instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_ObfuscationQueryStringRegexTimeout(float64)[QuickJitted] +00007FA12850E870 14c string[] [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::TrimSplitString(string,char[])[QuickJitted] +00007FA12850E9E0 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_PropagationStyleInject(string[])[QuickJitted] +00007FA12850EA20 1c instance string[] [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_PropagationStyleInject()[QuickJitted] +00007FA12850EA50 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_PropagationStyleExtract(string[])[QuickJitted] +00007FA12850EA90 1c instance string[] [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_PropagationStyleExtract()[QuickJitted] +00007FA12850EAC0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_IsActivityListenerEnabled()[QuickJitted] +00007FA12850EB00 1c instance class [System.Collections]System.Collections.Generic.HashSet`1 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_DisabledIntegrationNames()[QuickJitted] +00007FA1299CC4B0 30 stub<4833> AllocateTemporaryEntryPoints +00007FA1299CC4E0 78 stub<4834> AllocateTemporaryEntryPoints +00007FA1299CC558 f0 stub<4835> AllocateTemporaryEntryPoints +00007FA12850EB30 c7c instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12850F7D0 27 class Datadog.Trace.PlatformHelpers.HostMetadata [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::get_Instance()[QuickJitted] +00007FA12850F810 82 void [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::.cctor()[QuickJitted] +00007FA12850F8B0 c1 void [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::TryGetKernelInformation(string&,string&,string&)[QuickJitted] +00007FA12850F9A0 17f void [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::ParseKernel(string,string&,string&,string&)[QuickJitted] +00007FA1299CC6C0 d8 stub<4836> AllocateTemporaryEntryPoints +00007FA1299CC798 18 stub<4837> AllocateTemporaryEntryPoints +00007FA1299CC7B0 60 stub<4838> AllocateTemporaryEntryPoints +00007FA1299CC810 78 stub<4839> AllocateTemporaryEntryPoints +00007FA1299CC888 78 stub<4840> AllocateTemporaryEntryPoints +00007FA12850FB40 c3 string [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::GetHostInternal()[QuickJitted] +00007FA12850FC40 c5 string [Datadog.Trace] Datadog.Trace.Util.EnvironmentHelpers::GetMachineName()[QuickJitted] +00007FA12850FD30 87 instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::.ctor(string,string,string,string)[QuickJitted] +00007FA12850FDD0 1c instance string [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::get_Hostname()[QuickJitted] +00007FA12850FE00 2a instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionHost(string)[QuickJitted] +00007FA12850FE40 2a instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionSource(string)[QuickJitted] +00007FA12850FE80 2a instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionUrl(string)[QuickJitted] +00007FA12850FEC0 280 valuetype Datadog.Trace.Logging.DirectSubmission.DirectSubmissionLogLevel [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectSubmissionLogLevelExtensions::Parse(string,valuetype Datadog.Trace.Logging.DirectSubmission.DirectSubmissionLogLevel)[QuickJitted] +00007FA128510160 8b uint32 [Datadog.Trace] ::ComputeStringHash(string)[QuickJitted] +00007FA128510200 21 instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionMinimumLevel(valuetype Datadog.Trace.Logging.DirectSubmission.DirectSubmissionLogLevel)[QuickJitted] +00007FA128510240 2a instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionGlobalTags(class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA128510280 2a instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionEnabledIntegrations(class [System.Collections]System.Collections.Generic.HashSet`1)[QuickJitted] +00007FA1285102C0 21 instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionBatchSizeLimit(int32)[QuickJitted] +00007FA128510300 21 instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionQueueSizeLimit(int32)[QuickJitted] +00007FA128510340 24 instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_DirectLogSubmissionBatchPeriod(valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA128510380 2a instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_ApiKey(string)[QuickJitted] +00007FA1285103C0 23 instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::set_LogsInjectionEnabled(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA128510400 2d instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_LogSubmissionSettings(class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings)[QuickJitted] +00007FA128510450 2d instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_TraceMethods(string)[QuickJitted] +00007FA1277F5B20 18 stub<4841> GenerateResolveStub +00007FA1277C3DE0 20 stub<4842> GenerateDispatchStub +00007FA1277C3E00 20 stub<4843> GenerateDispatchStub +00007FA1285104A0 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_GrpcTags(class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA1285104E0 24 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_OutgoingTagPropagationHeaderMaxLength(int32)[QuickJitted] +00007FA128510520 2a instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_IpHeader(string)[QuickJitted] +00007FA128510560 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_IpHeaderEnabled(bool)[QuickJitted] +00007FA1285105A0 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_IsRareSamplerEnabled(bool)[QuickJitted] +00007FA1285105E0 25 instance void [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::set_IsRunningInAzureAppService(bool)[QuickJitted] +00007FA128510620 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_IsRunningInAzureAppService()[QuickJitted] +00007FA128510660 27 class Datadog.Trace.ClrProfiler.ServerlessInstrumentation.Serverless/LambdaMetadata [Datadog.Trace] Datadog.Trace.ClrProfiler.ServerlessInstrumentation.Serverless::get_Metadata()[QuickJitted] +00007FA1285106A0 3b void [Datadog.Trace] Datadog.Trace.ClrProfiler.ServerlessInstrumentation.Serverless::.cctor()[QuickJitted] +00007FA1285106F0 1f7 class Datadog.Trace.ClrProfiler.ServerlessInstrumentation.Serverless/LambdaMetadata [Datadog.Trace] Datadog.Trace.ClrProfiler.ServerlessInstrumentation.Serverless+LambdaMetadata::Create(string)[QuickJitted] +00007FA1299CC900 18 stub<4844> AllocateTemporaryEntryPoints +00007FA1299CC918 18 stub<4845> AllocateTemporaryEntryPoints +00007FA128510900 f2 string [Datadog.Trace] Datadog.Trace.Util.EnvironmentHelpers::GetEnvironmentVariable(string,string)[QuickJitted] +00007FA128510A20 8f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.ServerlessInstrumentation.Serverless+LambdaMetadata::.ctor(bool,string,string,string)[QuickJitted] +00007FA1299CC930 18 stub<4846> AllocateTemporaryEntryPoints +00007FA1299CC948 18 stub<4847> AllocateTemporaryEntryPoints +00007FA128510AD0 1c instance bool [Datadog.Trace] Datadog.Trace.ClrProfiler.ServerlessInstrumentation.Serverless+LambdaMetadata::get_IsRunningInLambda()[QuickJitted] +00007FA1299CC960 a8 stub<4848> AllocateTemporaryEntryPoints +00007FA1299CCA08 18 stub<4849> AllocateTemporaryEntryPoints +00007FA1299CCA20 18 stub<4850> AllocateTemporaryEntryPoints +00007FA1299CCA38 78 stub<4851> AllocateTemporaryEntryPoints +00007FA1299CCAB0 3a8 stub<4852> AllocateTemporaryEntryPoints +00007FA1299CCE58 c0 stub<4853> AllocateTemporaryEntryPoints +00007FA1299CCF18 90 stub<4854> AllocateTemporaryEntryPoints +00007FA1299CE000 a8 stub<4855> AllocateTemporaryEntryPoints +00007FA1299CE0A8 18 stub<4856> AllocateTemporaryEntryPoints +00007FA1299CE0C0 78 stub<4857> AllocateTemporaryEntryPoints +00007FA1299CE138 18 stub<4858> AllocateTemporaryEntryPoints +00007FA1299CE150 3a8 stub<4859> AllocateTemporaryEntryPoints +00007FA1299CE4F8 150 stub<4860> AllocateTemporaryEntryPoints +00007FA1299CE648 90 stub<4861> AllocateTemporaryEntryPoints +00007FA128510B00 ae2 instance void [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::.ctor(class Datadog.Trace.Configuration.TracerSettings)[QuickJitted] +00007FA128511610 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_Environment()[QuickJitted] +00007FA128511640 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_ServiceVersion()[QuickJitted] +00007FA128511670 47 void [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings+<>c::.cctor()[QuickJitted] +00007FA1285116D0 1f instance void [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings+<>c::.ctor()[QuickJitted] +00007FA1277C3E20 20 stub<4862> GenerateDispatchStub +00007FA1277C3E40 20 stub<4863> GenerateDispatchStub +00007FA128511710 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_ServiceName()[QuickJitted] +00007FA128511740 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_TraceEnabled()[QuickJitted] +00007FA128511780 1c instance class Datadog.Trace.Configuration.ExporterSettings [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_Exporter()[QuickJitted] +00007FA1285117B0 15b instance void [Datadog.Trace] Datadog.Trace.Configuration.ImmutableExporterSettings::.ctor(class Datadog.Trace.Configuration.ExporterSettings)[QuickJitted] +00007FA128511920 1c instance class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_AgentUri()[QuickJitted] +00007FA128511950 1b instance valuetype Datadog.Trace.Agent.TracesTransportType [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_TracesTransport()[QuickJitted] +00007FA128511980 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_TracesPipeName()[QuickJitted] +00007FA1285119B0 1b instance int32 [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_TracesPipeTimeoutMs()[QuickJitted] +00007FA1285119E0 1b instance valuetype Datadog.Trace.Vendors.StatsdClient.Transport.TransportType [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_MetricsTransport()[QuickJitted] +00007FA128511A10 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_MetricsPipeName()[QuickJitted] +00007FA128511A40 1b instance int32 [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_DogStatsdPort()[QuickJitted] +00007FA128511A70 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_TracesUnixDomainSocketPath()[QuickJitted] +00007FA128511AA0 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_MetricsUnixDomainSocketPath()[QuickJitted] +00007FA128511AD0 1c instance bool [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_PartialFlushEnabled()[QuickJitted] +00007FA128511B00 1b instance int32 [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_PartialFlushMinSpans()[QuickJitted] +00007FA128511B30 1c instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Configuration.ExporterSettings::get_ValidationWarnings()[QuickJitted] +00007FA1277BFCA0 18 stub<4864> GenerateLookupStub +00007FA1277F5B90 18 stub<4865> GenerateResolveStub +00007FA1277C3E60 20 stub<4866> GenerateDispatchStub +00007FA128511B60 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_AnalyticsEnabled()[QuickJitted] +00007FA128511BA0 1e instance int32 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_MaxTracesSubmittedPerSecond()[QuickJitted] +00007FA128511BE0 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_CustomSamplingRules()[QuickJitted] +00007FA128511C10 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_SpanSamplingRules()[QuickJitted] +00007FA128511C40 31 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_GlobalSamplingRate()[QuickJitted] +00007FA128511C90 1c instance class Datadog.Trace.Configuration.IntegrationSettingsCollection [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_Integrations()[QuickJitted] +00007FA1299CE6D8 90 stub<4867> AllocateTemporaryEntryPoints +00007FA128511CC0 45 instance void [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettingsCollection::.ctor(class Datadog.Trace.Configuration.IntegrationSettingsCollection,class [System.Collections]System.Collections.Generic.HashSet`1)[QuickJitted] +00007FA128511D20 133 class Datadog.Trace.Configuration.ImmutableIntegrationSettings[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettingsCollection::GetIntegrationSettingsById(class Datadog.Trace.Configuration.IntegrationSettingsCollection,class [System.Collections]System.Collections.Generic.HashSet`1)[QuickJitted] +00007FA128511E70 1c instance class Datadog.Trace.Configuration.IntegrationSettings[] [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettingsCollection::get_Settings()[QuickJitted] +00007FA128511EA0 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettings::get_IntegrationName()[QuickJitted] +00007FA128511ED0 dc instance void [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettings::.ctor(class Datadog.Trace.Configuration.IntegrationSettings,bool)[QuickJitted] +00007FA128511FD0 1d instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettings::get_Enabled()[QuickJitted] +00007FA128512010 1d instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettings::get_AnalyticsEnabled()[QuickJitted] +00007FA128512050 20 instance float64 [Datadog.Trace] Datadog.Trace.Configuration.IntegrationSettings::get_AnalyticsSampleRate()[QuickJitted] +00007FA128512090 1c instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_HeaderTags()[QuickJitted] +00007FA1285120C0 1c instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_GrpcTags()[QuickJitted] +00007FA1285120F0 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_IpHeader()[QuickJitted] +00007FA128512120 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_IpHeaderEnabled()[QuickJitted] +00007FA128512160 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_TracerMetricsEnabled()[QuickJitted] +00007FA1285121A0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_StatsComputationEnabled()[QuickJitted] +00007FA1285121E0 1e instance int32 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_StatsComputationInterval()[QuickJitted] +00007FA128512220 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_RuntimeMetricsEnabled()[QuickJitted] +00007FA128512260 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_KafkaCreateConsumerScopeEnabled()[QuickJitted] +00007FA1285122A0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_StartupDiagnosticLogEnabled()[QuickJitted] +00007FA1285122E0 1f instance string[] [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_HttpClientExcludedUrlSubstrings()[QuickJitted] +00007FA128512320 1f instance bool[] [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_HttpServerErrorStatusCodes()[QuickJitted] +00007FA128512360 1f instance bool[] [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_HttpClientErrorStatusCodes()[QuickJitted] +00007FA1285123A0 1f instance class Datadog.Trace.Configuration.ServiceNames [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_ServiceNameMappings()[QuickJitted] +00007FA1285123E0 1e instance int32 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_TraceBufferSize()[QuickJitted] +00007FA128512420 1e instance int32 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_TraceBatchInterval()[QuickJitted] +00007FA128512460 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_DelayWcfInstrumentationEnabled()[QuickJitted] +00007FA1285124A0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_WcfObfuscationEnabled()[QuickJitted] +00007FA1285124E0 1f instance string [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_TraceMethods()[QuickJitted] +00007FA128512520 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_IsDataStreamsMonitoringEnabled()[QuickJitted] +00007FA128512560 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_IsRareSamplerEnabled()[QuickJitted] +00007FA1285125A0 1f instance class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_LogSubmissionSettings()[QuickJitted] +00007FA1299CE768 90 stub<4868> AllocateTemporaryEntryPoints +00007FA1285125E0 127 class Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::Create(class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings)[QuickJitted] +00007FA128512720 1c instance string [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionHost()[QuickJitted] +00007FA128512750 1c instance string [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionSource()[QuickJitted] +00007FA128512780 1c instance string [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionUrl()[QuickJitted] +00007FA1285127B0 1c instance string [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_ApiKey()[QuickJitted] +00007FA1285127E0 1b instance valuetype Datadog.Trace.Logging.DirectSubmission.DirectSubmissionLogLevel [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionMinimumLevel()[QuickJitted] +00007FA128512810 1c instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionGlobalTags()[QuickJitted] +00007FA128512840 1c instance class [System.Collections]System.Collections.Generic.HashSet`1 [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionEnabledIntegrations()[QuickJitted] +00007FA128512870 1b instance int32 [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionBatchSizeLimit()[QuickJitted] +00007FA1285128A0 1b instance int32 [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionQueueSizeLimit()[QuickJitted] +00007FA1285128D0 1c instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_DirectLogSubmissionBatchPeriod()[QuickJitted] +00007FA128512900 56 instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.Sink.PeriodicBatching.BatchingSinkOptions::.ctor(int32,int32,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA128512970 6d instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.Sink.PeriodicBatching.BatchingSinkOptions::.ctor(int32,int32,valuetype [System.Runtime]System.TimeSpan,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA1277BFCC0 18 stub<4869> GenerateLookupStub +00007FA1299CE7F8 18 stub<4870> AllocateTemporaryEntryPoints +00007FA1299CE810 60 stub<4871> AllocateTemporaryEntryPoints +00007FA1299CE870 60 stub<4872> AllocateTemporaryEntryPoints +00007FA1299CE8D0 18 stub<4873> AllocateTemporaryEntryPoints +00007FA1299CE8E8 18 stub<4874> AllocateTemporaryEntryPoints +00007FA128512A00 8f6 class Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::Create(string,string,string,string,valuetype Datadog.Trace.Logging.DirectSubmission.DirectSubmissionLogLevel,class [System.Runtime]System.Collections.Generic.IDictionary`2,class [System.Runtime]System.Collections.Generic.ICollection`1,class Datadog.Trace.Logging.DirectSubmission.Sink.PeriodicBatching.BatchingSinkOptions)[QuickJitted] +00007FA1299CE900 18 stub<4875> AllocateTemporaryEntryPoints +00007FA128513320 143 class Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::CreateNullSettings()[QuickJitted] +00007FA1299CE918 d8 stub<4876> AllocateTemporaryEntryPoints +00007FA1299CE9F0 18 stub<4877> AllocateTemporaryEntryPoints +00007FA128513480 e1 instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::.ctor(string,string,string,class [System.Runtime]System.Uri,string,bool,valuetype Datadog.Trace.Logging.DirectSubmission.DirectSubmissionLogLevel,bool[],class [System.Collections]System.Collections.Generic.List`1,class [System.Collections]System.Collections.Generic.List`1,class Datadog.Trace.Logging.DirectSubmission.Sink.PeriodicBatching.BatchingSinkOptions)[QuickJitted] +00007FA128513580 1d instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionSettings::get_LogsInjectionEnabled()[QuickJitted] +00007FA1285135C0 1f instance class Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_LogSubmissionSettings()[QuickJitted] +00007FA128513600 1c instance bool [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::get_IsEnabled()[QuickJitted] +00007FA128513630 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_ExpandRouteTemplatesEnabled()[QuickJitted] +00007FA128513670 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_RouteTemplateResourceNamesEnabled()[QuickJitted] +00007FA1285136B0 1e instance int32 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_OutgoingTagPropagationHeaderMaxLength()[QuickJitted] +00007FA1285136F0 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_ObfuscationQueryStringRegex()[QuickJitted] +00007FA128513720 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_QueryStringReportingEnabled()[QuickJitted] +00007FA128513760 23 instance float64 [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_ObfuscationQueryStringRegexTimeout()[QuickJitted] +00007FA1285137A0 1f instance class Datadog.Trace.Configuration.ImmutableAzureAppServiceSettings [Datadog.Trace] Datadog.Trace.Configuration.TracerSettings::get_AzureAppServiceMetadata()[QuickJitted] +00007FA1285137E0 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_ServiceName()[QuickJitted] +00007FA1299CEA08 120 stub<4878> AllocateTemporaryEntryPoints +00007FA128513810 2e instance class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService [Datadog.Trace] Datadog.Trace.TracerManagerFactory::GetDiscoveryService(class Datadog.Trace.Configuration.ImmutableTracerSettings)[QuickJitted] +00007FA128513860 1c instance class Datadog.Trace.Configuration.ImmutableExporterSettings [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_Exporter()[QuickJitted] +00007FA1299CEB28 48 stub<4879> AllocateTemporaryEntryPoints +00007FA1299CEB70 a8 stub<4880> AllocateTemporaryEntryPoints +00007FA1299CEC18 78 stub<4881> AllocateTemporaryEntryPoints +00007FA1299CEC90 30 stub<4882> AllocateTemporaryEntryPoints +00007FA1299CECC0 60 stub<4883> AllocateTemporaryEntryPoints +00007FA128513890 2f9 class Datadog.Trace.Agent.DiscoveryService.DiscoveryService [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::Create(class Datadog.Trace.Configuration.ImmutableExporterSettings)[QuickJitted] +00007FA128513BC0 27 valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[] [Datadog.Trace] Datadog.Trace.AgentHttpHeaderNames::get_MinimalHeaders()[QuickJitted] +00007FA128513C00 3f3 void [Datadog.Trace] Datadog.Trace.AgentHttpHeaderNames::.cctor()[QuickJitted] +00007FA128514010 1c instance string [Datadog.Trace] Datadog.Trace.FrameworkDescription::get_Name()[QuickJitted] +00007FA128514040 1c instance string [Datadog.Trace] Datadog.Trace.FrameworkDescription::get_ProductVersion()[QuickJitted] +00007FA128514070 47 void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService+<>c::.cctor()[QuickJitted] +00007FA1285140D0 1f instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService+<>c::.ctor()[QuickJitted] +00007FA1299CED20 48 stub<4884> AllocateTemporaryEntryPoints +00007FA1299CED68 78 stub<4885> AllocateTemporaryEntryPoints +00007FA1299CEDE0 78 stub<4886> AllocateTemporaryEntryPoints +00007FA1299CEE58 30 stub<4887> AllocateTemporaryEntryPoints +00007FA1299CEE88 90 stub<4888> AllocateTemporaryEntryPoints +00007FA1299CEF18 78 stub<4889> AllocateTemporaryEntryPoints +00007FA129A70000 78 stub<4890> AllocateTemporaryEntryPoints +00007FA128514110 591 class Datadog.Trace.Agent.IApiRequestFactory [Datadog.Trace] Datadog.Trace.Agent.AgentTransportStrategy::Get(class Datadog.Trace.Configuration.ImmutableExporterSettings,string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[],class [System.Runtime]System.Func`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1285146D0 1b instance valuetype Datadog.Trace.Agent.TracesTransportType [Datadog.Trace] Datadog.Trace.Configuration.ImmutableExporterSettings::get_TracesTransport()[QuickJitted] +00007FA128514700 90 void [Datadog.Trace] Datadog.Trace.Agent.AgentTransportStrategy::.cctor()[QuickJitted] +00007FA1285147B0 1c instance class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Configuration.ImmutableExporterSettings::get_AgentUri()[QuickJitted] +00007FA1285147E0 1c instance class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService+<>c::b__18_1(class [System.Runtime]System.Uri)[QuickJitted] +00007FA129A70078 78 stub<4891> AllocateTemporaryEntryPoints +00007FA129A700F0 d8 stub<4892> AllocateTemporaryEntryPoints +00007FA129A701C8 798 stub<4893> AllocateTemporaryEntryPoints +00007FA129A72000 6c0 stub<4894> AllocateTemporaryEntryPoints +00007FA129A726C0 4e0 stub<4895> AllocateTemporaryEntryPoints +00007FA129A74000 4b0 stub<4896> AllocateTemporaryEntryPoints +00007FA128514810 255 instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequestFactory::.ctor(class [System.Runtime]System.Uri,valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[],class [System.Net.Http]System.Net.Http.HttpMessageHandler,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA129A744B0 78 stub<4897> AllocateTemporaryEntryPoints +00007FA129A74528 648 stub<4898> AllocateTemporaryEntryPoints +00007FA129A74B70 2a0 stub<4899> AllocateTemporaryEntryPoints +00007FA128660B90 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventSourceAttribute.set_Name(object,object,native int*)[Optimized] +00007FA129A76000 2a0 stub<4900> AllocateTemporaryEntryPoints +00007FA129A762B8 78 stub<4901> AllocateTemporaryEntryPoints +00007FA129A76330 18 stub<4902> AllocateTemporaryEntryPoints +00007FA128660C10 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventSourceAttribute.set_LocalizationResources(object,object,native int*)[Optimized] +00007FA129A76348 6f0 stub<4903> AllocateTemporaryEntryPoints +00007FA129A76A38 120 stub<4904> AllocateTemporaryEntryPoints +00007FA129A76B58 18 stub<4905> AllocateTemporaryEntryPoints +00007FA129A76B88 18 stub<4906> AllocateTemporaryEntryPoints +00007FA129A76BA0 108 stub<4907> AllocateTemporaryEntryPoints +00007FA129A76CA8 60 stub<4908> AllocateTemporaryEntryPoints +00007FA129A76D08 120 stub<4909> AllocateTemporaryEntryPoints +00007FA129A76E28 c0 stub<4910> AllocateTemporaryEntryPoints +00007FA129A78000 300 stub<4911> AllocateTemporaryEntryPoints +00007FA129A78300 300 stub<4912> AllocateTemporaryEntryPoints +00007FA129A78600 78 stub<4913> AllocateTemporaryEntryPoints +00007FA129A78678 a8 stub<4914> AllocateTemporaryEntryPoints +00007FA129A78720 18 stub<4915> AllocateTemporaryEntryPoints +00007FA129A78738 18 stub<4916> AllocateTemporaryEntryPoints +00007FA129A78750 18 stub<4917> AllocateTemporaryEntryPoints +00007FA129A78768 18 stub<4918> AllocateTemporaryEntryPoints +00007FA129A78780 60 stub<4919> AllocateTemporaryEntryPoints +00007FA129A787E0 228 stub<4920> AllocateTemporaryEntryPoints +00007FA129A78A08 270 stub<4921> AllocateTemporaryEntryPoints +00007FA129A78C78 1e0 stub<4922> AllocateTemporaryEntryPoints +00007FA129A78E58 78 stub<4923> AllocateTemporaryEntryPoints +00007FA129A78ED0 30 stub<4924> AllocateTemporaryEntryPoints +00007FA129A78F00 78 stub<4925> AllocateTemporaryEntryPoints +00007FA129A78F78 18 stub<4926> AllocateTemporaryEntryPoints +00007FA129A7A000 198 stub<4927> AllocateTemporaryEntryPoints +00007FA129A7A198 138 stub<4928> AllocateTemporaryEntryPoints +00007FA129A7A2D0 18 stub<4929> AllocateTemporaryEntryPoints +00007FA129A7A2E8 60 stub<4930> AllocateTemporaryEntryPoints +00007FA129A7A348 18 stub<4931> AllocateTemporaryEntryPoints +00007FA129A7A360 18 stub<4932> AllocateTemporaryEntryPoints +00007FA129A7A378 60 stub<4933> AllocateTemporaryEntryPoints +00007FA129A7A3D8 18 stub<4934> AllocateTemporaryEntryPoints +00007FA129A7A3F0 18 stub<4935> AllocateTemporaryEntryPoints +00007FA129A7A408 120 stub<4936> AllocateTemporaryEntryPoints +00007FA129A7A528 30 stub<4937> AllocateTemporaryEntryPoints +00007FA129A7A558 168 stub<4938> AllocateTemporaryEntryPoints +00007FA129A7A6C0 360 stub<4939> AllocateTemporaryEntryPoints +00007FA129A7AA20 30 stub<4940> AllocateTemporaryEntryPoints +00007FA129A7AA50 c0 stub<4941> AllocateTemporaryEntryPoints +00007FA129A7AB10 48 stub<4942> AllocateTemporaryEntryPoints +00007FA129A7AB58 78 stub<4943> AllocateTemporaryEntryPoints +00007FA129A7ABD0 1b0 stub<4944> AllocateTemporaryEntryPoints +00007FA129A7AD80 120 stub<4945> AllocateTemporaryEntryPoints +00007FA129A7AEA0 30 stub<4946> AllocateTemporaryEntryPoints +00007FA129A7C000 270 stub<4947> AllocateTemporaryEntryPoints +00007FA129A7C270 150 stub<4948> AllocateTemporaryEntryPoints +00007FA129A7C3C0 138 stub<4949> AllocateTemporaryEntryPoints +00007FA129A7C4F8 150 stub<4950> AllocateTemporaryEntryPoints +00007FA129A7C648 138 stub<4951> AllocateTemporaryEntryPoints +00007FA129A7C780 120 stub<4952> AllocateTemporaryEntryPoints +00007FA129A7C8A0 210 stub<4953> AllocateTemporaryEntryPoints +00007FA129A7CAB0 390 stub<4954> AllocateTemporaryEntryPoints +00007FA129A7CE40 138 stub<4955> AllocateTemporaryEntryPoints +00007FA129A7E000 198 stub<4956> AllocateTemporaryEntryPoints +00007FA129A7E198 1c8 stub<4957> AllocateTemporaryEntryPoints +00007FA129A7E360 60 stub<4958> AllocateTemporaryEntryPoints +00007FA129A7E3C0 138 stub<4959> AllocateTemporaryEntryPoints +00007FA129A7E4F8 48 stub<4960> AllocateTemporaryEntryPoints +00007FA129A7E540 60 stub<4961> AllocateTemporaryEntryPoints +00007FA129A7E5A0 78 stub<4962> AllocateTemporaryEntryPoints +00007FA129A7E618 60 stub<4963> AllocateTemporaryEntryPoints +00007FA129A7E678 48 stub<4964> AllocateTemporaryEntryPoints +00007FA129A7E6C0 60 stub<4965> AllocateTemporaryEntryPoints +00007FA129A7E720 60 stub<4966> AllocateTemporaryEntryPoints +00007FA129A7E780 48 stub<4967> AllocateTemporaryEntryPoints +00007FA129A7E7C8 78 stub<4968> AllocateTemporaryEntryPoints +00007FA129A7E840 120 stub<4969> AllocateTemporaryEntryPoints +00007FA129A7E960 1b0 stub<4970> AllocateTemporaryEntryPoints +00007FA1285152A0 1e2 instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::.ctor(class Datadog.Trace.Agent.IApiRequestFactory,int32,int32,int32)[QuickJitted] +00007FA12A0E0000 540 stub<4971> AllocateTemporaryEntryPoints +00007FA12A0E0540 30 stub<4972> AllocateTemporaryEntryPoints +00007FA12A0E0570 c0 stub<4973> AllocateTemporaryEntryPoints +00007FA12A0E0630 c0 stub<4974> AllocateTemporaryEntryPoints +00007FA12A0E06F0 540 stub<4975> AllocateTemporaryEntryPoints +00007FA12A0E0C30 48 stub<4976> AllocateTemporaryEntryPoints +00007FA12A0E0C78 18 stub<4977> AllocateTemporaryEntryPoints +00007FA12A0E0C90 18 stub<4978> AllocateTemporaryEntryPoints +00007FA12A0E2000 570 stub<4979> AllocateTemporaryEntryPoints +00007FA12A0E2570 570 stub<4980> AllocateTemporaryEntryPoints +00007FA12A0E2AF8 60 stub<4981> AllocateTemporaryEntryPoints +00007FA12A0E2B58 30 stub<4982> AllocateTemporaryEntryPoints +00007FA12A0E2B88 30 stub<4983> AllocateTemporaryEntryPoints +00007FA12A0E2BB8 60 stub<4984> AllocateTemporaryEntryPoints +00007FA12A0E2C18 48 stub<4985> AllocateTemporaryEntryPoints +00007FA1285158B0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_TracerMetricsEnabled()[QuickJitted] +00007FA12A0E2C60 90 stub<4986> AllocateTemporaryEntryPoints +00007FA12A0E2CF0 108 stub<4987> AllocateTemporaryEntryPoints +00007FA12A0E2DF8 78 stub<4988> AllocateTemporaryEntryPoints +00007FA12A0E2E70 f0 stub<4989> AllocateTemporaryEntryPoints +00007FA12A0E2F60 30 stub<4990> AllocateTemporaryEntryPoints +00007FA12A0E4000 90 stub<4991> AllocateTemporaryEntryPoints +00007FA12A0E4090 a8 stub<4992> AllocateTemporaryEntryPoints +00007FA12A0E4138 60 stub<4993> AllocateTemporaryEntryPoints +00007FA12A0E4198 a8 stub<4994> AllocateTemporaryEntryPoints +00007FA12A0E4240 18 stub<4995> AllocateTemporaryEntryPoints +00007FA12A0E4258 18 stub<4996> AllocateTemporaryEntryPoints +00007FA12A0E4270 a8 stub<4997> AllocateTemporaryEntryPoints +00007FA12A0E4318 a8 stub<4998> AllocateTemporaryEntryPoints +00007FA12A0E43C0 60 stub<4999> AllocateTemporaryEntryPoints +00007FA12A0E4420 78 stub<5000> AllocateTemporaryEntryPoints +00007FA1277BFCE0 18 stub<5001> GenerateLookupStub +00007FA1277BFD00 18 stub<5002> GenerateLookupStub +00007FA12A0E4498 a8 stub<5003> AllocateTemporaryEntryPoints +00007FA12A0E4540 30 stub<5004> AllocateTemporaryEntryPoints +00007FA12A0E4570 30 stub<5005> AllocateTemporaryEntryPoints +00007FA12A0E45A0 18 stub<5006> AllocateTemporaryEntryPoints +00007FA1285158F0 69 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::FetchConfigurationLoopAsync()[QuickJitted] +00007FA128515980 343 instance class Datadog.Trace.Sampling.ITraceSampler [Datadog.Trace] Datadog.Trace.TracerManagerFactory::GetSampler(class Datadog.Trace.Configuration.ImmutableTracerSettings)[QuickJitted] +00007FA12A0E45B8 a8 stub<5007> AllocateTemporaryEntryPoints +00007FA12A0E4660 18 stub<5008> AllocateTemporaryEntryPoints +00007FA128515D00 1e instance int32 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_MaxTracesSubmittedPerSecond()[QuickJitted] +00007FA12A0E4678 18 stub<5009> AllocateTemporaryEntryPoints +00007FA128515D40 27 instance void [Datadog.Trace] Datadog.Trace.Sampling.TracerRateLimiter::.ctor(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA128515D80 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A0E4690 138 stub<5010> AllocateTemporaryEntryPoints +00007FA12A0E47C8 258 stub<5011> AllocateTemporaryEntryPoints +00007FA12A0E4A20 60 stub<5012> AllocateTemporaryEntryPoints +00007FA12A0E4A80 18 stub<5013> AllocateTemporaryEntryPoints +00007FA12A0E4A98 18 stub<5014> AllocateTemporaryEntryPoints +00007FA128515DC0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A0E4AB0 60 stub<5015> AllocateTemporaryEntryPoints +00007FA12A0E4B10 30 stub<5016> AllocateTemporaryEntryPoints +00007FA128515EC0 e9 instance void [Datadog.Trace] Datadog.Trace.Sampling.RateLimiter::.ctor(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12A0E4B40 d8 stub<5017> AllocateTemporaryEntryPoints +00007FA12A0E4C18 a8 stub<5018> AllocateTemporaryEntryPoints +00007FA12A0E4CC0 18 stub<5019> AllocateTemporaryEntryPoints +00007FA12A0E4CD8 a8 stub<5020> AllocateTemporaryEntryPoints +00007FA1277BFD20 18 stub<5021> GenerateLookupStub +00007FA1277BFD40 18 stub<5022> GenerateLookupStub +00007FA12A0E4D80 60 stub<5023> AllocateTemporaryEntryPoints +00007FA1277BFD60 18 stub<5024> GenerateLookupStub +00007FA128515FD0 a9 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.DateTime]::.ctor()[QuickJitted] +00007FA12A0E4DE0 18 stub<5025> AllocateTemporaryEntryPoints +00007FA12A0E4DF8 18 stub<5026> AllocateTemporaryEntryPoints +00007FA1277BFD80 18 stub<5027> GenerateLookupStub +00007FA12A0E4E10 60 stub<5028> AllocateTemporaryEntryPoints +00007FA128516090 ba instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.DateTime]::.ctor(int32)[QuickJitted] +00007FA12A0E4E70 18 stub<5029> AllocateTemporaryEntryPoints +00007FA1277BFDA0 18 stub<5030> GenerateLookupStub +00007FA128516160 7b valuetype [System.Runtime]System.DateTime [Datadog.Trace] Datadog.Trace.Util.Clock::get_UtcNow()[QuickJitted] +00007FA12A0E4E88 c0 stub<5031> AllocateTemporaryEntryPoints +00007FA1285161F0 87c instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23::MoveNext()[QuickJitted] +00007FA12A0E6000 c0 stub<5032> AllocateTemporaryEntryPoints +00007FA128516BF0 2b instance class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequestFactory::GetEndpoint(string)[QuickJitted] +00007FA128516AD0 fc instance void [Datadog.Trace] Datadog.Trace.Sampling.TraceSampler::.ctor(class Datadog.Trace.Sampling.IRateLimiter)[QuickJitted] +00007FA128516C30 88 class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Util.UriHelpers::Combine(class [System.Runtime]System.Uri,string)[QuickJitted] +00007FA12A0E60C0 d8 stub<5033> AllocateTemporaryEntryPoints +00007FA12A0E6198 18 stub<5034> AllocateTemporaryEntryPoints +00007FA12A0E61B0 18 stub<5035> AllocateTemporaryEntryPoints +00007FA12A0E61C8 5e8 stub<5036> AllocateTemporaryEntryPoints +00007FA12A0E67B0 c0 stub<5037> AllocateTemporaryEntryPoints +00007FA12A0E6870 240 stub<5038> AllocateTemporaryEntryPoints +00007FA12A0E6AB0 90 stub<5039> AllocateTemporaryEntryPoints +00007FA12A0E6B40 a8 stub<5040> AllocateTemporaryEntryPoints +00007FA12A0E6BE8 18 stub<5041> AllocateTemporaryEntryPoints +00007FA12A0E6C00 78 stub<5042> AllocateTemporaryEntryPoints +00007FA12A0E6C78 18 stub<5043> AllocateTemporaryEntryPoints +00007FA128516CD0 f6 string [Datadog.Trace] Datadog.Trace.Util.UriHelpers::Combine(string,string)[QuickJitted] +00007FA128516DE0 53 instance void [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::.ctor()[QuickJitted] +00007FA128516E50 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::.ctor()[QuickJitted] +00007FA12A0E6C90 30 stub<5044> AllocateTemporaryEntryPoints +00007FA12A0E6CC0 d8 stub<5045> AllocateTemporaryEntryPoints +00007FA12A0E6D98 18 stub<5046> AllocateTemporaryEntryPoints +00007FA128516E90 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12A0E6DB0 c0 stub<5047> AllocateTemporaryEntryPoints +00007FA128516FC0 4b instance class Datadog.Trace.Agent.IApiRequest [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequestFactory::Create(class [System.Runtime]System.Uri)[QuickJitted] +00007FA1277BFDC0 18 stub<5048> GenerateLookupStub +00007FA128517020 e0 instance void [Datadog.Trace] Datadog.Trace.Sampling.TraceSampler::RegisterRule(class Datadog.Trace.Sampling.ISamplingRule)[QuickJitted] +00007FA128517120 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_CustomSamplingRules()[QuickJitted] +00007FA12A0E8000 210 stub<5049> AllocateTemporaryEntryPoints +00007FA128517150 31 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_GlobalSamplingRate()[QuickJitted] +00007FA12A0E8210 288 stub<5050> AllocateTemporaryEntryPoints +00007FA12A0E8498 30 stub<5051> AllocateTemporaryEntryPoints +00007FA12A0E84C8 90 stub<5052> AllocateTemporaryEntryPoints +00007FA12A0E8558 18 stub<5053> AllocateTemporaryEntryPoints +00007FA1285171A0 dd instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::.ctor(class [System.Net.Http]System.Net.Http.HttpClient,class [System.Runtime]System.Uri)[QuickJitted] +00007FA12A0E8570 18 stub<5054> AllocateTemporaryEntryPoints +00007FA12A0E8588 5e8 stub<5055> AllocateTemporaryEntryPoints +00007FA12A0E8B70 c0 stub<5056> AllocateTemporaryEntryPoints +00007FA12A0E8C30 1e0 stub<5057> AllocateTemporaryEntryPoints +00007FA12A0E8E10 90 stub<5058> AllocateTemporaryEntryPoints +00007FA12A0EA000 1e0 stub<5059> AllocateTemporaryEntryPoints +00007FA12A0EA1E0 a8 stub<5060> AllocateTemporaryEntryPoints +00007FA12A0EA288 18 stub<5061> AllocateTemporaryEntryPoints +00007FA12A0EA2A0 78 stub<5062> AllocateTemporaryEntryPoints +00007FA12A0EA318 60 stub<5063> AllocateTemporaryEntryPoints +00007FA12A0EA378 18 stub<5064> AllocateTemporaryEntryPoints +00007FA12A0EA390 258 stub<5065> AllocateTemporaryEntryPoints +00007FA12A0EA5E8 18 stub<5066> AllocateTemporaryEntryPoints +00007FA12A0EA600 18 stub<5067> AllocateTemporaryEntryPoints +00007FA12A0EA618 30 stub<5068> AllocateTemporaryEntryPoints +00007FA12A0EA648 c0 stub<5069> AllocateTemporaryEntryPoints +00007FA1285172A0 79 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::GetAsync()[QuickJitted] +00007FA12A0EA708 180 stub<5070> AllocateTemporaryEntryPoints +00007FA12A0EA888 18 stub<5071> AllocateTemporaryEntryPoints +00007FA12A0EA8A0 18 stub<5072> AllocateTemporaryEntryPoints +00007FA128517330 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A0EA8B8 228 stub<5073> AllocateTemporaryEntryPoints +00007FA128517370 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA128517470 193 instance class Datadog.Trace.Agent.IAgentWriter [Datadog.Trace] Datadog.Trace.TracerManagerFactory::GetAgentWriter(class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.Vendors.StatsdClient.IDogStatsd,class Datadog.Trace.Sampling.ITraceSampler,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService)[QuickJitted] +00007FA12A0EAAE0 a8 stub<5074> AllocateTemporaryEntryPoints +00007FA128517620 1f instance void [Datadog.Trace] Datadog.Trace.TracerManagerFactory+<>c__DisplayClass8_0::.ctor()[QuickJitted] +00007FA12A0EAB88 18 stub<5075> AllocateTemporaryEntryPoints +00007FA12A0EABA0 18 stub<5076> AllocateTemporaryEntryPoints +00007FA12A0EABB8 60 stub<5077> AllocateTemporaryEntryPoints +00007FA128517660 266 instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest+d__8::MoveNext()[QuickJitted] +00007FA128517900 2ac class Datadog.Trace.Agent.IApiRequestFactory [Datadog.Trace] Datadog.Trace.Agent.TracesTransportStrategy::Get(class Datadog.Trace.Configuration.ImmutableExporterSettings)[QuickJitted] +00007FA128517BE0 13 valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[] [Datadog.Trace] Datadog.Trace.AgentHttpHeaderNames::get_DefaultHeaders()[QuickJitted] +00007FA12A0EAC18 2a0 stub<5078> AllocateTemporaryEntryPoints +00007FA12A0EAEB8 18 stub<5079> AllocateTemporaryEntryPoints +00007FA128517C10 47 void [Datadog.Trace] Datadog.Trace.Agent.TracesTransportStrategy+<>c::.cctor()[QuickJitted] +00007FA12A0EAED0 18 stub<5080> AllocateTemporaryEntryPoints +00007FA128517C70 1f instance void [Datadog.Trace] Datadog.Trace.Agent.TracesTransportStrategy+<>c::.ctor()[QuickJitted] +00007FA12A0EC000 270 stub<5081> AllocateTemporaryEntryPoints +00007FA128517CB0 1c instance class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Agent.TracesTransportStrategy+<>c::b__0_1(class [System.Runtime]System.Uri)[QuickJitted] +00007FA12A0EC270 1c8 stub<5082> AllocateTemporaryEntryPoints +00007FA12A0EC438 18 stub<5083> AllocateTemporaryEntryPoints +00007FA12A0EC450 18 stub<5084> AllocateTemporaryEntryPoints +00007FA12A0EC468 18 stub<5085> AllocateTemporaryEntryPoints +00007FA12A0EC480 18 stub<5086> AllocateTemporaryEntryPoints +00007FA12A0EC498 18 stub<5087> AllocateTemporaryEntryPoints +00007FA12A0EC4B0 198 stub<5088> AllocateTemporaryEntryPoints +00007FA128517CE0 ed void [System.Private.CoreLib] System.Array::Resize(!!0[]&,int32)[QuickJitted] +00007FA12A0EC648 30 stub<5089> AllocateTemporaryEntryPoints +00007FA12A0EC678 30 stub<5090> AllocateTemporaryEntryPoints +00007FA128517DF0 22 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[QuickJitted] +00007FA12A0EC6A8 48 stub<5091> AllocateTemporaryEntryPoints +00007FA12A0EC6F0 18 stub<5092> AllocateTemporaryEntryPoints +00007FA12A0EC708 48 stub<5093> AllocateTemporaryEntryPoints +00007FA12A0EC750 18 stub<5094> AllocateTemporaryEntryPoints +00007FA12A0EC768 18 stub<5095> AllocateTemporaryEntryPoints +00007FA12A0EC780 18 stub<5096> AllocateTemporaryEntryPoints +00007FA12A0EC798 d8 stub<5097> AllocateTemporaryEntryPoints +00007FA12A0EC870 18 stub<5098> AllocateTemporaryEntryPoints +00007FA12A0EC888 30 stub<5099> AllocateTemporaryEntryPoints +00007FA12A0EC8B8 18 stub<5100> AllocateTemporaryEntryPoints +00007FA12A0EC8D0 108 stub<5101> AllocateTemporaryEntryPoints +00007FA128517E30 64 void [System.Private.CoreLib] System.Buffer::Memmove(!!0&,!!0&,native uint)[QuickJitted] +00007FA12A0EC9D8 60 stub<5102> AllocateTemporaryEntryPoints +00007FA128517EB0 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA128517ED0 1c instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableExporterSettings::get_PartialFlushEnabled()[QuickJitted] +00007FA12A0ECA38 540 stub<5103> AllocateTemporaryEntryPoints +00007FA12A0ECF78 60 stub<5104> AllocateTemporaryEntryPoints +00007FA12A0ECFD8 18 stub<5105> AllocateTemporaryEntryPoints +00007FA12A0EE000 60 stub<5106> AllocateTemporaryEntryPoints +00007FA12A0EE060 18 stub<5107> AllocateTemporaryEntryPoints +00007FA12A0EE078 60 stub<5108> AllocateTemporaryEntryPoints +00007FA12A0EE0D8 78 stub<5109> AllocateTemporaryEntryPoints +00007FA12A0EE150 18 stub<5110> AllocateTemporaryEntryPoints +00007FA12A0EE168 60 stub<5111> AllocateTemporaryEntryPoints +00007FA12A0EE1C8 18 stub<5112> AllocateTemporaryEntryPoints +00007FA12A0EE1F8 18 stub<5113> AllocateTemporaryEntryPoints +00007FA12A0EE210 18 stub<5114> AllocateTemporaryEntryPoints +00007FA12A0EE228 18 stub<5115> AllocateTemporaryEntryPoints +00007FA128517F00 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA128518280 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA128517F40 31b instance void [Datadog.Trace] Datadog.Trace.Agent.Api::.ctor(class Datadog.Trace.Agent.IApiRequestFactory,class Datadog.Trace.Vendors.StatsdClient.IDogStatsd,class [System.Runtime]System.Action`1>,bool,class Datadog.Trace.Logging.IDatadogLogger)[QuickJitted] +00007FA12A0EE240 18 stub<5116> AllocateTemporaryEntryPoints +00007FA12A0EE258 18 stub<5117> AllocateTemporaryEntryPoints +00007FA12A0EE270 18 stub<5118> AllocateTemporaryEntryPoints +00007FA12A0EE288 18 stub<5119> AllocateTemporaryEntryPoints +00007FA12A0EE2A0 18 stub<5120> AllocateTemporaryEntryPoints +00007FA128518380 29 void [Datadog.Trace] Datadog.Trace.Agent.Api::.cctor()[QuickJitted] +00007FA12A0EE2B8 390 stub<5121> AllocateTemporaryEntryPoints +00007FA1285183C0 30 string [Datadog.Trace] Datadog.Trace.PlatformHelpers.ContainerMetadata::GetContainerId()[QuickJitted] +00007FA128518410 c5 void [Datadog.Trace] Datadog.Trace.PlatformHelpers.ContainerMetadata::.cctor()[QuickJitted] +00007FA12A0EE678 18 stub<5122> AllocateTemporaryEntryPoints +00007FA12A0EE690 18 stub<5123> AllocateTemporaryEntryPoints +00007FA12A0EE6A8 18 stub<5124> AllocateTemporaryEntryPoints +00007FA12A0EE6C0 18 stub<5125> AllocateTemporaryEntryPoints +00007FA12A0EE6D8 18 stub<5126> AllocateTemporaryEntryPoints +00007FA12A0EE6F0 60 stub<5127> AllocateTemporaryEntryPoints +00007FA12A0EE750 18 stub<5128> AllocateTemporaryEntryPoints +00007FA1285184F0 12a string [Datadog.Trace] Datadog.Trace.PlatformHelpers.ContainerMetadata::GetContainerIdInternal()[QuickJitted] +00007FA12A0EE768 f0 stub<5129> AllocateTemporaryEntryPoints +00007FA12A0EE858 c0 stub<5130> AllocateTemporaryEntryPoints +00007FA12A0EE918 48 stub<5131> AllocateTemporaryEntryPoints +00007FA12A0EE960 f0 stub<5132> AllocateTemporaryEntryPoints +00007FA12A0EEA50 48 stub<5133> AllocateTemporaryEntryPoints +00007FA12A0EEA98 180 stub<5134> AllocateTemporaryEntryPoints +00007FA12A0EED08 a8 stub<5136> AllocateTemporaryEntryPoints +00007FA12A0EEC18 f0 stub<5135> AllocateTemporaryEntryPoints +00007FA12A0EEDB0 90 stub<5137> AllocateTemporaryEntryPoints +00007FA12A100000 2e8 stub<5138> AllocateTemporaryEntryPoints +00007FA12A1002E8 18 stub<5139> AllocateTemporaryEntryPoints +00007FA12A100300 18 stub<5140> AllocateTemporaryEntryPoints +00007FA12A100318 1b0 stub<5141> AllocateTemporaryEntryPoints +00007FA12A1004C8 48 stub<5142> AllocateTemporaryEntryPoints +00007FA12A100510 48 stub<5143> AllocateTemporaryEntryPoints +00007FA12A100558 60 stub<5144> AllocateTemporaryEntryPoints +00007FA12A1005B8 18 stub<5145> AllocateTemporaryEntryPoints +00007FA12A1005D0 168 stub<5146> AllocateTemporaryEntryPoints +00007FA128518640 1a1 string [Datadog.Trace] Datadog.Trace.PlatformHelpers.ContainerMetadata::ParseCgroupLines(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12A100738 6f0 stub<5147> AllocateTemporaryEntryPoints +00007FA12A100E28 78 stub<5148> AllocateTemporaryEntryPoints +00007FA12A100EA0 a8 stub<5149> AllocateTemporaryEntryPoints +00007FA12A102000 c0 stub<5150> AllocateTemporaryEntryPoints +00007FA12A1020C0 18 stub<5151> AllocateTemporaryEntryPoints +00007FA12A1020D8 18 stub<5152> AllocateTemporaryEntryPoints +00007FA12A1020F0 18 stub<5153> AllocateTemporaryEntryPoints +00007FA128518800 47 void [Datadog.Trace] Datadog.Trace.PlatformHelpers.ContainerMetadata+<>c::.cctor()[QuickJitted] +00007FA128518860 1f instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.ContainerMetadata+<>c::.ctor()[QuickJitted] +00007FA12A102108 18 stub<5154> AllocateTemporaryEntryPoints +00007FA12A102120 18 stub<5155> AllocateTemporaryEntryPoints +00007FA12A102138 f0 stub<5156> AllocateTemporaryEntryPoints +00007FA12A102228 198 stub<5157> AllocateTemporaryEntryPoints +00007FA12A1023C0 30 stub<5158> AllocateTemporaryEntryPoints +00007FA1285188A0 84 string [Datadog.Trace] Datadog.Trace.PlatformHelpers.ContainerMetadata::ParseCgroupLine(string)[QuickJitted] +00007FA12A1023F0 228 stub<5159> AllocateTemporaryEntryPoints +00007FA12A102618 120 stub<5160> AllocateTemporaryEntryPoints +00007FA12A102738 198 stub<5161> AllocateTemporaryEntryPoints +00007FA12A1028D0 c0 stub<5162> AllocateTemporaryEntryPoints +00007FA12A102990 a8 stub<5163> AllocateTemporaryEntryPoints +00007FA12A102A38 2b8 stub<5164> AllocateTemporaryEntryPoints +00007FA12A102CF0 138 stub<5165> AllocateTemporaryEntryPoints +00007FA12A102E28 138 stub<5166> AllocateTemporaryEntryPoints +00007FA12A104000 180 stub<5167> AllocateTemporaryEntryPoints +00007FA12A104180 648 stub<5168> AllocateTemporaryEntryPoints +00007FA12A1047C8 30 stub<5169> AllocateTemporaryEntryPoints +00007FA12A1047F8 18 stub<5170> AllocateTemporaryEntryPoints +00007FA12A104810 150 stub<5171> AllocateTemporaryEntryPoints +00007FA12A104960 240 stub<5172> AllocateTemporaryEntryPoints +00007FA12A104BA0 240 stub<5173> AllocateTemporaryEntryPoints +00007FA12A104DE0 138 stub<5174> AllocateTemporaryEntryPoints +00007FA12A106000 738 stub<5175> AllocateTemporaryEntryPoints +00007FA12A106738 18 stub<5176> AllocateTemporaryEntryPoints +00007FA12A106750 168 stub<5177> AllocateTemporaryEntryPoints +00007FA12A1068B8 d8 stub<5178> AllocateTemporaryEntryPoints +00007FA12A106990 60 stub<5179> AllocateTemporaryEntryPoints +00007FA12A108000 738 stub<5180> AllocateTemporaryEntryPoints +00007FA12A108738 60 stub<5181> AllocateTemporaryEntryPoints +00007FA12A108798 60 stub<5182> AllocateTemporaryEntryPoints +00007FA12A1087F8 6f0 stub<5183> AllocateTemporaryEntryPoints +00007FA12A108EE8 c0 stub<5184> AllocateTemporaryEntryPoints +00007FA12A10A000 90 stub<5185> AllocateTemporaryEntryPoints +00007FA12A10A090 a8 stub<5186> AllocateTemporaryEntryPoints +00007FA12A10A138 18 stub<5187> AllocateTemporaryEntryPoints +00007FA12A10A150 5e8 stub<5188> AllocateTemporaryEntryPoints +00007FA12A10A738 78 stub<5189> AllocateTemporaryEntryPoints +00007FA12A10A7B0 18 stub<5190> AllocateTemporaryEntryPoints +00007FA12A10A7C8 c0 stub<5191> AllocateTemporaryEntryPoints +00007FA12A10A888 90 stub<5192> AllocateTemporaryEntryPoints +00007FA12A10A918 a8 stub<5193> AllocateTemporaryEntryPoints +00007FA12A10A9C0 18 stub<5194> AllocateTemporaryEntryPoints +00007FA12A10A9D8 78 stub<5195> AllocateTemporaryEntryPoints +00007FA12A10AA50 18 stub<5196> AllocateTemporaryEntryPoints +00007FA128518D40 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::.ctor()[QuickJitted] +00007FA128518DE0 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12A10AA68 198 stub<5197> AllocateTemporaryEntryPoints +00007FA12A10AC00 30 stub<5198> AllocateTemporaryEntryPoints +00007FA12A10AC30 18 stub<5199> AllocateTemporaryEntryPoints +00007FA12A10AC48 18 stub<5200> AllocateTemporaryEntryPoints +00007FA12A10AC60 120 stub<5201> AllocateTemporaryEntryPoints +00007FA12A10AD80 48 stub<5202> AllocateTemporaryEntryPoints +00007FA12A10ADC8 18 stub<5203> AllocateTemporaryEntryPoints +00007FA12A10ADE0 d8 stub<5204> AllocateTemporaryEntryPoints +00007FA128518E10 388 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA1285191C0 2e instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.ValueTuple`2[System.Char,System.Char]]::AddRange(class System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12A10AED0 18 stub<5205> AllocateTemporaryEntryPoints +00007FA1277BFDE0 18 stub<5206> GenerateLookupStub +00007FA128519210 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA1277BFE00 18 stub<5207> GenerateLookupStub +00007FA12A10AEE8 18 stub<5208> AllocateTemporaryEntryPoints +00007FA1277BFE20 18 stub<5209> GenerateLookupStub +00007FA1285192A0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey]::get_Default()[QuickJitted] +00007FA1277BFE40 18 stub<5210> GenerateLookupStub +00007FA1285192E0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey]::.cctor()[QuickJitted] +00007FA12A10AF00 18 stub<5211> AllocateTemporaryEntryPoints +00007FA12A10AF18 a8 stub<5212> AllocateTemporaryEntryPoints +00007FA1285193A0 242 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.ValueTuple`2[System.Char,System.Char]]::InsertRange(int32,class System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1277F5C00 18 stub<5213> GenerateResolveStub +00007FA1277C3E80 20 stub<5214> GenerateDispatchStub +00007FA128519360 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey]::.ctor()[QuickJitted] +00007FA128519610 3b instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.ValueTuple`2[System.Char,System.Char]]::CopyTo(!0[],int32)[QuickJitted] +00007FA128519660 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey]::.ctor()[QuickJitted] +00007FA1277F5C70 18 stub<5215> GenerateResolveStub +00007FA12A10C000 60 stub<5216> AllocateTemporaryEntryPoints +00007FA12A10C060 48 stub<5217> AllocateTemporaryEntryPoints +00007FA12A10C0A8 60 stub<5218> AllocateTemporaryEntryPoints +00007FA12A10C108 78 stub<5219> AllocateTemporaryEntryPoints +00007FA1277C3EA0 20 stub<5220> GenerateDispatchStub +00007FA12A10C180 60 stub<5221> AllocateTemporaryEntryPoints +00007FA12A10C1E0 18 stub<5222> AllocateTemporaryEntryPoints +00007FA12A10C1F8 18 stub<5223> AllocateTemporaryEntryPoints +00007FA12A10C210 60 stub<5224> AllocateTemporaryEntryPoints +00007FA12A10C270 48 stub<5225> AllocateTemporaryEntryPoints +00007FA12A10C2B8 18 stub<5226> AllocateTemporaryEntryPoints +00007FA12A10C2D0 18 stub<5227> AllocateTemporaryEntryPoints +00007FA12A10C2E8 60 stub<5228> AllocateTemporaryEntryPoints +00007FA12A10C348 48 stub<5229> AllocateTemporaryEntryPoints +00007FA12A10C390 78 stub<5230> AllocateTemporaryEntryPoints +00007FA12A10C408 2b8 stub<5231> AllocateTemporaryEntryPoints +00007FA12A10C6C0 c0 stub<5232> AllocateTemporaryEntryPoints +00007FA12A10C780 30 stub<5233> AllocateTemporaryEntryPoints +00007FA12A10C7B0 a8 stub<5234> AllocateTemporaryEntryPoints +00007FA12A10C858 a8 stub<5235> AllocateTemporaryEntryPoints +00007FA12A10C900 6f0 stub<5236> AllocateTemporaryEntryPoints +00007FA12A10E000 78 stub<5237> AllocateTemporaryEntryPoints +00007FA12A10E078 18 stub<5238> AllocateTemporaryEntryPoints +00007FA12A10E090 a8 stub<5239> AllocateTemporaryEntryPoints +00007FA12A10E138 60 stub<5240> AllocateTemporaryEntryPoints +00007FA12A10E198 18 stub<5241> AllocateTemporaryEntryPoints +00007FA12A10E1B0 18 stub<5242> AllocateTemporaryEntryPoints +00007FA12A10E1C8 18 stub<5243> AllocateTemporaryEntryPoints +00007FA12A10E1E0 60 stub<5244> AllocateTemporaryEntryPoints +00007FA12A10E240 78 stub<5245> AllocateTemporaryEntryPoints +00007FA1277C3EC0 20 stub<5246> GenerateDispatchStub +00007FA1277F5CE0 18 stub<5247> GenerateResolveStub +00007FA1277C3EE0 20 stub<5248> GenerateDispatchStub +00007FA12A10E2B8 60 stub<5249> AllocateTemporaryEntryPoints +00007FA12A10E318 48 stub<5250> AllocateTemporaryEntryPoints +00007FA128519AA0 98 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Net.Http.Headers.HeaderDescriptor]::.ctor(int32)[QuickJitted] +00007FA1277C3F00 20 stub<5251> GenerateDispatchStub +00007FA1277C3F20 20 stub<5252> GenerateDispatchStub +00007FA128519B50 2a instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.ContainerMetadata+<>c::b__8_0(string)[QuickJitted] +00007FA128519B90 8b instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Net.Http.Headers.HeaderDescriptor]::Add(!0)[QuickJitted] +00007FA1277C3F40 20 stub<5253> GenerateDispatchStub +00007FA1277C3F60 20 stub<5254> GenerateDispatchStub +00007FA128519C30 85 instance !0[] [System.Private.CoreLib] System.Collections.Generic.List`1[System.Net.Http.Headers.HeaderDescriptor]::ToArray()[QuickJitted] +00007FA12A10E360 138 stub<5255> AllocateTemporaryEntryPoints +00007FA12A10E498 a8 stub<5256> AllocateTemporaryEntryPoints +00007FA1277F5D50 18 stub<5257> GenerateResolveStub +00007FA12A10E540 1c8 stub<5258> AllocateTemporaryEntryPoints +00007FA1277C3F80 20 stub<5259> GenerateDispatchStub +00007FA12A10E708 a8 stub<5260> AllocateTemporaryEntryPoints +00007FA12A10E7B0 18 stub<5261> AllocateTemporaryEntryPoints +00007FA12A10E7C8 18 stub<5262> AllocateTemporaryEntryPoints +00007FA12A10E7E0 240 stub<5263> AllocateTemporaryEntryPoints +00007FA12A10EA20 18 stub<5264> AllocateTemporaryEntryPoints +00007FA12A10EA38 f0 stub<5265> AllocateTemporaryEntryPoints +00007FA12A10EB28 18 stub<5266> AllocateTemporaryEntryPoints +00007FA12A10EB40 18 stub<5267> AllocateTemporaryEntryPoints +00007FA12A10EB58 f0 stub<5268> AllocateTemporaryEntryPoints +00007FA12A10EC48 18 stub<5269> AllocateTemporaryEntryPoints +00007FA12A10EC60 18 stub<5270> AllocateTemporaryEntryPoints +00007FA12A10EC78 240 stub<5271> AllocateTemporaryEntryPoints +00007FA12A10EEB8 d8 stub<5272> AllocateTemporaryEntryPoints +00007FA128519CD0 91 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,int32,string)[QuickJitted] +00007FA12A130000 d8 stub<5273> AllocateTemporaryEntryPoints +00007FA12A1300D8 18 stub<5274> AllocateTemporaryEntryPoints +00007FA12A1300F0 60 stub<5275> AllocateTemporaryEntryPoints +00007FA12A130150 240 stub<5276> AllocateTemporaryEntryPoints +00007FA12A130390 30 stub<5277> AllocateTemporaryEntryPoints +00007FA12A1303C0 18 stub<5278> AllocateTemporaryEntryPoints +00007FA12A1303D8 18 stub<5279> AllocateTemporaryEntryPoints +00007FA128519D80 96 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,int32,string)[QuickJitted] +00007FA12A1303F0 18 stub<5280> AllocateTemporaryEntryPoints +00007FA12A130408 18 stub<5281> AllocateTemporaryEntryPoints +00007FA12A130420 a8 stub<5282> AllocateTemporaryEntryPoints +00007FA128519E30 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA128519E70 a0 class Datadog.Trace.Agent.IStatsAggregator [Datadog.Trace] Datadog.Trace.Agent.StatsAggregator::Create(class Datadog.Trace.Agent.IApi,class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService)[QuickJitted] +00007FA128519F30 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12851A030 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_StatsComputationEnabled()[QuickJitted] +00007FA12A1304C8 18 stub<5283> AllocateTemporaryEntryPoints +00007FA12A1304E0 18 stub<5284> AllocateTemporaryEntryPoints +00007FA12851A070 1f instance void [Datadog.Trace] Datadog.Trace.Agent.NullStatsAggregator::.ctor()[QuickJitted] +00007FA12A1304F8 18 stub<5285> AllocateTemporaryEntryPoints +00007FA12A130510 30 stub<5286> AllocateTemporaryEntryPoints +00007FA12A130540 60 stub<5287> AllocateTemporaryEntryPoints +00007FA12A1305A0 c0 stub<5288> AllocateTemporaryEntryPoints +00007FA12A130660 48 stub<5289> AllocateTemporaryEntryPoints +00007FA12A1306A8 18 stub<5290> AllocateTemporaryEntryPoints +00007FA12A1306C0 810 stub<5291> AllocateTemporaryEntryPoints +00007FA12A130ED0 90 stub<5292> AllocateTemporaryEntryPoints +00007FA12851A0B0 bd instance class Datadog.Trace.Sampling.ISpanSampler [Datadog.Trace] Datadog.Trace.TracerManagerFactory::GetSpanSampler(class Datadog.Trace.Configuration.ImmutableTracerSettings)[QuickJitted] +00007FA12851A190 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_SpanSamplingRules()[QuickJitted] +00007FA12A132000 1c8 stub<5293> AllocateTemporaryEntryPoints +00007FA12A1321C8 78 stub<5294> AllocateTemporaryEntryPoints +00007FA12A132240 18 stub<5295> AllocateTemporaryEntryPoints +00007FA12A132258 60 stub<5296> AllocateTemporaryEntryPoints +00007FA12A1322B8 210 stub<5297> AllocateTemporaryEntryPoints +00007FA12A1324C8 1b0 stub<5298> AllocateTemporaryEntryPoints +00007FA12A132678 198 stub<5299> AllocateTemporaryEntryPoints +00007FA12A132810 120 stub<5300> AllocateTemporaryEntryPoints +00007FA12851A1C0 9a instance void [Datadog.Trace] Datadog.Trace.Sampling.SpanSampler::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12A132930 60 stub<5301> AllocateTemporaryEntryPoints +00007FA1277BFE60 18 stub<5302> GenerateLookupStub +00007FA12A132990 a8 stub<5303> AllocateTemporaryEntryPoints +00007FA12A132A38 60 stub<5304> AllocateTemporaryEntryPoints +00007FA12A132A98 120 stub<5305> AllocateTemporaryEntryPoints +00007FA12851A270 1e instance int32 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_TraceBufferSize()[QuickJitted] +00007FA12A132BB8 60 stub<5306> AllocateTemporaryEntryPoints +00007FA12A132C18 a8 stub<5307> AllocateTemporaryEntryPoints +00007FA12A132CC0 a8 stub<5308> AllocateTemporaryEntryPoints +00007FA12A132D68 d8 stub<5309> AllocateTemporaryEntryPoints +00007FA12851A2B0 89 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::.ctor(class Datadog.Trace.Agent.IApi,class Datadog.Trace.Agent.IStatsAggregator,class Datadog.Trace.Vendors.StatsdClient.IDogStatsd,class Datadog.Trace.Sampling.ISpanSampler,bool,int32,int32)[QuickJitted] +00007FA12A132E40 18 stub<5310> AllocateTemporaryEntryPoints +00007FA12A132E58 180 stub<5311> AllocateTemporaryEntryPoints +00007FA12A134000 1b0 stub<5312> AllocateTemporaryEntryPoints +00007FA12A1341B0 588 stub<5313> AllocateTemporaryEntryPoints +00007FA12A134738 108 stub<5314> AllocateTemporaryEntryPoints +00007FA12A134840 18 stub<5315> AllocateTemporaryEntryPoints +00007FA12A134858 78 stub<5316> AllocateTemporaryEntryPoints +00007FA12A1348D0 90 stub<5317> AllocateTemporaryEntryPoints +00007FA12A134960 318 stub<5318> AllocateTemporaryEntryPoints +00007FA12A134C78 18 stub<5319> AllocateTemporaryEntryPoints +00007FA12A134C90 18 stub<5320> AllocateTemporaryEntryPoints +00007FA12851A350 97 void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::.cctor()[QuickJitted] +00007FA12A134CA8 18 stub<5321> AllocateTemporaryEntryPoints +00007FA12A134CC0 18 stub<5322> AllocateTemporaryEntryPoints +00007FA12A134CD8 18 stub<5323> AllocateTemporaryEntryPoints +00007FA12A134CF0 48 stub<5324> AllocateTemporaryEntryPoints +00007FA12A134D38 18 stub<5325> AllocateTemporaryEntryPoints +00007FA12851A400 7e uint8[] [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackSerializer::Serialize(!!0)[QuickJitted] +00007FA12A134D50 18 stub<5326> AllocateTemporaryEntryPoints +00007FA12A134D68 30 stub<5327> AllocateTemporaryEntryPoints +00007FA1277BFE80 18 stub<5328> GenerateLookupStub +00007FA12A134D98 18 stub<5329> AllocateTemporaryEntryPoints +00007FA12A134DB0 18 stub<5330> AllocateTemporaryEntryPoints +00007FA12A134DC8 18 stub<5331> AllocateTemporaryEntryPoints +00007FA12A134DE0 18 stub<5332> AllocateTemporaryEntryPoints +00007FA1277BFEA0 18 stub<5333> GenerateLookupStub +00007FA12A134DF8 30 stub<5334> AllocateTemporaryEntryPoints +00007FA12A134E28 30 stub<5335> AllocateTemporaryEntryPoints +00007FA12A134E58 18 stub<5336> AllocateTemporaryEntryPoints +00007FA12A134E70 30 stub<5337> AllocateTemporaryEntryPoints +00007FA12A136000 7f8 stub<5338> AllocateTemporaryEntryPoints +00007FA12A1367F8 630 stub<5339> AllocateTemporaryEntryPoints +00007FA12851A4A0 663 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12A136E28 18 stub<5340> AllocateTemporaryEntryPoints +00007FA12A136E40 18 stub<5341> AllocateTemporaryEntryPoints +00007FA12A136E58 18 stub<5342> AllocateTemporaryEntryPoints +00007FA12851AB20 101 uint8[] [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackSerializer::Serialize(!!0,class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12A136E70 18 stub<5343> AllocateTemporaryEntryPoints +00007FA12A136E88 48 stub<5344> AllocateTemporaryEntryPoints +00007FA12851AC40 53 class Datadog.Trace.Vendors.MessagePack.IFormatterResolver [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackSerializer::get_DefaultResolver()[QuickJitted] +00007FA12A136ED0 48 stub<5345> AllocateTemporaryEntryPoints +00007FA12851ACB0 1bb int32 [System.Private.CoreLib] System.HashCode::Combine(!!0,!!1,!!2,!!3,!!4,!!5)[QuickJitted] +00007FA12A136F18 48 stub<5346> AllocateTemporaryEntryPoints +00007FA12851AE90 d0 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.StandardResolver::.cctor()[QuickJitted] +00007FA12851AF80 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.StandardResolver::.ctor()[QuickJitted] +00007FA12851AFC0 126 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::GetBucket(int32)[QuickJitted] +00007FA12A136F60 18 stub<5347> AllocateTemporaryEntryPoints +00007FA12A136F78 18 stub<5348> AllocateTemporaryEntryPoints +00007FA12A136FA8 18 stub<5350> AllocateTemporaryEntryPoints +00007FA12A136F90 18 stub<5349> AllocateTemporaryEntryPoints +00007FA12A136FC0 18 stub<5351> AllocateTemporaryEntryPoints +00007FA12A136FD8 18 stub<5352> AllocateTemporaryEntryPoints +00007FA12A138000 18 stub<5353> AllocateTemporaryEntryPoints +00007FA12A138018 18 stub<5354> AllocateTemporaryEntryPoints +00007FA12A138030 c0 stub<5355> AllocateTemporaryEntryPoints +00007FA12851B100 cc void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.StandardResolverCore::.cctor()[QuickJitted] +00007FA12851B1F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.StandardResolverCore::.ctor()[QuickJitted] +00007FA12A1380F0 48 stub<5356> AllocateTemporaryEntryPoints +00007FA12A138138 48 stub<5357> AllocateTemporaryEntryPoints +00007FA12A138180 48 stub<5358> AllocateTemporaryEntryPoints +00007FA12851B230 ed void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.StandardResolverHelper::.cctor()[QuickJitted] +00007FA12851B340 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.BuiltinResolver::.cctor()[QuickJitted] +00007FA12851B3A0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.BuiltinResolver::.ctor()[QuickJitted] +00007FA12851B3E0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.AttributeFormatterResolver::.cctor()[QuickJitted] +00007FA12851B440 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.AttributeFormatterResolver::.ctor()[QuickJitted] +00007FA12851B480 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.DynamicGenericResolver::.cctor()[QuickJitted] +00007FA12851B4E0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.DynamicGenericResolver::.ctor()[QuickJitted] +00007FA1277BFEC0 18 stub<5359> GenerateLookupStub +00007FA1277F5DC0 18 stub<5360> GenerateResolveStub +00007FA1277C3FA0 20 stub<5361> GenerateDispatchStub +00007FA12A1381E0 48 stub<5362> AllocateTemporaryEntryPoints +00007FA12A138228 258 stub<5363> AllocateTemporaryEntryPoints +00007FA12A138480 18 stub<5364> AllocateTemporaryEntryPoints +00007FA12A138498 18 stub<5365> AllocateTemporaryEntryPoints +00007FA12A1384B0 2a0 stub<5366> AllocateTemporaryEntryPoints +00007FA1277BFEE0 18 stub<5367> GenerateLookupStub +00007FA1277F5E30 18 stub<5368> GenerateResolveStub +00007FA1277C3FC0 20 stub<5369> GenerateDispatchStub +00007FA12A138750 18 stub<5370> AllocateTemporaryEntryPoints +00007FA1277BFF00 18 stub<5371> GenerateLookupStub +00007FA1277F5EA0 18 stub<5372> GenerateResolveStub +00007FA1277C3FE0 20 stub<5373> GenerateDispatchStub +00007FA12A138768 f0 stub<5374> AllocateTemporaryEntryPoints +00007FA12A138858 3a8 stub<5375> AllocateTemporaryEntryPoints +00007FA12A138C00 60 stub<5376> AllocateTemporaryEntryPoints +00007FA12A138C60 108 stub<5377> AllocateTemporaryEntryPoints +00007FA12A138D68 f0 stub<5378> AllocateTemporaryEntryPoints +00007FA12A138E58 18 stub<5379> AllocateTemporaryEntryPoints +00007FA12A138E70 f0 stub<5380> AllocateTemporaryEntryPoints +00007FA12851B520 78 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DynamicObjectTypeFallbackFormatter::.ctor(class Datadog.Trace.Vendors.MessagePack.IFormatterResolver[])[QuickJitted] +00007FA12A138F60 48 stub<5381> AllocateTemporaryEntryPoints +00007FA12A138FA8 48 stub<5382> AllocateTemporaryEntryPoints +00007FA12A13A000 48 stub<5383> AllocateTemporaryEntryPoints +00007FA12851B5C0 138 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.ThreadsafeTypeKeyHashTable`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor(int32,float32)[QuickJitted] +00007FA12851B710 74a void [System.Net.Quic] System.Net.Quic.MsQuicApi::.cctor()[QuickJitted] +00007FA12851BE90 90 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.ThreadsafeTypeKeyHashTable`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::CalculateCapacity(int32,float32)[QuickJitted] +00007FA12A13A048 18 stub<5384> AllocateTemporaryEntryPoints +00007FA12A13A060 a8 stub<5385> AllocateTemporaryEntryPoints +00007FA12A13A108 18 stub<5386> AllocateTemporaryEntryPoints +00007FA12A13A120 18 stub<5387> AllocateTemporaryEntryPoints +00007FA12A13A138 18 stub<5388> AllocateTemporaryEntryPoints +00007FA12A13A150 18 stub<5389> AllocateTemporaryEntryPoints +00007FA12A13A168 18 stub<5390> AllocateTemporaryEntryPoints +00007FA12A13A180 a8 stub<5391> AllocateTemporaryEntryPoints +00007FA12851BF40 244 class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.FormatterResolverExtensions::GetFormatterWithVerify(class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12A13A228 18 stub<5392> AllocateTemporaryEntryPoints +00007FA12A13A240 18 stub<5393> AllocateTemporaryEntryPoints +00007FA12A13A258 18 stub<5394> AllocateTemporaryEntryPoints +00007FA12A13A270 18 stub<5395> AllocateTemporaryEntryPoints +00007FA12A13A288 18 stub<5396> AllocateTemporaryEntryPoints +00007FA12A13A2A0 18 stub<5397> AllocateTemporaryEntryPoints +00007FA12851C1B0 60 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.StandardResolver::GetFormatter()[QuickJitted] +00007FA12A13A2B8 18 stub<5398> AllocateTemporaryEntryPoints +00007FA12A13A2D0 30 stub<5399> AllocateTemporaryEntryPoints +00007FA12851C230 19d void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.StandardResolver+FormatterCache`1[System.__Canon]::.cctor()[QuickJitted] +00007FA12A13A300 18 stub<5400> AllocateTemporaryEntryPoints +00007FA12A13A318 18 stub<5401> AllocateTemporaryEntryPoints +00007FA12A13A330 18 stub<5402> AllocateTemporaryEntryPoints +00007FA12A13A348 18 stub<5403> AllocateTemporaryEntryPoints +00007FA12A13A360 18 stub<5404> AllocateTemporaryEntryPoints +00007FA12851C3F0 60 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.StandardResolverCore::GetFormatter()[QuickJitted] +00007FA12A13A378 18 stub<5405> AllocateTemporaryEntryPoints +00007FA12851C470 130 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.StandardResolverCore+FormatterCache`1[System.__Canon]::.cctor()[QuickJitted] +00007FA12A13A390 18 stub<5406> AllocateTemporaryEntryPoints +00007FA12A13A3A8 18 stub<5407> AllocateTemporaryEntryPoints +00007FA12A13A3C0 18 stub<5408> AllocateTemporaryEntryPoints +00007FA12A13A3D8 18 stub<5409> AllocateTemporaryEntryPoints +00007FA12A13A3F0 18 stub<5410> AllocateTemporaryEntryPoints +00007FA12851C5C0 60 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.BuiltinResolver::GetFormatter()[QuickJitted] +00007FA12A13A408 30 stub<5411> AllocateTemporaryEntryPoints +00007FA12A13A438 30 stub<5412> AllocateTemporaryEntryPoints +00007FA12851C640 bb void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.BuiltinResolver+FormatterCache`1[System.__Canon]::.cctor()[QuickJitted] +00007FA12851C720 67 object [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.BuiltinResolverGetFormatterHelper::GetFormatter(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A13A468 60 stub<5413> AllocateTemporaryEntryPoints +00007FA12A13A4C8 30 stub<5414> AllocateTemporaryEntryPoints +00007FA12A13A4F8 60 stub<5415> AllocateTemporaryEntryPoints +00007FA12A13A558 30 stub<5416> AllocateTemporaryEntryPoints +00007FA12A13A588 60 stub<5417> AllocateTemporaryEntryPoints +00007FA12A13A5E8 30 stub<5418> AllocateTemporaryEntryPoints +00007FA12A13A618 60 stub<5419> AllocateTemporaryEntryPoints +00007FA12A13A678 30 stub<5420> AllocateTemporaryEntryPoints +00007FA12A13A6A8 60 stub<5421> AllocateTemporaryEntryPoints +00007FA12A13A708 30 stub<5422> AllocateTemporaryEntryPoints +00007FA12A13A738 60 stub<5423> AllocateTemporaryEntryPoints +00007FA12A13A798 30 stub<5424> AllocateTemporaryEntryPoints +00007FA12A13A7C8 60 stub<5425> AllocateTemporaryEntryPoints +00007FA12A13A828 30 stub<5426> AllocateTemporaryEntryPoints +00007FA12A13A858 60 stub<5427> AllocateTemporaryEntryPoints +00007FA12A13A8B8 30 stub<5428> AllocateTemporaryEntryPoints +00007FA12A13A8E8 60 stub<5429> AllocateTemporaryEntryPoints +00007FA12A13A948 30 stub<5430> AllocateTemporaryEntryPoints +00007FA12A13A978 60 stub<5431> AllocateTemporaryEntryPoints +00007FA12A13A9D8 30 stub<5432> AllocateTemporaryEntryPoints +00007FA12A13AA08 60 stub<5433> AllocateTemporaryEntryPoints +00007FA12A13AA68 30 stub<5434> AllocateTemporaryEntryPoints +00007FA12A13AA98 60 stub<5435> AllocateTemporaryEntryPoints +00007FA12A13AAF8 30 stub<5436> AllocateTemporaryEntryPoints +00007FA12A13AB28 60 stub<5437> AllocateTemporaryEntryPoints +00007FA12A13AB88 30 stub<5438> AllocateTemporaryEntryPoints +00007FA12A13ABB8 60 stub<5439> AllocateTemporaryEntryPoints +00007FA12A13AC18 30 stub<5440> AllocateTemporaryEntryPoints +00007FA12A13AC48 60 stub<5441> AllocateTemporaryEntryPoints +00007FA12A13ACA8 30 stub<5442> AllocateTemporaryEntryPoints +00007FA12A13ACD8 60 stub<5443> AllocateTemporaryEntryPoints +00007FA12A13AD38 30 stub<5444> AllocateTemporaryEntryPoints +00007FA12A13AD68 60 stub<5445> AllocateTemporaryEntryPoints +00007FA12A13ADC8 30 stub<5446> AllocateTemporaryEntryPoints +00007FA12A13ADF8 60 stub<5447> AllocateTemporaryEntryPoints +00007FA12A13AE58 30 stub<5448> AllocateTemporaryEntryPoints +00007FA12A13AE88 60 stub<5449> AllocateTemporaryEntryPoints +00007FA12A13AEE8 30 stub<5450> AllocateTemporaryEntryPoints +00007FA12A13AF18 60 stub<5451> AllocateTemporaryEntryPoints +00007FA12A13AF78 30 stub<5452> AllocateTemporaryEntryPoints +00007FA12A13C000 60 stub<5453> AllocateTemporaryEntryPoints +00007FA12A13C060 30 stub<5454> AllocateTemporaryEntryPoints +00007FA12A13C090 60 stub<5455> AllocateTemporaryEntryPoints +00007FA12A13C0F0 30 stub<5456> AllocateTemporaryEntryPoints +00007FA12A13C120 60 stub<5457> AllocateTemporaryEntryPoints +00007FA12A13C180 30 stub<5458> AllocateTemporaryEntryPoints +00007FA12A13C1B0 60 stub<5459> AllocateTemporaryEntryPoints +00007FA12A13C210 30 stub<5460> AllocateTemporaryEntryPoints +00007FA12A13C240 60 stub<5461> AllocateTemporaryEntryPoints +00007FA12A13C2A0 30 stub<5462> AllocateTemporaryEntryPoints +00007FA12A13C2D0 60 stub<5463> AllocateTemporaryEntryPoints +00007FA12A13C330 30 stub<5464> AllocateTemporaryEntryPoints +00007FA12A13C360 60 stub<5465> AllocateTemporaryEntryPoints +00007FA12A13C3C0 60 stub<5466> AllocateTemporaryEntryPoints +00007FA12A13C420 30 stub<5467> AllocateTemporaryEntryPoints +00007FA12A13C450 48 stub<5468> AllocateTemporaryEntryPoints +00007FA12A13C498 138 stub<5469> AllocateTemporaryEntryPoints +00007FA12A13C5D0 30 stub<5470> AllocateTemporaryEntryPoints +00007FA12A13C600 48 stub<5471> AllocateTemporaryEntryPoints +00007FA12A13C648 30 stub<5472> AllocateTemporaryEntryPoints +00007FA12A13C678 60 stub<5473> AllocateTemporaryEntryPoints +00007FA12A13C6D8 30 stub<5474> AllocateTemporaryEntryPoints +00007FA12A13C708 48 stub<5475> AllocateTemporaryEntryPoints +00007FA12A13C750 30 stub<5476> AllocateTemporaryEntryPoints +00007FA12A13C780 60 stub<5477> AllocateTemporaryEntryPoints +00007FA12A13C7E0 30 stub<5478> AllocateTemporaryEntryPoints +00007FA12A13C810 48 stub<5479> AllocateTemporaryEntryPoints +00007FA12A13C858 30 stub<5480> AllocateTemporaryEntryPoints +00007FA12A13C888 60 stub<5481> AllocateTemporaryEntryPoints +00007FA12A13C8E8 30 stub<5482> AllocateTemporaryEntryPoints +00007FA12A13C918 48 stub<5483> AllocateTemporaryEntryPoints +00007FA12A13C960 30 stub<5484> AllocateTemporaryEntryPoints +00007FA12A13C990 60 stub<5485> AllocateTemporaryEntryPoints +00007FA12A13C9F0 60 stub<5486> AllocateTemporaryEntryPoints +00007FA12A13CA50 60 stub<5487> AllocateTemporaryEntryPoints +00007FA12A13CAB0 300 stub<5488> AllocateTemporaryEntryPoints +00007FA12A13CDB0 60 stub<5489> AllocateTemporaryEntryPoints +00007FA12A13CE10 60 stub<5490> AllocateTemporaryEntryPoints +00007FA12A13CE70 d8 stub<5491> AllocateTemporaryEntryPoints +00007FA12A13CF48 60 stub<5492> AllocateTemporaryEntryPoints +00007FA12A13CFA8 30 stub<5493> AllocateTemporaryEntryPoints +00007FA12A13E000 138 stub<5494> AllocateTemporaryEntryPoints +00007FA12A13E138 60 stub<5495> AllocateTemporaryEntryPoints +00007FA12A13E198 30 stub<5496> AllocateTemporaryEntryPoints +00007FA12A13E1C8 60 stub<5497> AllocateTemporaryEntryPoints +00007FA12A13E228 60 stub<5498> AllocateTemporaryEntryPoints +00007FA12A13E288 60 stub<5499> AllocateTemporaryEntryPoints +00007FA12A13E2E8 60 stub<5500> AllocateTemporaryEntryPoints +00007FA12A13E348 60 stub<5501> AllocateTemporaryEntryPoints +00007FA12A13E3A8 60 stub<5502> AllocateTemporaryEntryPoints +00007FA12A13E408 60 stub<5503> AllocateTemporaryEntryPoints +00007FA12A13E468 60 stub<5504> AllocateTemporaryEntryPoints +00007FA12A13E4C8 60 stub<5505> AllocateTemporaryEntryPoints +00007FA12A13E528 60 stub<5506> AllocateTemporaryEntryPoints +00007FA12A13E588 60 stub<5507> AllocateTemporaryEntryPoints +00007FA12A13E5E8 60 stub<5508> AllocateTemporaryEntryPoints +00007FA12A13E648 60 stub<5509> AllocateTemporaryEntryPoints +00007FA12A13E6A8 60 stub<5510> AllocateTemporaryEntryPoints +00007FA12A13E708 60 stub<5511> AllocateTemporaryEntryPoints +00007FA12A13E768 60 stub<5512> AllocateTemporaryEntryPoints +00007FA12A13E7C8 60 stub<5513> AllocateTemporaryEntryPoints +00007FA12A13E828 60 stub<5514> AllocateTemporaryEntryPoints +00007FA12A13E888 6f0 stub<5515> AllocateTemporaryEntryPoints +00007FA12A13EF78 78 stub<5516> AllocateTemporaryEntryPoints +00007FA12A200000 a8 stub<5517> AllocateTemporaryEntryPoints +00007FA12A2000A8 18 stub<5518> AllocateTemporaryEntryPoints +00007FA12A2000C0 18 stub<5519> AllocateTemporaryEntryPoints +00007FA12A2000D8 18 stub<5520> AllocateTemporaryEntryPoints +00007FA12A2000F0 48 stub<5521> AllocateTemporaryEntryPoints +00007FA12A200138 6f0 stub<5522> AllocateTemporaryEntryPoints +00007FA12A200828 78 stub<5523> AllocateTemporaryEntryPoints +00007FA12A2008A0 a8 stub<5524> AllocateTemporaryEntryPoints +00007FA12A200948 18 stub<5525> AllocateTemporaryEntryPoints +00007FA12A200960 18 stub<5526> AllocateTemporaryEntryPoints +00007FA12A200978 18 stub<5527> AllocateTemporaryEntryPoints +00007FA12A200990 48 stub<5528> AllocateTemporaryEntryPoints +00007FA12A2009D8 48 stub<5529> AllocateTemporaryEntryPoints +00007FA12A202000 6f0 stub<5530> AllocateTemporaryEntryPoints +00007FA12A2026F0 78 stub<5531> AllocateTemporaryEntryPoints +00007FA12A202768 a8 stub<5532> AllocateTemporaryEntryPoints +00007FA12A202810 18 stub<5533> AllocateTemporaryEntryPoints +00007FA12A202828 18 stub<5534> AllocateTemporaryEntryPoints +00007FA12A202840 18 stub<5535> AllocateTemporaryEntryPoints +00007FA12A202858 48 stub<5536> AllocateTemporaryEntryPoints +00007FA12A2028A0 6f0 stub<5537> AllocateTemporaryEntryPoints +00007FA12A204000 78 stub<5538> AllocateTemporaryEntryPoints +00007FA12A204078 a8 stub<5539> AllocateTemporaryEntryPoints +00007FA12A204120 18 stub<5540> AllocateTemporaryEntryPoints +00007FA12A204138 18 stub<5541> AllocateTemporaryEntryPoints +00007FA12A204150 18 stub<5542> AllocateTemporaryEntryPoints +00007FA12A204168 48 stub<5543> AllocateTemporaryEntryPoints +00007FA12A2041B0 6f0 stub<5544> AllocateTemporaryEntryPoints +00007FA12A2048A0 78 stub<5545> AllocateTemporaryEntryPoints +00007FA12A204918 a8 stub<5546> AllocateTemporaryEntryPoints +00007FA12A2049C0 18 stub<5547> AllocateTemporaryEntryPoints +00007FA12A2049D8 18 stub<5548> AllocateTemporaryEntryPoints +00007FA12A2049F0 18 stub<5549> AllocateTemporaryEntryPoints +00007FA12A204A08 48 stub<5550> AllocateTemporaryEntryPoints +00007FA12A204A50 48 stub<5551> AllocateTemporaryEntryPoints +00007FA12A206000 6f0 stub<5552> AllocateTemporaryEntryPoints +00007FA12A2066F0 78 stub<5553> AllocateTemporaryEntryPoints +00007FA12A206768 a8 stub<5554> AllocateTemporaryEntryPoints +00007FA12A206810 18 stub<5555> AllocateTemporaryEntryPoints +00007FA12A206828 18 stub<5556> AllocateTemporaryEntryPoints +00007FA12A206840 18 stub<5557> AllocateTemporaryEntryPoints +00007FA12A206858 48 stub<5558> AllocateTemporaryEntryPoints +00007FA12A2068A0 6f0 stub<5559> AllocateTemporaryEntryPoints +00007FA12A208000 78 stub<5560> AllocateTemporaryEntryPoints +00007FA12A208078 a8 stub<5561> AllocateTemporaryEntryPoints +00007FA12A208120 18 stub<5562> AllocateTemporaryEntryPoints +00007FA12A208138 18 stub<5563> AllocateTemporaryEntryPoints +00007FA12A208150 18 stub<5564> AllocateTemporaryEntryPoints +00007FA12A208168 48 stub<5565> AllocateTemporaryEntryPoints +00007FA12A2081B0 6f0 stub<5566> AllocateTemporaryEntryPoints +00007FA12A2088A0 78 stub<5567> AllocateTemporaryEntryPoints +00007FA12A208918 a8 stub<5568> AllocateTemporaryEntryPoints +00007FA12A2089C0 18 stub<5569> AllocateTemporaryEntryPoints +00007FA12A2089D8 18 stub<5570> AllocateTemporaryEntryPoints +00007FA12A2089F0 18 stub<5571> AllocateTemporaryEntryPoints +00007FA12A208A08 48 stub<5572> AllocateTemporaryEntryPoints +00007FA12A208A50 48 stub<5573> AllocateTemporaryEntryPoints +00007FA12A20A000 6f0 stub<5574> AllocateTemporaryEntryPoints +00007FA12A20A6F0 78 stub<5575> AllocateTemporaryEntryPoints +00007FA12A20A768 a8 stub<5576> AllocateTemporaryEntryPoints +00007FA12A20A810 18 stub<5577> AllocateTemporaryEntryPoints +00007FA12A20A828 18 stub<5578> AllocateTemporaryEntryPoints +00007FA12A20A840 18 stub<5579> AllocateTemporaryEntryPoints +00007FA12A20A858 48 stub<5580> AllocateTemporaryEntryPoints +00007FA12A20A8A0 6f0 stub<5581> AllocateTemporaryEntryPoints +00007FA12A20C000 78 stub<5582> AllocateTemporaryEntryPoints +00007FA12A20C078 a8 stub<5583> AllocateTemporaryEntryPoints +00007FA12A20C120 18 stub<5584> AllocateTemporaryEntryPoints +00007FA12A20C138 48 stub<5585> AllocateTemporaryEntryPoints +00007FA12A20C180 48 stub<5586> AllocateTemporaryEntryPoints +00007FA12A20C1C8 48 stub<5587> AllocateTemporaryEntryPoints +00007FA12A20C210 60 stub<5588> AllocateTemporaryEntryPoints +00007FA12A20C270 30 stub<5589> AllocateTemporaryEntryPoints +00007FA12A20C2A0 138 stub<5590> AllocateTemporaryEntryPoints +00007FA12A20C3D8 48 stub<5591> AllocateTemporaryEntryPoints +00007FA12A20C420 30 stub<5592> AllocateTemporaryEntryPoints +00007FA12A20C450 60 stub<5593> AllocateTemporaryEntryPoints +00007FA12A20C4B0 30 stub<5594> AllocateTemporaryEntryPoints +00007FA12A20C4E0 48 stub<5595> AllocateTemporaryEntryPoints +00007FA12A20C528 30 stub<5596> AllocateTemporaryEntryPoints +00007FA12A20C558 780 stub<5597> AllocateTemporaryEntryPoints +00007FA12A20E000 4c8 stub<5598> AllocateTemporaryEntryPoints +00007FA12A20E4C8 f0 stub<5599> AllocateTemporaryEntryPoints +00007FA12A20E5B8 18 stub<5600> AllocateTemporaryEntryPoints +00007FA12A20E5D0 390 stub<5601> AllocateTemporaryEntryPoints +00007FA12A20E960 30 stub<5602> AllocateTemporaryEntryPoints +00007FA12A20E990 18 stub<5603> AllocateTemporaryEntryPoints +00007FA12A20E9A8 30 stub<5604> AllocateTemporaryEntryPoints +00007FA12A20E9D8 30 stub<5605> AllocateTemporaryEntryPoints +00007FA12A20EA08 30 stub<5606> AllocateTemporaryEntryPoints +00007FA12A20EA38 30 stub<5607> AllocateTemporaryEntryPoints +00007FA12A20EA68 18 stub<5608> AllocateTemporaryEntryPoints +00007FA12A20EA80 30 stub<5609> AllocateTemporaryEntryPoints +00007FA12A20EAB0 30 stub<5610> AllocateTemporaryEntryPoints +00007FA12A20EAE0 30 stub<5611> AllocateTemporaryEntryPoints +00007FA12A20EB10 30 stub<5612> AllocateTemporaryEntryPoints +00007FA12A20EB40 18 stub<5613> AllocateTemporaryEntryPoints +00007FA12A20EB58 30 stub<5614> AllocateTemporaryEntryPoints +00007FA12A20EB88 18 stub<5615> AllocateTemporaryEntryPoints +00007FA12A20EBA0 390 stub<5616> AllocateTemporaryEntryPoints +00007FA12A20EF30 30 stub<5617> AllocateTemporaryEntryPoints +00007FA12A20EF60 18 stub<5618> AllocateTemporaryEntryPoints +00007FA12A20EF78 30 stub<5619> AllocateTemporaryEntryPoints +00007FA12A20EFA8 30 stub<5620> AllocateTemporaryEntryPoints +00007FA12A20EFD8 18 stub<5621> AllocateTemporaryEntryPoints +00007FA12A230000 30 stub<5622> AllocateTemporaryEntryPoints +00007FA12A230030 30 stub<5623> AllocateTemporaryEntryPoints +00007FA12A230060 18 stub<5624> AllocateTemporaryEntryPoints +00007FA12A230078 30 stub<5625> AllocateTemporaryEntryPoints +00007FA12A2300A8 30 stub<5626> AllocateTemporaryEntryPoints +00007FA12A2300D8 30 stub<5627> AllocateTemporaryEntryPoints +00007FA12A230108 30 stub<5628> AllocateTemporaryEntryPoints +00007FA12A230138 18 stub<5629> AllocateTemporaryEntryPoints +00007FA12A230150 30 stub<5630> AllocateTemporaryEntryPoints +00007FA12A230180 390 stub<5631> AllocateTemporaryEntryPoints +00007FA12A230510 30 stub<5632> AllocateTemporaryEntryPoints +00007FA12A230540 18 stub<5633> AllocateTemporaryEntryPoints +00007FA12A230558 30 stub<5634> AllocateTemporaryEntryPoints +00007FA12A230588 30 stub<5635> AllocateTemporaryEntryPoints +00007FA12A2305B8 18 stub<5636> AllocateTemporaryEntryPoints +00007FA12A2305D0 30 stub<5637> AllocateTemporaryEntryPoints +00007FA12A230600 30 stub<5638> AllocateTemporaryEntryPoints +00007FA12A230630 18 stub<5639> AllocateTemporaryEntryPoints +00007FA12A230648 30 stub<5640> AllocateTemporaryEntryPoints +00007FA12A230678 30 stub<5641> AllocateTemporaryEntryPoints +00007FA12A2306A8 30 stub<5642> AllocateTemporaryEntryPoints +00007FA12A2306D8 30 stub<5643> AllocateTemporaryEntryPoints +00007FA12A230708 18 stub<5644> AllocateTemporaryEntryPoints +00007FA12A230720 30 stub<5645> AllocateTemporaryEntryPoints +00007FA12A230750 390 stub<5646> AllocateTemporaryEntryPoints +00007FA12A230AE0 30 stub<5647> AllocateTemporaryEntryPoints +00007FA12A230B10 18 stub<5648> AllocateTemporaryEntryPoints +00007FA12A230B28 30 stub<5649> AllocateTemporaryEntryPoints +00007FA12A230B58 30 stub<5650> AllocateTemporaryEntryPoints +00007FA12A230B88 18 stub<5651> AllocateTemporaryEntryPoints +00007FA12A230BA0 30 stub<5652> AllocateTemporaryEntryPoints +00007FA12A230BD0 30 stub<5653> AllocateTemporaryEntryPoints +00007FA12A230C00 18 stub<5654> AllocateTemporaryEntryPoints +00007FA12A230C18 30 stub<5655> AllocateTemporaryEntryPoints +00007FA12A230C48 30 stub<5656> AllocateTemporaryEntryPoints +00007FA12A230C78 30 stub<5657> AllocateTemporaryEntryPoints +00007FA12A230CA8 30 stub<5658> AllocateTemporaryEntryPoints +00007FA12A230CD8 18 stub<5659> AllocateTemporaryEntryPoints +00007FA12A230CF0 30 stub<5660> AllocateTemporaryEntryPoints +00007FA12A232000 390 stub<5661> AllocateTemporaryEntryPoints +00007FA12A232390 30 stub<5662> AllocateTemporaryEntryPoints +00007FA12A2323C0 18 stub<5663> AllocateTemporaryEntryPoints +00007FA12A2323D8 30 stub<5664> AllocateTemporaryEntryPoints +00007FA12A232408 30 stub<5665> AllocateTemporaryEntryPoints +00007FA12A232438 18 stub<5666> AllocateTemporaryEntryPoints +00007FA12A232450 30 stub<5667> AllocateTemporaryEntryPoints +00007FA12A232480 30 stub<5668> AllocateTemporaryEntryPoints +00007FA12A2324B0 18 stub<5669> AllocateTemporaryEntryPoints +00007FA12A2324C8 30 stub<5670> AllocateTemporaryEntryPoints +00007FA12A2324F8 30 stub<5671> AllocateTemporaryEntryPoints +00007FA12A232528 30 stub<5672> AllocateTemporaryEntryPoints +00007FA12A232558 30 stub<5673> AllocateTemporaryEntryPoints +00007FA12A232588 18 stub<5674> AllocateTemporaryEntryPoints +00007FA12A2325A0 30 stub<5675> AllocateTemporaryEntryPoints +00007FA12A2325D0 390 stub<5676> AllocateTemporaryEntryPoints +00007FA12A232960 30 stub<5677> AllocateTemporaryEntryPoints +00007FA12A232990 18 stub<5678> AllocateTemporaryEntryPoints +00007FA12A2329A8 30 stub<5679> AllocateTemporaryEntryPoints +00007FA12A2329D8 30 stub<5680> AllocateTemporaryEntryPoints +00007FA12A232A08 18 stub<5681> AllocateTemporaryEntryPoints +00007FA12A232A20 30 stub<5682> AllocateTemporaryEntryPoints +00007FA12A232A50 30 stub<5683> AllocateTemporaryEntryPoints +00007FA12A232A80 18 stub<5684> AllocateTemporaryEntryPoints +00007FA12A232A98 30 stub<5685> AllocateTemporaryEntryPoints +00007FA12A232AC8 30 stub<5686> AllocateTemporaryEntryPoints +00007FA12A232AF8 30 stub<5687> AllocateTemporaryEntryPoints +00007FA12A232B28 30 stub<5688> AllocateTemporaryEntryPoints +00007FA12A232B58 18 stub<5689> AllocateTemporaryEntryPoints +00007FA12A232B70 30 stub<5690> AllocateTemporaryEntryPoints +00007FA12A232BA0 390 stub<5691> AllocateTemporaryEntryPoints +00007FA12A232F30 30 stub<5692> AllocateTemporaryEntryPoints +00007FA12A232F60 18 stub<5693> AllocateTemporaryEntryPoints +00007FA12A232F78 30 stub<5694> AllocateTemporaryEntryPoints +00007FA12A232FA8 30 stub<5695> AllocateTemporaryEntryPoints +00007FA12A232FD8 18 stub<5696> AllocateTemporaryEntryPoints +00007FA12A234000 30 stub<5697> AllocateTemporaryEntryPoints +00007FA12A234030 30 stub<5698> AllocateTemporaryEntryPoints +00007FA12A234060 18 stub<5699> AllocateTemporaryEntryPoints +00007FA12A234078 30 stub<5700> AllocateTemporaryEntryPoints +00007FA12A2340A8 30 stub<5701> AllocateTemporaryEntryPoints +00007FA12A2340D8 30 stub<5702> AllocateTemporaryEntryPoints +00007FA12A234108 30 stub<5703> AllocateTemporaryEntryPoints +00007FA12A234138 18 stub<5704> AllocateTemporaryEntryPoints +00007FA12A234150 30 stub<5705> AllocateTemporaryEntryPoints +00007FA12A234180 390 stub<5706> AllocateTemporaryEntryPoints +00007FA12A234510 30 stub<5707> AllocateTemporaryEntryPoints +00007FA12A234540 18 stub<5708> AllocateTemporaryEntryPoints +00007FA12A234558 30 stub<5709> AllocateTemporaryEntryPoints +00007FA12A234588 30 stub<5710> AllocateTemporaryEntryPoints +00007FA12A2345B8 18 stub<5711> AllocateTemporaryEntryPoints +00007FA12A2345D0 30 stub<5712> AllocateTemporaryEntryPoints +00007FA12A234600 30 stub<5713> AllocateTemporaryEntryPoints +00007FA12A234630 18 stub<5714> AllocateTemporaryEntryPoints +00007FA12A234648 30 stub<5715> AllocateTemporaryEntryPoints +00007FA12A234678 30 stub<5716> AllocateTemporaryEntryPoints +00007FA12A2346A8 30 stub<5717> AllocateTemporaryEntryPoints +00007FA12A2346D8 30 stub<5718> AllocateTemporaryEntryPoints +00007FA12A234708 18 stub<5719> AllocateTemporaryEntryPoints +00007FA12A234720 30 stub<5720> AllocateTemporaryEntryPoints +00007FA12A234750 390 stub<5721> AllocateTemporaryEntryPoints +00007FA12A234AE0 30 stub<5722> AllocateTemporaryEntryPoints +00007FA12A234B10 18 stub<5723> AllocateTemporaryEntryPoints +00007FA12A234B28 30 stub<5724> AllocateTemporaryEntryPoints +00007FA12A234B58 30 stub<5725> AllocateTemporaryEntryPoints +00007FA12A234B88 18 stub<5726> AllocateTemporaryEntryPoints +00007FA12A234BA0 30 stub<5727> AllocateTemporaryEntryPoints +00007FA12A234BD0 30 stub<5728> AllocateTemporaryEntryPoints +00007FA12A234C00 18 stub<5729> AllocateTemporaryEntryPoints +00007FA12A234C18 30 stub<5730> AllocateTemporaryEntryPoints +00007FA12A234C48 30 stub<5731> AllocateTemporaryEntryPoints +00007FA12A234C78 30 stub<5732> AllocateTemporaryEntryPoints +00007FA12A234CA8 30 stub<5733> AllocateTemporaryEntryPoints +00007FA12A234CD8 18 stub<5734> AllocateTemporaryEntryPoints +00007FA12A234CF0 30 stub<5735> AllocateTemporaryEntryPoints +00007FA12A236000 390 stub<5736> AllocateTemporaryEntryPoints +00007FA12A236390 30 stub<5737> AllocateTemporaryEntryPoints +00007FA12A2363C0 18 stub<5738> AllocateTemporaryEntryPoints +00007FA12A2363D8 30 stub<5739> AllocateTemporaryEntryPoints +00007FA12A236408 30 stub<5740> AllocateTemporaryEntryPoints +00007FA12A236438 18 stub<5741> AllocateTemporaryEntryPoints +00007FA12A236450 30 stub<5742> AllocateTemporaryEntryPoints +00007FA12A236480 30 stub<5743> AllocateTemporaryEntryPoints +00007FA12A2364B0 18 stub<5744> AllocateTemporaryEntryPoints +00007FA12A2364C8 30 stub<5745> AllocateTemporaryEntryPoints +00007FA12A2364F8 30 stub<5746> AllocateTemporaryEntryPoints +00007FA12A236528 30 stub<5747> AllocateTemporaryEntryPoints +00007FA12A236558 30 stub<5748> AllocateTemporaryEntryPoints +00007FA12A236588 18 stub<5749> AllocateTemporaryEntryPoints +00007FA12A2365A0 30 stub<5750> AllocateTemporaryEntryPoints +00007FA12A2365D0 390 stub<5751> AllocateTemporaryEntryPoints +00007FA12A236960 30 stub<5752> AllocateTemporaryEntryPoints +00007FA12A236990 18 stub<5753> AllocateTemporaryEntryPoints +00007FA12A2369A8 30 stub<5754> AllocateTemporaryEntryPoints +00007FA12A2369D8 30 stub<5755> AllocateTemporaryEntryPoints +00007FA12A236A08 18 stub<5756> AllocateTemporaryEntryPoints +00007FA12A236A20 30 stub<5757> AllocateTemporaryEntryPoints +00007FA12A236A50 30 stub<5758> AllocateTemporaryEntryPoints +00007FA12A236A80 18 stub<5759> AllocateTemporaryEntryPoints +00007FA12A236A98 30 stub<5760> AllocateTemporaryEntryPoints +00007FA12A236AC8 30 stub<5761> AllocateTemporaryEntryPoints +00007FA12A236AF8 30 stub<5762> AllocateTemporaryEntryPoints +00007FA12A236B28 30 stub<5763> AllocateTemporaryEntryPoints +00007FA12A236B58 18 stub<5764> AllocateTemporaryEntryPoints +00007FA12A236B70 30 stub<5765> AllocateTemporaryEntryPoints +00007FA12A236BA0 60 stub<5766> AllocateTemporaryEntryPoints +00007FA12A236C00 30 stub<5767> AllocateTemporaryEntryPoints +00007FA12A236C30 138 stub<5768> AllocateTemporaryEntryPoints +00007FA12A236D68 48 stub<5769> AllocateTemporaryEntryPoints +00007FA12A236DB0 30 stub<5770> AllocateTemporaryEntryPoints +00007FA12A236DE0 60 stub<5771> AllocateTemporaryEntryPoints +00007FA12851C7A0 210e void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.BuiltinResolverGetFormatterHelper::.cctor()[QuickJitted] +00007FA12851E8D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int16Formatter::.cctor()[QuickJitted] +00007FA12851E930 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int16Formatter::.ctor()[QuickJitted] +00007FA12A236E40 60 stub<5772> AllocateTemporaryEntryPoints +00007FA12851E970 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int32Formatter::.cctor()[QuickJitted] +00007FA12851E9D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int32Formatter::.ctor()[QuickJitted] +00007FA12851EA10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int64Formatter::.cctor()[QuickJitted] +00007FA12851EA70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int64Formatter::.ctor()[QuickJitted] +00007FA12851EAB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt16Formatter::.cctor()[QuickJitted] +00007FA12851EB10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt16Formatter::.ctor()[QuickJitted] +00007FA12851EB50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt32Formatter::.cctor()[QuickJitted] +00007FA12851EBB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt32Formatter::.ctor()[QuickJitted] +00007FA12851EBF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt64Formatter::.cctor()[QuickJitted] +00007FA12851EC50 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt64Formatter::.ctor()[QuickJitted] +00007FA12851EC90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.SingleFormatter::.cctor()[QuickJitted] +00007FA12851ECF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.SingleFormatter::.ctor()[QuickJitted] +00007FA12851ED30 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DoubleFormatter::.cctor()[QuickJitted] +00007FA12851ED90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DoubleFormatter::.ctor()[QuickJitted] +00007FA12851EDD0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.BooleanFormatter::.cctor()[QuickJitted] +00007FA12851EE30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.BooleanFormatter::.ctor()[QuickJitted] +00007FA12851EE70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ByteFormatter::.cctor()[QuickJitted] +00007FA12851EED0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ByteFormatter::.ctor()[QuickJitted] +00007FA12851EF10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.SByteFormatter::.cctor()[QuickJitted] +00007FA12851EF70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.SByteFormatter::.ctor()[QuickJitted] +00007FA12851EFB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DateTimeFormatter::.cctor()[QuickJitted] +00007FA12851F010 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DateTimeFormatter::.ctor()[QuickJitted] +00007FA12851F050 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.CharFormatter::.cctor()[QuickJitted] +00007FA12851F0B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.CharFormatter::.ctor()[QuickJitted] +00007FA12851F0F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableInt16Formatter::.cctor()[QuickJitted] +00007FA12851F150 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableInt16Formatter::.ctor()[QuickJitted] +00007FA12851F190 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableInt32Formatter::.cctor()[QuickJitted] +00007FA12851F1F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableInt32Formatter::.ctor()[QuickJitted] +00007FA12851F230 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableInt64Formatter::.cctor()[QuickJitted] +00007FA12851F290 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableInt64Formatter::.ctor()[QuickJitted] +00007FA12851F2D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableUInt16Formatter::.cctor()[QuickJitted] +00007FA12851F330 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableUInt16Formatter::.ctor()[QuickJitted] +00007FA12851F370 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableUInt32Formatter::.cctor()[QuickJitted] +00007FA12851F3D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableUInt32Formatter::.ctor()[QuickJitted] +00007FA12851F410 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableUInt64Formatter::.cctor()[QuickJitted] +00007FA12851F470 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableUInt64Formatter::.ctor()[QuickJitted] +00007FA12851F4B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableSingleFormatter::.cctor()[QuickJitted] +00007FA12851F510 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableSingleFormatter::.ctor()[QuickJitted] +00007FA12851F550 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableDoubleFormatter::.cctor()[QuickJitted] +00007FA12851F5B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableDoubleFormatter::.ctor()[QuickJitted] +00007FA12851F5F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableBooleanFormatter::.cctor()[QuickJitted] +00007FA12851F650 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableBooleanFormatter::.ctor()[QuickJitted] +00007FA12851F690 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableByteFormatter::.cctor()[QuickJitted] +00007FA12851F6F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableByteFormatter::.ctor()[QuickJitted] +00007FA12851F730 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableSByteFormatter::.cctor()[QuickJitted] +00007FA12851F790 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableSByteFormatter::.ctor()[QuickJitted] +00007FA12851F7D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableDateTimeFormatter::.cctor()[QuickJitted] +00007FA12851F830 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableDateTimeFormatter::.ctor()[QuickJitted] +00007FA12851F870 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableCharFormatter::.cctor()[QuickJitted] +00007FA12851F8D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableCharFormatter::.ctor()[QuickJitted] +00007FA12851F910 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableStringFormatter::.cctor()[QuickJitted] +00007FA12851F970 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableStringFormatter::.ctor()[QuickJitted] +00007FA12851F9B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DecimalFormatter::.cctor()[QuickJitted] +00007FA12851FA10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DecimalFormatter::.ctor()[QuickJitted] +00007FA12851FA50 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StaticNullableFormatter`1[System.Decimal]::.ctor(class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1)[QuickJitted] +00007FA12851FAA0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.TimeSpanFormatter::.cctor()[QuickJitted] +00007FA12851FB00 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.TimeSpanFormatter::.ctor()[QuickJitted] +00007FA12851FB40 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StaticNullableFormatter`1[System.TimeSpan]::.ctor(class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1)[QuickJitted] +00007FA12851FB90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DateTimeOffsetFormatter::.cctor()[QuickJitted] +00007FA12851FBF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DateTimeOffsetFormatter::.ctor()[QuickJitted] +00007FA12851FC30 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StaticNullableFormatter`1[System.DateTimeOffset]::.ctor(class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1)[QuickJitted] +00007FA12851FC80 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.GuidFormatter::.cctor()[QuickJitted] +00007FA12851FCE0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.GuidFormatter::.ctor()[QuickJitted] +00007FA12851FD20 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StaticNullableFormatter`1[System.Guid]::.ctor(class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1)[QuickJitted] +00007FA12851FD70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UriFormatter::.cctor()[QuickJitted] +00007FA12851FDD0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UriFormatter::.ctor()[QuickJitted] +00007FA12851FE10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.VersionFormatter::.cctor()[QuickJitted] +00007FA12851FE70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.VersionFormatter::.ctor()[QuickJitted] +00007FA12851FEB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StringBuilderFormatter::.cctor()[QuickJitted] +00007FA12851FF10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StringBuilderFormatter::.ctor()[QuickJitted] +00007FA12851FF50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.BitArrayFormatter::.cctor()[QuickJitted] +00007FA12851FFB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.BitArrayFormatter::.ctor()[QuickJitted] +00007FA12851FFF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ByteArrayFormatter::.cctor()[QuickJitted] +00007FA128520050 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ByteArrayFormatter::.ctor()[QuickJitted] +00007FA128520090 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NilFormatter::.cctor()[QuickJitted] +00007FA1285200F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NilFormatter::.ctor()[QuickJitted] +00007FA128520130 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableNilFormatter::.cctor()[QuickJitted] +00007FA128520190 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableNilFormatter::.ctor()[QuickJitted] +00007FA1285201D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int16ArrayFormatter::.cctor()[QuickJitted] +00007FA128520230 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int16ArrayFormatter::.ctor()[QuickJitted] +00007FA128520270 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int32ArrayFormatter::.cctor()[QuickJitted] +00007FA1285202D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int32ArrayFormatter::.ctor()[QuickJitted] +00007FA128520310 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int64ArrayFormatter::.cctor()[QuickJitted] +00007FA128520370 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.Int64ArrayFormatter::.ctor()[QuickJitted] +00007FA1285203B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt16ArrayFormatter::.cctor()[QuickJitted] +00007FA128520410 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt16ArrayFormatter::.ctor()[QuickJitted] +00007FA128520450 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt32ArrayFormatter::.cctor()[QuickJitted] +00007FA1285204B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt32ArrayFormatter::.ctor()[QuickJitted] +00007FA1285204F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt64ArrayFormatter::.cctor()[QuickJitted] +00007FA128520550 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.UInt64ArrayFormatter::.ctor()[QuickJitted] +00007FA128520590 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.SingleArrayFormatter::.cctor()[QuickJitted] +00007FA1285205F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.SingleArrayFormatter::.ctor()[QuickJitted] +00007FA128520630 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DoubleArrayFormatter::.cctor()[QuickJitted] +00007FA128520690 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DoubleArrayFormatter::.ctor()[QuickJitted] +00007FA1285206D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.BooleanArrayFormatter::.cctor()[QuickJitted] +00007FA128520730 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.BooleanArrayFormatter::.ctor()[QuickJitted] +00007FA128520770 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.SByteArrayFormatter::.cctor()[QuickJitted] +00007FA1285207D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.SByteArrayFormatter::.ctor()[QuickJitted] +00007FA128520810 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DateTimeArrayFormatter::.cctor()[QuickJitted] +00007FA128520870 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DateTimeArrayFormatter::.ctor()[QuickJitted] +00007FA1285208B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.CharArrayFormatter::.cctor()[QuickJitted] +00007FA128520910 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.CharArrayFormatter::.ctor()[QuickJitted] +00007FA128520950 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableStringArrayFormatter::.cctor()[QuickJitted] +00007FA1285209B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableStringArrayFormatter::.ctor()[QuickJitted] +00007FA1285209F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.Int16]::.ctor()[QuickJitted] +00007FA128520A30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.Int32]::.ctor()[QuickJitted] +00007FA128520A70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.Int64]::.ctor()[QuickJitted] +00007FA128520AB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.UInt16]::.ctor()[QuickJitted] +00007FA128520AF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.UInt32]::.ctor()[QuickJitted] +00007FA128520B30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.UInt64]::.ctor()[QuickJitted] +00007FA128520B70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.Single]::.ctor()[QuickJitted] +00007FA128520BB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.Double]::.ctor()[QuickJitted] +00007FA128520BF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.Boolean]::.ctor()[QuickJitted] +00007FA128520C30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.Byte]::.ctor()[QuickJitted] +00007FA128520C70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.SByte]::.ctor()[QuickJitted] +00007FA128520CB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.DateTime]::.ctor()[QuickJitted] +00007FA128520CF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.Char]::.ctor()[QuickJitted] +00007FA128520D30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ListFormatter`1[System.__Canon]::.ctor()[QuickJitted] +00007FA128520D70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ByteArraySegmentFormatter::.cctor()[QuickJitted] +00007FA128520DD0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ByteArraySegmentFormatter::.ctor()[QuickJitted] +00007FA128520E10 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StaticNullableFormatter`1[System.ArraySegment`1[System.Byte]]::.ctor(class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1)[QuickJitted] +00007FA128520E60 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.BigIntegerFormatter::.cctor()[QuickJitted] +00007FA128520EC0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.BigIntegerFormatter::.ctor()[QuickJitted] +00007FA128520F00 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StaticNullableFormatter`1[System.Numerics.BigInteger]::.ctor(class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1)[QuickJitted] +00007FA128520F50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ComplexFormatter::.cctor()[QuickJitted] +00007FA128520FB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ComplexFormatter::.ctor()[QuickJitted] +00007FA128520FF0 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.StaticNullableFormatter`1[System.Numerics.Complex]::.ctor(class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1)[QuickJitted] +00007FA12A236EA0 18 stub<5773> AllocateTemporaryEntryPoints +00007FA12A236EB8 18 stub<5774> AllocateTemporaryEntryPoints +00007FA128521040 6b void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.TaskUnitFormatter::.cctor()[QuickJitted] +00007FA1285210C0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.TaskUnitFormatter::.ctor()[QuickJitted] +00007FA12A236ED0 18 stub<5775> AllocateTemporaryEntryPoints +00007FA12A236EE8 18 stub<5776> AllocateTemporaryEntryPoints +00007FA12A236F00 18 stub<5777> AllocateTemporaryEntryPoints +00007FA12A236F18 18 stub<5778> AllocateTemporaryEntryPoints +00007FA12A236F30 18 stub<5779> AllocateTemporaryEntryPoints +00007FA12A236F48 18 stub<5780> AllocateTemporaryEntryPoints +00007FA128521100 60 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.AttributeFormatterResolver::GetFormatter()[QuickJitted] +00007FA12A236F60 90 stub<5781> AllocateTemporaryEntryPoints +00007FA12A238000 18 stub<5782> AllocateTemporaryEntryPoints +00007FA12A238018 18 stub<5783> AllocateTemporaryEntryPoints +00007FA12A238030 18 stub<5784> AllocateTemporaryEntryPoints +00007FA12A238048 30 stub<5785> AllocateTemporaryEntryPoints +00007FA128521180 1bb void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.AttributeFormatterResolver+FormatterCache`1[System.__Canon]::.cctor()[QuickJitted] +00007FA12A238078 510 stub<5786> AllocateTemporaryEntryPoints +00007FA12A238588 18 stub<5787> AllocateTemporaryEntryPoints +00007FA12A2385A0 18 stub<5788> AllocateTemporaryEntryPoints +00007FA12A2385B8 18 stub<5789> AllocateTemporaryEntryPoints +00007FA12A2385D0 18 stub<5790> AllocateTemporaryEntryPoints +00007FA12A2385E8 18 stub<5791> AllocateTemporaryEntryPoints +00007FA128521360 60 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.DynamicGenericResolver::GetFormatter()[QuickJitted] +00007FA12A238600 48 stub<5792> AllocateTemporaryEntryPoints +00007FA12A238648 30 stub<5793> AllocateTemporaryEntryPoints +00007FA1285213E0 bb void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.DynamicGenericResolver+FormatterCache`1[System.__Canon]::.cctor()[QuickJitted] +00007FA12A238678 c0 stub<5794> AllocateTemporaryEntryPoints +00007FA12A238738 18 stub<5795> AllocateTemporaryEntryPoints +00007FA12A238750 18 stub<5796> AllocateTemporaryEntryPoints +00007FA12A238768 48 stub<5797> AllocateTemporaryEntryPoints +00007FA12A2387B0 30 stub<5798> AllocateTemporaryEntryPoints +00007FA12A2387E0 48 stub<5799> AllocateTemporaryEntryPoints +00007FA12A238828 30 stub<5800> AllocateTemporaryEntryPoints +00007FA12A238858 60 stub<5801> AllocateTemporaryEntryPoints +00007FA12A2388B8 60 stub<5802> AllocateTemporaryEntryPoints +00007FA12A238918 a8 stub<5803> AllocateTemporaryEntryPoints +00007FA12A2389C0 18 stub<5804> AllocateTemporaryEntryPoints +00007FA12A2389D8 a8 stub<5805> AllocateTemporaryEntryPoints +00007FA12A238A80 a8 stub<5806> AllocateTemporaryEntryPoints +00007FA12A238B28 30 stub<5807> AllocateTemporaryEntryPoints +00007FA12A238B58 a8 stub<5808> AllocateTemporaryEntryPoints +00007FA12A238C00 30 stub<5809> AllocateTemporaryEntryPoints +00007FA12A238C30 30 stub<5810> AllocateTemporaryEntryPoints +00007FA12A238C60 a8 stub<5811> AllocateTemporaryEntryPoints +00007FA12A238D08 30 stub<5812> AllocateTemporaryEntryPoints +00007FA12A238D38 30 stub<5813> AllocateTemporaryEntryPoints +00007FA12A238D68 48 stub<5814> AllocateTemporaryEntryPoints +00007FA12A238DB0 90 stub<5815> AllocateTemporaryEntryPoints +00007FA12A238E40 18 stub<5816> AllocateTemporaryEntryPoints +00007FA12A238E58 30 stub<5817> AllocateTemporaryEntryPoints +00007FA12A238E88 30 stub<5818> AllocateTemporaryEntryPoints +00007FA12A238EB8 90 stub<5819> AllocateTemporaryEntryPoints +00007FA12A238F48 18 stub<5820> AllocateTemporaryEntryPoints +00007FA12A238F60 30 stub<5821> AllocateTemporaryEntryPoints +00007FA12A23A000 90 stub<5822> AllocateTemporaryEntryPoints +00007FA12A23A090 18 stub<5823> AllocateTemporaryEntryPoints +00007FA12A23A0A8 30 stub<5824> AllocateTemporaryEntryPoints +00007FA12A23A0D8 90 stub<5825> AllocateTemporaryEntryPoints +00007FA12A23A168 18 stub<5826> AllocateTemporaryEntryPoints +00007FA12A23A180 18 stub<5827> AllocateTemporaryEntryPoints +00007FA12A23A198 18 stub<5828> AllocateTemporaryEntryPoints +00007FA12A23A1B0 c0 stub<5829> AllocateTemporaryEntryPoints +00007FA12A23A270 a8 stub<5830> AllocateTemporaryEntryPoints +00007FA12A23A318 18 stub<5831> AllocateTemporaryEntryPoints +00007FA12A23A330 c0 stub<5832> AllocateTemporaryEntryPoints +00007FA12A23A3F0 a8 stub<5833> AllocateTemporaryEntryPoints +00007FA12A23A498 18 stub<5834> AllocateTemporaryEntryPoints +00007FA12A23A4B0 c0 stub<5835> AllocateTemporaryEntryPoints +00007FA12A23A570 c0 stub<5836> AllocateTemporaryEntryPoints +00007FA12A23A630 30 stub<5837> AllocateTemporaryEntryPoints +00007FA12A23A660 c0 stub<5838> AllocateTemporaryEntryPoints +00007FA12A23A720 30 stub<5839> AllocateTemporaryEntryPoints +00007FA12A23A750 30 stub<5840> AllocateTemporaryEntryPoints +00007FA12A23A780 c0 stub<5841> AllocateTemporaryEntryPoints +00007FA12A23A840 30 stub<5842> AllocateTemporaryEntryPoints +00007FA12A23A870 30 stub<5843> AllocateTemporaryEntryPoints +00007FA12A23A8A0 48 stub<5844> AllocateTemporaryEntryPoints +00007FA12A23A8E8 18 stub<5845> AllocateTemporaryEntryPoints +00007FA12A23A900 30 stub<5846> AllocateTemporaryEntryPoints +00007FA12A23A930 30 stub<5847> AllocateTemporaryEntryPoints +00007FA12A23A960 18 stub<5848> AllocateTemporaryEntryPoints +00007FA12A23A978 30 stub<5849> AllocateTemporaryEntryPoints +00007FA12A23A9A8 18 stub<5850> AllocateTemporaryEntryPoints +00007FA12A23A9C0 30 stub<5851> AllocateTemporaryEntryPoints +00007FA12A23A9F0 18 stub<5852> AllocateTemporaryEntryPoints +00007FA12A23AA08 18 stub<5853> AllocateTemporaryEntryPoints +00007FA12A23AA20 18 stub<5854> AllocateTemporaryEntryPoints +00007FA12A23AA38 18 stub<5855> AllocateTemporaryEntryPoints +00007FA12A23AA50 a8 stub<5856> AllocateTemporaryEntryPoints +00007FA12A23AAF8 18 stub<5857> AllocateTemporaryEntryPoints +00007FA12A23AB10 48 stub<5858> AllocateTemporaryEntryPoints +00007FA12A23AB58 138 stub<5859> AllocateTemporaryEntryPoints +00007FA12A23AC90 30 stub<5860> AllocateTemporaryEntryPoints +00007FA12A23ACC0 48 stub<5861> AllocateTemporaryEntryPoints +00007FA12A23C000 4f8 stub<5862> AllocateTemporaryEntryPoints +00007FA12A23C4F8 30 stub<5863> AllocateTemporaryEntryPoints +00007FA12A23C528 78 stub<5864> AllocateTemporaryEntryPoints +00007FA12A23C5A0 a8 stub<5865> AllocateTemporaryEntryPoints +00007FA12A23C648 18 stub<5866> AllocateTemporaryEntryPoints +00007FA12A23C660 18 stub<5867> AllocateTemporaryEntryPoints +00007FA12A23C678 18 stub<5868> AllocateTemporaryEntryPoints +00007FA12A23C690 48 stub<5869> AllocateTemporaryEntryPoints +00007FA12A23C6D8 240 stub<5870> AllocateTemporaryEntryPoints +00007FA12A23C918 240 stub<5871> AllocateTemporaryEntryPoints +00007FA12A23CB58 48 stub<5872> AllocateTemporaryEntryPoints +00007FA12A23CBA0 228 stub<5873> AllocateTemporaryEntryPoints +00007FA12A23CDC8 228 stub<5874> AllocateTemporaryEntryPoints +00007FA12A23E000 48 stub<5875> AllocateTemporaryEntryPoints +00007FA12A23E048 210 stub<5876> AllocateTemporaryEntryPoints +00007FA12A23E258 210 stub<5877> AllocateTemporaryEntryPoints +00007FA12A23E468 48 stub<5878> AllocateTemporaryEntryPoints +00007FA12A23E4B0 1f8 stub<5879> AllocateTemporaryEntryPoints +00007FA12A23E6A8 1f8 stub<5880> AllocateTemporaryEntryPoints +00007FA12A23E8A0 48 stub<5881> AllocateTemporaryEntryPoints +00007FA12A23E8E8 1e0 stub<5882> AllocateTemporaryEntryPoints +00007FA12A23EAC8 1e0 stub<5883> AllocateTemporaryEntryPoints +00007FA12A23ECA8 48 stub<5884> AllocateTemporaryEntryPoints +00007FA12A23ECF0 1c8 stub<5885> AllocateTemporaryEntryPoints +00007FA12A250000 1c8 stub<5886> AllocateTemporaryEntryPoints +00007FA12A2501C8 48 stub<5887> AllocateTemporaryEntryPoints +00007FA12A250210 1b0 stub<5888> AllocateTemporaryEntryPoints +00007FA12A2503C0 48 stub<5889> AllocateTemporaryEntryPoints +00007FA12A250408 198 stub<5890> AllocateTemporaryEntryPoints +00007FA12A2505A0 198 stub<5891> AllocateTemporaryEntryPoints +00007FA12A250738 48 stub<5892> AllocateTemporaryEntryPoints +00007FA12A250780 90 stub<5893> AllocateTemporaryEntryPoints +00007FA12A250810 30 stub<5894> AllocateTemporaryEntryPoints +00007FA12A250840 48 stub<5895> AllocateTemporaryEntryPoints +00007FA12A250888 78 stub<5896> AllocateTemporaryEntryPoints +00007FA12A250900 48 stub<5897> AllocateTemporaryEntryPoints +00007FA12A250948 78 stub<5898> AllocateTemporaryEntryPoints +00007FA12A2509C0 48 stub<5899> AllocateTemporaryEntryPoints +00007FA12A250A08 78 stub<5900> AllocateTemporaryEntryPoints +00007FA12A250A80 48 stub<5901> AllocateTemporaryEntryPoints +00007FA12A250AC8 60 stub<5902> AllocateTemporaryEntryPoints +00007FA1285214C0 17c2 object [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.DynamicGenericResolverGetFormatterHelper::GetFormatter(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A250B28 48 stub<5903> AllocateTemporaryEntryPoints +00007FA128522CC0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ArrayFormatter`1[System.__Canon]::.ctor()[QuickJitted] +00007FA128522D00 85 uint8[] [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.InternalMemoryPool::GetBuffer()[QuickJitted] +00007FA1277BFF20 18 stub<5904> GenerateLookupStub +00007FA12A250B70 18 stub<5905> AllocateTemporaryEntryPoints +00007FA12A250B88 30 stub<5906> AllocateTemporaryEntryPoints +00007FA128522DA0 1fc instance int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.ArrayFormatter`1[System.__Canon]::Serialize(uint8[]&,int32,!0[],class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12A250BB8 18 stub<5907> AllocateTemporaryEntryPoints +00007FA12A250BD0 18 stub<5908> AllocateTemporaryEntryPoints +00007FA12A250BE8 18 stub<5909> AllocateTemporaryEntryPoints +00007FA12A250C00 18 stub<5910> AllocateTemporaryEntryPoints +00007FA12A250C18 18 stub<5911> AllocateTemporaryEntryPoints +00007FA12A250C30 18 stub<5912> AllocateTemporaryEntryPoints +00007FA12A250C48 18 stub<5913> AllocateTemporaryEntryPoints +00007FA128522FC0 49 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteArrayHeader(uint8[]&,int32,int32)[QuickJitted] +00007FA12A250C60 18 stub<5914> AllocateTemporaryEntryPoints +00007FA12A250C78 18 stub<5915> AllocateTemporaryEntryPoints +00007FA12A250C90 18 stub<5916> AllocateTemporaryEntryPoints +00007FA12A250CA8 18 stub<5917> AllocateTemporaryEntryPoints +00007FA12A250CC0 18 stub<5918> AllocateTemporaryEntryPoints +00007FA12A250CD8 18 stub<5919> AllocateTemporaryEntryPoints +00007FA12A250CF0 18 stub<5920> AllocateTemporaryEntryPoints +00007FA12A250D08 18 stub<5921> AllocateTemporaryEntryPoints +00007FA12A250D20 18 stub<5922> AllocateTemporaryEntryPoints +00007FA12A250D38 18 stub<5923> AllocateTemporaryEntryPoints +00007FA12A250D50 18 stub<5924> AllocateTemporaryEntryPoints +00007FA12A250D68 18 stub<5925> AllocateTemporaryEntryPoints +00007FA12A250D80 18 stub<5926> AllocateTemporaryEntryPoints +00007FA12A250D98 18 stub<5927> AllocateTemporaryEntryPoints +00007FA12A250DB0 18 stub<5928> AllocateTemporaryEntryPoints +00007FA12A250DC8 18 stub<5929> AllocateTemporaryEntryPoints +00007FA12A250DE0 18 stub<5930> AllocateTemporaryEntryPoints +00007FA12A250DF8 18 stub<5931> AllocateTemporaryEntryPoints +00007FA12A250E10 18 stub<5932> AllocateTemporaryEntryPoints +00007FA12A250E28 18 stub<5933> AllocateTemporaryEntryPoints +00007FA12A250E40 18 stub<5934> AllocateTemporaryEntryPoints +00007FA12A250E58 48 stub<5935> AllocateTemporaryEntryPoints +00007FA12A250EA0 48 stub<5936> AllocateTemporaryEntryPoints +00007FA12A250EE8 48 stub<5937> AllocateTemporaryEntryPoints +00007FA12A250F30 48 stub<5938> AllocateTemporaryEntryPoints +00007FA12A250F78 48 stub<5939> AllocateTemporaryEntryPoints +00007FA12A252000 48 stub<5940> AllocateTemporaryEntryPoints +00007FA12A252048 48 stub<5941> AllocateTemporaryEntryPoints +00007FA12A252090 48 stub<5942> AllocateTemporaryEntryPoints +00007FA12A2520D8 48 stub<5943> AllocateTemporaryEntryPoints +00007FA12A252120 48 stub<5944> AllocateTemporaryEntryPoints +00007FA12A252168 48 stub<5945> AllocateTemporaryEntryPoints +00007FA12A2521B0 48 stub<5946> AllocateTemporaryEntryPoints +00007FA12A2521F8 48 stub<5947> AllocateTemporaryEntryPoints +00007FA12A252240 48 stub<5948> AllocateTemporaryEntryPoints +00007FA12A252288 48 stub<5949> AllocateTemporaryEntryPoints +00007FA12A2522D0 48 stub<5950> AllocateTemporaryEntryPoints +00007FA12A252318 48 stub<5951> AllocateTemporaryEntryPoints +00007FA12A252360 48 stub<5952> AllocateTemporaryEntryPoints +00007FA12A2523A8 48 stub<5953> AllocateTemporaryEntryPoints +00007FA12A2523F0 48 stub<5954> AllocateTemporaryEntryPoints +00007FA12A252438 48 stub<5955> AllocateTemporaryEntryPoints +00007FA12A252480 48 stub<5956> AllocateTemporaryEntryPoints +00007FA12A2524C8 48 stub<5957> AllocateTemporaryEntryPoints +00007FA12A252510 48 stub<5958> AllocateTemporaryEntryPoints +00007FA12A252558 48 stub<5959> AllocateTemporaryEntryPoints +00007FA12A2525A0 48 stub<5960> AllocateTemporaryEntryPoints +00007FA12A2525E8 48 stub<5961> AllocateTemporaryEntryPoints +00007FA12A252630 48 stub<5962> AllocateTemporaryEntryPoints +00007FA12A252678 48 stub<5963> AllocateTemporaryEntryPoints +00007FA12A2526C0 48 stub<5964> AllocateTemporaryEntryPoints +00007FA12A252708 48 stub<5965> AllocateTemporaryEntryPoints +00007FA12A252750 48 stub<5966> AllocateTemporaryEntryPoints +00007FA12A252798 48 stub<5967> AllocateTemporaryEntryPoints +00007FA12A2527E0 48 stub<5968> AllocateTemporaryEntryPoints +00007FA12A252828 48 stub<5969> AllocateTemporaryEntryPoints +00007FA12A252870 48 stub<5970> AllocateTemporaryEntryPoints +00007FA12A2528B8 48 stub<5971> AllocateTemporaryEntryPoints +00007FA12A252900 48 stub<5972> AllocateTemporaryEntryPoints +00007FA12A252948 48 stub<5973> AllocateTemporaryEntryPoints +00007FA12A252990 48 stub<5974> AllocateTemporaryEntryPoints +00007FA12A2529D8 48 stub<5975> AllocateTemporaryEntryPoints +00007FA12A252A20 48 stub<5976> AllocateTemporaryEntryPoints +00007FA12A252A68 48 stub<5977> AllocateTemporaryEntryPoints +00007FA12A252AB0 48 stub<5978> AllocateTemporaryEntryPoints +00007FA12A252AF8 48 stub<5979> AllocateTemporaryEntryPoints +00007FA12A252B40 48 stub<5980> AllocateTemporaryEntryPoints +00007FA12A252B88 48 stub<5981> AllocateTemporaryEntryPoints +00007FA12A252BD0 48 stub<5982> AllocateTemporaryEntryPoints +00007FA12A252C18 48 stub<5983> AllocateTemporaryEntryPoints +00007FA12A252C60 48 stub<5984> AllocateTemporaryEntryPoints +00007FA12A252CA8 48 stub<5985> AllocateTemporaryEntryPoints +00007FA12A252CF0 48 stub<5986> AllocateTemporaryEntryPoints +00007FA12A252D38 48 stub<5987> AllocateTemporaryEntryPoints +00007FA12A252D80 48 stub<5988> AllocateTemporaryEntryPoints +00007FA12A252DC8 48 stub<5989> AllocateTemporaryEntryPoints +00007FA12A252E10 48 stub<5990> AllocateTemporaryEntryPoints +00007FA12A252E58 48 stub<5991> AllocateTemporaryEntryPoints +00007FA12A252EA0 48 stub<5992> AllocateTemporaryEntryPoints +00007FA12A252EE8 48 stub<5993> AllocateTemporaryEntryPoints +00007FA12A252F30 48 stub<5994> AllocateTemporaryEntryPoints +00007FA12A252F78 48 stub<5995> AllocateTemporaryEntryPoints +00007FA12A254000 48 stub<5996> AllocateTemporaryEntryPoints +00007FA12A254048 48 stub<5997> AllocateTemporaryEntryPoints +00007FA12A254090 48 stub<5998> AllocateTemporaryEntryPoints +00007FA12A2540D8 48 stub<5999> AllocateTemporaryEntryPoints +00007FA12A254120 48 stub<6000> AllocateTemporaryEntryPoints +00007FA12A254168 48 stub<6001> AllocateTemporaryEntryPoints +00007FA12A2541B0 48 stub<6002> AllocateTemporaryEntryPoints +00007FA12A2541F8 48 stub<6003> AllocateTemporaryEntryPoints +00007FA12A254240 48 stub<6004> AllocateTemporaryEntryPoints +00007FA12A254288 48 stub<6005> AllocateTemporaryEntryPoints +00007FA12A2542D0 48 stub<6006> AllocateTemporaryEntryPoints +00007FA12A254318 48 stub<6007> AllocateTemporaryEntryPoints +00007FA12A254360 48 stub<6008> AllocateTemporaryEntryPoints +00007FA12A2543A8 48 stub<6009> AllocateTemporaryEntryPoints +00007FA12A2543F0 48 stub<6010> AllocateTemporaryEntryPoints +00007FA12A254438 48 stub<6011> AllocateTemporaryEntryPoints +00007FA12A254480 48 stub<6012> AllocateTemporaryEntryPoints +00007FA12A2544C8 48 stub<6013> AllocateTemporaryEntryPoints +00007FA12A254510 48 stub<6014> AllocateTemporaryEntryPoints +00007FA12A254558 48 stub<6015> AllocateTemporaryEntryPoints +00007FA12A2545A0 48 stub<6016> AllocateTemporaryEntryPoints +00007FA12A2545E8 48 stub<6017> AllocateTemporaryEntryPoints +00007FA12A254630 48 stub<6018> AllocateTemporaryEntryPoints +00007FA12A254678 48 stub<6019> AllocateTemporaryEntryPoints +00007FA12A2546C0 48 stub<6020> AllocateTemporaryEntryPoints +00007FA12A254708 48 stub<6021> AllocateTemporaryEntryPoints +00007FA12A254750 48 stub<6022> AllocateTemporaryEntryPoints +00007FA12A254798 48 stub<6023> AllocateTemporaryEntryPoints +00007FA12A2547E0 48 stub<6024> AllocateTemporaryEntryPoints +00007FA12A254828 48 stub<6025> AllocateTemporaryEntryPoints +00007FA12A254870 48 stub<6026> AllocateTemporaryEntryPoints +00007FA12A2548B8 48 stub<6027> AllocateTemporaryEntryPoints +00007FA12A254900 48 stub<6028> AllocateTemporaryEntryPoints +00007FA12A254948 48 stub<6029> AllocateTemporaryEntryPoints +00007FA12A254990 48 stub<6030> AllocateTemporaryEntryPoints +00007FA12A2549D8 48 stub<6031> AllocateTemporaryEntryPoints +00007FA12A254A20 48 stub<6032> AllocateTemporaryEntryPoints +00007FA12A254A68 48 stub<6033> AllocateTemporaryEntryPoints +00007FA12A254AB0 48 stub<6034> AllocateTemporaryEntryPoints +00007FA12A254AF8 48 stub<6035> AllocateTemporaryEntryPoints +00007FA12A254B40 48 stub<6036> AllocateTemporaryEntryPoints +00007FA12A254B88 48 stub<6037> AllocateTemporaryEntryPoints +00007FA12A254BD0 48 stub<6038> AllocateTemporaryEntryPoints +00007FA12A254C18 48 stub<6039> AllocateTemporaryEntryPoints +00007FA12A254C60 48 stub<6040> AllocateTemporaryEntryPoints +00007FA12A254CA8 48 stub<6041> AllocateTemporaryEntryPoints +00007FA12A254CF0 48 stub<6042> AllocateTemporaryEntryPoints +00007FA12A254D38 48 stub<6043> AllocateTemporaryEntryPoints +00007FA12A254D80 48 stub<6044> AllocateTemporaryEntryPoints +00007FA12A254DC8 48 stub<6045> AllocateTemporaryEntryPoints +00007FA12A254E10 48 stub<6046> AllocateTemporaryEntryPoints +00007FA12A254E58 48 stub<6047> AllocateTemporaryEntryPoints +00007FA12A254EA0 48 stub<6048> AllocateTemporaryEntryPoints +00007FA12A254EE8 48 stub<6049> AllocateTemporaryEntryPoints +00007FA12A254F30 48 stub<6050> AllocateTemporaryEntryPoints +00007FA12A254F78 48 stub<6051> AllocateTemporaryEntryPoints +00007FA12A256000 48 stub<6052> AllocateTemporaryEntryPoints +00007FA12A256048 48 stub<6053> AllocateTemporaryEntryPoints +00007FA12A256090 48 stub<6054> AllocateTemporaryEntryPoints +00007FA12A2560D8 48 stub<6055> AllocateTemporaryEntryPoints +00007FA12A256120 48 stub<6056> AllocateTemporaryEntryPoints +00007FA12A256168 48 stub<6057> AllocateTemporaryEntryPoints +00007FA12A2561B0 48 stub<6058> AllocateTemporaryEntryPoints +00007FA12A2561F8 48 stub<6059> AllocateTemporaryEntryPoints +00007FA12A256240 48 stub<6060> AllocateTemporaryEntryPoints +00007FA12A256288 48 stub<6061> AllocateTemporaryEntryPoints +00007FA12A2562D0 48 stub<6062> AllocateTemporaryEntryPoints +00007FA12A256318 48 stub<6063> AllocateTemporaryEntryPoints +00007FA12A256360 48 stub<6064> AllocateTemporaryEntryPoints +00007FA12A2563A8 48 stub<6065> AllocateTemporaryEntryPoints +00007FA12A2563F0 48 stub<6066> AllocateTemporaryEntryPoints +00007FA12A256438 48 stub<6067> AllocateTemporaryEntryPoints +00007FA12A256480 48 stub<6068> AllocateTemporaryEntryPoints +00007FA12A2564C8 48 stub<6069> AllocateTemporaryEntryPoints +00007FA12A256510 48 stub<6070> AllocateTemporaryEntryPoints +00007FA12A256558 48 stub<6071> AllocateTemporaryEntryPoints +00007FA12A2565A0 48 stub<6072> AllocateTemporaryEntryPoints +00007FA12A2565E8 48 stub<6073> AllocateTemporaryEntryPoints +00007FA12A256630 48 stub<6074> AllocateTemporaryEntryPoints +00007FA12A256678 48 stub<6075> AllocateTemporaryEntryPoints +00007FA12A2566C0 48 stub<6076> AllocateTemporaryEntryPoints +00007FA12A256708 48 stub<6077> AllocateTemporaryEntryPoints +00007FA12A256750 48 stub<6078> AllocateTemporaryEntryPoints +00007FA12A256798 48 stub<6079> AllocateTemporaryEntryPoints +00007FA12A2567E0 48 stub<6080> AllocateTemporaryEntryPoints +00007FA12A256828 48 stub<6081> AllocateTemporaryEntryPoints +00007FA12A256870 48 stub<6082> AllocateTemporaryEntryPoints +00007FA12A2568B8 48 stub<6083> AllocateTemporaryEntryPoints +00007FA12A280020 3b13 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::.cctor()[QuickJitted] +00007FA12A283B50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidMapHeader::.cctor()[QuickJitted] +00007FA12A283BB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidMapHeader::.ctor()[QuickJitted] +00007FA12A283BF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidArrayHeader::.cctor()[QuickJitted] +00007FA12A283C50 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidArrayHeader::.ctor()[QuickJitted] +00007FA12A283C90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidBoolean::.cctor()[QuickJitted] +00007FA12A283CF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidBoolean::.ctor()[QuickJitted] +00007FA12A283D30 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidByte::.cctor()[QuickJitted] +00007FA12A283D90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidByte::.ctor()[QuickJitted] +00007FA12A283DD0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidBytes::.cctor()[QuickJitted] +00007FA12A283E30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidBytes::.ctor()[QuickJitted] +00007FA12A283E70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidBytesSegment::.cctor()[QuickJitted] +00007FA12A283ED0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidBytesSegment::.ctor()[QuickJitted] +00007FA12A283F10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidSByte::.cctor()[QuickJitted] +00007FA12A283F70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidSByte::.ctor()[QuickJitted] +00007FA12A283FB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidSingle::.cctor()[QuickJitted] +00007FA12A284010 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidSingle::.ctor()[QuickJitted] +00007FA12A284050 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidDouble::.cctor()[QuickJitted] +00007FA12A2840B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidDouble::.ctor()[QuickJitted] +00007FA12A2840F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidInt16::.cctor()[QuickJitted] +00007FA12A284150 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidInt16::.ctor()[QuickJitted] +00007FA12A284190 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidInt32::.cctor()[QuickJitted] +00007FA12A2841F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidInt32::.ctor()[QuickJitted] +00007FA12A284230 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidInt64::.cctor()[QuickJitted] +00007FA12A284290 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidInt64::.ctor()[QuickJitted] +00007FA12A2842D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidUInt16::.cctor()[QuickJitted] +00007FA12A284330 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidUInt16::.ctor()[QuickJitted] +00007FA12A284370 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidUInt32::.cctor()[QuickJitted] +00007FA12A2843D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidUInt32::.ctor()[QuickJitted] +00007FA12A284410 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidUInt64::.cctor()[QuickJitted] +00007FA12A284470 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidUInt64::.ctor()[QuickJitted] +00007FA12A2844B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidString::.cctor()[QuickJitted] +00007FA12A284510 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidString::.ctor()[QuickJitted] +00007FA12A284550 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidStringSegment::.cctor()[QuickJitted] +00007FA12A2845B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidStringSegment::.ctor()[QuickJitted] +00007FA12A2845F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidExt::.cctor()[QuickJitted] +00007FA12A284650 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidExt::.ctor()[QuickJitted] +00007FA12A284690 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidExtHeader::.cctor()[QuickJitted] +00007FA12A2846F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidExtHeader::.ctor()[QuickJitted] +00007FA12A284730 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidDateTime::.cctor()[QuickJitted] +00007FA12A284790 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.InvalidDateTime::.ctor()[QuickJitted] +00007FA12A2847D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixSByte::.cctor()[QuickJitted] +00007FA12A284830 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixSByte::.ctor()[QuickJitted] +00007FA12A284870 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeInt16::.cctor()[QuickJitted] +00007FA12A2848D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeInt16::.ctor()[QuickJitted] +00007FA12A284910 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeInt32::.cctor()[QuickJitted] +00007FA12A284970 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeInt32::.ctor()[QuickJitted] +00007FA12A2849B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeInt64::.cctor()[QuickJitted] +00007FA12A284A10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeInt64::.ctor()[QuickJitted] +00007FA12A284A50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeFloat::.cctor()[QuickJitted] +00007FA12A284AB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeFloat::.ctor()[QuickJitted] +00007FA12A284AF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeDouble::.cctor()[QuickJitted] +00007FA12A284B50 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixNegativeDouble::.ctor()[QuickJitted] +00007FA12A284B90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext1::.cctor()[QuickJitted] +00007FA12A284BF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext1::.ctor()[QuickJitted] +00007FA12A284C30 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixByte::.cctor()[QuickJitted] +00007FA12A284C90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixByte::.ctor()[QuickJitted] +00007FA12A284CD0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixInt16::.cctor()[QuickJitted] +00007FA12A284D30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixInt16::.ctor()[QuickJitted] +00007FA12A284D70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixInt32::.cctor()[QuickJitted] +00007FA12A284DD0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixInt32::.ctor()[QuickJitted] +00007FA12A284E10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixInt64::.cctor()[QuickJitted] +00007FA12A284E70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixInt64::.ctor()[QuickJitted] +00007FA12A284EB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixUInt16::.cctor()[QuickJitted] +00007FA12A284F10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixUInt16::.ctor()[QuickJitted] +00007FA12A284F50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixUInt32::.cctor()[QuickJitted] +00007FA12A284FB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixUInt32::.ctor()[QuickJitted] +00007FA12A284FF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixUInt64::.cctor()[QuickJitted] +00007FA12A285050 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixUInt64::.ctor()[QuickJitted] +00007FA12A285090 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixFloat::.cctor()[QuickJitted] +00007FA12A2850F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixFloat::.ctor()[QuickJitted] +00007FA12A285130 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixDouble::.cctor()[QuickJitted] +00007FA12A285190 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixDouble::.ctor()[QuickJitted] +00007FA12A2851D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Byte::.cctor()[QuickJitted] +00007FA12A285230 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Byte::.ctor()[QuickJitted] +00007FA12A285270 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8SByte::.cctor()[QuickJitted] +00007FA12A2852D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8SByte::.ctor()[QuickJitted] +00007FA12A285310 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Int16::.cctor()[QuickJitted] +00007FA12A285370 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Int16::.ctor()[QuickJitted] +00007FA12A2853B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Int16::.cctor()[QuickJitted] +00007FA12A285410 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Int16::.ctor()[QuickJitted] +00007FA12A285450 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Int16::.cctor()[QuickJitted] +00007FA12A2854B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Int16::.ctor()[QuickJitted] +00007FA12A2854F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Int16::.cctor()[QuickJitted] +00007FA12A285550 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Int16::.ctor()[QuickJitted] +00007FA12A285590 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Int32::.cctor()[QuickJitted] +00007FA12A2855F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Int32::.ctor()[QuickJitted] +00007FA12A285630 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Int32::.cctor()[QuickJitted] +00007FA12A285690 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Int32::.ctor()[QuickJitted] +00007FA12A2856D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32Int32::.cctor()[QuickJitted] +00007FA12A285730 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32Int32::.ctor()[QuickJitted] +00007FA12A285770 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Int32::.cctor()[QuickJitted] +00007FA12A2857D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Int32::.ctor()[QuickJitted] +00007FA12A285810 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Int32::.cctor()[QuickJitted] +00007FA12A285870 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Int32::.ctor()[QuickJitted] +00007FA12A2858B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int32Int32::.cctor()[QuickJitted] +00007FA12A285910 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int32Int32::.ctor()[QuickJitted] +00007FA12A285950 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Int64::.cctor()[QuickJitted] +00007FA12A2859B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Int64::.ctor()[QuickJitted] +00007FA12A2859F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Int64::.cctor()[QuickJitted] +00007FA12A285A50 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Int64::.ctor()[QuickJitted] +00007FA12A285A90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32Int64::.cctor()[QuickJitted] +00007FA12A285AF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32Int64::.ctor()[QuickJitted] +00007FA12A285B30 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt64Int64::.cctor()[QuickJitted] +00007FA12A285B90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt64Int64::.ctor()[QuickJitted] +00007FA12A285BD0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Int64::.cctor()[QuickJitted] +00007FA12A285C30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Int64::.ctor()[QuickJitted] +00007FA12A285C70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Int64::.cctor()[QuickJitted] +00007FA12A285CD0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Int64::.ctor()[QuickJitted] +00007FA12A285D10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int32Int64::.cctor()[QuickJitted] +00007FA12A285D70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int32Int64::.ctor()[QuickJitted] +00007FA12A285DB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int64Int64::.cctor()[QuickJitted] +00007FA12A285E10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int64Int64::.ctor()[QuickJitted] +00007FA12A285E50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8UInt16::.cctor()[QuickJitted] +00007FA12A285EB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8UInt16::.ctor()[QuickJitted] +00007FA12A285EF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16UInt16::.cctor()[QuickJitted] +00007FA12A285F50 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16UInt16::.ctor()[QuickJitted] +00007FA12A285F90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8UInt32::.cctor()[QuickJitted] +00007FA12A285FF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8UInt32::.ctor()[QuickJitted] +00007FA12A286030 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16UInt32::.cctor()[QuickJitted] +00007FA12A286090 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16UInt32::.ctor()[QuickJitted] +00007FA12A2860D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32UInt32::.cctor()[QuickJitted] +00007FA12A286130 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32UInt32::.ctor()[QuickJitted] +00007FA12A286170 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8UInt64::.cctor()[QuickJitted] +00007FA12A2861D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8UInt64::.ctor()[QuickJitted] +00007FA12A286210 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16UInt64::.cctor()[QuickJitted] +00007FA12A286270 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16UInt64::.ctor()[QuickJitted] +00007FA12A2862B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32UInt64::.cctor()[QuickJitted] +00007FA12A286310 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32UInt64::.ctor()[QuickJitted] +00007FA12A286350 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt64UInt64::.cctor()[QuickJitted] +00007FA12A2863B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt64UInt64::.ctor()[QuickJitted] +00007FA12A2863F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Float32Single::.cctor()[QuickJitted] +00007FA12A286450 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Float32Single::.ctor()[QuickJitted] +00007FA12A286490 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Single::.cctor()[QuickJitted] +00007FA12A2864F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Single::.ctor()[QuickJitted] +00007FA12A286530 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Single::.cctor()[QuickJitted] +00007FA12A286590 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Single::.ctor()[QuickJitted] +00007FA12A2865D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int32Single::.cctor()[QuickJitted] +00007FA12A286630 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int32Single::.ctor()[QuickJitted] +00007FA12A286670 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int64Single::.cctor()[QuickJitted] +00007FA12A2866D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int64Single::.ctor()[QuickJitted] +00007FA12A286710 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Single::.cctor()[QuickJitted] +00007FA12A286770 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Single::.ctor()[QuickJitted] +00007FA12A2867B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Single::.cctor()[QuickJitted] +00007FA12A286810 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Single::.ctor()[QuickJitted] +00007FA12A286850 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32Single::.cctor()[QuickJitted] +00007FA12A2868B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32Single::.ctor()[QuickJitted] +00007FA12A2868F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt64Single::.cctor()[QuickJitted] +00007FA12A286950 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt64Single::.ctor()[QuickJitted] +00007FA12A286990 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Float32Double::.cctor()[QuickJitted] +00007FA12A2869F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Float32Double::.ctor()[QuickJitted] +00007FA12A286A30 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Float64Double::.cctor()[QuickJitted] +00007FA12A286A90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Float64Double::.ctor()[QuickJitted] +00007FA12A286AD0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Double::.cctor()[QuickJitted] +00007FA12A286B30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int8Double::.ctor()[QuickJitted] +00007FA12A286B70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Double::.cctor()[QuickJitted] +00007FA12A286BD0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int16Double::.ctor()[QuickJitted] +00007FA12A286C10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int32Double::.cctor()[QuickJitted] +00007FA12A286C70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int32Double::.ctor()[QuickJitted] +00007FA12A286CB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int64Double::.cctor()[QuickJitted] +00007FA12A286D10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Int64Double::.ctor()[QuickJitted] +00007FA12A286D50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Double::.cctor()[QuickJitted] +00007FA12A286DB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt8Double::.ctor()[QuickJitted] +00007FA12A286DF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Double::.cctor()[QuickJitted] +00007FA12A286E50 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt16Double::.ctor()[QuickJitted] +00007FA12A286E90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32Double::.cctor()[QuickJitted] +00007FA12A286EF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt32Double::.ctor()[QuickJitted] +00007FA12A286F30 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt64Double::.cctor()[QuickJitted] +00007FA12A286F90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.UInt64Double::.ctor()[QuickJitted] +00007FA12A286FD0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext2::.cctor()[QuickJitted] +00007FA12A287030 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext2::.ctor()[QuickJitted] +00007FA12A287070 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext3::.cctor()[QuickJitted] +00007FA12A2870D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext3::.ctor()[QuickJitted] +00007FA12A287110 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext5::.cctor()[QuickJitted] +00007FA12A287170 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext5::.ctor()[QuickJitted] +00007FA12A2871B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext9::.cctor()[QuickJitted] +00007FA12A287210 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext9::.ctor()[QuickJitted] +00007FA12A287250 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixMapHeader::.cctor()[QuickJitted] +00007FA12A2872B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixMapHeader::.ctor()[QuickJitted] +00007FA12A2872F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Map16Header::.cctor()[QuickJitted] +00007FA12A287350 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Map16Header::.ctor()[QuickJitted] +00007FA12A287390 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Map32Header::.cctor()[QuickJitted] +00007FA12A2873F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Map32Header::.ctor()[QuickJitted] +00007FA12A287430 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextMap::.cctor()[QuickJitted] +00007FA12A287490 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextMap::.ctor()[QuickJitted] +00007FA12A2874D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixArrayHeader::.cctor()[QuickJitted] +00007FA12A287530 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixArrayHeader::.ctor()[QuickJitted] +00007FA12A287570 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Array16Header::.cctor()[QuickJitted] +00007FA12A2875D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Array16Header::.ctor()[QuickJitted] +00007FA12A287610 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Array32Header::.cctor()[QuickJitted] +00007FA12A287670 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Array32Header::.ctor()[QuickJitted] +00007FA12A2876B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextArray::.cctor()[QuickJitted] +00007FA12A287710 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextArray::.ctor()[QuickJitted] +00007FA12A287750 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixString::.cctor()[QuickJitted] +00007FA12A2877B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixString::.ctor()[QuickJitted] +00007FA12A2877F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixStringSegment::.cctor()[QuickJitted] +00007FA12A287850 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixStringSegment::.ctor()[QuickJitted] +00007FA12A287890 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextFixStr::.cctor()[QuickJitted] +00007FA12A2878F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextFixStr::.ctor()[QuickJitted] +00007FA12A287930 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str8String::.cctor()[QuickJitted] +00007FA12A287990 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str8String::.ctor()[QuickJitted] +00007FA12A2879D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str16String::.cctor()[QuickJitted] +00007FA12A287A30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str16String::.ctor()[QuickJitted] +00007FA12A287A70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str32String::.cctor()[QuickJitted] +00007FA12A287AD0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str32String::.ctor()[QuickJitted] +00007FA12A287B10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str8StringSegment::.cctor()[QuickJitted] +00007FA12A287B70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str8StringSegment::.ctor()[QuickJitted] +00007FA12A287BB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str16StringSegment::.cctor()[QuickJitted] +00007FA12A287C10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str16StringSegment::.ctor()[QuickJitted] +00007FA12A287C50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str32StringSegment::.cctor()[QuickJitted] +00007FA12A287CB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Str32StringSegment::.ctor()[QuickJitted] +00007FA12A287CF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextStr8::.cctor()[QuickJitted] +00007FA12A287D50 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextStr8::.ctor()[QuickJitted] +00007FA12A287D90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextStr16::.cctor()[QuickJitted] +00007FA12A287DF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextStr16::.ctor()[QuickJitted] +00007FA12A287E30 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextStr32::.cctor()[QuickJitted] +00007FA12A287E90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextStr32::.ctor()[QuickJitted] +00007FA12A287ED0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.NilString::.cctor()[QuickJitted] +00007FA12A287F30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.NilString::.ctor()[QuickJitted] +00007FA12A287F70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.NilStringSegment::.cctor()[QuickJitted] +00007FA12A287FD0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.NilStringSegment::.ctor()[QuickJitted] +00007FA12A288010 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.NilBytes::.cctor()[QuickJitted] +00007FA12A288070 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.NilBytes::.ctor()[QuickJitted] +00007FA12A2880B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.NilBytesSegment::.cctor()[QuickJitted] +00007FA12A288110 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.NilBytesSegment::.ctor()[QuickJitted] +00007FA12A288150 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.False::.cctor()[QuickJitted] +00007FA12A2881B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.False::.ctor()[QuickJitted] +00007FA12A2881F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.True::.cctor()[QuickJitted] +00007FA12A288250 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.True::.ctor()[QuickJitted] +00007FA12A288290 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin8Bytes::.cctor()[QuickJitted] +00007FA12A2882F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin8Bytes::.ctor()[QuickJitted] +00007FA12A288330 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin16Bytes::.cctor()[QuickJitted] +00007FA12A288390 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin16Bytes::.ctor()[QuickJitted] +00007FA12A2883D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin32Bytes::.cctor()[QuickJitted] +00007FA12A288430 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin32Bytes::.ctor()[QuickJitted] +00007FA12A288470 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin8BytesSegment::.cctor()[QuickJitted] +00007FA12A2884D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin8BytesSegment::.ctor()[QuickJitted] +00007FA12A288510 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin16BytesSegment::.cctor()[QuickJitted] +00007FA12A288570 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin16BytesSegment::.ctor()[QuickJitted] +00007FA12A2885B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin32BytesSegment::.cctor()[QuickJitted] +00007FA12A288610 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Bin32BytesSegment::.ctor()[QuickJitted] +00007FA12A288650 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextBin8::.cctor()[QuickJitted] +00007FA12A2886B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextBin8::.ctor()[QuickJitted] +00007FA12A2886F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextBin16::.cctor()[QuickJitted] +00007FA12A288750 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextBin16::.ctor()[QuickJitted] +00007FA12A288790 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextBin32::.cctor()[QuickJitted] +00007FA12A2887F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextBin32::.ctor()[QuickJitted] +00007FA12A288830 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt1::.cctor()[QuickJitted] +00007FA12A288890 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt1::.ctor()[QuickJitted] +00007FA12A2888D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt2::.cctor()[QuickJitted] +00007FA12A288930 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt2::.ctor()[QuickJitted] +00007FA12A288970 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt4::.cctor()[QuickJitted] +00007FA12A2889D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt4::.ctor()[QuickJitted] +00007FA12A288A10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt8::.cctor()[QuickJitted] +00007FA12A288A70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt8::.ctor()[QuickJitted] +00007FA12A288AB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt16::.cctor()[QuickJitted] +00007FA12A288B10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt16::.ctor()[QuickJitted] +00007FA12A288B50 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext8::.cctor()[QuickJitted] +00007FA12A288BB0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext8::.ctor()[QuickJitted] +00007FA12A288BF0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext16::.cctor()[QuickJitted] +00007FA12A288C50 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext16::.ctor()[QuickJitted] +00007FA12A288C90 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext32::.cctor()[QuickJitted] +00007FA12A288CF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext32::.ctor()[QuickJitted] +00007FA12A288D30 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt1Header::.cctor()[QuickJitted] +00007FA12A288D90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt1Header::.ctor()[QuickJitted] +00007FA12A288DD0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt2Header::.cctor()[QuickJitted] +00007FA12A288E30 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt2Header::.ctor()[QuickJitted] +00007FA12A288E70 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt4Header::.cctor()[QuickJitted] +00007FA12A288ED0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt4Header::.ctor()[QuickJitted] +00007FA12A288F10 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt8Header::.cctor()[QuickJitted] +00007FA12A288F70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt8Header::.ctor()[QuickJitted] +00007FA12A288FB0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt16Header::.cctor()[QuickJitted] +00007FA12A289010 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt16Header::.ctor()[QuickJitted] +00007FA12A289050 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext8Header::.cctor()[QuickJitted] +00007FA12A2890B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext8Header::.ctor()[QuickJitted] +00007FA12A2890F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext16Header::.cctor()[QuickJitted] +00007FA12A289150 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext16Header::.ctor()[QuickJitted] +00007FA12A289190 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext32Header::.cctor()[QuickJitted] +00007FA12A2891F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext32Header::.ctor()[QuickJitted] +00007FA12A289230 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext4::.cctor()[QuickJitted] +00007FA12A289290 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext4::.ctor()[QuickJitted] +00007FA12A2892D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext6::.cctor()[QuickJitted] +00007FA12A289330 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext6::.ctor()[QuickJitted] +00007FA12A289370 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext10::.cctor()[QuickJitted] +00007FA12A2893D0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext10::.ctor()[QuickJitted] +00007FA12A289410 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext18::.cctor()[QuickJitted] +00007FA12A289470 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNext18::.ctor()[QuickJitted] +00007FA12A2894B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextExt8::.cctor()[QuickJitted] +00007FA12A289510 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextExt8::.ctor()[QuickJitted] +00007FA12A289550 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextExt16::.cctor()[QuickJitted] +00007FA12A2895B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextExt16::.ctor()[QuickJitted] +00007FA12A2895F0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextExt32::.cctor()[QuickJitted] +00007FA12A289650 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.ReadNextExt32::.ctor()[QuickJitted] +00007FA12A289690 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt4DateTime::.cctor()[QuickJitted] +00007FA12A2896F0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt4DateTime::.ctor()[QuickJitted] +00007FA12A289730 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt8DateTime::.cctor()[QuickJitted] +00007FA12A289790 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.FixExt8DateTime::.ctor()[QuickJitted] +00007FA12A2897D0 47 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext8DateTime::.cctor()[QuickJitted] +00007FA12A289830 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Decoders.Ext8DateTime::.ctor()[QuickJitted] +00007FA12A289870 1b4 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteArrayHeader(uint8[]&,int32,uint32)[QuickJitted] +00007FA12A289A40 125 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::EnsureCapacity(uint8[]&,int32,int32)[QuickJitted] +00007FA12A289B80 15c uint8[] [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::FastCloneWithResize(uint8[],int32)[QuickJitted] +00007FA12A289D00 69 class Datadog.Trace.Agent.MovingAverageKeepRateCalculator [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::CreateDefaultKeepRateCalculator()[QuickJitted] +00007FA12A256900 18 stub<6084> AllocateTemporaryEntryPoints +00007FA12A289D80 54 void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::.cctor()[QuickJitted] +00007FA12A256918 168 stub<6085> AllocateTemporaryEntryPoints +00007FA12A256A80 168 stub<6086> AllocateTemporaryEntryPoints +00007FA12A256BE8 48 stub<6087> AllocateTemporaryEntryPoints +00007FA12A289E00 250 instance void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::.ctor(int32,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12A258000 540 stub<6088> AllocateTemporaryEntryPoints +00007FA12A28A070 53 instance void [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.Boolean]::.ctor()[QuickJitted] +00007FA12A28A0E0 47 void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator+<>c::.cctor()[QuickJitted] +00007FA12A28A140 1f instance void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator+<>c::.ctor()[QuickJitted] +00007FA12A258540 4f8 stub<6089> AllocateTemporaryEntryPoints +00007FA12A258A38 30 stub<6090> AllocateTemporaryEntryPoints +00007FA12A258A68 258 stub<6091> AllocateTemporaryEntryPoints +00007FA12A258CC0 60 stub<6092> AllocateTemporaryEntryPoints +00007FA12A258D20 18 stub<6093> AllocateTemporaryEntryPoints +00007FA12A258D38 18 stub<6094> AllocateTemporaryEntryPoints +00007FA12A25A000 2d0 stub<6095> AllocateTemporaryEntryPoints +00007FA12A25A2D0 48 stub<6096> AllocateTemporaryEntryPoints +00007FA12A25A318 150 stub<6097> AllocateTemporaryEntryPoints +00007FA12A25A468 60 stub<6098> AllocateTemporaryEntryPoints +00007FA12A28A180 5f2 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::.ctor(class Datadog.Trace.Agent.IApi,class Datadog.Trace.Agent.IStatsAggregator,class Datadog.Trace.Vendors.StatsdClient.IDogStatsd,class Datadog.Trace.Sampling.ISpanSampler,class Datadog.Trace.Agent.IKeepRateCalculator,bool,int32,int32)[QuickJitted] +00007FA12A25A4C8 a8 stub<6099> AllocateTemporaryEntryPoints +00007FA12A28A790 a9 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::.ctor()[QuickJitted] +00007FA12A25A570 60 stub<6100> AllocateTemporaryEntryPoints +00007FA12A28A850 ba instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::.ctor(int32)[QuickJitted] +00007FA12A28A920 47 void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanFormatterResolver::.cctor()[QuickJitted] +00007FA12A25A5D0 138 stub<6101> AllocateTemporaryEntryPoints +00007FA12A25A708 d8 stub<6102> AllocateTemporaryEntryPoints +00007FA12A25A7E0 30 stub<6103> AllocateTemporaryEntryPoints +00007FA12A28A980 4d instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanFormatterResolver::.ctor()[QuickJitted] +00007FA12A28A9F0 47 void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::.cctor()[QuickJitted] +00007FA12A25A810 18 stub<6104> AllocateTemporaryEntryPoints +00007FA12A25A828 18 stub<6105> AllocateTemporaryEntryPoints +00007FA12A25A840 78 stub<6106> AllocateTemporaryEntryPoints +00007FA12A28AA50 8f2 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::.ctor()[QuickJitted] +00007FA12A28B380 49 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.StringEncoding::.cctor()[QuickJitted] +00007FA1277BFF40 18 stub<6107> GenerateLookupStub +00007FA12A28B3E0 32 string [Datadog.Trace] Datadog.Trace.Tracer::get_RuntimeId()[QuickJitted] +00007FA12A28B430 27 class Datadog.Trace.ClrProfiler.IDistributedTracer [Datadog.Trace] Datadog.Trace.ClrProfiler.DistributedTracer::get_Instance()[QuickJitted] +00007FA12A25A8B8 30 stub<6108> AllocateTemporaryEntryPoints +00007FA12A25A8E8 78 stub<6109> AllocateTemporaryEntryPoints +00007FA12A25A960 f0 stub<6110> AllocateTemporaryEntryPoints +00007FA12A25AA50 18 stub<6111> AllocateTemporaryEntryPoints +00007FA12A25AA68 18 stub<6112> AllocateTemporaryEntryPoints +00007FA12A25AA80 18 stub<6113> AllocateTemporaryEntryPoints +00007FA12A25AA98 48 stub<6114> AllocateTemporaryEntryPoints +00007FA12A25AAE0 f0 stub<6115> AllocateTemporaryEntryPoints +00007FA12A25ABD0 168 stub<6116> AllocateTemporaryEntryPoints +00007FA12A28B470 23f void [Datadog.Trace] Datadog.Trace.ClrProfiler.DistributedTracer::.cctor()[QuickJitted] +00007FA12A28B6E0 21 object [Datadog.Trace] Datadog.Trace.ClrProfiler.DistributedTracer::GetDistributedTracer()[QuickJitted] +00007FA12A28B720 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::.ctor()[QuickJitted] +00007FA12A28B760 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CommonTracer::.ctor()[QuickJitted] +00007FA12A28B7A0 3c void [Datadog.Trace] Datadog.Trace.ClrProfiler.DistributedTracer::set_Instance(class Datadog.Trace.ClrProfiler.IDistributedTracer)[QuickJitted] +00007FA12A28B7F0 1f instance string [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.GetRuntimeId()[QuickJitted] +00007FA12A28B830 1b instance string [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::GetAutomaticRuntimeId()[QuickJitted] +00007FA12A25AD38 48 stub<6117> AllocateTemporaryEntryPoints +00007FA12A25AD80 18 stub<6118> AllocateTemporaryEntryPoints +00007FA12A28B860 11e string [Datadog.Trace] Datadog.Trace.Util.RuntimeId::Get()[QuickJitted] +00007FA12A28B9A0 4f void [Datadog.Trace] Datadog.Trace.Util.RuntimeId::.cctor()[QuickJitted] +00007FA12A28BA10 47 void [Datadog.Trace] Datadog.Trace.Util.RuntimeId+<>c::.cctor()[QuickJitted] +00007FA12A28BA70 1f instance void [Datadog.Trace] Datadog.Trace.Util.RuntimeId+<>c::.ctor()[QuickJitted] +00007FA12A25AD98 18 stub<6119> AllocateTemporaryEntryPoints +00007FA12A28BAB0 1b instance string [Datadog.Trace] Datadog.Trace.Util.RuntimeId+<>c::b__2_0()[QuickJitted] +00007FA12A25ADB0 60 stub<6120> AllocateTemporaryEntryPoints +00007FA12A28BAE0 122 string [Datadog.Trace] Datadog.Trace.Util.RuntimeId::GetImpl()[QuickJitted] +00007FA12A28BC20 14d bool [Datadog.Trace] Datadog.Trace.NativeLoader::TryGetRuntimeIdFromNative(string&)[QuickJitted] +00007FA12A28BD90 85 bool [Datadog.Trace] Datadog.Trace.NativeLoader::get_IsAvailable()[QuickJitted] +00007FA12A28BE30 1c instance string [Datadog.Trace] Datadog.Trace.FrameworkDescription::get_ProcessArchitecture()[QuickJitted] +00007FA128428720 18 stub<6121> AllocateTemporaryEntryPoints +00007FA12A28BE60 a1 native int [Datadog.Trace] Datadog.Trace.NativeLoader::GetRuntimeId()[QuickJitted] +00007FA12A25AE10 18 stub<6122> AllocateTemporaryEntryPoints +00007FA12A28BF30 31 uint8[] [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackSerializer::Serialize(!!0)[QuickJitted] +00007FA12A25AE28 18 stub<6123> AllocateTemporaryEntryPoints +00007FA1277BFF60 18 stub<6124> GenerateLookupStub +00007FA12A28BF80 86 uint8[] [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackSerializer::Serialize(!!0,class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12A25AE40 18 stub<6125> AllocateTemporaryEntryPoints +00007FA12A28C020 1f2 class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.FormatterResolverExtensions::GetFormatterWithVerify(class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12A25AE58 18 stub<6126> AllocateTemporaryEntryPoints +00007FA12A25AE70 18 stub<6127> AllocateTemporaryEntryPoints +00007FA12A28C240 35 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.StandardResolver::GetFormatter()[QuickJitted] +00007FA12A28C290 fd void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.StandardResolver+FormatterCache`1[System.Double]::.cctor()[QuickJitted] +00007FA12A25AE88 18 stub<6128> AllocateTemporaryEntryPoints +00007FA12A25AEA0 18 stub<6129> AllocateTemporaryEntryPoints +00007FA12A28C3B0 35 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.StandardResolverCore::GetFormatter()[QuickJitted] +00007FA12A28C400 eb void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Internal.StandardResolverCore+FormatterCache`1[System.Double]::.cctor()[QuickJitted] +00007FA12A25AEB8 18 stub<6130> AllocateTemporaryEntryPoints +00007FA12A25AED0 18 stub<6131> AllocateTemporaryEntryPoints +00007FA12A28C500 35 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.BuiltinResolver::GetFormatter()[QuickJitted] +00007FA12A28C550 6b void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Resolvers.BuiltinResolver+FormatterCache`1[System.Double]::.cctor()[QuickJitted] +00007FA12A28C5D0 3a instance int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.DoubleFormatter::Serialize(uint8[]&,int32,float64,class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12A25AEE8 30 stub<6132> AllocateTemporaryEntryPoints +00007FA12A28C620 2c0 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteDouble(uint8[]&,int32,float64)[QuickJitted] +00007FA12A28C900 32 instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Float64Bits::.ctor(float64)[QuickJitted] +00007FA1277F5F10 18 stub<6133> GenerateResolveStub +00007FA1277C4000 20 stub<6134> GenerateDispatchStub +00007FA12A28C950 27 instance void [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.Boolean]::.ctor(valuetype System.Threading.Tasks.TaskCreationOptions)[QuickJitted] +00007FA12A28C990 61 instance void [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.Boolean]::.ctor(object,valuetype System.Threading.Tasks.TaskCreationOptions)[QuickJitted] +00007FA12A25AF18 18 stub<6135> AllocateTemporaryEntryPoints +00007FA12A28CA10 17d instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::.ctor(int32,class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12A25AF30 18 stub<6136> AllocateTemporaryEntryPoints +00007FA12A25AF48 18 stub<6137> AllocateTemporaryEntryPoints +00007FA12A25AF60 60 stub<6138> AllocateTemporaryEntryPoints +00007FA12A25AFC0 18 stub<6139> AllocateTemporaryEntryPoints +00007FA12A25AFD8 18 stub<6140> AllocateTemporaryEntryPoints +00007FA12A25C000 30 stub<6141> AllocateTemporaryEntryPoints +00007FA12A28CBB0 5b instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::UpdateBucketTaskLoopAsync()[QuickJitted] +00007FA12A25C030 18 stub<6142> AllocateTemporaryEntryPoints +00007FA12A28CC30 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A28CC70 1f8 instance class Datadog.Trace.Vendors.MessagePack.Formatters.IMessagePackFormatter`1 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanFormatterResolver::GetFormatter()[QuickJitted] +00007FA12A28CE90 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A25C048 60 stub<6143> AllocateTemporaryEntryPoints +00007FA12A25C0A8 18 stub<6144> AllocateTemporaryEntryPoints +00007FA12A25C0C0 18 stub<6145> AllocateTemporaryEntryPoints +00007FA12A25C0D8 48 stub<6146> AllocateTemporaryEntryPoints +00007FA12A28CF90 2ab instance void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21::MoveNext()[QuickJitted] +00007FA12A28D270 1c instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.Boolean]::get_Task()[QuickJitted] +00007FA12A28D2A0 47 void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+<>c::.cctor()[QuickJitted] +00007FA12A28D300 20a instance void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::UpdateBucket()[QuickJitted] +00007FA12A28D550 1f instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+<>c::.ctor()[QuickJitted] +00007FA12A25C120 78 stub<6147> AllocateTemporaryEntryPoints +00007FA12A25C198 30 stub<6148> AllocateTemporaryEntryPoints +00007FA12A25C1C8 30 stub<6149> AllocateTemporaryEntryPoints +00007FA12A25C1F8 d8 stub<6150> AllocateTemporaryEntryPoints +00007FA12A28D590 35 instance void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::.ctor()[QuickJitted] +00007FA12A25C2D0 60 stub<6151> AllocateTemporaryEntryPoints +00007FA1277BFF80 18 stub<6152> GenerateLookupStub +00007FA12A25C330 540 stub<6153> AllocateTemporaryEntryPoints +00007FA12A25C870 60 stub<6154> AllocateTemporaryEntryPoints +00007FA12A25C8D0 48 stub<6155> AllocateTemporaryEntryPoints +00007FA12A25C918 60 stub<6156> AllocateTemporaryEntryPoints +00007FA12A25C978 48 stub<6157> AllocateTemporaryEntryPoints +00007FA12A25C9C0 60 stub<6158> AllocateTemporaryEntryPoints +00007FA12A28D9F0 10c class [System.Threading]System.Threading.AsyncLocal`1 [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::CreateScope()[QuickJitted] +00007FA12A25CA20 1e0 stub<6159> AllocateTemporaryEntryPoints +00007FA12A25CC00 48 stub<6160> AllocateTemporaryEntryPoints +00007FA12A25CC48 18 stub<6161> AllocateTemporaryEntryPoints +00007FA12A25CC60 18 stub<6162> AllocateTemporaryEntryPoints +00007FA12A25CC78 18 stub<6163> AllocateTemporaryEntryPoints +00007FA12A25CC90 18 stub<6164> AllocateTemporaryEntryPoints +00007FA12A28DB20 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A25CCA8 18 stub<6165> AllocateTemporaryEntryPoints +00007FA12A28DBC0 103 class Datadog.Trace.ContinuousProfiler.Profiler [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler::get_Instance()[QuickJitted] +00007FA12A25CCC0 60 stub<6166> AllocateTemporaryEntryPoints +00007FA12A25CD20 18 stub<6167> AllocateTemporaryEntryPoints +00007FA12A25CD38 18 stub<6168> AllocateTemporaryEntryPoints +00007FA12A25CD50 18 stub<6169> AllocateTemporaryEntryPoints +00007FA12A28DCE0 47 void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler+<>c::.cctor()[QuickJitted] +00007FA12A25CD68 18 stub<6170> AllocateTemporaryEntryPoints +00007FA12A25CD80 18 stub<6171> AllocateTemporaryEntryPoints +00007FA12A28DD40 1f instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler+<>c::.ctor()[QuickJitted] +00007FA12A25CD98 18 stub<6172> AllocateTemporaryEntryPoints +00007FA12A28DD80 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A28DE20 1b instance class Datadog.Trace.ContinuousProfiler.Profiler [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler+<>c::b__3_0()[QuickJitted] +00007FA12A25E000 540 stub<6173> AllocateTemporaryEntryPoints +00007FA12A25E540 60 stub<6174> AllocateTemporaryEntryPoints +00007FA12A25E5A0 d8 stub<6175> AllocateTemporaryEntryPoints +00007FA12A25E678 c0 stub<6176> AllocateTemporaryEntryPoints +00007FA12A25E738 d8 stub<6177> AllocateTemporaryEntryPoints +00007FA12A25E810 d8 stub<6178> AllocateTemporaryEntryPoints +00007FA12A28DE50 8e class Datadog.Trace.ContinuousProfiler.Profiler [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler::Create()[QuickJitted] +00007FA12A25E8E8 540 stub<6179> AllocateTemporaryEntryPoints +00007FA12A25EE28 d8 stub<6180> AllocateTemporaryEntryPoints +00007FA12A25EF00 d8 stub<6181> AllocateTemporaryEntryPoints +00007FA12A25EFD8 18 stub<6182> AllocateTemporaryEntryPoints +00007FA12A320000 18 stub<6183> AllocateTemporaryEntryPoints +00007FA12A28DF00 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A28E170 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21]::.ctor()[QuickJitted] +00007FA12A320018 18 stub<6184> AllocateTemporaryEntryPoints +00007FA12A320030 18 stub<6185> AllocateTemporaryEntryPoints +00007FA12A320048 18 stub<6186> AllocateTemporaryEntryPoints +00007FA12A320060 18 stub<6187> AllocateTemporaryEntryPoints +00007FA12A28E1B0 1d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A320078 120 stub<6188> AllocateTemporaryEntryPoints +00007FA12A320198 90 stub<6189> AllocateTemporaryEntryPoints +00007FA12A320228 30 stub<6190> AllocateTemporaryEntryPoints +00007FA12A320258 30 stub<6191> AllocateTemporaryEntryPoints +00007FA12A320288 48 stub<6192> AllocateTemporaryEntryPoints +00007FA12A3202D0 60 stub<6193> AllocateTemporaryEntryPoints +00007FA12A320330 18 stub<6194> AllocateTemporaryEntryPoints +00007FA12A28E1F0 64 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::FlushBuffersTaskLoopAsync()[QuickJitted] +00007FA12A320348 18 stub<6195> AllocateTemporaryEntryPoints +00007FA12A28E270 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A28E2B0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A320360 18 stub<6196> AllocateTemporaryEntryPoints +00007FA12A320378 18 stub<6197> AllocateTemporaryEntryPoints +00007FA12A320390 18 stub<6198> AllocateTemporaryEntryPoints +00007FA12A28E3B0 54c instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+d__44::MoveNext()[QuickJitted] +00007FA12A3203A8 48 stub<6199> AllocateTemporaryEntryPoints +00007FA1277F5F80 18 stub<6200> GenerateResolveStub +00007FA1277C4020 20 stub<6201> GenerateDispatchStub +00007FA12A3203F0 18 stub<6202> AllocateTemporaryEntryPoints +00007FA12A320408 18 stub<6203> AllocateTemporaryEntryPoints +00007FA12A320420 60 stub<6204> AllocateTemporaryEntryPoints +00007FA1277F5FF0 18 stub<6205> GenerateResolveStub +00007FA1277C4040 20 stub<6206> GenerateDispatchStub +00007FA12A320480 18 stub<6207> AllocateTemporaryEntryPoints +00007FA12A320498 18 stub<6208> AllocateTemporaryEntryPoints +00007FA12A28E940 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A3204B0 18 stub<6209> AllocateTemporaryEntryPoints +00007FA12A3204C8 18 stub<6210> AllocateTemporaryEntryPoints +00007FA12A28E9E0 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A3204E0 d8 stub<6211> AllocateTemporaryEntryPoints +00007FA12A3205B8 18 stub<6212> AllocateTemporaryEntryPoints +00007FA12A28EA80 255 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A28ECF0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__44]::.ctor()[QuickJitted] +00007FA1277F6060 18 stub<6213> GenerateResolveStub +00007FA1277C4060 20 stub<6214> GenerateDispatchStub +00007FA12A3205E8 30 stub<6215> AllocateTemporaryEntryPoints +00007FA12A320618 60 stub<6216> AllocateTemporaryEntryPoints +00007FA12A320678 18 stub<6217> AllocateTemporaryEntryPoints +00007FA12A320690 18 stub<6218> AllocateTemporaryEntryPoints +00007FA12A28ED30 5c !!0[] [System.Private.CoreLib] System.Array::Empty()[QuickJitted] +00007FA12A28EDA0 81 void [System.Private.CoreLib] System.Array+EmptyArray`1[System.Net.Http.HttpConnectionPool+RequestQueue`1+QueueItem[System.__Canon]]::.cctor()[QuickJitted] +00007FA12A3206A8 60 stub<6219> AllocateTemporaryEntryPoints +00007FA12A28EE40 17d instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::SerializeTracesLoop()[QuickJitted] +00007FA12A320708 60 stub<6220> AllocateTemporaryEntryPoints +00007FA12A28EFE0 311 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ProfilerStatus::.ctor()[QuickJitted] +00007FA12A28F310 7c instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::TryDequeue(!0&)[QuickJitted] +00007FA12A320768 108 stub<6221> AllocateTemporaryEntryPoints +00007FA12A28F450 4f void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ProfilerStatus::.cctor()[QuickJitted] +00007FA12A28F3A0 99 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::TryAdd(!0,!1)[QuickJitted] +00007FA12A320870 18 stub<6222> AllocateTemporaryEntryPoints +00007FA12A320888 18 stub<6223> AllocateTemporaryEntryPoints +00007FA12A3208A0 18 stub<6224> AllocateTemporaryEntryPoints +00007FA12A3208B8 18 stub<6225> AllocateTemporaryEntryPoints +00007FA12A3208D0 18 stub<6226> AllocateTemporaryEntryPoints +00007FA12A3208E8 18 stub<6227> AllocateTemporaryEntryPoints +00007FA12A28F4C0 91 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Information(string,!!0,int32,string)[QuickJitted] +00007FA12A28F570 224 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::TryDequeue(!0&)[QuickJitted] +00007FA12A320900 228 stub<6228> AllocateTemporaryEntryPoints +00007FA12A320B28 228 stub<6229> AllocateTemporaryEntryPoints +00007FA12A290120 228 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::.ctor(class Datadog.Trace.ContinuousProfiler.IProfilerStatus)[QuickJitted] +00007FA12A28F7B0 938 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12A320D50 18 stub<6230> AllocateTemporaryEntryPoints +00007FA12A320D68 18 stub<6231> AllocateTemporaryEntryPoints +00007FA12A320D80 18 stub<6232> AllocateTemporaryEntryPoints +00007FA12A290370 63 instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::.ctor()[QuickJitted] +00007FA12A2903F0 db instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA12A320D98 60 stub<6233> AllocateTemporaryEntryPoints +00007FA12A2904E0 34 instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1+LinkedSlot[System.IntPtr]::.ctor(valuetype System.Threading.ThreadLocal`1/LinkedSlotVolatile[])[QuickJitted] +00007FA12A290530 77 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA12A320DF8 18 stub<6234> AllocateTemporaryEntryPoints +00007FA12A320E10 60 stub<6235> AllocateTemporaryEntryPoints +00007FA12A320E70 78 stub<6236> AllocateTemporaryEntryPoints +00007FA12A320EE8 78 stub<6237> AllocateTemporaryEntryPoints +00007FA12A320F60 78 stub<6238> AllocateTemporaryEntryPoints +00007FA12A2905C0 86 instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::Initialize(class System.Func`1,bool)[QuickJitted] +00007FA12A322000 1e0 stub<6239> AllocateTemporaryEntryPoints +00007FA12A3221E0 108 stub<6240> AllocateTemporaryEntryPoints +00007FA12A290660 47 void [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::.cctor()[QuickJitted] +00007FA12A3222E8 78 stub<6241> AllocateTemporaryEntryPoints +00007FA12A322360 90 stub<6242> AllocateTemporaryEntryPoints +00007FA12A3223F0 18 stub<6243> AllocateTemporaryEntryPoints +00007FA12A322408 18 stub<6244> AllocateTemporaryEntryPoints +00007FA12A322420 5e8 stub<6245> AllocateTemporaryEntryPoints +00007FA12A322A08 c0 stub<6246> AllocateTemporaryEntryPoints +00007FA12A322AC8 90 stub<6247> AllocateTemporaryEntryPoints +00007FA12A322B58 a8 stub<6248> AllocateTemporaryEntryPoints +00007FA12A322C00 18 stub<6249> AllocateTemporaryEntryPoints +00007FA12A322C18 240 stub<6250> AllocateTemporaryEntryPoints +00007FA12A322E58 78 stub<6251> AllocateTemporaryEntryPoints +00007FA12A322ED0 d8 stub<6252> AllocateTemporaryEntryPoints +00007FA12A322FA8 18 stub<6253> AllocateTemporaryEntryPoints +00007FA12A324000 60 stub<6254> AllocateTemporaryEntryPoints +00007FA12A324060 18 stub<6255> AllocateTemporaryEntryPoints +00007FA12A324078 18 stub<6256> AllocateTemporaryEntryPoints +00007FA12A2906C0 85 instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1+IdManager[System.IntPtr]::.ctor()[QuickJitted] +00007FA12A324090 18 stub<6257> AllocateTemporaryEntryPoints +00007FA12A290760 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A2907A0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A3240A8 18 stub<6258> AllocateTemporaryEntryPoints +00007FA12A3240C0 18 stub<6259> AllocateTemporaryEntryPoints +00007FA12A3240D8 18 stub<6260> AllocateTemporaryEntryPoints +00007FA12A2908A0 142 instance int32 [System.Private.CoreLib] System.Threading.ThreadLocal`1+IdManager[System.IntPtr]::GetId(bool)[QuickJitted] +00007FA12A3240F0 18 stub<6261> AllocateTemporaryEntryPoints +00007FA12A324108 18 stub<6262> AllocateTemporaryEntryPoints +00007FA12A324120 18 stub<6263> AllocateTemporaryEntryPoints +00007FA12A324138 18 stub<6264> AllocateTemporaryEntryPoints +00007FA12A324150 18 stub<6265> AllocateTemporaryEntryPoints +00007FA12A324168 18 stub<6266> AllocateTemporaryEntryPoints +00007FA12A324180 18 stub<6267> AllocateTemporaryEntryPoints +00007FA12A324198 18 stub<6268> AllocateTemporaryEntryPoints +00007FA12A3241B0 18 stub<6269> AllocateTemporaryEntryPoints +00007FA12A3241C8 60 stub<6270> AllocateTemporaryEntryPoints +00007FA12A324228 30 stub<6271> AllocateTemporaryEntryPoints +00007FA12A290A10 49 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler::.ctor(class Datadog.Trace.ContinuousProfiler.IContextTracker,class Datadog.Trace.ContinuousProfiler.IProfilerStatus)[QuickJitted] +00007FA12A290A70 1c instance class Datadog.Trace.ContinuousProfiler.IContextTracker [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler::get_ContextTracker()[QuickJitted] +00007FA12A324258 168 stub<6272> AllocateTemporaryEntryPoints +00007FA12A3243C0 60 stub<6273> AllocateTemporaryEntryPoints +00007FA12A290AA0 3d instance bool [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::get_IsEnabled()[QuickJitted] +00007FA12A324420 168 stub<6274> AllocateTemporaryEntryPoints +00007FA12A324588 60 stub<6275> AllocateTemporaryEntryPoints +00007FA12A3245E8 60 stub<6276> AllocateTemporaryEntryPoints +00007FA12A324648 168 stub<6277> AllocateTemporaryEntryPoints +00007FA12A3247B0 60 stub<6278> AllocateTemporaryEntryPoints +00007FA12A290B00 64 instance bool [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ProfilerStatus::get_IsProfilerReady()[QuickJitted] +00007FA12A324810 60 stub<6279> AllocateTemporaryEntryPoints +00007FA12A290B80 13e instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ProfilerStatus::EnsureNativeIsIntialized()[QuickJitted] +00007FA128428798 60 stub<6280> AllocateTemporaryEntryPoints +00007FA12A290CF0 a1 native int [Datadog.Trace] Datadog.Trace.ContinuousProfiler.NativeInterop::GetProfilerStatusPointer()[QuickJitted] +00007FA12A324870 2a0 stub<6281> AllocateTemporaryEntryPoints +00007FA12A324B10 18 stub<6282> AllocateTemporaryEntryPoints +00007FA12A324B28 18 stub<6283> AllocateTemporaryEntryPoints +00007FA12A324B40 18 stub<6284> AllocateTemporaryEntryPoints +00007FA12A324B58 18 stub<6285> AllocateTemporaryEntryPoints +00007FA12A324B70 60 stub<6286> AllocateTemporaryEntryPoints +00007FA12A324BD0 d8 stub<6287> AllocateTemporaryEntryPoints +00007FA12A290DC0 48 instance void [System.Private.CoreLib] System.ValueTuple`2[System.__Canon,System.Net.Http.HttpConnectionPool+RequestQueue`1+QueueItem[System.__Canon]]::.ctor(!0,!1)[QuickJitted] +00007FA12A324CA8 30 stub<6288> AllocateTemporaryEntryPoints +00007FA12A324CD8 30 stub<6289> AllocateTemporaryEntryPoints +00007FA12A324D08 30 stub<6290> AllocateTemporaryEntryPoints +00007FA12A324D38 30 stub<6291> AllocateTemporaryEntryPoints +00007FA12A324D68 30 stub<6292> AllocateTemporaryEntryPoints +00007FA12A324D98 30 stub<6293> AllocateTemporaryEntryPoints +00007FA12A324DC8 30 stub<6294> AllocateTemporaryEntryPoints +00007FA12A290E20 1bf bool [System.Private.CoreLib] System.Threading.ThreadPool::QueueUserWorkItem(class System.Action`1,!!0,bool)[QuickJitted] +00007FA12A291000 4f instance void [System.Private.CoreLib] System.Threading.QueueUserWorkItemCallbackDefaultContext`1[System.ValueTuple`2[System.__Canon,System.Net.Http.HttpConnectionPool+RequestQueue`1+QueueItem[System.__Canon]]]::.ctor(class System.Action`1,!0)[QuickJitted] +00007FA12A324DF8 f0 stub<6295> AllocateTemporaryEntryPoints +00007FA12A326000 240 stub<6296> AllocateTemporaryEntryPoints +00007FA12A326240 d8 stub<6297> AllocateTemporaryEntryPoints +00007FA12A326318 60 stub<6298> AllocateTemporaryEntryPoints +00007FA12A326378 60 stub<6299> AllocateTemporaryEntryPoints +00007FA12A3263D8 60 stub<6300> AllocateTemporaryEntryPoints +00007FA12A291070 80 instance void [System.Private.CoreLib] System.Threading.QueueUserWorkItemCallbackDefaultContext`1[System.ValueTuple`2[System.__Canon,System.Net.Http.HttpConnectionPool+RequestQueue`1+QueueItem[System.__Canon]]]::Execute()[QuickJitted] +00007FA12A326438 18 stub<6301> AllocateTemporaryEntryPoints +00007FA12A326450 18 stub<6302> AllocateTemporaryEntryPoints +00007FA12A326468 18 stub<6303> AllocateTemporaryEntryPoints +00007FA12A326480 18 stub<6304> AllocateTemporaryEntryPoints +00007FA12A326498 60 stub<6305> AllocateTemporaryEntryPoints +00007FA12A3264F8 18 stub<6306> AllocateTemporaryEntryPoints +00007FA12A326510 18 stub<6307> AllocateTemporaryEntryPoints +00007FA12A291110 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A326528 18 stub<6308> AllocateTemporaryEntryPoints +00007FA12A291190 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A326540 18 stub<6309> AllocateTemporaryEntryPoints +00007FA12A2911D0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A326558 18 stub<6310> AllocateTemporaryEntryPoints +00007FA12A2912D0 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A326570 18 stub<6311> AllocateTemporaryEntryPoints +00007FA12A326588 18 stub<6312> AllocateTemporaryEntryPoints +00007FA12A3265A0 f0 stub<6313> AllocateTemporaryEntryPoints +00007FA12A326690 2a0 stub<6314> AllocateTemporaryEntryPoints +00007FA12A326930 a8 stub<6315> AllocateTemporaryEntryPoints +00007FA12A3269D8 60 stub<6316> AllocateTemporaryEntryPoints +00007FA12A326A38 240 stub<6317> AllocateTemporaryEntryPoints +00007FA12A326C78 d8 stub<6318> AllocateTemporaryEntryPoints +00007FA12A326D50 60 stub<6319> AllocateTemporaryEntryPoints +00007FA12A326DB0 60 stub<6320> AllocateTemporaryEntryPoints +00007FA12A326E10 30 stub<6321> AllocateTemporaryEntryPoints +00007FA12A326E40 18 stub<6322> AllocateTemporaryEntryPoints +00007FA12A326E58 18 stub<6323> AllocateTemporaryEntryPoints +00007FA12A326E70 18 stub<6324> AllocateTemporaryEntryPoints +00007FA12A326E88 18 stub<6325> AllocateTemporaryEntryPoints +00007FA12A326EA0 18 stub<6326> AllocateTemporaryEntryPoints +00007FA12A326EB8 18 stub<6327> AllocateTemporaryEntryPoints +00007FA12A326ED0 18 stub<6328> AllocateTemporaryEntryPoints +00007FA12A326EE8 18 stub<6329> AllocateTemporaryEntryPoints +00007FA12A326F00 18 stub<6330> AllocateTemporaryEntryPoints +00007FA12A291420 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A2914A0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A326F18 18 stub<6331> AllocateTemporaryEntryPoints +00007FA12A326F30 18 stub<6332> AllocateTemporaryEntryPoints +00007FA12A2914E0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A326F48 18 stub<6333> AllocateTemporaryEntryPoints +00007FA12A326F60 18 stub<6334> AllocateTemporaryEntryPoints +00007FA12A2915E0 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A326F78 18 stub<6335> AllocateTemporaryEntryPoints +00007FA12A326F90 18 stub<6336> AllocateTemporaryEntryPoints +00007FA12A326FA8 18 stub<6337> AllocateTemporaryEntryPoints +00007FA12A326FC0 18 stub<6338> AllocateTemporaryEntryPoints +00007FA12A328000 30 stub<6339> AllocateTemporaryEntryPoints +00007FA12A328030 60 stub<6340> AllocateTemporaryEntryPoints +00007FA12A328090 f0 stub<6341> AllocateTemporaryEntryPoints +00007FA12A328180 60 stub<6342> AllocateTemporaryEntryPoints +00007FA12A3281E0 60 stub<6343> AllocateTemporaryEntryPoints +00007FA12A328240 60 stub<6344> AllocateTemporaryEntryPoints +00007FA12A3282A0 f0 stub<6345> AllocateTemporaryEntryPoints +00007FA12A328390 18 stub<6346> AllocateTemporaryEntryPoints +00007FA12A3283A8 18 stub<6347> AllocateTemporaryEntryPoints +00007FA12A3283C0 18 stub<6348> AllocateTemporaryEntryPoints +00007FA12A3283D8 18 stub<6349> AllocateTemporaryEntryPoints +00007FA12A3283F0 1e0 stub<6350> AllocateTemporaryEntryPoints +00007FA12A3285D0 f0 stub<6351> AllocateTemporaryEntryPoints +00007FA12A3286C0 18 stub<6352> AllocateTemporaryEntryPoints +00007FA12A3286D8 168 stub<6353> AllocateTemporaryEntryPoints +00007FA12A291B30 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A328840 30 stub<6354> AllocateTemporaryEntryPoints +00007FA12A328870 18 stub<6355> AllocateTemporaryEntryPoints +00007FA12A328888 18 stub<6356> AllocateTemporaryEntryPoints +00007FA12A3288A0 18 stub<6357> AllocateTemporaryEntryPoints +00007FA12A3288B8 30 stub<6358> AllocateTemporaryEntryPoints +00007FA12A3288E8 18 stub<6359> AllocateTemporaryEntryPoints +00007FA12A328900 18 stub<6360> AllocateTemporaryEntryPoints +00007FA12A328918 228 stub<6361> AllocateTemporaryEntryPoints +00007FA12A32A000 9a8 stub<6362> AllocateTemporaryEntryPoints +00007FA12A32A9A8 468 stub<6363> AllocateTemporaryEntryPoints +00007FA12A291BD0 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A32AE10 18 stub<6364> AllocateTemporaryEntryPoints +00007FA12A32C000 1f8 stub<6365> AllocateTemporaryEntryPoints +00007FA12A32C1F8 d8 stub<6366> AllocateTemporaryEntryPoints +00007FA12A32C2D0 78 stub<6367> AllocateTemporaryEntryPoints +00007FA12A32C348 18 stub<6368> AllocateTemporaryEntryPoints +00007FA12A32C360 18 stub<6369> AllocateTemporaryEntryPoints +00007FA12A32C378 d8 stub<6370> AllocateTemporaryEntryPoints +00007FA12A32C450 18 stub<6371> AllocateTemporaryEntryPoints +00007FA12A32C468 18 stub<6372> AllocateTemporaryEntryPoints +00007FA12A32C480 18 stub<6373> AllocateTemporaryEntryPoints +00007FA12A291CB0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::Start(!!0&)[QuickJitted] +00007FA12A291CF0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A32C498 18 stub<6374> AllocateTemporaryEntryPoints +00007FA12A32C4B0 18 stub<6375> AllocateTemporaryEntryPoints +00007FA12A32C4C8 18 stub<6376> AllocateTemporaryEntryPoints +00007FA12A291DF0 397 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2921B0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::.ctor()[QuickJitted] +00007FA12A32C4E0 2a0 stub<6377> AllocateTemporaryEntryPoints +00007FA12A32C780 18 stub<6378> AllocateTemporaryEntryPoints +00007FA12A32C798 d8 stub<6379> AllocateTemporaryEntryPoints +00007FA12A32C870 60 stub<6380> AllocateTemporaryEntryPoints +00007FA12A32C8D0 30 stub<6381> AllocateTemporaryEntryPoints +00007FA12A32C900 18 stub<6382> AllocateTemporaryEntryPoints +00007FA12A32C918 18 stub<6383> AllocateTemporaryEntryPoints +00007FA12A32C930 18 stub<6384> AllocateTemporaryEntryPoints +00007FA12A2921F0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A292230 1d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A292270 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A32C948 18 stub<6385> AllocateTemporaryEntryPoints +00007FA12A32C960 18 stub<6386> AllocateTemporaryEntryPoints +00007FA12A32C978 18 stub<6387> AllocateTemporaryEntryPoints +00007FA12A32C990 18 stub<6388> AllocateTemporaryEntryPoints +00007FA12A32C9A8 18 stub<6389> AllocateTemporaryEntryPoints +00007FA12A32C9C0 60 stub<6390> AllocateTemporaryEntryPoints +00007FA12A32CA20 18 stub<6391> AllocateTemporaryEntryPoints +00007FA12A32CA38 18 stub<6392> AllocateTemporaryEntryPoints +00007FA12A32CA50 c0 stub<6393> AllocateTemporaryEntryPoints +00007FA12A32CB10 18 stub<6394> AllocateTemporaryEntryPoints +00007FA12A32CB28 48 stub<6395> AllocateTemporaryEntryPoints +00007FA12A292370 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A32CB70 18 stub<6396> AllocateTemporaryEntryPoints +00007FA12A32CB88 18 stub<6397> AllocateTemporaryEntryPoints +00007FA12A32CBA0 18 stub<6398> AllocateTemporaryEntryPoints +00007FA12A32CBB8 18 stub<6399> AllocateTemporaryEntryPoints +00007FA12A32CBD0 18 stub<6400> AllocateTemporaryEntryPoints +00007FA12A292410 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A32CBE8 18 stub<6401> AllocateTemporaryEntryPoints +00007FA12A32CC00 d8 stub<6402> AllocateTemporaryEntryPoints +00007FA12A32CCD8 18 stub<6403> AllocateTemporaryEntryPoints +00007FA12A32CCF0 18 stub<6404> AllocateTemporaryEntryPoints +00007FA12A32E000 468 stub<6405> AllocateTemporaryEntryPoints +00007FA12A2924F0 397 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2928B0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::.ctor()[QuickJitted] +00007FA12A32E468 7f8 stub<6406> AllocateTemporaryEntryPoints +00007FA12A32EC60 18 stub<6407> AllocateTemporaryEntryPoints +00007FA12A440000 7f8 stub<6408> AllocateTemporaryEntryPoints +00007FA12A4407F8 7f8 stub<6409> AllocateTemporaryEntryPoints +00007FA12A442000 288 stub<6410> AllocateTemporaryEntryPoints +00007FA12A442288 90 stub<6411> AllocateTemporaryEntryPoints +00007FA12A442318 4f8 stub<6412> AllocateTemporaryEntryPoints +00007FA12842A000 300 stub<6413> AllocateTemporaryEntryPoints +00007FA12842A300 f0 stub<6414> AllocateTemporaryEntryPoints +00007FA12A442828 f0 stub<6415> AllocateTemporaryEntryPoints +00007FA12A442918 240 stub<6416> AllocateTemporaryEntryPoints +00007FA12A444000 780 stub<6417> AllocateTemporaryEntryPoints +00007FA12A444780 30 stub<6418> AllocateTemporaryEntryPoints +00007FA12A4447B0 3c0 stub<6419> AllocateTemporaryEntryPoints +00007FA12A444B70 108 stub<6420> AllocateTemporaryEntryPoints +00007FA12A444C78 30 stub<6421> AllocateTemporaryEntryPoints +00007FA12A444CA8 30 stub<6422> AllocateTemporaryEntryPoints +00007FA12A446000 6f0 stub<6423> AllocateTemporaryEntryPoints +00007FA12A4466F0 c0 stub<6424> AllocateTemporaryEntryPoints +00007FA12A4467B0 90 stub<6425> AllocateTemporaryEntryPoints +00007FA12A446840 a8 stub<6426> AllocateTemporaryEntryPoints +00007FA12A4468E8 18 stub<6427> AllocateTemporaryEntryPoints +00007FA12A446900 78 stub<6428> AllocateTemporaryEntryPoints +00007FA12A446978 18 stub<6429> AllocateTemporaryEntryPoints +00007FA12A446990 48 stub<6430> AllocateTemporaryEntryPoints +00007FA12A4469D8 258 stub<6431> AllocateTemporaryEntryPoints +00007FA12A446C30 60 stub<6432> AllocateTemporaryEntryPoints +00007FA12A446C90 18 stub<6433> AllocateTemporaryEntryPoints +00007FA12A446CA8 18 stub<6434> AllocateTemporaryEntryPoints +00007FA12A292CF0 38 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::.ctor()[QuickJitted] +00007FA12A292D40 d int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12A446CC0 30 stub<6435> AllocateTemporaryEntryPoints +00007FA12A446CF0 18 stub<6436> AllocateTemporaryEntryPoints +00007FA12A446D08 48 stub<6437> AllocateTemporaryEntryPoints +00007FA12A446D50 d8 stub<6438> AllocateTemporaryEntryPoints +00007FA12A292D70 2b9 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12A293050 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12A446E28 18 stub<6439> AllocateTemporaryEntryPoints +00007FA12A446E40 a8 stub<6440> AllocateTemporaryEntryPoints +00007FA12A446EE8 a8 stub<6441> AllocateTemporaryEntryPoints +00007FA12A2930E0 a9 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::.ctor()[QuickJitted] +00007FA12A446F90 60 stub<6442> AllocateTemporaryEntryPoints +00007FA12A2931A0 ba instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::.ctor(int32)[QuickJitted] +00007FA12A448000 48 stub<6443> AllocateTemporaryEntryPoints +00007FA12A448048 288 stub<6444> AllocateTemporaryEntryPoints +00007FA12A4482D0 288 stub<6445> AllocateTemporaryEntryPoints +00007FA12A448558 108 stub<6446> AllocateTemporaryEntryPoints +00007FA12A448660 7f8 stub<6447> AllocateTemporaryEntryPoints +00007FA12A448E58 48 stub<6448> AllocateTemporaryEntryPoints +00007FA12A448EA0 48 stub<6449> AllocateTemporaryEntryPoints +00007FA12A44A000 2a0 stub<6450> AllocateTemporaryEntryPoints +00007FA12A44A2A0 48 stub<6451> AllocateTemporaryEntryPoints +00007FA12A44A2E8 48 stub<6452> AllocateTemporaryEntryPoints +00007FA12A44A330 48 stub<6453> AllocateTemporaryEntryPoints +00007FA12A44A378 48 stub<6454> AllocateTemporaryEntryPoints +00007FA12A44A3C0 18 stub<6455> AllocateTemporaryEntryPoints +00007FA12A44A3D8 18 stub<6456> AllocateTemporaryEntryPoints +00007FA12A44A3F0 258 stub<6457> AllocateTemporaryEntryPoints +00007FA12A44A648 150 stub<6458> AllocateTemporaryEntryPoints +00007FA12A44A798 150 stub<6459> AllocateTemporaryEntryPoints +00007FA12A44A8E8 c0 stub<6460> AllocateTemporaryEntryPoints +00007FA12A293270 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_RuntimeMetricsEnabled()[QuickJitted] +00007FA12A2932B0 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_Environment()[QuickJitted] +00007FA12A2932E0 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_ServiceVersion()[QuickJitted] +00007FA12A44A9A8 138 stub<6461> AllocateTemporaryEntryPoints +00007FA1277BFFA0 18 stub<6462> GenerateLookupStub +00007FA12A44AAE0 18 stub<6463> AllocateTemporaryEntryPoints +00007FA12A44AAF8 60 stub<6464> AllocateTemporaryEntryPoints +00007FA12A44AB58 18 stub<6465> AllocateTemporaryEntryPoints +00007FA12A44AB70 3c0 stub<6466> AllocateTemporaryEntryPoints +00007FA12A44AF30 30 stub<6467> AllocateTemporaryEntryPoints +00007FA12A44AF60 18 stub<6468> AllocateTemporaryEntryPoints +00007FA12A44C000 108 stub<6469> AllocateTemporaryEntryPoints +00007FA12A44C108 a8 stub<6470> AllocateTemporaryEntryPoints +00007FA12A44C1B0 60 stub<6471> AllocateTemporaryEntryPoints +00007FA12A44C210 18 stub<6472> AllocateTemporaryEntryPoints +00007FA12A44C228 18 stub<6473> AllocateTemporaryEntryPoints +00007FA12A44C240 78 stub<6474> AllocateTemporaryEntryPoints +00007FA12A44C2B8 78 stub<6475> AllocateTemporaryEntryPoints +00007FA12A44C330 18 stub<6476> AllocateTemporaryEntryPoints +00007FA12A44C348 18 stub<6477> AllocateTemporaryEntryPoints +00007FA12A293310 7c void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A44C360 480 stub<6478> AllocateTemporaryEntryPoints +00007FA12A44C7E0 18 stub<6479> AllocateTemporaryEntryPoints +00007FA12A2933B0 219 class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager::Create(class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager,class Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings,string,string,string)[QuickJitted] +00007FA12A44C7F8 18 stub<6480> AllocateTemporaryEntryPoints +00007FA12A44C810 18 stub<6481> AllocateTemporaryEntryPoints +00007FA12A44C828 18 stub<6482> AllocateTemporaryEntryPoints +00007FA12A44C840 18 stub<6483> AllocateTemporaryEntryPoints +00007FA12A44C858 18 stub<6484> AllocateTemporaryEntryPoints +00007FA12A44C870 90 stub<6485> AllocateTemporaryEntryPoints +00007FA12A44C900 60 stub<6486> AllocateTemporaryEntryPoints +00007FA12A44C960 60 stub<6487> AllocateTemporaryEntryPoints +00007FA12A2935F0 29e instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.Formatting.LogFormatter::.ctor(class Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings,string,string,string)[QuickJitted] +00007FA12A2938B0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A293950 1c instance string [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::get_Source()[QuickJitted] +00007FA12A44C9C0 18 stub<6488> AllocateTemporaryEntryPoints +00007FA12A293980 1c instance string [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::get_Host()[QuickJitted] +00007FA12A44C9D8 18 stub<6489> AllocateTemporaryEntryPoints +00007FA12A2939B0 1c instance string [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::get_GlobalTags()[QuickJitted] +00007FA12A44C9F0 18 stub<6490> AllocateTemporaryEntryPoints +00007FA12A2939E0 1f instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.Sink.NullDatadogSink::.ctor()[QuickJitted] +00007FA12A44CA08 150 stub<6491> AllocateTemporaryEntryPoints +00007FA12A293A20 5e instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager::.ctor(class Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings,class Datadog.Trace.Logging.DirectSubmission.Sink.IDatadogSink,class Datadog.Trace.Logging.DirectSubmission.Formatting.LogFormatter)[QuickJitted] +00007FA12A293AA0 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A44CB58 d8 stub<6492> AllocateTemporaryEntryPoints +00007FA12A44CC30 18 stub<6493> AllocateTemporaryEntryPoints +00007FA12A44CC48 270 stub<6494> AllocateTemporaryEntryPoints +00007FA12A44CEB8 30 stub<6495> AllocateTemporaryEntryPoints +00007FA12A44CEE8 d8 stub<6496> AllocateTemporaryEntryPoints +00007FA12A44E000 2b8 stub<6497> AllocateTemporaryEntryPoints +00007FA12A44E2B8 120 stub<6498> AllocateTemporaryEntryPoints +00007FA12A44E3D8 18 stub<6499> AllocateTemporaryEntryPoints +00007FA12A44E3F0 18 stub<6500> AllocateTemporaryEntryPoints +00007FA12A44E408 120 stub<6501> AllocateTemporaryEntryPoints +00007FA12A44E528 18 stub<6502> AllocateTemporaryEntryPoints +00007FA12A44E540 60 stub<6503> AllocateTemporaryEntryPoints +00007FA12A44E5A0 18 stub<6504> AllocateTemporaryEntryPoints +00007FA12A44E5B8 f0 stub<6505> AllocateTemporaryEntryPoints +00007FA12A44E6A8 18 stub<6506> AllocateTemporaryEntryPoints +00007FA12A44E6C0 d8 stub<6507> AllocateTemporaryEntryPoints +00007FA12A44E798 c0 stub<6508> AllocateTemporaryEntryPoints +00007FA12A44E858 60 stub<6509> AllocateTemporaryEntryPoints +00007FA12A44E8B8 30 stub<6510> AllocateTemporaryEntryPoints +00007FA12A44E8E8 1f8 stub<6511> AllocateTemporaryEntryPoints +00007FA12A44EAE0 18 stub<6512> AllocateTemporaryEntryPoints +00007FA12A44EAF8 18 stub<6513> AllocateTemporaryEntryPoints +00007FA12A293B80 3d9 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A293F80 290 class Datadog.Trace.Telemetry.ITelemetryController [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryFactory::CreateTelemetryController(class Datadog.Trace.Configuration.ImmutableTracerSettings)[QuickJitted] +00007FA12A44EB10 60 stub<6514> AllocateTemporaryEntryPoints +00007FA12A294240 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::.ctor()[QuickJitted] +00007FA12A44EB70 18 stub<6515> AllocateTemporaryEntryPoints +00007FA12A44EB88 60 stub<6516> AllocateTemporaryEntryPoints +00007FA12A294280 b4 class Datadog.Trace.Telemetry.TelemetrySettings [Datadog.Trace] Datadog.Trace.Telemetry.TelemetrySettings::FromDefaultSources()[QuickJitted] +00007FA12A44EBE8 18 stub<6517> AllocateTemporaryEntryPoints +00007FA12A44EC00 18 stub<6518> AllocateTemporaryEntryPoints +00007FA12A44EC18 18 stub<6519> AllocateTemporaryEntryPoints +00007FA12A44EC30 48 stub<6520> AllocateTemporaryEntryPoints +00007FA12A44EC78 18 stub<6521> AllocateTemporaryEntryPoints +00007FA12A294350 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A2943F0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A44EC90 18 stub<6522> AllocateTemporaryEntryPoints +00007FA12A44ECA8 18 stub<6523> AllocateTemporaryEntryPoints +00007FA12A44ECC0 18 stub<6524> AllocateTemporaryEntryPoints +00007FA12A294430 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A294510 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A44ECD8 18 stub<6525> AllocateTemporaryEntryPoints +00007FA12A44ECF0 18 stub<6526> AllocateTemporaryEntryPoints +00007FA12A44ED08 18 stub<6527> AllocateTemporaryEntryPoints +00007FA12A44ED20 d8 stub<6528> AllocateTemporaryEntryPoints +00007FA12A44EDF8 180 stub<6529> AllocateTemporaryEntryPoints +00007FA12A44EF78 18 stub<6530> AllocateTemporaryEntryPoints +00007FA12A44EF90 18 stub<6531> AllocateTemporaryEntryPoints +00007FA12A4D0000 138 stub<6532> AllocateTemporaryEntryPoints +00007FA12A294610 6ef class Datadog.Trace.Telemetry.TelemetrySettings [Datadog.Trace] Datadog.Trace.Telemetry.TelemetrySettings::FromSource(class Datadog.Trace.Configuration.IConfigurationSource,class [System.Runtime]System.Func`1>)[QuickJitted] +00007FA12A4D0138 60 stub<6533> AllocateTemporaryEntryPoints +00007FA12A294D20 39a class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2950E0 6b valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Telemetry.TelemetrySettings::IsAgentAvailable()[QuickJitted] +00007FA12A4D0198 150 stub<6534> AllocateTemporaryEntryPoints +00007FA12A2951A0 21 bool [Datadog.Trace] Datadog.Trace.Ci.CIVisibility::get_IsRunning()[QuickJitted] +00007FA12A295160 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::.ctor()[QuickJitted] +00007FA12A4D02E8 138 stub<6535> AllocateTemporaryEntryPoints +00007FA12A4D0420 18 stub<6536> AllocateTemporaryEntryPoints +00007FA12A4D0438 18 stub<6537> AllocateTemporaryEntryPoints +00007FA12A4D0450 18 stub<6538> AllocateTemporaryEntryPoints +00007FA12A2951E0 75 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetrySettings::.ctor(bool,string,class Datadog.Trace.Telemetry.TelemetrySettings/AgentlessSettings,bool,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12A4D0468 18 stub<6539> AllocateTemporaryEntryPoints +00007FA12A295270 1c instance bool [Datadog.Trace] Datadog.Trace.Telemetry.TelemetrySettings::get_TelemetryEnabled()[QuickJitted] +00007FA12A2952A0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A4D0480 18 stub<6540> AllocateTemporaryEntryPoints +00007FA12A4D0498 18 stub<6541> AllocateTemporaryEntryPoints +00007FA12A4D04B0 18 stub<6542> AllocateTemporaryEntryPoints +00007FA12A4D04C8 60 stub<6543> AllocateTemporaryEntryPoints +00007FA12A4D0528 18 stub<6544> AllocateTemporaryEntryPoints +00007FA12A295340 18d class Datadog.Trace.Telemetry.ITelemetryTransport[] [Datadog.Trace] Datadog.Trace.Telemetry.Transports.TelemetryTransportFactory::Create(class Datadog.Trace.Telemetry.TelemetrySettings,class Datadog.Trace.Configuration.ImmutableExporterSettings)[QuickJitted] +00007FA12A2954F0 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2955D0 1c instance bool [Datadog.Trace] Datadog.Trace.Telemetry.TelemetrySettings::get_AgentProxyEnabled()[QuickJitted] +00007FA12A4D0540 108 stub<6545> AllocateTemporaryEntryPoints +00007FA12A4D0648 18 stub<6546> AllocateTemporaryEntryPoints +00007FA12A295600 1c instance class Datadog.Trace.Telemetry.TelemetrySettings/AgentlessSettings [Datadog.Trace] Datadog.Trace.Telemetry.TelemetrySettings::get_Agentless()[QuickJitted] +00007FA12A4D0660 108 stub<6547> AllocateTemporaryEntryPoints +00007FA12A4D0768 d8 stub<6548> AllocateTemporaryEntryPoints +00007FA12A4D0888 510 stub<6550> AllocateTemporaryEntryPoints +00007FA12A4D0840 48 stub<6549> AllocateTemporaryEntryPoints +00007FA12A4D0D98 150 stub<6551> AllocateTemporaryEntryPoints +00007FA12A4D0EE8 a8 stub<6552> AllocateTemporaryEntryPoints +00007FA12A4D0F90 18 stub<6553> AllocateTemporaryEntryPoints +00007FA12A4D0FA8 30 stub<6554> AllocateTemporaryEntryPoints +00007FA12A4D2000 30 stub<6555> AllocateTemporaryEntryPoints +00007FA12A4D2030 18 stub<6556> AllocateTemporaryEntryPoints +00007FA12A4D2048 30 stub<6557> AllocateTemporaryEntryPoints +00007FA12A4D2078 18 stub<6558> AllocateTemporaryEntryPoints +00007FA12A295630 51 class Datadog.Trace.Telemetry.ITelemetryTransport [Datadog.Trace] Datadog.Trace.Telemetry.Transports.TelemetryTransportFactory::GetAgentFactory(class Datadog.Trace.Configuration.ImmutableExporterSettings)[QuickJitted] +00007FA12A4D2090 30 stub<6559> AllocateTemporaryEntryPoints +00007FA12A4D20C0 78 stub<6560> AllocateTemporaryEntryPoints +00007FA12A4D2138 60 stub<6561> AllocateTemporaryEntryPoints +00007FA12A4D2198 c0 stub<6562> AllocateTemporaryEntryPoints +00007FA12A2956A0 3a6 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A295A70 2c5 class Datadog.Trace.Agent.IApiRequestFactory [Datadog.Trace] Datadog.Trace.Telemetry.Transports.TelemetryTransportStrategy::GetAgentIntakeFactory(class Datadog.Trace.Configuration.ImmutableExporterSettings)[QuickJitted] +00007FA12A295D60 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::.ctor()[QuickJitted] +00007FA12A4D2258 18 stub<6563> AllocateTemporaryEntryPoints +00007FA12A4D2270 18 stub<6564> AllocateTemporaryEntryPoints +00007FA12A295DA0 53 void [Datadog.Trace] Datadog.Trace.Telemetry.Transports.TelemetryTransportStrategy::.cctor()[QuickJitted] +00007FA12A4D2288 18 stub<6565> AllocateTemporaryEntryPoints +00007FA12A4D22A0 18 stub<6566> AllocateTemporaryEntryPoints +00007FA12A4D22B8 48 stub<6567> AllocateTemporaryEntryPoints +00007FA12A295E20 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A295EC0 94 valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[] [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryHttpHeaderNames::GetDefaultAgentHeaders()[QuickJitted] +00007FA12A4D2300 18 stub<6568> AllocateTemporaryEntryPoints +00007FA12A4D2318 18 stub<6569> AllocateTemporaryEntryPoints +00007FA12A4D2330 18 stub<6570> AllocateTemporaryEntryPoints +00007FA12A295F70 47 void [Datadog.Trace] Datadog.Trace.Telemetry.Transports.TelemetryTransportStrategy+<>c::.cctor()[QuickJitted] +00007FA12A295FD0 1f instance void [Datadog.Trace] Datadog.Trace.Telemetry.Transports.TelemetryTransportStrategy+<>c::.ctor()[QuickJitted] +00007FA12A296010 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A4D2348 18 stub<6571> AllocateTemporaryEntryPoints +00007FA12A4D2360 d8 stub<6572> AllocateTemporaryEntryPoints +00007FA12A2960F0 30 instance class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Telemetry.Transports.TelemetryTransportStrategy+<>c::b__3_1(class [System.Runtime]System.Uri)[QuickJitted] +00007FA12A4D2438 18 stub<6573> AllocateTemporaryEntryPoints +00007FA12A4D2450 18 stub<6574> AllocateTemporaryEntryPoints +00007FA12A296140 27 instance void [Datadog.Trace] Datadog.Trace.Telemetry.Transports.AgentTelemetryTransport::.ctor(class Datadog.Trace.Agent.IApiRequestFactory)[QuickJitted] +00007FA12A296180 5d instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryAdd(!0,!1)[QuickJitted] +00007FA12A296200 66 instance void [Datadog.Trace] Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport::.ctor(class Datadog.Trace.Agent.IApiRequestFactory)[QuickJitted] +00007FA1277BFFC0 18 stub<6575> GenerateLookupStub +00007FA12A4D2468 18 stub<6576> AllocateTemporaryEntryPoints +00007FA12A296280 384 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA1277BFFE0 18 stub<6577> GenerateLookupStub +00007FA1277C0000 18 stub<6578> GenerateLookupStub +00007FA12A4D2480 18 stub<6579> AllocateTemporaryEntryPoints +00007FA12A4D2498 18 stub<6580> AllocateTemporaryEntryPoints +00007FA1277C0020 18 stub<6581> GenerateLookupStub +00007FA12A296630 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::.ctor()[QuickJitted] +00007FA12A4D24B0 18 stub<6582> AllocateTemporaryEntryPoints +00007FA12A4D24C8 18 stub<6583> AllocateTemporaryEntryPoints +00007FA12A4D24E0 18 stub<6584> AllocateTemporaryEntryPoints +00007FA12A296670 1b5 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::.ctor(class Datadog.Trace.Telemetry.ITelemetryTransport[])[QuickJitted] +00007FA12A4D24F8 18 stub<6585> AllocateTemporaryEntryPoints +00007FA12A2968E0 29 void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::.cctor()[QuickJitted] +00007FA12A296840 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A4D2510 18 stub<6586> AllocateTemporaryEntryPoints +00007FA12A4D2528 18 stub<6587> AllocateTemporaryEntryPoints +00007FA12A296920 30 instance bool [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::IsEnabled(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel)[QuickJitted] +00007FA12A296EB0 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A296970 513 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12A4D2540 d8 stub<6588> AllocateTemporaryEntryPoints +00007FA12A296F50 d3 void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryFactory::.cctor()[QuickJitted] +00007FA12A4D2618 18 stub<6589> AllocateTemporaryEntryPoints +00007FA12A297040 1f instance void [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::.ctor()[QuickJitted] +00007FA12A297080 94 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA12A4D2630 168 stub<6590> AllocateTemporaryEntryPoints +00007FA12A297130 65 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA12A2971B0 25c class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A4D2798 6f0 stub<6591> AllocateTemporaryEntryPoints +00007FA12A297430 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23]::.ctor()[QuickJitted] +00007FA12A4D2E88 48 stub<6592> AllocateTemporaryEntryPoints +00007FA12A4D2ED0 c0 stub<6593> AllocateTemporaryEntryPoints +00007FA12A4D2F90 18 stub<6594> AllocateTemporaryEntryPoints +00007FA12A4D4000 90 stub<6595> AllocateTemporaryEntryPoints +00007FA12A4D4090 a8 stub<6596> AllocateTemporaryEntryPoints +00007FA12A4D4138 18 stub<6597> AllocateTemporaryEntryPoints +00007FA12A4D4150 78 stub<6598> AllocateTemporaryEntryPoints +00007FA12A4D41C8 18 stub<6599> AllocateTemporaryEntryPoints +00007FA12A4D41E0 48 stub<6600> AllocateTemporaryEntryPoints +00007FA12A4D4228 18 stub<6601> AllocateTemporaryEntryPoints +00007FA12A297470 53 instance void [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryCollector::.ctor()[QuickJitted] +00007FA12A4D4240 270 stub<6602> AllocateTemporaryEntryPoints +00007FA12A4D44B0 18 stub<6603> AllocateTemporaryEntryPoints +00007FA12A4D44C8 18 stub<6604> AllocateTemporaryEntryPoints +00007FA12A4D44E0 18 stub<6605> AllocateTemporaryEntryPoints +00007FA12A4D44F8 18 stub<6606> AllocateTemporaryEntryPoints +00007FA12A2974E0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A4D4510 48 stub<6607> AllocateTemporaryEntryPoints +00007FA12A4D4558 18 stub<6608> AllocateTemporaryEntryPoints +00007FA12A4D4570 18 stub<6609> AllocateTemporaryEntryPoints +00007FA12A4D4588 60 stub<6610> AllocateTemporaryEntryPoints +00007FA12A297530 72 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[Interop+Sys+SocketEvent]::.ctor(void*,int32)[QuickJitted] +00007FA12A2975C0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A297620 8 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12A4D45E8 d8 stub<6611> AllocateTemporaryEntryPoints +00007FA12A297640 119 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector::.ctor()[QuickJitted] +00007FA12A4D46C0 18 stub<6612> AllocateTemporaryEntryPoints +00007FA12A4D46D8 18 stub<6613> AllocateTemporaryEntryPoints +00007FA12A297780 31 void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryConstants::.cctor()[QuickJitted] +00007FA12A2977E0 1c instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.Telemetry.TelemetrySettings::get_HeartbeatInterval()[QuickJitted] +00007FA12A4D46F0 90 stub<6614> AllocateTemporaryEntryPoints +00007FA12A4D4780 60 stub<6615> AllocateTemporaryEntryPoints +00007FA12A297810 27e class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A297E30 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::.ctor()[QuickJitted] +00007FA12A297AB0 35a instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12A4D47E0 18 stub<6616> AllocateTemporaryEntryPoints +00007FA1277C0040 18 stub<6617> GenerateLookupStub +00007FA12A297E70 563 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::.ctor(class Datadog.Trace.Telemetry.ConfigurationTelemetryCollector,class Datadog.Trace.Telemetry.DependencyTelemetryCollector,class Datadog.Trace.Telemetry.IntegrationTelemetryCollector,class Datadog.Trace.Telemetry.TelemetryTransportManager,valuetype [System.Runtime]System.TimeSpan,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12A298400 94 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::GetBucket(int32)[QuickJitted] +00007FA1277C0060 18 stub<6618> GenerateLookupStub +00007FA12A2984B0 1f instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryDataBuilder::.ctor()[QuickJitted] +00007FA12A2984F0 4b instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::Enqueue(!0)[QuickJitted] +00007FA12A298550 c4 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::RecordAssembly(class [System.Runtime]System.Reflection.Assembly)[QuickJitted] +00007FA12A298640 59 instance void [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryCollector::AssemblyLoaded(class [System.Runtime]System.Reflection.Assembly)[QuickJitted] +00007FA12A2986B0 145 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::TryEnqueue(!0)[QuickJitted] +00007FA12A298810 146 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A298990 24c instance void [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryCollector::AssemblyLoaded(class [System.Runtime]System.Reflection.AssemblyName)[QuickJitted] +00007FA12A4D47F8 18 stub<6619> AllocateTemporaryEntryPoints +00007FA12A4D4810 18 stub<6620> AllocateTemporaryEntryPoints +00007FA12A4D4828 18 stub<6621> AllocateTemporaryEntryPoints +00007FA12A4D4840 18 stub<6622> AllocateTemporaryEntryPoints +00007FA12A4D4858 60 stub<6623> AllocateTemporaryEntryPoints +00007FA12A298C00 19c bool [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryCollector::IsTempPathPattern(string)[QuickJitted] +00007FA12A4D48B8 18 stub<6624> AllocateTemporaryEntryPoints +00007FA12A298DB0 78 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::TryDequeue(!0&)[QuickJitted] +00007FA12A4D48D0 18 stub<6625> AllocateTemporaryEntryPoints +00007FA12A298E40 ff bool [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryCollector::IsGuid(string)[QuickJitted] +00007FA12A4D48E8 18 stub<6626> AllocateTemporaryEntryPoints +00007FA12A298F60 31 instance void [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::.ctor(string)[QuickJitted] +00007FA12A4D4900 78 stub<6627> AllocateTemporaryEntryPoints +00007FA12A298FB0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::set_Name(string)[QuickJitted] +00007FA12A4D4978 f0 stub<6628> AllocateTemporaryEntryPoints +00007FA12A299630 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::set_Version(string)[QuickJitted] +00007FA12A299400 217 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::TryDequeue(!0&)[QuickJitted] +00007FA12A4D4A68 60 stub<6629> AllocateTemporaryEntryPoints +00007FA12A4D4AC8 18 stub<6630> AllocateTemporaryEntryPoints +00007FA12A299670 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12A4D4AE0 18 stub<6631> AllocateTemporaryEntryPoints +00007FA12A4D4AF8 18 stub<6632> AllocateTemporaryEntryPoints +00007FA12A299690 dd instance int32 [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::GetHashCode()[QuickJitted] +00007FA12A299790 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2997D0 38 instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::get_EqualityContract()[QuickJitted] +00007FA12A4D4B10 60 stub<6633> AllocateTemporaryEntryPoints +00007FA12A4D4B70 48 stub<6634> AllocateTemporaryEntryPoints +00007FA12A299920 2e instance void [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryCollector::SetHasChanges()[QuickJitted] +00007FA12A299820 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A4D4BB8 78 stub<6635> AllocateTemporaryEntryPoints +00007FA1277F60D0 18 stub<6636> GenerateResolveStub +00007FA1277C4080 20 stub<6637> GenerateDispatchStub +00007FA12A4D4C30 18 stub<6638> AllocateTemporaryEntryPoints +00007FA12A4D4C48 18 stub<6639> AllocateTemporaryEntryPoints +00007FA12A4D4C60 18 stub<6640> AllocateTemporaryEntryPoints +00007FA12A299970 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A4D4C78 18 stub<6641> AllocateTemporaryEntryPoints +00007FA12A2999C0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A299A20 49 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::RecordTracerSettings(class Datadog.Trace.Configuration.ImmutableTracerSettings,string)[QuickJitted] +00007FA12A4D4C90 d8 stub<6642> AllocateTemporaryEntryPoints +00007FA12A4D4D68 1c8 stub<6643> AllocateTemporaryEntryPoints +00007FA12A4D4F30 18 stub<6644> AllocateTemporaryEntryPoints +00007FA12A4D4F48 48 stub<6645> AllocateTemporaryEntryPoints +00007FA12A4D6000 168 stub<6646> AllocateTemporaryEntryPoints +00007FA12A299A80 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::MoveNext()[QuickJitted] +00007FA12A299AC0 25c class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A299D40 2dd instance void [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::RecordTracerSettings(class Datadog.Trace.Configuration.ImmutableTracerSettings,string)[QuickJitted] +00007FA12A29A040 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::.ctor()[QuickJitted] +00007FA12A29A080 79 instance void [Datadog.Trace] Datadog.Trace.Telemetry.ApplicationTelemetryData::.ctor(string,string,string,string,string)[QuickJitted] +00007FA12A4D6168 18 stub<6647> AllocateTemporaryEntryPoints +00007FA12A29A110 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A29A290 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.ApplicationTelemetryData::set_ServiceName(string)[QuickJitted] +00007FA12A29A2D0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.ApplicationTelemetryData::set_Env(string)[QuickJitted] +00007FA12A29A310 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.ApplicationTelemetryData::set_TracerVersion(string)[QuickJitted] +00007FA12A4D6180 f0 stub<6648> AllocateTemporaryEntryPoints +00007FA12A29A3D0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.ApplicationTelemetryData::set_LanguageName(string)[QuickJitted] +00007FA12A29A350 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::.cctor()[QuickJitted] +00007FA12A29A410 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.ApplicationTelemetryData::set_LanguageVersion(string)[QuickJitted] +00007FA12A4D6270 18 stub<6649> AllocateTemporaryEntryPoints +00007FA12A29A450 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.ApplicationTelemetryData::set_ServiceVersion(string)[QuickJitted] +00007FA12A4D6288 18 stub<6650> AllocateTemporaryEntryPoints +00007FA12A4D62A0 18 stub<6651> AllocateTemporaryEntryPoints +00007FA12A29A490 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.ApplicationTelemetryData::set_RuntimeName(string)[QuickJitted] +00007FA12A4D62B8 18 stub<6652> AllocateTemporaryEntryPoints +00007FA12A29A510 49 instance void [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector+CurrentSettings::.ctor(class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.Telemetry.ApplicationTelemetryData)[QuickJitted] +00007FA12A29A4D0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A29A570 1f instance void [Datadog.Trace] Datadog.Trace.Telemetry.HostTelemetryData::.ctor()[QuickJitted] +00007FA12A29A5B0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A29A650 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.HostTelemetryData::set_ContainerId(string)[QuickJitted] +00007FA12A4D62D0 18 stub<6653> AllocateTemporaryEntryPoints +00007FA12A29A690 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.HostTelemetryData::set_Os(string)[QuickJitted] +00007FA12A4D62E8 18 stub<6654> AllocateTemporaryEntryPoints +00007FA12A29A6D0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.HostTelemetryData::set_OsVersion(string)[QuickJitted] +00007FA12A29A710 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.HostTelemetryData::set_Hostname(string)[QuickJitted] +00007FA12A29A750 1c instance string [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::get_KernelName()[QuickJitted] +00007FA12A29A780 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.HostTelemetryData::set_KernelName(string)[QuickJitted] +00007FA12A29A7C0 1c instance string [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::get_KernelRelease()[QuickJitted] +00007FA12A29A7F0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.HostTelemetryData::set_KernelRelease(string)[QuickJitted] +00007FA12A29A830 1c instance string [Datadog.Trace] Datadog.Trace.PlatformHelpers.HostMetadata::get_KernelVersion()[QuickJitted] +00007FA12A29A860 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.HostTelemetryData::set_KernelVersion(string)[QuickJitted] +00007FA12A4D6300 18 stub<6655> AllocateTemporaryEntryPoints +00007FA12A4D6318 18 stub<6656> AllocateTemporaryEntryPoints +00007FA12A4D6330 18 stub<6657> AllocateTemporaryEntryPoints +00007FA12A4D6348 18 stub<6658> AllocateTemporaryEntryPoints +00007FA12A4D6360 18 stub<6659> AllocateTemporaryEntryPoints +00007FA1277F6140 18 stub<6660> GenerateResolveStub +00007FA12A29A980 2e instance void [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::SetHasChanges()[QuickJitted] +00007FA12A29A8A0 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A4D6378 18 stub<6661> AllocateTemporaryEntryPoints +00007FA1277C40A0 20 stub<6662> GenerateDispatchStub +00007FA12A4D6390 d8 stub<6663> AllocateTemporaryEntryPoints +00007FA12A29A9D0 117 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector::RecordTracerSettings(class Datadog.Trace.Configuration.ImmutableTracerSettings)[QuickJitted] +00007FA12A4D6468 18 stub<6664> AllocateTemporaryEntryPoints +00007FA12A4D6480 18 stub<6665> AllocateTemporaryEntryPoints +00007FA12A29AB00 1c instance class Datadog.Trace.Configuration.ImmutableIntegrationSettingsCollection [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_Integrations()[QuickJitted] +00007FA12A29AB30 1c instance class Datadog.Trace.Configuration.ImmutableIntegrationSettings[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettingsCollection::get_Settings()[QuickJitted] +00007FA12A29AB60 1d instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettings::get_Enabled()[QuickJitted] +00007FA12A29ABA0 3b0 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A29AF70 2e instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector::SetHasChanges()[QuickJitted] +00007FA12A4D6498 60 stub<6666> AllocateTemporaryEntryPoints +00007FA12A29AFC0 1c instance class Datadog.Trace.AppSec.SecuritySettings [Datadog.Trace] Datadog.Trace.AppSec.Security::get_Settings()[QuickJitted] +00007FA12A4D64F8 18 stub<6667> AllocateTemporaryEntryPoints +00007FA12A29B080 65 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::PushTelemetryLoopAsync()[QuickJitted] +00007FA12A4D6510 18 stub<6668> AllocateTemporaryEntryPoints +00007FA12A4D6528 60 stub<6669> AllocateTemporaryEntryPoints +00007FA12A29B100 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A4D6588 18 stub<6670> AllocateTemporaryEntryPoints +00007FA12A29B140 65 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::PushHeartbeatLoopAsync()[QuickJitted] +00007FA12A29B1C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A4D65A0 18 stub<6671> AllocateTemporaryEntryPoints +00007FA12A29B2C0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A4D65B8 18 stub<6672> AllocateTemporaryEntryPoints +00007FA12A4D65D0 18 stub<6673> AllocateTemporaryEntryPoints +00007FA12A4D65E8 18 stub<6674> AllocateTemporaryEntryPoints +00007FA12A4D6600 18 stub<6675> AllocateTemporaryEntryPoints +00007FA12A4D6618 18 stub<6676> AllocateTemporaryEntryPoints +00007FA12A29B300 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A4D6630 18 stub<6677> AllocateTemporaryEntryPoints +00007FA12A4D6648 18 stub<6678> AllocateTemporaryEntryPoints +00007FA12A4D6660 18 stub<6679> AllocateTemporaryEntryPoints +00007FA12A4D6678 18 stub<6680> AllocateTemporaryEntryPoints +00007FA12A29B400 6f8 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController+d__30::MoveNext()[QuickJitted] +00007FA12A29BB50 5b8 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController+d__29::MoveNext()[QuickJitted] +00007FA12A4D6690 18 stub<6681> AllocateTemporaryEntryPoints +00007FA12A4D66A8 540 stub<6682> AllocateTemporaryEntryPoints +00007FA12A4D6BE8 18 stub<6683> AllocateTemporaryEntryPoints +00007FA12A29C150 cb class System.Threading.Tasks.Task`1> [System.Private.CoreLib] System.Threading.Tasks.Task::WhenAny(class System.Threading.Tasks.Task`1,class System.Threading.Tasks.Task`1)[QuickJitted] +00007FA12A4D6C00 18 stub<6684> AllocateTemporaryEntryPoints +00007FA12A4D6C18 18 stub<6685> AllocateTemporaryEntryPoints +00007FA12A4D6C30 18 stub<6686> AllocateTemporaryEntryPoints +00007FA12A4D6C48 18 stub<6687> AllocateTemporaryEntryPoints +00007FA12A29C230 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A29C2D0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A4D6C60 18 stub<6688> AllocateTemporaryEntryPoints +00007FA12A4D6C78 18 stub<6689> AllocateTemporaryEntryPoints +00007FA12A29C370 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A4D6C90 18 stub<6690> AllocateTemporaryEntryPoints +00007FA12A4D6CA8 d8 stub<6691> AllocateTemporaryEntryPoints +00007FA12A4D6D80 18 stub<6692> AllocateTemporaryEntryPoints +00007FA12A4D6D98 18 stub<6693> AllocateTemporaryEntryPoints +00007FA12A29C410 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A4D6DB0 d8 stub<6694> AllocateTemporaryEntryPoints +00007FA12A4D6E88 18 stub<6695> AllocateTemporaryEntryPoints +00007FA12A29C4B0 257 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A29C720 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__30]::.ctor()[QuickJitted] +00007FA12A4D6EA0 18 stub<6696> AllocateTemporaryEntryPoints +00007FA12A29C760 257 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A29C9D0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__29]::.ctor()[QuickJitted] +00007FA12A29AFF0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::.ctor()[QuickJitted] +00007FA12A4D6EB8 18 stub<6697> AllocateTemporaryEntryPoints +00007FA12A29B030 2d instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::RecordSecuritySettings(class Datadog.Trace.AppSec.SecuritySettings)[QuickJitted] +00007FA12A4D8000 2a0 stub<6698> AllocateTemporaryEntryPoints +00007FA12A4D82A0 18 stub<6699> AllocateTemporaryEntryPoints +00007FA12A4D82B8 18 stub<6700> AllocateTemporaryEntryPoints +00007FA12A29CA10 34 instance void [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::RecordSecuritySettings(class Datadog.Trace.AppSec.SecuritySettings)[QuickJitted] +00007FA12A4D82D0 18 stub<6701> AllocateTemporaryEntryPoints +00007FA12A29CA60 49 class Datadog.Trace.Iast.Iast [Datadog.Trace] Datadog.Trace.Iast.Iast::get_Instance()[QuickJitted] +00007FA12A4D82E8 18 stub<6702> AllocateTemporaryEntryPoints +00007FA12A29CAC0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::MoveNext()[QuickJitted] +00007FA12A29CB00 69 void [Datadog.Trace] Datadog.Trace.Iast.Iast::.cctor()[QuickJitted] +00007FA12A4D8300 18 stub<6703> AllocateTemporaryEntryPoints +00007FA12A4D8318 18 stub<6704> AllocateTemporaryEntryPoints +00007FA12A29CB80 21 instance void [Datadog.Trace] Datadog.Trace.Iast.Iast::.ctor()[QuickJitted] +00007FA12A29CBC0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A29CD40 12e instance void [Datadog.Trace] Datadog.Trace.Iast.Iast::.ctor(class Datadog.Trace.Iast.Settings.IastSettings)[QuickJitted] +00007FA12A29CE90 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::.cctor()[QuickJitted] +00007FA12A4D8330 18 stub<6705> AllocateTemporaryEntryPoints +00007FA12A29CF10 49 class Datadog.Trace.Iast.Settings.IastSettings [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::FromDefaultSources()[QuickJitted] +00007FA12A29CF70 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A4D8348 18 stub<6706> AllocateTemporaryEntryPoints +00007FA12A29CFB0 83 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12A29D7E0 5d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12A29D050 76c instance void [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12A29D860 5c void [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::.cctor()[QuickJitted] +00007FA12A29D8D0 1c instance string [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::get_WeakCipherAlgorithms()[QuickJitted] +00007FA12A4D8360 18 stub<6707> AllocateTemporaryEntryPoints +00007FA12A29D900 1c instance string [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::get_WeakHashAlgorithms()[QuickJitted] +00007FA12A29D930 22 instance void [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::set_Enabled(bool)[QuickJitted] +00007FA12A29D970 1c instance bool [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::get_Enabled()[QuickJitted] +00007FA12A29D9A0 1c instance class Datadog.Trace.Iast.Settings.IastSettings [Datadog.Trace] Datadog.Trace.Iast.Iast::get_Settings()[QuickJitted] +00007FA12A29D9D0 2d instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::RecordIastSettings(class Datadog.Trace.Iast.Settings.IastSettings)[QuickJitted] +00007FA12A29DA20 34 instance void [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::RecordIastSettings(class Datadog.Trace.Iast.Settings.IastSettings)[QuickJitted] +00007FA12A29DA70 2d instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::RecordProfilerSettings(class Datadog.Trace.ContinuousProfiler.Profiler)[QuickJitted] +00007FA12A29DAC0 34 instance void [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::RecordProfilerSettings(class Datadog.Trace.ContinuousProfiler.Profiler)[QuickJitted] +00007FA12A29DB10 1f instance string[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_PropagationStyleInject()[QuickJitted] +00007FA12A29DB50 1f instance string[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_PropagationStyleExtract()[QuickJitted] +00007FA12A4D8378 18 stub<6708> AllocateTemporaryEntryPoints +00007FA12A4D8390 18 stub<6709> AllocateTemporaryEntryPoints +00007FA12A4D83A8 18 stub<6710> AllocateTemporaryEntryPoints +00007FA12A4D83C0 18 stub<6711> AllocateTemporaryEntryPoints +00007FA12A4D83D8 18 stub<6712> AllocateTemporaryEntryPoints +00007FA12A4D83F0 18 stub<6713> AllocateTemporaryEntryPoints +00007FA12A4D8408 18 stub<6714> AllocateTemporaryEntryPoints +00007FA12A29DB90 81 class Datadog.Trace.Propagators.SpanContextPropagator [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory::GetSpanContextPropagator(string[],string[])[QuickJitted] +00007FA12A4D8420 d8 stub<6715> AllocateTemporaryEntryPoints +00007FA12A4D84F8 18 stub<6716> AllocateTemporaryEntryPoints +00007FA12A4D8510 18 stub<6717> AllocateTemporaryEntryPoints +00007FA12A4D8528 d8 stub<6718> AllocateTemporaryEntryPoints +00007FA12A4D8600 d8 stub<6719> AllocateTemporaryEntryPoints +00007FA12A4D86D8 18 stub<6720> AllocateTemporaryEntryPoints +00007FA12A4D86F0 18 stub<6721> AllocateTemporaryEntryPoints +00007FA12A29DC30 8b class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory::GetPropagators(string[])[QuickJitted] +00007FA12A29DCD0 37 instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory+d__1`1[System.__Canon]::.ctor(int32)[QuickJitted] +00007FA12A4D8708 a8 stub<6722> AllocateTemporaryEntryPoints +00007FA12A4D87B0 6f0 stub<6723> AllocateTemporaryEntryPoints +00007FA12A4D8EA0 c0 stub<6724> AllocateTemporaryEntryPoints +00007FA12A4D8F60 90 stub<6725> AllocateTemporaryEntryPoints +00007FA12A4DA000 a8 stub<6726> AllocateTemporaryEntryPoints +00007FA12A4DA0A8 18 stub<6727> AllocateTemporaryEntryPoints +00007FA12A4DA0C0 78 stub<6728> AllocateTemporaryEntryPoints +00007FA12A4DA138 18 stub<6729> AllocateTemporaryEntryPoints +00007FA12A4DA150 18 stub<6730> AllocateTemporaryEntryPoints +00007FA12A4DA168 18 stub<6731> AllocateTemporaryEntryPoints +00007FA12A4DA180 18 stub<6732> AllocateTemporaryEntryPoints +00007FA12A4DA198 18 stub<6733> AllocateTemporaryEntryPoints +00007FA12A29DD20 16f instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12A29DEB0 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Propagators.SpanContextPropagator+Key,System.__Canon]::.ctor()[QuickJitted] +00007FA12A29DF50 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Propagators.SpanContextPropagator+Key,System.__Canon]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12A4DA1B0 30 stub<6734> AllocateTemporaryEntryPoints +00007FA12A4DA1E0 18 stub<6735> AllocateTemporaryEntryPoints +00007FA12A4DA1F8 48 stub<6736> AllocateTemporaryEntryPoints +00007FA12A4DA240 d8 stub<6737> AllocateTemporaryEntryPoints +00007FA12A29DF80 388 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.Propagators.SpanContextPropagator+Key,System.__Canon]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12A29E330 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Datadog.Trace.Propagators.SpanContextPropagator+Key,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12A29E3C0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Propagators.SpanContextPropagator+Key]::get_Default()[QuickJitted] +00007FA12A29E400 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Propagators.SpanContextPropagator+Key]::.cctor()[QuickJitted] +00007FA12A4DA318 18 stub<6738> AllocateTemporaryEntryPoints +00007FA12A4DA330 a8 stub<6739> AllocateTemporaryEntryPoints +00007FA12A29E480 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Datadog.Trace.Propagators.SpanContextPropagator+Key]::.ctor()[QuickJitted] +00007FA12A29E4C0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Propagators.SpanContextPropagator+Key]::.ctor()[QuickJitted] +00007FA12A4DA3D8 18 stub<6740> AllocateTemporaryEntryPoints +00007FA1277C0080 18 stub<6741> GenerateLookupStub +00007FA12A29E500 90 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory+d__1`1[System.__Canon]::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12A4DA3F0 18 stub<6742> AllocateTemporaryEntryPoints +00007FA12A4DA408 18 stub<6743> AllocateTemporaryEntryPoints +00007FA12A29E5B0 205 instance bool [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory+d__1`1[System.__Canon]::MoveNext()[QuickJitted] +00007FA12A4DA420 108 stub<6744> AllocateTemporaryEntryPoints +00007FA12A29E7E0 146 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A29E960 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::ExecuteFromThreadPool(class System.Threading.Thread)[QuickJitted] +00007FA12A4DA5D0 540 stub<6746> AllocateTemporaryEntryPoints +00007FA12A4DAB10 1e0 stub<6747> AllocateTemporaryEntryPoints +00007FA12A4DACF0 18 stub<6748> AllocateTemporaryEntryPoints +00007FA12A4DAD08 18 stub<6749> AllocateTemporaryEntryPoints +00007FA12A29E9A0 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A29EB90 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A4DAD20 18 stub<6750> AllocateTemporaryEntryPoints +00007FA12A4DAD38 18 stub<6751> AllocateTemporaryEntryPoints +00007FA12A4DAD50 18 stub<6752> AllocateTemporaryEntryPoints +00007FA12A4DAD68 18 stub<6753> AllocateTemporaryEntryPoints +00007FA12A4DAD80 18 stub<6754> AllocateTemporaryEntryPoints +00007FA12A4DAD98 18 stub<6755> AllocateTemporaryEntryPoints +00007FA12A29EC30 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::.cctor()[QuickJitted] +00007FA12A4DADB0 18 stub<6756> AllocateTemporaryEntryPoints +00007FA12A4DA528 a8 stub<6745> AllocateTemporaryEntryPoints +00007FA12A4DADC8 18 stub<6757> AllocateTemporaryEntryPoints +00007FA12A29EDC0 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A29ECE0 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A4DADE0 18 stub<6758> AllocateTemporaryEntryPoints +00007FA12A4DADF8 a8 stub<6759> AllocateTemporaryEntryPoints +00007FA12A4DAEA0 18 stub<6760> AllocateTemporaryEntryPoints +00007FA12A4DAEB8 18 stub<6761> AllocateTemporaryEntryPoints +00007FA12A4DAED0 48 stub<6762> AllocateTemporaryEntryPoints +00007FA12A29EE10 a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::ClearStateUponCompletion()[QuickJitted] +00007FA12A4DAF18 d8 stub<6763> AllocateTemporaryEntryPoints +00007FA12A4DC000 1c8 stub<6764> AllocateTemporaryEntryPoints +00007FA12A4DC1C8 18 stub<6765> AllocateTemporaryEntryPoints +00007FA12A4DC1E0 18 stub<6766> AllocateTemporaryEntryPoints +00007FA12A4DC1F8 90 stub<6767> AllocateTemporaryEntryPoints +00007FA12A4DC288 18 stub<6768> AllocateTemporaryEntryPoints +00007FA12A4DC2A0 18 stub<6769> AllocateTemporaryEntryPoints +00007FA12A4DC2B8 90 stub<6770> AllocateTemporaryEntryPoints +00007FA12A4DC348 18 stub<6771> AllocateTemporaryEntryPoints +00007FA12A4DC360 18 stub<6772> AllocateTemporaryEntryPoints +00007FA12A4DC378 60 stub<6773> AllocateTemporaryEntryPoints +00007FA12A4DC3D8 d8 stub<6774> AllocateTemporaryEntryPoints +00007FA12A4DC4B0 18 stub<6775> AllocateTemporaryEntryPoints +00007FA12A4DC4C8 18 stub<6776> AllocateTemporaryEntryPoints +00007FA12A29EED0 3a9 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A29F2A0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::.ctor()[QuickJitted] +00007FA12A4DC4E0 18 stub<6777> AllocateTemporaryEntryPoints +00007FA12A29F2E0 7c void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A4DC4F8 18 stub<6778> AllocateTemporaryEntryPoints +00007FA12A4DC510 18 stub<6779> AllocateTemporaryEntryPoints +00007FA12A29F790 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A4DC528 18 stub<6780> AllocateTemporaryEntryPoints +00007FA12A4DC540 18 stub<6781> AllocateTemporaryEntryPoints +00007FA12A4DC558 18 stub<6782> AllocateTemporaryEntryPoints +00007FA12A4DC570 18 stub<6783> AllocateTemporaryEntryPoints +00007FA12A4DC588 18 stub<6784> AllocateTemporaryEntryPoints +00007FA12A29F830 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A4DC5A0 18 stub<6785> AllocateTemporaryEntryPoints +00007FA12A4DC5B8 d8 stub<6786> AllocateTemporaryEntryPoints +00007FA12A4DC690 18 stub<6787> AllocateTemporaryEntryPoints +00007FA12A4DC6A8 18 stub<6788> AllocateTemporaryEntryPoints +00007FA12A29F910 3a9 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A29FCE0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::.ctor()[QuickJitted] +00007FA12A4DC6C0 18 stub<6789> AllocateTemporaryEntryPoints +00007FA12A4DC6D8 48 stub<6790> AllocateTemporaryEntryPoints +00007FA12A4DC720 18 stub<6791> AllocateTemporaryEntryPoints +00007FA12A29FD20 7e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A4DC738 18 stub<6792> AllocateTemporaryEntryPoints +00007FA12A4DC750 18 stub<6793> AllocateTemporaryEntryPoints +00007FA12A29FDD0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A4DC768 18 stub<6794> AllocateTemporaryEntryPoints +00007FA12A4DC780 18 stub<6795> AllocateTemporaryEntryPoints +00007FA12A4DC798 18 stub<6796> AllocateTemporaryEntryPoints +00007FA12A4DC7B0 18 stub<6797> AllocateTemporaryEntryPoints +00007FA12A29FE70 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A4DC7C8 d8 stub<6798> AllocateTemporaryEntryPoints +00007FA12A4DC8A0 18 stub<6799> AllocateTemporaryEntryPoints +00007FA12A29FF10 26c class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2A01A0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::.ctor()[QuickJitted] +00007FA12A4DC8B8 18 stub<6800> AllocateTemporaryEntryPoints +00007FA12A2A01E0 7c void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A2A0280 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::ExecuteFromThreadPool(class System.Threading.Thread)[QuickJitted] +00007FA12A2A02C0 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A4DC8D0 18 stub<6801> AllocateTemporaryEntryPoints +00007FA12A2A04B0 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::.cctor()[QuickJitted] +00007FA12A4DC8E8 18 stub<6802> AllocateTemporaryEntryPoints +00007FA12A4DC900 18 stub<6803> AllocateTemporaryEntryPoints +00007FA12A2A0560 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A2A05B0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::MoveNext()[QuickJitted] +00007FA12A2A05F0 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A4DC918 18 stub<6804> AllocateTemporaryEntryPoints +00007FA12A2A07E0 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::.cctor()[QuickJitted] +00007FA12A4DC930 18 stub<6805> AllocateTemporaryEntryPoints +00007FA12A4DC948 18 stub<6806> AllocateTemporaryEntryPoints +00007FA12A2A0890 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A4DC960 60 stub<6807> AllocateTemporaryEntryPoints +00007FA12A4DC9C0 18 stub<6808> AllocateTemporaryEntryPoints +00007FA12A4DC9D8 18 stub<6809> AllocateTemporaryEntryPoints +00007FA12A4DC9F0 18 stub<6810> AllocateTemporaryEntryPoints +00007FA12A2A08E0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A2A0920 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A4DCA08 18 stub<6811> AllocateTemporaryEntryPoints +00007FA12A4DCA20 18 stub<6812> AllocateTemporaryEntryPoints +00007FA12A4DCA38 18 stub<6813> AllocateTemporaryEntryPoints +00007FA12A4DCA50 18 stub<6814> AllocateTemporaryEntryPoints +00007FA12A4DCA68 60 stub<6815> AllocateTemporaryEntryPoints +00007FA12A4DCAC8 18 stub<6816> AllocateTemporaryEntryPoints +00007FA12A4DCAE0 18 stub<6817> AllocateTemporaryEntryPoints +00007FA12A4DCAF8 18 stub<6818> AllocateTemporaryEntryPoints +00007FA12A2A0A20 1a8 object [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory::GetPropagator(string)[QuickJitted] +00007FA12A2A0BE0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A4DCB10 90 stub<6819> AllocateTemporaryEntryPoints +00007FA12A4DCBA0 60 stub<6820> AllocateTemporaryEntryPoints +00007FA12A2A0C20 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A4DCC00 18 stub<6821> AllocateTemporaryEntryPoints +00007FA12A4DCC18 18 stub<6822> AllocateTemporaryEntryPoints +00007FA12A4DCC30 60 stub<6823> AllocateTemporaryEntryPoints +00007FA12A2A0D20 379 void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::.cctor()[QuickJitted] +00007FA12A2A10C0 2f instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.Char,System.Char]::.ctor(!0,!1)[QuickJitted] +00007FA12A2A1110 1f instance void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::.ctor()[QuickJitted] +00007FA1277C00A0 18 stub<6824> GenerateLookupStub +00007FA12A2A1150 1c instance !0 [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory+d__1`1[System.__Canon]::System.Collections.Generic.IEnumerator.get_Current()[QuickJitted] +00007FA1277C40C0 20 stub<6825> GenerateDispatchStub +00007FA1277C40E0 20 stub<6826> GenerateDispatchStub +00007FA12A2A1180 47 void [Datadog.Trace] Datadog.Trace.Propagators.DatadogContextPropagator::.cctor()[QuickJitted] +00007FA12A2A11E0 1f instance void [Datadog.Trace] Datadog.Trace.Propagators.DatadogContextPropagator::.ctor()[QuickJitted] +00007FA1277F61B0 18 stub<6827> GenerateResolveStub +00007FA1277C4100 20 stub<6828> GenerateDispatchStub +00007FA12A2A1220 40 instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory+d__1`1[System.__Canon]::<>m__Finally1()[QuickJitted] +00007FA1277C4120 20 stub<6829> GenerateDispatchStub +00007FA12A2A1280 5d instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagatorFactory+d__1`1[System.__Canon]::System.IDisposable.Dispose()[QuickJitted] +00007FA12A4DCC90 18 stub<6830> AllocateTemporaryEntryPoints +00007FA12A2A1300 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::MoveNext()[QuickJitted] +00007FA1277C00C0 18 stub<6831> GenerateLookupStub +00007FA1277F6220 18 stub<6832> GenerateResolveStub +00007FA1277C4140 20 stub<6833> GenerateDispatchStub +00007FA1277C4160 20 stub<6834> GenerateDispatchStub +00007FA1277C00E0 18 stub<6835> GenerateLookupStub +00007FA1277F6290 18 stub<6836> GenerateResolveStub +00007FA12A2A1340 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA1277C4180 20 stub<6837> GenerateDispatchStub +00007FA12A2A14C0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::.cctor()[QuickJitted] +00007FA12A4DCCC0 18 stub<6838> AllocateTemporaryEntryPoints +00007FA12A2A1540 d1 void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::set_Instance(class Datadog.Trace.Propagators.SpanContextPropagator)[QuickJitted] +00007FA12A2A1640 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A2A1680 47 void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::.cctor()[QuickJitted] +00007FA12A4DCCD8 30 stub<6839> AllocateTemporaryEntryPoints +00007FA12A4DCD08 150 stub<6840> AllocateTemporaryEntryPoints +00007FA12A2A16E0 a3 class Datadog.Trace.DataStreamsMonitoring.DataStreamsManager [Datadog.Trace] Datadog.Trace.DataStreamsMonitoring.DataStreamsManager::Create(class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,string)[QuickJitted] +00007FA12A2A1850 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_IsDataStreamsMonitoringEnabled()[QuickJitted] +00007FA12A2A17A0 91 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::ClearStateUponCompletion()[QuickJitted] +00007FA12A4DCE58 48 stub<6841> AllocateTemporaryEntryPoints +00007FA12A2A1890 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::ExecuteFromThreadPool(class System.Threading.Thread)[QuickJitted] +00007FA12A2A18D0 98 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::ClearStateUponCompletion()[QuickJitted] +00007FA12A2A1980 65 instance void [Datadog.Trace] Datadog.Trace.DataStreamsMonitoring.DataStreamsManager::.ctor(string,string,class Datadog.Trace.DataStreamsMonitoring.IDataStreamsWriter)[QuickJitted] +00007FA12A4DCEA0 f0 stub<6842> AllocateTemporaryEntryPoints +00007FA12A2A1A00 9b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::ClearStateUponCompletion()[QuickJitted] +00007FA12A2A1AB0 8e valuetype Datadog.Trace.DataStreamsMonitoring.Hashes.NodeHashBase [Datadog.Trace] Datadog.Trace.DataStreamsMonitoring.Hashes.HashHelper::CalculateNodeHashBase(string,string,string)[QuickJitted] +00007FA12A2A1B60 2f uint64 [Datadog.Trace] Datadog.Trace.Util.FnvHash64::GenerateHash(string,valuetype Datadog.Trace.Util.FnvHash64/Version)[QuickJitted] +00007FA12A2A1BB0 252 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A4DCF90 18 stub<6843> AllocateTemporaryEntryPoints +00007FA12A2A1E20 1ca uint64 [Datadog.Trace] Datadog.Trace.Util.FnvHash64::GenerateHash(string,valuetype Datadog.Trace.Util.FnvHash64/Version,uint64)[QuickJitted] +00007FA12A2A2010 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::.cctor()[QuickJitted] +00007FA12A4DCFA8 18 stub<6844> AllocateTemporaryEntryPoints +00007FA12A4DCFC0 18 stub<6845> AllocateTemporaryEntryPoints +00007FA12A2A20C0 8c uint64 [Datadog.Trace] Datadog.Trace.Util.FnvHash64::GenerateHash(valuetype [System.Runtime]System.Span`1,valuetype Datadog.Trace.Util.FnvHash64/Version,uint64)[QuickJitted] +00007FA12A2A2170 88 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A2A2210 b1 uint64 [Datadog.Trace] Datadog.Trace.Util.FnvHash64::GenerateV1Hash(valuetype [System.Runtime]System.ReadOnlySpan`1,uint64)[QuickJitted] +00007FA12A2A22E0 23 instance void [Datadog.Trace] Datadog.Trace.DataStreamsMonitoring.Hashes.NodeHashBase::.ctor(uint64)[QuickJitted] +00007FA12A2A2320 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::MoveNext()[QuickJitted] +00007FA12A2A2360 9f instance class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.TracerManagerFactory::CreateTracerManagerFrom(class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.Agent.IAgentWriter,class Datadog.Trace.Sampling.ITraceSampler,class Datadog.Trace.IScopeManager,class Datadog.Trace.Vendors.StatsdClient.IDogStatsd,class Datadog.Trace.RuntimeMetrics.RuntimeMetricsWriter,class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager,class Datadog.Trace.Telemetry.ITelemetryController,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,class Datadog.Trace.DataStreamsMonitoring.DataStreamsManager,string)[QuickJitted] +00007FA12A4DE000 48 stub<6846> AllocateTemporaryEntryPoints +00007FA12A4DE048 30 stub<6847> AllocateTemporaryEntryPoints +00007FA12A4DE078 30 stub<6848> AllocateTemporaryEntryPoints +00007FA1277C0100 18 stub<6849> GenerateLookupStub +00007FA12A2A2420 252 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A4DE0A8 18 stub<6850> AllocateTemporaryEntryPoints +00007FA12A4DE0C0 18 stub<6851> AllocateTemporaryEntryPoints +00007FA12A2A2690 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::.cctor()[QuickJitted] +00007FA12A4DE0D8 18 stub<6852> AllocateTemporaryEntryPoints +00007FA12A4DE0F0 18 stub<6853> AllocateTemporaryEntryPoints +00007FA12A2A2C50 88 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A2A2740 4de instance void [Datadog.Trace] Datadog.Trace.TracerManager::.ctor(class Datadog.Trace.Configuration.ImmutableTracerSettings,class Datadog.Trace.Agent.IAgentWriter,class Datadog.Trace.Sampling.ITraceSampler,class Datadog.Trace.IScopeManager,class Datadog.Trace.Vendors.StatsdClient.IDogStatsd,class Datadog.Trace.RuntimeMetrics.RuntimeMetricsWriter,class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager,class Datadog.Trace.Telemetry.ITelemetryController,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,class Datadog.Trace.DataStreamsMonitoring.DataStreamsManager,string,class Datadog.Trace.Processors.ITraceProcessor[])[QuickJitted] +00007FA12A2A2CF0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_QueryStringReportingEnabled()[QuickJitted] +00007FA12A2A2D30 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::MoveNext()[QuickJitted] +00007FA12A2A2D70 23 instance float64 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_ObfuscationQueryStringRegexTimeout()[QuickJitted] +00007FA12A2A2DB0 1f instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_ObfuscationQueryStringRegex()[QuickJitted] +00007FA12A4DE108 30 stub<6854> AllocateTemporaryEntryPoints +00007FA12A4DE138 30 stub<6855> AllocateTemporaryEntryPoints +00007FA12A2A2DF0 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A2A2FE0 8d instance void [Datadog.Trace] Datadog.Trace.Util.Http.QueryStringManager::.ctor(bool,float64,string,class Datadog.Trace.Logging.IDatadogLogger)[QuickJitted] +00007FA12A4DE168 18 stub<6856> AllocateTemporaryEntryPoints +00007FA12A4DE180 30 stub<6857> AllocateTemporaryEntryPoints +00007FA12A4DE1B0 30 stub<6858> AllocateTemporaryEntryPoints +00007FA12A2A3090 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::.cctor()[QuickJitted] +00007FA12A4DE1E0 18 stub<6859> AllocateTemporaryEntryPoints +00007FA12A4DE1F8 18 stub<6860> AllocateTemporaryEntryPoints +00007FA12A2A3140 fb class Datadog.Trace.Util.Http.QueryStringObfuscation.ObfuscatorBase [Datadog.Trace] Datadog.Trace.Util.Http.QueryStringObfuscation.ObfuscatorFactory::GetObfuscator(float64,string,class Datadog.Trace.Logging.IDatadogLogger,bool)[QuickJitted] +00007FA12A2A3260 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A4DE210 d8 stub<6861> AllocateTemporaryEntryPoints +00007FA12A4DE2E8 7c8 stub<6862> AllocateTemporaryEntryPoints +00007FA12A4DEAB0 240 stub<6863> AllocateTemporaryEntryPoints +00007FA12A4DECF0 198 stub<6864> AllocateTemporaryEntryPoints +00007FA12A510000 240 stub<6865> AllocateTemporaryEntryPoints +00007FA12A510240 d8 stub<6866> AllocateTemporaryEntryPoints +00007FA12A510318 60 stub<6867> AllocateTemporaryEntryPoints +00007FA12A2A32B0 ec instance void [Datadog.Trace] Datadog.Trace.Util.Http.QueryStringObfuscation.Obfuscator::.ctor(string,valuetype [System.Runtime]System.TimeSpan,class Datadog.Trace.Logging.IDatadogLogger)[QuickJitted] +00007FA12A510378 18 stub<6868> AllocateTemporaryEntryPoints +00007FA12A510390 18 stub<6869> AllocateTemporaryEntryPoints +00007FA12A2A33C0 1f instance void [Datadog.Trace] Datadog.Trace.Util.Http.QueryStringObfuscation.ObfuscatorBase::.ctor()[QuickJitted] +00007FA12A5103A8 18 stub<6870> AllocateTemporaryEntryPoints +00007FA12A2A3400 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A2A3440 38 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Regex::.ctor(string,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12A5103C0 18 stub<6871> AllocateTemporaryEntryPoints +00007FA12A5103D8 30 stub<6872> AllocateTemporaryEntryPoints +00007FA12A2A3490 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A510408 30 stub<6873> AllocateTemporaryEntryPoints +00007FA12A510438 18 stub<6874> AllocateTemporaryEntryPoints +00007FA12A510450 18 stub<6875> AllocateTemporaryEntryPoints +00007FA12A510468 18 stub<6876> AllocateTemporaryEntryPoints +00007FA12A510480 30 stub<6877> AllocateTemporaryEntryPoints +00007FA12A5104B0 18 stub<6878> AllocateTemporaryEntryPoints +00007FA12A5104C8 18 stub<6879> AllocateTemporaryEntryPoints +00007FA12A5104E0 18 stub<6880> AllocateTemporaryEntryPoints +00007FA12A5104F8 18 stub<6881> AllocateTemporaryEntryPoints +00007FA12A510510 18 stub<6882> AllocateTemporaryEntryPoints +00007FA12A510528 18 stub<6883> AllocateTemporaryEntryPoints +00007FA12A510540 18 stub<6884> AllocateTemporaryEntryPoints +00007FA12A2A3590 174 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Regex::.ctor(string,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,valuetype [System.Runtime]System.TimeSpan,class [System.Runtime]System.Globalization.CultureInfo)[QuickJitted] +00007FA12A510558 228 stub<6885> AllocateTemporaryEntryPoints +00007FA12A510780 78 stub<6886> AllocateTemporaryEntryPoints +00007FA12A5107F8 60 stub<6887> AllocateTemporaryEntryPoints +00007FA12A510858 120 stub<6888> AllocateTemporaryEntryPoints +00007FA12A2A3720 27 void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Regex::ValidatePattern(string)[QuickJitted] +00007FA12A510978 120 stub<6889> AllocateTemporaryEntryPoints +00007FA12A2A3760 5d void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Regex::ValidateOptions(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions)[QuickJitted] +00007FA12A510A98 90 stub<6890> AllocateTemporaryEntryPoints +00007FA12A510B28 d8 stub<6891> AllocateTemporaryEntryPoints +00007FA12A2A37E0 5f void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Regex::ValidateMatchTimeout(valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12A510C00 138 stub<6892> AllocateTemporaryEntryPoints +00007FA12A512000 510 stub<6893> AllocateTemporaryEntryPoints +00007FA12A512510 138 stub<6894> AllocateTemporaryEntryPoints +00007FA12A512648 30 stub<6895> AllocateTemporaryEntryPoints +00007FA12A512678 2b8 stub<6896> AllocateTemporaryEntryPoints +00007FA12A512930 30 stub<6897> AllocateTemporaryEntryPoints +00007FA12A512960 f0 stub<6898> AllocateTemporaryEntryPoints +00007FA12A512A50 f0 stub<6899> AllocateTemporaryEntryPoints +00007FA12A512B40 60 stub<6900> AllocateTemporaryEntryPoints +00007FA12A514000 768 stub<6901> AllocateTemporaryEntryPoints +00007FA12A2A3860 d8 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexTree [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Regex::Init(string,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,valuetype [System.Runtime]System.TimeSpan,class [System.Runtime]System.Globalization.CultureInfo&)[QuickJitted] +00007FA12A2A3950 33 class [System.Runtime]System.Globalization.CultureInfo [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::GetTargetCulture(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions)[QuickJitted] +00007FA12A514768 210 stub<6902> AllocateTemporaryEntryPoints +00007FA12A514978 480 stub<6903> AllocateTemporaryEntryPoints +00007FA12A516000 600 stub<6904> AllocateTemporaryEntryPoints +00007FA12A516600 60 stub<6905> AllocateTemporaryEntryPoints +00007FA12A516660 18 stub<6906> AllocateTemporaryEntryPoints +00007FA12A516678 18 stub<6907> AllocateTemporaryEntryPoints +00007FA12A516690 18 stub<6908> AllocateTemporaryEntryPoints +00007FA12A5166A8 18 stub<6909> AllocateTemporaryEntryPoints +00007FA12A5166C0 18 stub<6910> AllocateTemporaryEntryPoints +00007FA12A2A39A0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A5166D8 138 stub<6911> AllocateTemporaryEntryPoints +00007FA12A2A39E0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A516810 a8 stub<6912> AllocateTemporaryEntryPoints +00007FA12A5168B8 60 stub<6913> AllocateTemporaryEntryPoints +00007FA12A516918 18 stub<6914> AllocateTemporaryEntryPoints +00007FA12A516930 18 stub<6915> AllocateTemporaryEntryPoints +00007FA12A2A3AE0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2A3B20 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A516948 18 stub<6916> AllocateTemporaryEntryPoints +00007FA12A516960 18 stub<6917> AllocateTemporaryEntryPoints +00007FA12A516978 18 stub<6918> AllocateTemporaryEntryPoints +00007FA12A516990 18 stub<6919> AllocateTemporaryEntryPoints +00007FA12A5169A8 18 stub<6920> AllocateTemporaryEntryPoints +00007FA12A5169C0 18 stub<6921> AllocateTemporaryEntryPoints +00007FA12A5169D8 18 stub<6922> AllocateTemporaryEntryPoints +00007FA12A2A3C20 35b class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexTree [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::Parse(string,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,class [System.Runtime]System.Globalization.CultureInfo)[Optimized] +00007FA12A5169F0 60 stub<6923> AllocateTemporaryEntryPoints +00007FA12A516A50 60 stub<6924> AllocateTemporaryEntryPoints +00007FA12A2A3FD0 13c instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::.ctor(string,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,class [System.Runtime]System.Globalization.CultureInfo,class [System.Runtime]System.Collections.Hashtable,int32,class [System.Runtime]System.Collections.Hashtable,valuetype [System.Runtime]System.Span`1)[QuickJitted] +00007FA12A516AB0 60 stub<6925> AllocateTemporaryEntryPoints +00007FA12A516B10 48 stub<6926> AllocateTemporaryEntryPoints +00007FA12A2A4130 41 instance void [Datadog.Trace] System.Collections.Generic.ValueListBuilder`1[System.Int32]::.ctor(valuetype [System.Runtime]System.Span`1)[QuickJitted] +00007FA12A518000 660 stub<6927> AllocateTemporaryEntryPoints +00007FA12A518660 60 stub<6928> AllocateTemporaryEntryPoints +00007FA12A5186C0 18 stub<6929> AllocateTemporaryEntryPoints +00007FA12A5186D8 18 stub<6930> AllocateTemporaryEntryPoints +00007FA12A2A4190 339 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::CountCaptures()[QuickJitted] +00007FA12A2A4520 113 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::NoteCaptureSlot(int32,int32)[QuickJitted] +00007FA12A2A4650 2b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::CharsRight()[QuickJitted] +00007FA12A2A4690 1b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::Textpos()[QuickJitted] +00007FA12A2A46C0 4f instance char [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::RightCharMoveRight()[QuickJitted] +00007FA12A2A4730 32 instance char [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::RightChar(int32)[QuickJitted] +00007FA12A2A4780 31 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::PushOptions()[QuickJitted] +00007FA12A2A44E0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2A47D0 7d instance void [Datadog.Trace] System.Collections.Generic.ValueListBuilder`1[System.Int32]::Append(!0)[QuickJitted] +00007FA12A2A4870 2c instance char [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::RightChar()[QuickJitted] +00007FA12A2A49B0 26 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::UseOptionN()[QuickJitted] +00007FA12A2A48B0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2A49F0 1b instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::MoveRight()[QuickJitted] +00007FA12A2A4A20 c2 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanOptions()[QuickJitted] +00007FA12A2A4B00 87 valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::OptionFromCode(char)[QuickJitted] +00007FA12A2A4BA0 4d instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::PopKeepOptions()[QuickJitted] +00007FA12A2A4C10 1b instance int32 [Datadog.Trace] System.Collections.Generic.ValueListBuilder`1[System.Int32]::get_Length()[QuickJitted] +00007FA12A2A4C40 21 instance void [Datadog.Trace] System.Collections.Generic.ValueListBuilder`1[System.Int32]::set_Length(int32)[QuickJitted] +00007FA12A2A4C80 31 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::EmptyOptionsStack()[QuickJitted] +00007FA12A5186F0 f0 stub<6931> AllocateTemporaryEntryPoints +00007FA12A5187E0 60 stub<6932> AllocateTemporaryEntryPoints +00007FA12A2A4CD0 30 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::PopOptions()[QuickJitted] +00007FA12A518840 18 stub<6933> AllocateTemporaryEntryPoints +00007FA12A518858 18 stub<6934> AllocateTemporaryEntryPoints +00007FA12A2A4D20 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ReadOnlyMemory`1[System.Byte]]::Start(!!0&)[QuickJitted] +00007FA12A2A4D60 39 instance !0 [Datadog.Trace] System.Collections.Generic.ValueListBuilder`1[System.Int32]::Pop()[QuickJitted] +00007FA12A2A4DB0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A518870 18 stub<6935> AllocateTemporaryEntryPoints +00007FA12A518888 540 stub<6936> AllocateTemporaryEntryPoints +00007FA12A518DC8 30 stub<6937> AllocateTemporaryEntryPoints +00007FA12A518DF8 30 stub<6938> AllocateTemporaryEntryPoints +00007FA12A2A4EB0 856 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanBackslash(bool)[QuickJitted] +00007FA12A518E28 78 stub<6939> AllocateTemporaryEntryPoints +00007FA12A518EA0 18 stub<6940> AllocateTemporaryEntryPoints +00007FA12A518EB8 78 stub<6941> AllocateTemporaryEntryPoints +00007FA12A51A000 3c0 stub<6942> AllocateTemporaryEntryPoints +00007FA12A51A3C0 60 stub<6943> AllocateTemporaryEntryPoints +00007FA12A51A420 30 stub<6944> AllocateTemporaryEntryPoints +00007FA12A51A450 60 stub<6945> AllocateTemporaryEntryPoints +00007FA12A51A4B0 138 stub<6946> AllocateTemporaryEntryPoints +00007FA12A51A5E8 318 stub<6947> AllocateTemporaryEntryPoints +00007FA12A51A900 18 stub<6948> AllocateTemporaryEntryPoints +00007FA12A51A918 f0 stub<6949> AllocateTemporaryEntryPoints +00007FA12A51AA08 1e0 stub<6950> AllocateTemporaryEntryPoints +00007FA12A2A5750 9b6 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanCharClass(bool,bool)[QuickJitted] +00007FA12A2A6130 1b instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::MoveLeft()[QuickJitted] +00007FA12A51ABE8 78 stub<6951> AllocateTemporaryEntryPoints +00007FA12A51AC60 30 stub<6952> AllocateTemporaryEntryPoints +00007FA12A2A6160 1de instance char [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanCharEscape()[QuickJitted] +00007FA12A2A63A0 28 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::UseOptionE()[QuickJitted] +00007FA12A2A63E0 e4 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::IsBoundaryWordChar(char)[QuickJitted] +00007FA12A2A64E0 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::get_WordCharAsciiLookup()[QuickJitted] +00007FA12A51AC90 18 stub<6953> AllocateTemporaryEntryPoints +00007FA12A51ACA8 90 stub<6954> AllocateTemporaryEntryPoints +00007FA12A51AD38 18 stub<6955> AllocateTemporaryEntryPoints +00007FA12A2A6540 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::MoveNext()[QuickJitted] +00007FA12A2A6580 70b instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanBasicBackslash(bool)[QuickJitted] +00007FA12A2A6CB0 21 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::Textto(int32)[QuickJitted] +00007FA1277C0120 18 stub<6956> GenerateLookupStub +00007FA12A51AD50 18 stub<6957> AllocateTemporaryEntryPoints +00007FA12A2A6CF0 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A51AD68 18 stub<6958> AllocateTemporaryEntryPoints +00007FA12A2A6EE0 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::.cctor()[QuickJitted] +00007FA12A51AD80 18 stub<6959> AllocateTemporaryEntryPoints +00007FA12A51AD98 18 stub<6960> AllocateTemporaryEntryPoints +00007FA12A2A7600 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A2A6F90 647 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::AssignNameSlots()[QuickJitted] +00007FA12A2A7650 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::MoveNext()[QuickJitted] +00007FA12A2A7690 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A51ADB0 18 stub<6961> AllocateTemporaryEntryPoints +00007FA12A2A7880 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::.cctor()[QuickJitted] +00007FA12A51ADC8 18 stub<6962> AllocateTemporaryEntryPoints +00007FA12A51ADE0 18 stub<6963> AllocateTemporaryEntryPoints +00007FA12A2A7930 afe instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanRegex()[QuickJitted] +00007FA12A2A84A0 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A2A84F0 5d instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::.ctor(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,int32,int32)[QuickJitted] +00007FA12A2A8570 21 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::set_Kind(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind)[QuickJitted] +00007FA12A2A85B0 21 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::set_M(int32)[QuickJitted] +00007FA12A2A85F0 21 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::set_N(int32)[QuickJitted] +00007FA12A2A8630 a8 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::StartGroup(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A51C000 408 stub<6964> AllocateTemporaryEntryPoints +00007FA12A2A86F0 3b instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::.ctor(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions)[QuickJitted] +00007FA12A51C408 f0 stub<6965> AllocateTemporaryEntryPoints +00007FA12A2A8740 2f4 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanBlank()[QuickJitted] +00007FA12A51C4F8 60 stub<6966> AllocateTemporaryEntryPoints +00007FA12A2A8A50 26 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::UseOptionX()[QuickJitted] +00007FA12A51C558 18 stub<6967> AllocateTemporaryEntryPoints +00007FA12A51C570 18 stub<6968> AllocateTemporaryEntryPoints +00007FA12A2A8A90 71 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::IsSpecial(char)[QuickJitted] +00007FA12A2A8B20 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2A8B60 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::get_Category()[QuickJitted] +00007FA12A2A8BC0 71 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::IsQuantifier(char)[QuickJitted] +00007FA12A2A8C50 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A51C588 60 stub<6969> AllocateTemporaryEntryPoints +00007FA12A51C5E8 18 stub<6970> AllocateTemporaryEntryPoints +00007FA12A51C600 18 stub<6971> AllocateTemporaryEntryPoints +00007FA12A2A8D50 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2A8D90 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2A8E90 c31 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanGroupOpen()[QuickJitted] +00007FA12A51C618 18 stub<6972> AllocateTemporaryEntryPoints +00007FA12A2A9B00 70 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::PushGroup()[QuickJitted] +00007FA12A2A9B90 1b instance valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::get_Kind()[QuickJitted] +00007FA12784B430 e stub<6973> GenerateVTableCallStub +00007FA12A51C630 60 stub<6974> AllocateTemporaryEntryPoints +00007FA12A2A9BC0 31c instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::AddConcatenate(int32,int32,bool)[QuickJitted] +00007FA12A51C690 18 stub<6975> AllocateTemporaryEntryPoints +00007FA12A51C6A8 c0 stub<6976> AllocateTemporaryEntryPoints +00007FA12A51C768 18 stub<6977> AllocateTemporaryEntryPoints +00007FA12A2A9F00 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2A9F40 110 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::CreateOneWithCaseConversion(char,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,class [System.Runtime]System.Globalization.CultureInfo,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseBehavior&)[QuickJitted] +00007FA12A51C780 18 stub<6978> AllocateTemporaryEntryPoints +00007FA12A2AA070 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2AA170 321 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseEquivalences::TryFindCaseEquivalencesForCharWithIBehavior(char,class [System.Runtime]System.Globalization.CultureInfo,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseBehavior&,valuetype [System.Runtime]System.ReadOnlySpan`1&)[QuickJitted] +00007FA12A2AA4C0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::MoveNext()[QuickJitted] +00007FA12A2AA500 136 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseEquivalences::TryFindCaseEquivalencesForChar(char,valuetype [System.Runtime]System.ReadOnlySpan`1&)[QuickJitted] +00007FA12A2AA650 27 uint16[] [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseEquivalences::get_EquivalenceFirstLevelLookup()[QuickJitted] +00007FA12A2AA690 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A2AA880 156 void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseEquivalences::.cctor()[QuickJitted] +00007FA12A51C7B0 18 stub<6979> AllocateTemporaryEntryPoints +00007FA12A2AA9F0 13 uint16[] [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseEquivalences::get_EquivalenceCasingMap()[QuickJitted] +00007FA12A2AAAD0 13 char[] [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseEquivalences::get_EquivalenceCasingValues()[QuickJitted] +00007FA12A2AAA20 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::.cctor()[QuickJitted] +00007FA12A51C7C8 18 stub<6980> AllocateTemporaryEntryPoints +00007FA12A51C7E0 18 stub<6981> AllocateTemporaryEntryPoints +00007FA12A51C7F8 c0 stub<6982> AllocateTemporaryEntryPoints +00007FA12A51C8B8 18 stub<6983> AllocateTemporaryEntryPoints +00007FA12A2AAB00 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A51C8D0 18 stub<6984> AllocateTemporaryEntryPoints +00007FA12A51C8E8 18 stub<6985> AllocateTemporaryEntryPoints +00007FA12A2AAB50 13e instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::.ctor(class [System.Net.Http]System.Net.Http.HttpResponseMessage)[QuickJitted] +00007FA12A51C900 180 stub<6986> AllocateTemporaryEntryPoints +00007FA12A2AACB0 554 string [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::CharsToStringClass(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12A51CA80 180 stub<6987> AllocateTemporaryEntryPoints +00007FA12A51CC00 a8 stub<6988> AllocateTemporaryEntryPoints +00007FA12A51CCA8 18 stub<6989> AllocateTemporaryEntryPoints +00007FA12A51CCC0 18 stub<6990> AllocateTemporaryEntryPoints +00007FA12A51CCD8 a8 stub<6991> AllocateTemporaryEntryPoints +00007FA12A51CD80 a8 stub<6992> AllocateTemporaryEntryPoints +00007FA12A51CE28 18 stub<6993> AllocateTemporaryEntryPoints +00007FA12A2AB640 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23]::MoveNext()[QuickJitted] +00007FA12A2AB680 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A2AB800 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23]::.cctor()[QuickJitted] +00007FA12A51CE40 18 stub<6994> AllocateTemporaryEntryPoints +00007FA12A2AB880 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A2AB8C0 25 instance int32 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::get_StatusCode()[QuickJitted] +00007FA12A51CE58 60 stub<6995> AllocateTemporaryEntryPoints +00007FA12A51CEB8 18 stub<6996> AllocateTemporaryEntryPoints +00007FA12A2AB900 66 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::ProcessDiscoveryResponse(class Datadog.Trace.Agent.IApiResponse)[QuickJitted] +00007FA12A51CED0 18 stub<6997> AllocateTemporaryEntryPoints +00007FA12A2AB980 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2AEDD0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2AB9C0 33ed void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::.cctor()[QuickJitted] +00007FA12A51CEE8 18 stub<6998> AllocateTemporaryEntryPoints +00007FA12A51CF00 18 stub<6999> AllocateTemporaryEntryPoints +00007FA12A51CF18 60 stub<7000> AllocateTemporaryEntryPoints +00007FA12A51CF78 60 stub<7001> AllocateTemporaryEntryPoints +00007FA12A51E000 60 stub<7002> AllocateTemporaryEntryPoints +00007FA12A51E060 60 stub<7003> AllocateTemporaryEntryPoints +00007FA12A51E0C0 18 stub<7004> AllocateTemporaryEntryPoints +00007FA12A51E0D8 360 stub<7005> AllocateTemporaryEntryPoints +00007FA12A51E438 18 stub<7006> AllocateTemporaryEntryPoints +00007FA12A51E450 18 stub<7007> AllocateTemporaryEntryPoints +00007FA12A51E468 18 stub<7008> AllocateTemporaryEntryPoints +00007FA12A51E480 18 stub<7009> AllocateTemporaryEntryPoints +00007FA12A51E498 18 stub<7010> AllocateTemporaryEntryPoints +00007FA12A2AEED0 333 string[] [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::PopulateCategoryIdToName()[QuickJitted] +00007FA12A51E4B0 48 stub<7011> AllocateTemporaryEntryPoints +00007FA12A51E4F8 18 stub<7012> AllocateTemporaryEntryPoints +00007FA1277F6300 18 stub<7013> GenerateResolveStub +00007FA12A51E510 18 stub<7014> AllocateTemporaryEntryPoints +00007FA1277C41A0 20 stub<7015> GenerateDispatchStub +00007FA1277C0140 18 stub<7016> GenerateLookupStub +00007FA12A51E528 18 stub<7017> AllocateTemporaryEntryPoints +00007FA12A51E540 18 stub<7018> AllocateTemporaryEntryPoints +00007FA12A2AF220 47 void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass+<>c::.cctor()[QuickJitted] +00007FA12A2AF280 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass+<>c::.ctor()[QuickJitted] +00007FA12A2AF2C0 44 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass+<>c::b__140_0(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA12A51E558 2b8 stub<7019> AllocateTemporaryEntryPoints +00007FA12A51E810 180 stub<7020> AllocateTemporaryEntryPoints +00007FA12A51E990 30 stub<7021> AllocateTemporaryEntryPoints +00007FA12A2AF320 7f0 instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__24::MoveNext()[QuickJitted] +00007FA12A2AFB40 9c instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass+<>c::b__140_1(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2,valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA12A2AFC00 31 instance string [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass+<>c::b__140_2(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA12A2AFC50 4e instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::.ctor(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,string)[QuickJitted] +00007FA12A51E9C0 1e0 stub<7022> AllocateTemporaryEntryPoints +00007FA12A2AFCC0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::set_Str(string)[QuickJitted] +00007FA12A51EBA0 60 stub<7023> AllocateTemporaryEntryPoints +00007FA12A2AFD00 122 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::AddChild(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A2AFE40 13e instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::Reduce()[QuickJitted] +00007FA12A51EC00 60 stub<7024> AllocateTemporaryEntryPoints +00007FA12A51EC60 1e0 stub<7025> AllocateTemporaryEntryPoints +00007FA12A2AFFC0 2ff instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReduceSet()[QuickJitted] +00007FA12A2B02E0 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::get_Str()[QuickJitted] +00007FA12A51EE40 60 stub<7026> AllocateTemporaryEntryPoints +00007FA12A2B0310 66 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::IsEmpty(string)[QuickJitted] +00007FA12A51EEA0 18 stub<7027> AllocateTemporaryEntryPoints +00007FA12A51EEB8 18 stub<7028> AllocateTemporaryEntryPoints +00007FA12A51EED0 18 stub<7029> AllocateTemporaryEntryPoints +00007FA12A2B0390 ba bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::IsSingleton(string)[QuickJitted] +00007FA12A2B0460 ba bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::IsSingletonInverse(string)[QuickJitted] +00007FA12A2B0660 26 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::UseOptionI()[QuickJitted] +00007FA12A2B0530 117 class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions::ReadAsTypeAsync(class Datadog.Trace.Agent.IApiResponse)[QuickJitted] +00007FA12A51EEE8 18 stub<7030> AllocateTemporaryEntryPoints +00007FA12A51EF00 18 stub<7031> AllocateTemporaryEntryPoints +00007FA12A51EF18 18 stub<7032> AllocateTemporaryEntryPoints +00007FA12A2B06A0 9c bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::ParticipatesInCaseConversion(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12A2B0760 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A2B07E0 60 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::ParticipatesInCaseConversion(int32)[QuickJitted] +00007FA12A51EF30 18 stub<7033> AllocateTemporaryEntryPoints +00007FA12A51EF48 18 stub<7034> AllocateTemporaryEntryPoints +00007FA12A2B08A0 22 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::EmptyStack()[QuickJitted] +00007FA12A2B08E0 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2B0A30 150 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::AddGroup()[QuickJitted] +00007FA12A51EF60 18 stub<7035> AllocateTemporaryEntryPoints +00007FA12A2B0BA0 67 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReverseConcatenationIfRightToLeft()[QuickJitted] +00007FA12A51EF78 18 stub<7036> AllocateTemporaryEntryPoints +00007FA12A51EF90 18 stub<7037> AllocateTemporaryEntryPoints +00007FA12A51EFA8 18 stub<7038> AllocateTemporaryEntryPoints +00007FA12A2B0C20 116 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReduceConcatenation()[QuickJitted] +00007FA12A51EFC0 18 stub<7039> AllocateTemporaryEntryPoints +00007FA12A51EFD8 18 stub<7040> AllocateTemporaryEntryPoints +00007FA12A2B0D50 68 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ChildCount()[QuickJitted] +00007FA12A540000 18 stub<7041> AllocateTemporaryEntryPoints +00007FA12A540018 18 stub<7042> AllocateTemporaryEntryPoints +00007FA12A2B0DD0 7a instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::Child(int32)[QuickJitted] +00007FA12A2B0E60 441 instance void [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions+d__1`1[System.__Canon]::MoveNext()[QuickJitted] +00007FA12A2B12F0 b34 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReduceConcatenationWithAdjacentLoops()[QuickJitted] +00007FA12A540030 60 stub<7043> AllocateTemporaryEntryPoints +00007FA12A2B1E80 59 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::MakeRep(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind,int32,int32)[QuickJitted] +00007FA12A540090 18 stub<7044> AllocateTemporaryEntryPoints +00007FA12A5400A8 18 stub<7045> AllocateTemporaryEntryPoints +00007FA12A2B1EF0 79 class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions::GetStreamReader(class Datadog.Trace.Agent.IApiResponse)[QuickJitted] +00007FA12A5400C0 18 stub<7046> AllocateTemporaryEntryPoints +00007FA12A2B1F80 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A2B1FC0 552 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReduceConcatenationWithAdjacentStrings()[QuickJitted] +00007FA12A2B2530 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA1277C0160 18 stub<7047> GenerateLookupStub +00007FA12A2B2630 ad instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReplaceNodeIfUnnecessary()[QuickJitted] +00007FA1277C0180 18 stub<7048> GenerateLookupStub +00007FA1277C01A0 18 stub<7049> GenerateLookupStub +00007FA12A5400D8 18 stub<7050> AllocateTemporaryEntryPoints +00007FA12A5400F0 18 stub<7051> AllocateTemporaryEntryPoints +00007FA12A2B2700 fe instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReduceAlternation()[QuickJitted] +00007FA12A2B2820 fe instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::PopGroup()[QuickJitted] +00007FA12A2B2940 1c instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::Unit()[QuickJitted] +00007FA12A2B2970 2db instance void [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions+d__2::MoveNext()[QuickJitted] +00007FA12A2B2C80 30 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::GetStreamAsync()[QuickJitted] +00007FA12A2B2CD0 1e7 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::IsTrueQuantifier()[QuickJitted] +00007FA12A2B2EE0 2b instance char [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::CharAt(int32)[QuickJitted] +00007FA12A540108 18 stub<7052> AllocateTemporaryEntryPoints +00007FA12A2B2F20 6e instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::AddConcatenate(bool,int32,int32)[QuickJitted] +00007FA12A540120 150 stub<7053> AllocateTemporaryEntryPoints +00007FA12A540270 330 stub<7054> AllocateTemporaryEntryPoints +00007FA12A5405A0 150 stub<7055> AllocateTemporaryEntryPoints +00007FA12A2B2FB0 1da instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::MakeQuantifier(bool,int32,int32)[QuickJitted] +00007FA12A2B31B0 6e instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReduceGroup()[QuickJitted] +00007FA12A2B3240 7c instance int64 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::get_ContentLength()[QuickJitted] +00007FA1277F6370 18 stub<7056> GenerateResolveStub +00007FA12A2B32E0 3f9 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReduceLoops()[QuickJitted] +00007FA1277C41C0 20 stub<7057> GenerateDispatchStub +00007FA12A2B3700 1b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::get_M()[QuickJitted] +00007FA12A2B3730 1c instance class [System.Runtime]System.Text.Encoding [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::get_ContentEncoding()[QuickJitted] +00007FA12A5406F0 18 stub<7058> AllocateTemporaryEntryPoints +00007FA12A2B3760 1b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::get_N()[QuickJitted] +00007FA12A540708 18 stub<7059> AllocateTemporaryEntryPoints +00007FA12A2B3790 7e instance !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Deserialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[QuickJitted] +00007FA12A2B3830 e9 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::AddAlternate()[QuickJitted] +00007FA1277C01C0 18 stub<7060> GenerateLookupStub +00007FA12A2B3930 51 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::AddUnitOne(char)[QuickJitted] +00007FA12A2B39A0 36 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetContract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B39F0 4f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::.ctor(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,char)[QuickJitted] +00007FA12A2B3A60 44 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveContract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B3AC0 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::set_Ch(char)[QuickJitted] +00007FA12A2B3B00 35 instance !1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ThreadSafeStore`2[System.__Canon,System.__Canon]::Get(!0)[QuickJitted] +00007FA12A2B3B50 6f valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseBehavior [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCaseEquivalences::GetRegexBehavior(class [System.Runtime]System.Globalization.CultureInfo)[QuickJitted] +00007FA12A540720 270 stub<7061> AllocateTemporaryEntryPoints +00007FA12A540990 1c8 stub<7062> AllocateTemporaryEntryPoints +00007FA12A540B58 18 stub<7063> AllocateTemporaryEntryPoints +00007FA12A540B70 18 stub<7064> AllocateTemporaryEntryPoints +00007FA12A540B88 108 stub<7065> AllocateTemporaryEntryPoints +00007FA12A540C90 78 stub<7066> AllocateTemporaryEntryPoints +00007FA12A540D08 30 stub<7067> AllocateTemporaryEntryPoints +00007FA12A540D38 18 stub<7068> AllocateTemporaryEntryPoints +00007FA12A540D50 18 stub<7069> AllocateTemporaryEntryPoints +00007FA12A540D68 180 stub<7070> AllocateTemporaryEntryPoints +00007FA12A2B3FE0 4b5 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::g__ReduceSingleLetterAndNestedAlternations|41_0()[QuickJitted] +00007FA12A2B44B0 3b7 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateContract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B4880 65 class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::EnsureNotByRefType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B4900 23 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::.cctor()[QuickJitted] +00007FA12A2B4940 3d bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::IsJsonPrimitiveType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B49A0 97 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::IsNullableType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B4A50 27 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsGenericType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B5200 37 class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::EnsureNotNullableType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B4A90 746 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::g__ExtractCommonPrefixText|41_3(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A2B5250 7c instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::FindBranchOneOrMultiStart()[QuickJitted] +00007FA12A540EE8 30 stub<7071> AllocateTemporaryEntryPoints +00007FA12A540F18 18 stub<7072> AllocateTemporaryEntryPoints +00007FA12A540F30 30 stub<7073> AllocateTemporaryEntryPoints +00007FA12A540F60 30 stub<7074> AllocateTemporaryEntryPoints +00007FA12A2B52F0 63 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute(object)[QuickJitted] +00007FA12A540F90 30 stub<7075> AllocateTemporaryEntryPoints +00007FA12A2B5370 43 !0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.CachedAttributeGetter`1[System.__Canon]::GetAttribute(object)[QuickJitted] +00007FA12A540FC0 18 stub<7076> AllocateTemporaryEntryPoints +00007FA12A540FD8 18 stub<7077> AllocateTemporaryEntryPoints +00007FA12A542000 18 stub<7078> AllocateTemporaryEntryPoints +00007FA12A542018 60 stub<7079> AllocateTemporaryEntryPoints +00007FA12A2B53D0 632 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::g__ExtractCommonPrefixOneNotoneSet|41_1(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A2B5A30 1c instance char [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::get_Ch()[QuickJitted] +00007FA12A2B5A60 135 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.CachedAttributeGetter`1[System.__Canon]::.cctor()[QuickJitted] +00007FA12A542078 18 stub<7080> AllocateTemporaryEntryPoints +00007FA12A2B5BB0 137 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::g__RemoveRedundantEmptiesAndNothings|41_2(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A542090 18 stub<7081> AllocateTemporaryEntryPoints +00007FA12A5420A8 18 stub<7082> AllocateTemporaryEntryPoints +00007FA12A5420C0 18 stub<7083> AllocateTemporaryEntryPoints +00007FA12A5420D8 18 stub<7084> AllocateTemporaryEntryPoints +00007FA12A5420F0 18 stub<7085> AllocateTemporaryEntryPoints +00007FA12A542108 18 stub<7086> AllocateTemporaryEntryPoints +00007FA12A2B5D00 b8 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ReplaceChild(int32,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A542120 18 stub<7087> AllocateTemporaryEntryPoints +00007FA12A542138 18 stub<7088> AllocateTemporaryEntryPoints +00007FA12A542150 18 stub<7089> AllocateTemporaryEntryPoints +00007FA12A2B5DD0 36 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::AddConcatenate()[QuickJitted] +00007FA12A2B5E20 14a !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute(object)[QuickJitted] +00007FA12A542168 18 stub<7090> AllocateTemporaryEntryPoints +00007FA12A542180 18 stub<7091> AllocateTemporaryEntryPoints +00007FA12A2B6140 229 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B5F80 195 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass+<>c::b__134_0(valuetype [System.Runtime]System.Span`1,valuetype [System.Runtime]System.ValueTuple`2)[QuickJitted] +00007FA12A2B6390 50 class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAssociatedMetadataType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B6400 ee void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::.cctor()[QuickJitted] +00007FA12A2B6510 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::AddUnitNode(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A2B6550 43 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::IsMergeable(string)[QuickJitted] +00007FA12A542198 c0 stub<7092> AllocateTemporaryEntryPoints +00007FA12A2B65B0 2b bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::IsNegated(string)[QuickJitted] +00007FA12A2B65F0 57 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::IsSubtraction(string)[QuickJitted] +00007FA12A2B6660 19b class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAssociateMetadataTypeFromAttribute(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B6820 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::.ctor()[QuickJitted] +00007FA12A2B6860 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::set_Negate(bool)[QuickJitted] +00007FA12A542258 18 stub<7093> AllocateTemporaryEntryPoints +00007FA12A542270 18 stub<7094> AllocateTemporaryEntryPoints +00007FA12A542288 18 stub<7095> AllocateTemporaryEntryPoints +00007FA12A2B68A0 59 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::AddRange(char,char)[QuickJitted] +00007FA1277C01E0 18 stub<7096> GenerateLookupStub +00007FA12A2B6910 8a instance class [System.Collections]System.Collections.Generic.List`1> [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::EnsureRangeList()[QuickJitted] +00007FA1277C0200 18 stub<7097> GenerateLookupStub +00007FA12A2B69B0 16d instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::AddCaseEquivalences(class [System.Runtime]System.Globalization.CultureInfo)[QuickJitted] +00007FA12A2B6B40 326 class [System.Runtime]System.Attribute[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetAttributes(object,class [System.Runtime]System.Type,bool)[QuickJitted] +00007FA12A5422A0 18 stub<7098> AllocateTemporaryEntryPoints +00007FA12A5422B8 2b8 stub<7099> AllocateTemporaryEntryPoints +00007FA12A2B6E80 2c instance void [Datadog.Trace] System.Runtime.CompilerServices.NullableContextAttribute::.ctor(uint8)[QuickJitted] +00007FA12A542570 30 stub<7100> AllocateTemporaryEntryPoints +00007FA12A2B6EC0 b1 instance string [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::ToStringClass()[QuickJitted] +00007FA12A2B6F90 6f instance void [Datadog.Trace] System.Runtime.CompilerServices.NullableAttribute::.ctor(uint8)[QuickJitted] +00007FA12A2B7020 41 instance void [Datadog.Trace] System.Text.ValueStringBuilder::.ctor(valuetype [System.Runtime]System.Span`1)[QuickJitted] +00007FA12A5425A0 30 stub<7101> AllocateTemporaryEntryPoints +00007FA12A5425D0 c0 stub<7102> AllocateTemporaryEntryPoints +00007FA12A542690 18 stub<7103> AllocateTemporaryEntryPoints +00007FA12A5426A8 18 stub<7104> AllocateTemporaryEntryPoints +00007FA12A5426C0 18 stub<7105> AllocateTemporaryEntryPoints +00007FA12A5426D8 30 stub<7106> AllocateTemporaryEntryPoints +00007FA12A542708 18 stub<7107> AllocateTemporaryEntryPoints +00007FA12A542720 18 stub<7108> AllocateTemporaryEntryPoints +00007FA12A2B7080 370 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::ToStringClass(valuetype System.Text.ValueStringBuilder&)[QuickJitted] +00007FA12A542738 d8 stub<7109> AllocateTemporaryEntryPoints +00007FA12A542810 d8 stub<7110> AllocateTemporaryEntryPoints +00007FA12A5428E8 18 stub<7111> AllocateTemporaryEntryPoints +00007FA12A542900 18 stub<7112> AllocateTemporaryEntryPoints +00007FA12A542918 18 stub<7113> AllocateTemporaryEntryPoints +00007FA12A542930 18 stub<7114> AllocateTemporaryEntryPoints +00007FA1277C0220 18 stub<7115> GenerateLookupStub +00007FA1277F63E0 18 stub<7116> GenerateResolveStub +00007FA1277C41E0 20 stub<7117> GenerateDispatchStub +00007FA1277C0240 18 stub<7118> GenerateLookupStub +00007FA1277F6450 18 stub<7119> GenerateResolveStub +00007FA1277C4200 20 stub<7120> GenerateDispatchStub +00007FA12A2B7420 540 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::Canonicalize()[QuickJitted] +00007FA12A542948 18 stub<7121> AllocateTemporaryEntryPoints +00007FA12A2B7980 1b instance int32 [Datadog.Trace] System.Text.ValueStringBuilder::get_Length()[QuickJitted] +00007FA12A542960 18 stub<7122> AllocateTemporaryEntryPoints +00007FA12A542978 18 stub<7123> AllocateTemporaryEntryPoints +00007FA12A542990 18 stub<7124> AllocateTemporaryEntryPoints +00007FA12A5429A8 18 stub<7125> AllocateTemporaryEntryPoints +00007FA12A5429C0 18 stub<7126> AllocateTemporaryEntryPoints +00007FA12A2B79B0 92 instance valuetype [System.Runtime]System.Span`1 [Datadog.Trace] System.Text.ValueStringBuilder::AppendSpan(int32)[QuickJitted] +00007FA12A2B7A60 e4 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetAttribute(object,bool)[QuickJitted] +00007FA12A2B7B60 81 instance void [Datadog.Trace] System.Text.ValueStringBuilder::Append(char)[QuickJitted] +00007FA12A5429D8 18 stub<7127> AllocateTemporaryEntryPoints +00007FA12A5429F0 60 stub<7128> AllocateTemporaryEntryPoints +00007FA12A2B7C00 30 instance char& [Datadog.Trace] System.Text.ValueStringBuilder::get_Item(int32)[QuickJitted] +00007FA12A542A50 18 stub<7129> AllocateTemporaryEntryPoints +00007FA12A542A68 18 stub<7130> AllocateTemporaryEntryPoints +00007FA12A542A80 18 stub<7131> AllocateTemporaryEntryPoints +00007FA12A542A98 18 stub<7132> AllocateTemporaryEntryPoints +00007FA12A2B7C50 78 instance string [Datadog.Trace] System.Text.ValueStringBuilder::ToString()[QuickJitted] +00007FA12A2B7CE0 68 instance void [Datadog.Trace] System.Text.ValueStringBuilder::Dispose()[QuickJitted] +00007FA12A2B7D60 15e !!0[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetAttributes(object,bool)[QuickJitted] +00007FA12A2B7EE0 26 char [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::SingletonChar(string)[QuickJitted] +00007FA1277C0260 18 stub<7133> GenerateLookupStub +00007FA1277F64C0 18 stub<7134> GenerateResolveStub +00007FA1277C4220 20 stub<7135> GenerateDispatchStub +00007FA12A542AB0 18 stub<7136> AllocateTemporaryEntryPoints +00007FA12A2B7F20 29 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass+<>c::b__137_0(valuetype [System.Runtime]System.ValueTuple`2,valuetype [System.Runtime]System.ValueTuple`2)[QuickJitted] +00007FA12A542AC8 18 stub<7137> AllocateTemporaryEntryPoints +00007FA12A542AE0 18 stub<7138> AllocateTemporaryEntryPoints +00007FA12A542AF8 18 stub<7139> AllocateTemporaryEntryPoints +00007FA12A542B10 18 stub<7140> AllocateTemporaryEntryPoints +00007FA1277C0280 18 stub<7141> GenerateLookupStub +00007FA1277F6530 18 stub<7142> GenerateResolveStub +00007FA1277C4240 20 stub<7143> GenerateDispatchStub +00007FA12A542B28 18 stub<7144> AllocateTemporaryEntryPoints +00007FA12A2B7F60 196 void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::g__ProcessOneOrMulti|41_4(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode,valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12A542B40 18 stub<7145> AllocateTemporaryEntryPoints +00007FA1277C02A0 18 stub<7146> GenerateLookupStub +00007FA1277F65A0 18 stub<7147> GenerateResolveStub +00007FA1277C4260 20 stub<7148> GenerateDispatchStub +00007FA12A2B8110 110 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::AddCaseEquivalenceRange(char,char,class [System.Runtime]System.Globalization.CultureInfo)[QuickJitted] +00007FA12A542B58 30 stub<7149> AllocateTemporaryEntryPoints +00007FA12A2B8240 2e instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::AddChar(char)[QuickJitted] +00007FA12A542B88 18 stub<7150> AllocateTemporaryEntryPoints +00007FA12A542BA0 18 stub<7151> AllocateTemporaryEntryPoints +00007FA12A542BB8 18 stub<7152> AllocateTemporaryEntryPoints +00007FA12A2B8290 e5 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::ScanDecimal()[QuickJitted] +00007FA12A2B8390 5d instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonLinqContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateLinqContract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B8410 31 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonLinqContract::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B8460 106 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::AddWord(bool,bool)[QuickJitted] +00007FA12A2B8580 140 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B86E0 3d instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::AddCategory(string)[QuickJitted] +00007FA12A2B8740 4f bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::IsNullable(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B87B0 85 instance class [System.Runtime]System.Text.StringBuilder [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::EnsureCategories()[QuickJitted] +00007FA12A2B8850 21 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsValueType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A542BD0 30 stub<7153> AllocateTemporaryEntryPoints +00007FA12A2B8890 b9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::set_CreatedType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B8960 21 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsSealed(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B89A0 ca instance void [Datadog.Trace] System.Text.ValueStringBuilder::Append(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12A2B8A80 21 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsInterface(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B8AC0 21 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsAbstract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B8B00 59 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ConvertUtils::IsConvertible(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2B8B70 106 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::AddSpace(bool,bool)[QuickJitted] +00007FA12A2B8C90 1d4 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::InitializeContract(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[QuickJitted] +00007FA12A2B8E80 1a9 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::FinalOptimize()[QuickJitted] +00007FA12A2B9040 23 instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveContractConverter(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A542C00 60 stub<7154> AllocateTemporaryEntryPoints +00007FA12A542C60 18 stub<7155> AllocateTemporaryEntryPoints +00007FA12A542C78 138 stub<7156> AllocateTemporaryEntryPoints +00007FA12A2B9080 d0 class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetJsonConverter(object)[QuickJitted] +00007FA12A542DB0 18 stub<7157> AllocateTemporaryEntryPoints +00007FA12A542DC8 18 stub<7158> AllocateTemporaryEntryPoints +00007FA12A542DE0 18 stub<7159> AllocateTemporaryEntryPoints +00007FA12A542DF8 18 stub<7160> AllocateTemporaryEntryPoints +00007FA12A542E10 18 stub<7161> AllocateTemporaryEntryPoints +00007FA12A542E28 18 stub<7162> AllocateTemporaryEntryPoints +00007FA12A542E40 18 stub<7163> AllocateTemporaryEntryPoints +00007FA12A542E58 18 stub<7164> AllocateTemporaryEntryPoints +00007FA12A542E70 18 stub<7165> AllocateTemporaryEntryPoints +00007FA1277C02C0 18 stub<7166> GenerateLookupStub +00007FA1277F6610 18 stub<7167> GenerateResolveStub +00007FA1277C4280 20 stub<7168> GenerateDispatchStub +00007FA12A542E88 18 stub<7169> AllocateTemporaryEntryPoints +00007FA12A542EA0 18 stub<7170> AllocateTemporaryEntryPoints +00007FA1277C02E0 18 stub<7171> GenerateLookupStub +00007FA1277F6680 18 stub<7172> GenerateResolveStub +00007FA1277C42A0 20 stub<7173> GenerateDispatchStub +00007FA12A2B9170 a03 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexFindOptimizations::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions)[QuickJitted] +00007FA12A542EB8 120 stub<7174> AllocateTemporaryEntryPoints +00007FA12A2B9BB0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::set_Converter(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter)[QuickJitted] +00007FA1277C0300 18 stub<7175> GenerateLookupStub +00007FA1277C0320 18 stub<7176> GenerateLookupStub +00007FA12A2B9BF0 b2 class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(class [System.Runtime]System.Collections.Generic.IList`1,class [System.Runtime]System.Type)[QuickJitted] +00007FA1277F66F0 18 stub<7177> GenerateResolveStub +00007FA12A2B9CC0 2f9 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::ComputeMinLength()[QuickJitted] +00007FA1277C42C0 20 stub<7178> GenerateDispatchStub +00007FA1277F6760 18 stub<7179> GenerateResolveStub +00007FA1277C42E0 20 stub<7180> GenerateDispatchStub +00007FA12A2BA090 c bool [Datadog.Trace] System.Threading.StackHelper::TryEnsureSufficientExecutionStack()[QuickJitted] +00007FA12A2BA0B0 32 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.EntityKeyMemberConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BA100 24 valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::FindLeadingAnchor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A2BA140 3a bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::AssignableToTypeName(class [System.Runtime]System.Type,string,bool)[QuickJitted] +00007FA12A2BA190 1b2 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::AssignableToTypeName(class [System.Runtime]System.Type,string,bool,class [System.Runtime]System.Type&)[QuickJitted] +00007FA12A2BA360 2ce valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::FindLeadingOrTrailingAnchor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode,bool)[QuickJitted] +00007FA12A2BA6D0 2a class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::BaseType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BA6A0 1b instance valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexFindOptimizations::get_LeadingAnchor()[QuickJitted] +00007FA12A2BA710 21 valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::FindTrailingAnchor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A2BA750 1b instance valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNodeKind [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexFindOptimizations::get_TrailingAnchor()[QuickJitted] +00007FA12A2BA780 b1 string [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::FindPrefix(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A544000 318 stub<7181> AllocateTemporaryEntryPoints +00007FA12A544318 18 stub<7182> AllocateTemporaryEntryPoints +00007FA12A2BA850 52 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.ExpandoObjectConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BA8C0 4c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.XmlNodeConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BA920 4df bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::g__Process|0_0(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode,valuetype System.Text.ValueStringBuilder&)[QuickJitted] +00007FA12A544330 60 stub<7183> AllocateTemporaryEntryPoints +00007FA12A544390 30 stub<7184> AllocateTemporaryEntryPoints +00007FA12A5443C0 60 stub<7185> AllocateTemporaryEntryPoints +00007FA12A544420 18 stub<7186> AllocateTemporaryEntryPoints +00007FA12A544438 18 stub<7187> AllocateTemporaryEntryPoints +00007FA12A2BAED0 41 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::CurrentDomain_OnAssemblyLoad(object,class [System.Runtime]System.AssemblyLoadEventArgs)[QuickJitted] +00007FA12A544450 18 stub<7188> AllocateTemporaryEntryPoints +00007FA12A544468 18 stub<7189> AllocateTemporaryEntryPoints +00007FA12A544480 18 stub<7190> AllocateTemporaryEntryPoints +00007FA12A544498 18 stub<7191> AllocateTemporaryEntryPoints +00007FA12A5444B0 18 stub<7192> AllocateTemporaryEntryPoints +00007FA12A5444C8 18 stub<7193> AllocateTemporaryEntryPoints +00007FA12A5444E0 18 stub<7194> AllocateTemporaryEntryPoints +00007FA12A5444F8 18 stub<7195> AllocateTemporaryEntryPoints +00007FA12A544510 18 stub<7196> AllocateTemporaryEntryPoints +00007FA12A544528 18 stub<7197> AllocateTemporaryEntryPoints +00007FA12A544540 48 stub<7198> AllocateTemporaryEntryPoints +00007FA12A544588 498 stub<7199> AllocateTemporaryEntryPoints +00007FA12A544A20 138 stub<7200> AllocateTemporaryEntryPoints +00007FA12A2BAF40 31f class [System.Collections]System.Collections.Generic.List`1> [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::FindFixedDistanceSets(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode,bool)[Optimized] +00007FA12A2BB280 dc instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.BinaryConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A544B58 18 stub<7201> AllocateTemporaryEntryPoints +00007FA12A544B70 18 stub<7202> AllocateTemporaryEntryPoints +00007FA12A544B88 18 stub<7203> AllocateTemporaryEntryPoints +00007FA12A544BA0 150 stub<7204> AllocateTemporaryEntryPoints +00007FA12A544CF0 30 stub<7205> AllocateTemporaryEntryPoints +00007FA12A544D20 30 stub<7206> AllocateTemporaryEntryPoints +00007FA12A544D50 48 stub<7207> AllocateTemporaryEntryPoints +00007FA12A546000 858 stub<7208> AllocateTemporaryEntryPoints +00007FA12A546858 798 stub<7209> AllocateTemporaryEntryPoints +00007FA12A2BB380 5d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.DataSetConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BB400 d76 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::g__TryFindFixedSets|1_1(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode,class [System.Collections]System.Collections.Generic.List`1>,int32&,bool)[QuickJitted] +00007FA12A548000 828 stub<7210> AllocateTemporaryEntryPoints +00007FA12A54A000 810 stub<7211> AllocateTemporaryEntryPoints +00007FA12A54C000 870 stub<7212> AllocateTemporaryEntryPoints +00007FA12A54C870 468 stub<7213> AllocateTemporaryEntryPoints +00007FA12A2BC270 21 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::Parse(string)[QuickJitted] +00007FA12A2BC2B0 5d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.DataTableConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A54CCD8 2b8 stub<7214> AllocateTemporaryEntryPoints +00007FA12A54CF90 60 stub<7215> AllocateTemporaryEntryPoints +00007FA12A2BC330 16a class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::ParseRecursive(string,int32)[QuickJitted] +00007FA12A54E000 60 stub<7216> AllocateTemporaryEntryPoints +00007FA12A2BC620 1f7 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.DiscriminatedUnionConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BC4C0 144 class [System.Collections]System.Collections.Generic.List`1> [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::ComputeRanges(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12A2BC840 2f bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::IsNegated(string,int32)[QuickJitted] +00007FA12A2BC890 c5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.KeyValuePairConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BC970 6c instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::.ctor(bool,class [System.Collections]System.Collections.Generic.List`1>,class [System.Runtime]System.Text.StringBuilder,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass)[QuickJitted] +00007FA12A54E060 30 stub<7217> AllocateTemporaryEntryPoints +00007FA12A2BC9F0 52 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.BsonObjectIdConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A54E090 60 stub<7218> AllocateTemporaryEntryPoints +00007FA12A2BCA60 66 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Converters.RegexConverter::CanConvert(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BCAE0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::set_InternalConverter(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter)[QuickJitted] +00007FA12A2BCB20 51 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::TryAddCharClass(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass)[QuickJitted] +00007FA12A2BCB90 1c instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_CreatedType()[QuickJitted] +00007FA12A2BCBC0 37 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::get_CanMerge()[QuickJitted] +00007FA12A2BCC10 6f bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::HasDefaultConstructor(class [System.Runtime]System.Type,bool)[QuickJitted] +00007FA12A54E0F0 90 stub<7219> AllocateTemporaryEntryPoints +00007FA12A2BCCA0 b2 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::AddCharClass(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass)[QuickJitted] +00007FA12A54E180 18 stub<7220> AllocateTemporaryEntryPoints +00007FA12A54E198 18 stub<7221> AllocateTemporaryEntryPoints +00007FA12A2BCD70 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::Resize()[QuickJitted] +00007FA12A54E1B0 60 stub<7222> AllocateTemporaryEntryPoints +00007FA12A2BCDC0 13c class [System.Runtime]System.Reflection.ConstructorInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultConstructor(class [System.Runtime]System.Type,bool)[QuickJitted] +00007FA12A54E210 18 stub<7223> AllocateTemporaryEntryPoints +00007FA1277C0340 18 stub<7224> GenerateLookupStub +00007FA12A2BCF20 47 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils+<>c::.cctor()[QuickJitted] +00007FA12A2BCF80 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils+<>c::.ctor()[QuickJitted] +00007FA12A54E228 18 stub<7225> AllocateTemporaryEntryPoints +00007FA12A54E240 18 stub<7226> AllocateTemporaryEntryPoints +00007FA1277C0360 18 stub<7227> GenerateLookupStub +00007FA12A54E258 18 stub<7228> AllocateTemporaryEntryPoints +00007FA1277C0380 18 stub<7229> GenerateLookupStub +00007FA12A2BCFC0 387 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::Resize(int32,bool)[QuickJitted] +00007FA1277F67D0 18 stub<7230> GenerateResolveStub +00007FA1277C4300 20 stub<7231> GenerateDispatchStub +00007FA12A54E270 18 stub<7232> AllocateTemporaryEntryPoints +00007FA12A2BD3E0 1e instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::get_Key()[QuickJitted] +00007FA12A2BD370 50 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils+<>c::b__11_0(class [System.Runtime]System.Reflection.ConstructorInfo)[QuickJitted] +00007FA1277C03A0 18 stub<7233> GenerateLookupStub +00007FA1277F6840 18 stub<7234> GenerateResolveStub +00007FA1277C4320 20 stub<7235> GenerateDispatchStub +00007FA12A2BD420 a0 string [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::OneToStringClass(char)[QuickJitted] +00007FA12A54E288 f0 stub<7236> AllocateTemporaryEntryPoints +00007FA12A54E378 18 stub<7237> AllocateTemporaryEntryPoints +00007FA12A54E390 18 stub<7238> AllocateTemporaryEntryPoints +00007FA12A2BD550 130 int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::GetSetChars(string,valuetype [System.Runtime]System.Span`1)[QuickJitted] +00007FA12A2BD4E0 58 instance class [System.Runtime]System.Func`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetDefaultCreator(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A54E3A8 120 stub<7239> AllocateTemporaryEntryPoints +00007FA12A2BD6A0 d class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionDelegateFactory [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::get_ReflectionDelegateFactory()[QuickJitted] +00007FA12A2BD6D0 81 bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexCharClass::CanEasilyEnumerateSetContents(string)[QuickJitted] +00007FA12A2BD770 27 class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionDelegateFactory [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::get_Instance()[QuickJitted] +00007FA12A54E4C8 48 stub<7240> AllocateTemporaryEntryPoints +00007FA12A2BD7B0 47 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::.cctor()[QuickJitted] +00007FA12A2BD810 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::.ctor()[QuickJitted] +00007FA12A2BD850 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::.ctor()[QuickJitted] +00007FA12A54E510 18 stub<7241> AllocateTemporaryEntryPoints +00007FA12A54E528 18 stub<7242> AllocateTemporaryEntryPoints +00007FA12A54E540 48 stub<7243> AllocateTemporaryEntryPoints +00007FA12A54E588 48 stub<7244> AllocateTemporaryEntryPoints +00007FA12A54E5D0 180 stub<7245> AllocateTemporaryEntryPoints +00007FA12A54E750 30 stub<7246> AllocateTemporaryEntryPoints +00007FA12A54E780 7f8 stub<7247> AllocateTemporaryEntryPoints +00007FA12B210000 840 stub<7248> AllocateTemporaryEntryPoints +00007FA12B210840 798 stub<7249> AllocateTemporaryEntryPoints +00007FA12B212000 7f8 stub<7250> AllocateTemporaryEntryPoints +00007FA12B2127F8 600 stub<7251> AllocateTemporaryEntryPoints +00007FA12B212DF8 48 stub<7252> AllocateTemporaryEntryPoints +00007FA12B212E40 30 stub<7253> AllocateTemporaryEntryPoints +00007FA12B212E70 f0 stub<7254> AllocateTemporaryEntryPoints +00007FA12B214000 c0 stub<7255> AllocateTemporaryEntryPoints +00007FA12B2140C0 18 stub<7256> AllocateTemporaryEntryPoints +00007FA12B2140D8 30 stub<7257> AllocateTemporaryEntryPoints +00007FA12B214108 258 stub<7258> AllocateTemporaryEntryPoints +00007FA12B214360 60 stub<7259> AllocateTemporaryEntryPoints +00007FA12A2BD890 331 instance class [System.Runtime]System.Func`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::CreateDefaultConstructor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2BDBF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory+<>c__DisplayClass7_0`1[System.__Canon]::.ctor()[QuickJitted] +00007FA12B2143C0 30 stub<7260> AllocateTemporaryEntryPoints +00007FA12B2143F0 4f8 stub<7261> AllocateTemporaryEntryPoints +00007FA12A2BDC40 3aa valuetype [System.Runtime]System.Nullable`1> [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexFindOptimizations::FindFixedDistanceString(class [System.Collections]System.Collections.Generic.List`1>)[Optimized] +00007FA12784B440 11 stub<7262> GenerateVTableCallStub +00007FA12784B460 e stub<7263> GenerateVTableCallStub +00007FA12B2148E8 48 stub<7264> AllocateTemporaryEntryPoints +00007FA1277F68B0 18 stub<7265> GenerateResolveStub +00007FA1277C4340 20 stub<7266> GenerateDispatchStub +00007FA12B214930 a8 stub<7267> AllocateTemporaryEntryPoints +00007FA12B2149D8 78 stub<7268> AllocateTemporaryEntryPoints +00007FA12B214A50 78 stub<7269> AllocateTemporaryEntryPoints +00007FA12B214AC8 18 stub<7270> AllocateTemporaryEntryPoints +00007FA12B214AE0 18 stub<7271> AllocateTemporaryEntryPoints +00007FA12B214AF8 c0 stub<7272> AllocateTemporaryEntryPoints +00007FA12B214BB8 18 stub<7273> AllocateTemporaryEntryPoints +00007FA12B214BD0 18 stub<7274> AllocateTemporaryEntryPoints +00007FA12B214BE8 18 stub<7275> AllocateTemporaryEntryPoints +00007FA12B214C00 18 stub<7276> AllocateTemporaryEntryPoints +00007FA12B214C18 300 stub<7277> AllocateTemporaryEntryPoints +00007FA12B214F18 18 stub<7278> AllocateTemporaryEntryPoints +00007FA12B214F30 18 stub<7279> AllocateTemporaryEntryPoints +00007FA12B214F48 78 stub<7280> AllocateTemporaryEntryPoints +00007FA12B216000 a8 stub<7281> AllocateTemporaryEntryPoints +00007FA12B2160A8 18 stub<7282> AllocateTemporaryEntryPoints +00007FA12B2160C0 18 stub<7283> AllocateTemporaryEntryPoints +00007FA12B2160D8 18 stub<7284> AllocateTemporaryEntryPoints +00007FA12B2160F0 18 stub<7285> AllocateTemporaryEntryPoints +00007FA12B216108 168 stub<7286> AllocateTemporaryEntryPoints +00007FA12B216270 18 stub<7287> AllocateTemporaryEntryPoints +00007FA12B216288 18 stub<7288> AllocateTemporaryEntryPoints +00007FA1277C03C0 18 stub<7289> GenerateLookupStub +00007FA1277F6920 18 stub<7290> GenerateResolveStub +00007FA1277C4360 20 stub<7291> GenerateDispatchStub +00007FA12B2162A0 48 stub<7292> AllocateTemporaryEntryPoints +00007FA12B2162E8 180 stub<7293> AllocateTemporaryEntryPoints +00007FA12B216468 78 stub<7294> AllocateTemporaryEntryPoints +00007FA12B2164E0 240 stub<7295> AllocateTemporaryEntryPoints +00007FA12B216720 60 stub<7296> AllocateTemporaryEntryPoints +00007FA12B216780 f0 stub<7297> AllocateTemporaryEntryPoints +00007FA12B216870 f0 stub<7298> AllocateTemporaryEntryPoints +00007FA12B216960 150 stub<7299> AllocateTemporaryEntryPoints +00007FA12A2BE420 2a0 instance class [System.Linq.Expressions]System.Linq.Expressions.Expression [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::EnsureCastExpression(class [System.Linq.Expressions]System.Linq.Expressions.Expression,class [System.Runtime]System.Type,bool)[QuickJitted] +00007FA12B216AB0 18 stub<7300> AllocateTemporaryEntryPoints +00007FA12B216AC8 390 stub<7301> AllocateTemporaryEntryPoints +00007FA12B218000 390 stub<7302> AllocateTemporaryEntryPoints +00007FA12A2BE6E0 6bd valuetype [System.Runtime]System.Nullable`1>> [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::FindLiteralFollowingLeadingLoop(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[Optimized] +00007FA12B218390 78 stub<7303> AllocateTemporaryEntryPoints +00007FA12B218408 a8 stub<7304> AllocateTemporaryEntryPoints +00007FA12B2184B0 18 stub<7305> AllocateTemporaryEntryPoints +00007FA12B2184C8 18 stub<7306> AllocateTemporaryEntryPoints +00007FA12B2184E0 18 stub<7307> AllocateTemporaryEntryPoints +00007FA12A2BEDF0 f9 void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer::SortFixedDistanceSetsByQuality(class [System.Collections]System.Collections.Generic.List`1>)[QuickJitted] +00007FA1277C03E0 18 stub<7308> GenerateLookupStub +00007FA1277F6990 18 stub<7309> GenerateResolveStub +00007FA12A2BEF00 47 void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer+<>c::.cctor()[QuickJitted] +00007FA1277C4380 20 stub<7310> GenerateDispatchStub +00007FA12A2BEF60 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexPrefixAnalyzer+<>c::.ctor()[QuickJitted] +00007FA12B2184F8 f0 stub<7311> AllocateTemporaryEntryPoints +00007FA12B2185E8 f0 stub<7312> AllocateTemporaryEntryPoints +00007FA12B2186D8 210 stub<7313> AllocateTemporaryEntryPoints +00007FA12B2188E8 48 stub<7314> AllocateTemporaryEntryPoints +00007FA12B218930 180 stub<7315> AllocateTemporaryEntryPoints +00007FA12B218AB0 a8 stub<7316> AllocateTemporaryEntryPoints +00007FA12B218B58 f0 stub<7317> AllocateTemporaryEntryPoints +00007FA12B218C48 210 stub<7318> AllocateTemporaryEntryPoints +00007FA12B218E58 18 stub<7319> AllocateTemporaryEntryPoints +00007FA12B218E70 18 stub<7320> AllocateTemporaryEntryPoints +00007FA12B218E88 18 stub<7321> AllocateTemporaryEntryPoints +00007FA12784B470 11 stub<7322> GenerateVTableCallStub +00007FA12B218EA0 18 stub<7323> AllocateTemporaryEntryPoints +00007FA12B21A000 210 stub<7324> AllocateTemporaryEntryPoints +00007FA12784B490 11 stub<7325> GenerateVTableCallStub +00007FA12B21A210 120 stub<7326> AllocateTemporaryEntryPoints +00007FA12B21A330 228 stub<7327> AllocateTemporaryEntryPoints +00007FA12B21A558 18 stub<7328> AllocateTemporaryEntryPoints +00007FA12B21A570 5b8 stub<7329> AllocateTemporaryEntryPoints +00007FA12B21AB28 60 stub<7330> AllocateTemporaryEntryPoints +00007FA12B21AB88 18 stub<7331> AllocateTemporaryEntryPoints +00007FA12B21ABA0 60 stub<7332> AllocateTemporaryEntryPoints +00007FA12B21AC00 18 stub<7333> AllocateTemporaryEntryPoints +00007FA12B21C000 5b8 stub<7334> AllocateTemporaryEntryPoints +00007FA12B21C5B8 120 stub<7335> AllocateTemporaryEntryPoints +00007FA12B21C6D8 18 stub<7336> AllocateTemporaryEntryPoints +00007FA12B21C6F0 108 stub<7337> AllocateTemporaryEntryPoints +00007FA12B21C7F8 18 stub<7338> AllocateTemporaryEntryPoints +00007FA1277F6A00 18 stub<7339> GenerateResolveStub +00007FA1277C43A0 20 stub<7340> GenerateDispatchStub +00007FA12B21C810 120 stub<7341> AllocateTemporaryEntryPoints +00007FA12B21C930 90 stub<7342> AllocateTemporaryEntryPoints +00007FA12B21C9C0 1e0 stub<7343> AllocateTemporaryEntryPoints +00007FA12B21CBA0 90 stub<7344> AllocateTemporaryEntryPoints +00007FA12B21CC30 108 stub<7345> AllocateTemporaryEntryPoints +00007FA12B21CD38 f0 stub<7346> AllocateTemporaryEntryPoints +00007FA12B21E000 7f8 stub<7347> AllocateTemporaryEntryPoints +00007FA12B21E7F8 18 stub<7348> AllocateTemporaryEntryPoints +00007FA12B21E810 c0 stub<7349> AllocateTemporaryEntryPoints +00007FA12B21E8D0 90 stub<7350> AllocateTemporaryEntryPoints +00007FA12B21E960 30 stub<7351> AllocateTemporaryEntryPoints +00007FA12B21E990 1e0 stub<7352> AllocateTemporaryEntryPoints +00007FA12B230000 7f8 stub<7353> AllocateTemporaryEntryPoints +00007FA12B2307F8 1e0 stub<7354> AllocateTemporaryEntryPoints +00007FA12B232000 7e0 stub<7355> AllocateTemporaryEntryPoints +00007FA12B2327E0 198 stub<7356> AllocateTemporaryEntryPoints +00007FA12B232978 198 stub<7357> AllocateTemporaryEntryPoints +00007FA12B232B10 198 stub<7358> AllocateTemporaryEntryPoints +00007FA12B232CA8 18 stub<7359> AllocateTemporaryEntryPoints +00007FA12B234450 30 stub<7361> AllocateTemporaryEntryPoints +00007FA12B234000 450 stub<7360> AllocateTemporaryEntryPoints +00007FA12B234480 30 stub<7362> AllocateTemporaryEntryPoints +00007FA12B2344B0 30 stub<7363> AllocateTemporaryEntryPoints +00007FA12B2344E0 150 stub<7364> AllocateTemporaryEntryPoints +00007FA12B234630 30 stub<7365> AllocateTemporaryEntryPoints +00007FA12B234660 18 stub<7366> AllocateTemporaryEntryPoints +00007FA12B234678 18 stub<7367> AllocateTemporaryEntryPoints +00007FA1277C0400 18 stub<7368> GenerateLookupStub +00007FA12B234690 18 stub<7369> AllocateTemporaryEntryPoints +00007FA12B2346A8 18 stub<7370> AllocateTemporaryEntryPoints +00007FA12B2346C0 18 stub<7371> AllocateTemporaryEntryPoints +00007FA12B2346D8 7f8 stub<7372> AllocateTemporaryEntryPoints +00007FA12B236000 7f8 stub<7373> AllocateTemporaryEntryPoints +00007FA12B2367F8 18 stub<7374> AllocateTemporaryEntryPoints +00007FA12B236810 1b0 stub<7375> AllocateTemporaryEntryPoints +00007FA12B2369C0 30 stub<7376> AllocateTemporaryEntryPoints +00007FA12B2369F0 30 stub<7377> AllocateTemporaryEntryPoints +00007FA12B236A20 30 stub<7378> AllocateTemporaryEntryPoints +00007FA12B236A50 30 stub<7379> AllocateTemporaryEntryPoints +00007FA12B236A80 318 stub<7380> AllocateTemporaryEntryPoints +00007FA12A2BEFA0 3b void [System.Linq.Expressions] System.Dynamic.Utils.ExpressionUtils::ValidateArgumentCount(class System.Linq.Expressions.LambdaExpression)[QuickJitted] +00007FA12B236D98 90 stub<7381> AllocateTemporaryEntryPoints +00007FA12B236E28 90 stub<7382> AllocateTemporaryEntryPoints +00007FA12B236EB8 90 stub<7383> AllocateTemporaryEntryPoints +00007FA12B236F48 18 stub<7384> AllocateTemporaryEntryPoints +00007FA12A2BEFF0 27 instance int32 [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::System.Linq.Expressions.IParameterProvider.get_ParameterCount()[QuickJitted] +00007FA12B236F60 18 stub<7385> AllocateTemporaryEntryPoints +00007FA12B236F78 18 stub<7386> AllocateTemporaryEntryPoints +00007FA12B236F90 18 stub<7387> AllocateTemporaryEntryPoints +00007FA12B236FA8 18 stub<7388> AllocateTemporaryEntryPoints +00007FA12B236FC0 18 stub<7389> AllocateTemporaryEntryPoints +00007FA12B238000 438 stub<7390> AllocateTemporaryEntryPoints +00007FA12B238438 18 stub<7391> AllocateTemporaryEntryPoints +00007FA12B238450 18 stub<7392> AllocateTemporaryEntryPoints +00007FA12B238468 18 stub<7393> AllocateTemporaryEntryPoints +00007FA12B238480 18 stub<7394> AllocateTemporaryEntryPoints +00007FA12B238498 18 stub<7395> AllocateTemporaryEntryPoints +00007FA12B2384B0 18 stub<7396> AllocateTemporaryEntryPoints +00007FA12B2384C8 18 stub<7397> AllocateTemporaryEntryPoints +00007FA12A2BF030 50 class System.Linq.Expressions.LambdaExpression [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller::AnalyzeLambda(class System.Linq.Expressions.LambdaExpression)[QuickJitted] +00007FA12B2384E0 18 stub<7398> AllocateTemporaryEntryPoints +00007FA12B2384F8 a8 stub<7399> AllocateTemporaryEntryPoints +00007FA12B2385A0 18 stub<7400> AllocateTemporaryEntryPoints +00007FA12B2385B8 a8 stub<7401> AllocateTemporaryEntryPoints +00007FA12B238660 18 stub<7402> AllocateTemporaryEntryPoints +00007FA12B238678 18 stub<7403> AllocateTemporaryEntryPoints +00007FA12B238690 18 stub<7404> AllocateTemporaryEntryPoints +00007FA12B2386A8 18 stub<7405> AllocateTemporaryEntryPoints +00007FA12B2386C0 18 stub<7406> AllocateTemporaryEntryPoints +00007FA12B2386D8 18 stub<7407> AllocateTemporaryEntryPoints +00007FA12B2386F0 18 stub<7408> AllocateTemporaryEntryPoints +00007FA12B238708 18 stub<7409> AllocateTemporaryEntryPoints +00007FA12B238720 18 stub<7410> AllocateTemporaryEntryPoints +00007FA12B238738 18 stub<7411> AllocateTemporaryEntryPoints +00007FA12B238750 18 stub<7412> AllocateTemporaryEntryPoints +00007FA12B238768 78 stub<7413> AllocateTemporaryEntryPoints +00007FA12B2387E0 18 stub<7414> AllocateTemporaryEntryPoints +00007FA12B2387F8 18 stub<7415> AllocateTemporaryEntryPoints +00007FA12B238810 18 stub<7416> AllocateTemporaryEntryPoints +00007FA12B238828 18 stub<7417> AllocateTemporaryEntryPoints +00007FA12B238840 18 stub<7418> AllocateTemporaryEntryPoints +00007FA12B238858 18 stub<7419> AllocateTemporaryEntryPoints +00007FA12B238870 18 stub<7420> AllocateTemporaryEntryPoints +00007FA12B238888 18 stub<7421> AllocateTemporaryEntryPoints +00007FA12B2388A0 18 stub<7422> AllocateTemporaryEntryPoints +00007FA12B2388B8 18 stub<7423> AllocateTemporaryEntryPoints +00007FA12B2388D0 60 stub<7424> AllocateTemporaryEntryPoints +00007FA12B238930 18 stub<7425> AllocateTemporaryEntryPoints +00007FA12B238948 18 stub<7426> AllocateTemporaryEntryPoints +00007FA12B238960 18 stub<7427> AllocateTemporaryEntryPoints +00007FA12B238978 60 stub<7428> AllocateTemporaryEntryPoints +00007FA12B2389D8 90 stub<7429> AllocateTemporaryEntryPoints +00007FA12B238A68 18 stub<7430> AllocateTemporaryEntryPoints +00007FA12B238A80 18 stub<7431> AllocateTemporaryEntryPoints +00007FA12B238A98 150 stub<7432> AllocateTemporaryEntryPoints +00007FA12B238BE8 90 stub<7433> AllocateTemporaryEntryPoints +00007FA12B238C78 18 stub<7434> AllocateTemporaryEntryPoints +00007FA1277F6A70 18 stub<7435> GenerateResolveStub +00007FA12B238C90 18 stub<7436> AllocateTemporaryEntryPoints +00007FA1277C43C0 20 stub<7437> GenerateDispatchStub +00007FA12B238CA8 90 stub<7438> AllocateTemporaryEntryPoints +00007FA12B238D38 180 stub<7439> AllocateTemporaryEntryPoints +00007FA12B238EB8 90 stub<7440> AllocateTemporaryEntryPoints +00007FA12B23A000 1e0 stub<7441> AllocateTemporaryEntryPoints +00007FA12B23A1E0 30 stub<7442> AllocateTemporaryEntryPoints +00007FA12B23A210 198 stub<7443> AllocateTemporaryEntryPoints +00007FA12B23A3A8 30 stub<7444> AllocateTemporaryEntryPoints +00007FA12B23A3D8 30 stub<7445> AllocateTemporaryEntryPoints +00007FA12B23A408 18 stub<7446> AllocateTemporaryEntryPoints +00007FA12B23A420 18 stub<7447> AllocateTemporaryEntryPoints +00007FA12B23A438 18 stub<7448> AllocateTemporaryEntryPoints +00007FA12B23A450 d8 stub<7449> AllocateTemporaryEntryPoints +00007FA12B23A528 30 stub<7450> AllocateTemporaryEntryPoints +00007FA12B23A558 30 stub<7451> AllocateTemporaryEntryPoints +00007FA12B23A588 258 stub<7452> AllocateTemporaryEntryPoints +00007FA12B23A7E0 318 stub<7453> AllocateTemporaryEntryPoints +00007FA12B23AAF8 90 stub<7454> AllocateTemporaryEntryPoints +00007FA12B23AB88 18 stub<7455> AllocateTemporaryEntryPoints +00007FA12B23ABA0 18 stub<7456> AllocateTemporaryEntryPoints +00007FA12B23ABB8 18 stub<7457> AllocateTemporaryEntryPoints +00007FA12B23ABD0 18 stub<7458> AllocateTemporaryEntryPoints +00007FA12B23ABE8 18 stub<7459> AllocateTemporaryEntryPoints +00007FA12B23AC00 18 stub<7460> AllocateTemporaryEntryPoints +00007FA12B23AC18 120 stub<7461> AllocateTemporaryEntryPoints +00007FA12B23AD38 18 stub<7462> AllocateTemporaryEntryPoints +00007FA12B23AD50 f0 stub<7463> AllocateTemporaryEntryPoints +00007FA12B23AE40 18 stub<7464> AllocateTemporaryEntryPoints +00007FA12B23AE58 18 stub<7465> AllocateTemporaryEntryPoints +00007FA12B23AE70 60 stub<7466> AllocateTemporaryEntryPoints +00007FA12B23C000 1e0 stub<7467> AllocateTemporaryEntryPoints +00007FA12B23C1E0 18 stub<7468> AllocateTemporaryEntryPoints +00007FA12B23C1F8 198 stub<7469> AllocateTemporaryEntryPoints +00007FA12B23C390 18 stub<7470> AllocateTemporaryEntryPoints +00007FA12B23C3A8 18 stub<7471> AllocateTemporaryEntryPoints +00007FA12B23C3C0 30 stub<7472> AllocateTemporaryEntryPoints +00007FA12B23C3F0 18 stub<7473> AllocateTemporaryEntryPoints +00007FA12B23C408 30 stub<7474> AllocateTemporaryEntryPoints +00007FA12B23C438 18 stub<7475> AllocateTemporaryEntryPoints +00007FA12B23C450 18 stub<7476> AllocateTemporaryEntryPoints +00007FA12B23C468 30 stub<7477> AllocateTemporaryEntryPoints +00007FA12B23C498 30 stub<7478> AllocateTemporaryEntryPoints +00007FA12B23C4C8 318 stub<7479> AllocateTemporaryEntryPoints +00007FA12B23C7E0 90 stub<7480> AllocateTemporaryEntryPoints +00007FA12B23C870 18 stub<7481> AllocateTemporaryEntryPoints +00007FA12B23C888 18 stub<7482> AllocateTemporaryEntryPoints +00007FA12B23C8A0 18 stub<7483> AllocateTemporaryEntryPoints +00007FA12B23C8B8 5e8 stub<7484> AllocateTemporaryEntryPoints +00007FA12B23CEA0 c0 stub<7485> AllocateTemporaryEntryPoints +00007FA12B23CF60 90 stub<7486> AllocateTemporaryEntryPoints +00007FA12B23E000 a8 stub<7487> AllocateTemporaryEntryPoints +00007FA12B23E0A8 18 stub<7488> AllocateTemporaryEntryPoints +00007FA12B23E0C0 78 stub<7489> AllocateTemporaryEntryPoints +00007FA12B23E138 18 stub<7490> AllocateTemporaryEntryPoints +00007FA12A2BF0A0 337 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexRunnerFactory::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexTree,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexOptions,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12B23E150 90 stub<7491> AllocateTemporaryEntryPoints +00007FA12A2BF400 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexRunnerFactory::.ctor()[QuickJitted] +00007FA12B23E1E0 2a0 stub<7492> AllocateTemporaryEntryPoints +00007FA12B23E480 18 stub<7493> AllocateTemporaryEntryPoints +00007FA12A2BF840 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::.ctor()[QuickJitted] +00007FA12B23E498 18 stub<7494> AllocateTemporaryEntryPoints +00007FA12B23E4B0 5e8 stub<7495> AllocateTemporaryEntryPoints +00007FA12B23EA98 c0 stub<7496> AllocateTemporaryEntryPoints +00007FA12A2BF880 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B23EB58 90 stub<7497> AllocateTemporaryEntryPoints +00007FA12B23EBE8 a8 stub<7498> AllocateTemporaryEntryPoints +00007FA12B23EC90 18 stub<7499> AllocateTemporaryEntryPoints +00007FA12B23ECA8 18 stub<7500> AllocateTemporaryEntryPoints +00007FA12B23ECC0 18 stub<7501> AllocateTemporaryEntryPoints +00007FA12B23ECD8 78 stub<7502> AllocateTemporaryEntryPoints +00007FA12B23ED50 78 stub<7503> AllocateTemporaryEntryPoints +00007FA12B23EDC8 18 stub<7504> AllocateTemporaryEntryPoints +00007FA12B23EDE0 a8 stub<7505> AllocateTemporaryEntryPoints +00007FA12A2BFA60 2a instance int32 [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterList::get_Count()[QuickJitted] +00007FA1277F6AE0 18 stub<7506> GenerateResolveStub +00007FA1277C43E0 20 stub<7507> GenerateDispatchStub +00007FA12B250000 2a0 stub<7508> AllocateTemporaryEntryPoints +00007FA12B2502A0 18 stub<7509> AllocateTemporaryEntryPoints +00007FA12A2BFAA0 27 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::.ctor(int32)[QuickJitted] +00007FA12B2502B8 18 stub<7510> AllocateTemporaryEntryPoints +00007FA12B2502D0 90 stub<7511> AllocateTemporaryEntryPoints +00007FA12B250360 5e8 stub<7512> AllocateTemporaryEntryPoints +00007FA1277C0420 18 stub<7513> GenerateLookupStub +00007FA12B250948 c0 stub<7514> AllocateTemporaryEntryPoints +00007FA12B250A08 90 stub<7515> AllocateTemporaryEntryPoints +00007FA12B250A98 a8 stub<7516> AllocateTemporaryEntryPoints +00007FA12B250B40 18 stub<7517> AllocateTemporaryEntryPoints +00007FA12B250B58 78 stub<7518> AllocateTemporaryEntryPoints +00007FA12B250BD0 18 stub<7519> AllocateTemporaryEntryPoints +00007FA12A2BFAE0 118 instance bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterList+d__6::MoveNext()[QuickJitted] +00007FA12B250BE8 60 stub<7520> AllocateTemporaryEntryPoints +00007FA12B250C48 18 stub<7521> AllocateTemporaryEntryPoints +00007FA12B250C60 18 stub<7522> AllocateTemporaryEntryPoints +00007FA12A2BFC10 85 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::.ctor()[QuickJitted] +00007FA12B250C78 a8 stub<7523> AllocateTemporaryEntryPoints +00007FA12A2BFCB0 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon],System.__Canon]::.ctor()[QuickJitted] +00007FA12B250D20 30 stub<7524> AllocateTemporaryEntryPoints +00007FA12B252000 5e8 stub<7525> AllocateTemporaryEntryPoints +00007FA12B2525E8 d8 stub<7526> AllocateTemporaryEntryPoints +00007FA12B2526C0 c0 stub<7527> AllocateTemporaryEntryPoints +00007FA12B252780 90 stub<7528> AllocateTemporaryEntryPoints +00007FA12B252810 a8 stub<7529> AllocateTemporaryEntryPoints +00007FA12B2528B8 18 stub<7530> AllocateTemporaryEntryPoints +00007FA12B2528D0 78 stub<7531> AllocateTemporaryEntryPoints +00007FA12B252948 18 stub<7532> AllocateTemporaryEntryPoints +00007FA12A2BFCF0 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon],System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12A2BFED0 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::.ctor()[QuickJitted] +00007FA12B252960 5e8 stub<7533> AllocateTemporaryEntryPoints +00007FA12B252F48 30 stub<7534> AllocateTemporaryEntryPoints +00007FA12B2540C0 d8 stub<7536> AllocateTemporaryEntryPoints +00007FA12B254000 c0 stub<7535> AllocateTemporaryEntryPoints +00007FA12B254198 90 stub<7537> AllocateTemporaryEntryPoints +00007FA12B254228 a8 stub<7538> AllocateTemporaryEntryPoints +00007FA12B2542D0 18 stub<7539> AllocateTemporaryEntryPoints +00007FA12B2542E8 78 stub<7540> AllocateTemporaryEntryPoints +00007FA12B254360 18 stub<7541> AllocateTemporaryEntryPoints +00007FA12A2BFF10 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B254378 5b8 stub<7542> AllocateTemporaryEntryPoints +00007FA12B254930 78 stub<7543> AllocateTemporaryEntryPoints +00007FA12B2549A8 5e8 stub<7544> AllocateTemporaryEntryPoints +00007FA12A2C00F0 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::.ctor()[QuickJitted] +00007FA12B254F90 30 stub<7545> AllocateTemporaryEntryPoints +00007FA12B256000 c0 stub<7546> AllocateTemporaryEntryPoints +00007FA12B2560C0 90 stub<7547> AllocateTemporaryEntryPoints +00007FA12B256150 d8 stub<7548> AllocateTemporaryEntryPoints +00007FA12B256228 a8 stub<7549> AllocateTemporaryEntryPoints +00007FA12B2562D0 18 stub<7550> AllocateTemporaryEntryPoints +00007FA12B2562E8 78 stub<7551> AllocateTemporaryEntryPoints +00007FA12B256360 18 stub<7552> AllocateTemporaryEntryPoints +00007FA12A2C0130 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B256378 2a0 stub<7553> AllocateTemporaryEntryPoints +00007FA12A2C0260 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.__Canon]::.ctor()[QuickJitted] +00007FA12B256618 18 stub<7554> AllocateTemporaryEntryPoints +00007FA12B256630 18 stub<7555> AllocateTemporaryEntryPoints +00007FA12B256648 2a0 stub<7556> AllocateTemporaryEntryPoints +00007FA12B2568E8 18 stub<7557> AllocateTemporaryEntryPoints +00007FA12B256900 18 stub<7558> AllocateTemporaryEntryPoints +00007FA12A2C02A0 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B256918 60 stub<7559> AllocateTemporaryEntryPoints +00007FA12B256978 18 stub<7560> AllocateTemporaryEntryPoints +00007FA12B256990 18 stub<7561> AllocateTemporaryEntryPoints +00007FA12B2569A8 5e8 stub<7562> AllocateTemporaryEntryPoints +00007FA12B258000 c0 stub<7563> AllocateTemporaryEntryPoints +00007FA12B2580C0 90 stub<7564> AllocateTemporaryEntryPoints +00007FA12B258150 a8 stub<7565> AllocateTemporaryEntryPoints +00007FA12B2581F8 18 stub<7566> AllocateTemporaryEntryPoints +00007FA1277C0440 18 stub<7567> GenerateLookupStub +00007FA1277F6B50 18 stub<7568> GenerateResolveStub +00007FA12B258210 78 stub<7569> AllocateTemporaryEntryPoints +00007FA1277C4400 20 stub<7570> GenerateDispatchStub +00007FA12B258288 18 stub<7571> AllocateTemporaryEntryPoints +00007FA12B2582B8 48 stub<7572> AllocateTemporaryEntryPoints +00007FA12B258300 2a0 stub<7573> AllocateTemporaryEntryPoints +00007FA12B2585A0 18 stub<7574> AllocateTemporaryEntryPoints +00007FA12B2585B8 18 stub<7575> AllocateTemporaryEntryPoints +00007FA12B2585D0 18 stub<7576> AllocateTemporaryEntryPoints +00007FA12B2585E8 18 stub<7577> AllocateTemporaryEntryPoints +00007FA12B258600 18 stub<7578> AllocateTemporaryEntryPoints +00007FA12B258618 78 stub<7579> AllocateTemporaryEntryPoints +00007FA12B258690 5e8 stub<7580> AllocateTemporaryEntryPoints +00007FA12B258C78 60 stub<7581> AllocateTemporaryEntryPoints +00007FA12B258CD8 138 stub<7582> AllocateTemporaryEntryPoints +00007FA12B258E10 c0 stub<7583> AllocateTemporaryEntryPoints +00007FA12B258ED0 90 stub<7584> AllocateTemporaryEntryPoints +00007FA12B25A000 a8 stub<7585> AllocateTemporaryEntryPoints +00007FA12B25A0A8 48 stub<7586> AllocateTemporaryEntryPoints +00007FA12B25A0F0 18 stub<7587> AllocateTemporaryEntryPoints +00007FA12B25A108 48 stub<7588> AllocateTemporaryEntryPoints +00007FA12B25A150 78 stub<7589> AllocateTemporaryEntryPoints +00007FA12B25A1C8 18 stub<7590> AllocateTemporaryEntryPoints +00007FA12B25A1E0 2a0 stub<7591> AllocateTemporaryEntryPoints +00007FA12B25A480 18 stub<7592> AllocateTemporaryEntryPoints +00007FA12B25A498 18 stub<7593> AllocateTemporaryEntryPoints +00007FA12A2C03D0 1c9 class [System.Runtime]System.Type[] [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::GetParameterTypes(class System.Linq.Expressions.LambdaExpression,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B25A4B0 5e8 stub<7594> AllocateTemporaryEntryPoints +00007FA12B25AA98 48 stub<7595> AllocateTemporaryEntryPoints +00007FA12B25AAE0 c0 stub<7596> AllocateTemporaryEntryPoints +00007FA12B25ABA0 180 stub<7597> AllocateTemporaryEntryPoints +00007FA12B25AD20 90 stub<7598> AllocateTemporaryEntryPoints +00007FA12B25ADB0 a8 stub<7599> AllocateTemporaryEntryPoints +00007FA12B25AE58 18 stub<7600> AllocateTemporaryEntryPoints +00007FA12B25AE70 78 stub<7601> AllocateTemporaryEntryPoints +00007FA12B25AEE8 18 stub<7602> AllocateTemporaryEntryPoints +00007FA12A2C05C0 27 instance string [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_Name()[QuickJitted] +00007FA12B25C000 2a0 stub<7603> AllocateTemporaryEntryPoints +00007FA12B25C2A0 18 stub<7604> AllocateTemporaryEntryPoints +00007FA12A2C0600 27 instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_Type()[QuickJitted] +00007FA12B25C2B8 18 stub<7605> AllocateTemporaryEntryPoints +00007FA12B25C2D0 5e8 stub<7606> AllocateTemporaryEntryPoints +00007FA12B25C8B8 c0 stub<7607> AllocateTemporaryEntryPoints +00007FA12B25C978 90 stub<7608> AllocateTemporaryEntryPoints +00007FA12B25CA08 a8 stub<7609> AllocateTemporaryEntryPoints +00007FA12B25CAB0 450 stub<7610> AllocateTemporaryEntryPoints +00007FA12B25CF00 18 stub<7611> AllocateTemporaryEntryPoints +00007FA12B25CF18 78 stub<7612> AllocateTemporaryEntryPoints +00007FA12B25CF90 18 stub<7613> AllocateTemporaryEntryPoints +00007FA12B25CFA8 30 stub<7614> AllocateTemporaryEntryPoints +00007FA12B25E000 2a0 stub<7615> AllocateTemporaryEntryPoints +00007FA12B25E2A0 18 stub<7616> AllocateTemporaryEntryPoints +00007FA12B25E2B8 18 stub<7617> AllocateTemporaryEntryPoints +00007FA12B25E2D0 5e8 stub<7618> AllocateTemporaryEntryPoints +00007FA12B25E8B8 c0 stub<7619> AllocateTemporaryEntryPoints +00007FA12B25E978 198 stub<7620> AllocateTemporaryEntryPoints +00007FA12B25EB10 90 stub<7621> AllocateTemporaryEntryPoints +00007FA12B25EBA0 18 stub<7622> AllocateTemporaryEntryPoints +00007FA12B25EBB8 a8 stub<7623> AllocateTemporaryEntryPoints +00007FA12B25EC60 18 stub<7624> AllocateTemporaryEntryPoints +00007FA12B25EC78 78 stub<7625> AllocateTemporaryEntryPoints +00007FA12B25ECF0 198 stub<7626> AllocateTemporaryEntryPoints +00007FA12B25EE88 18 stub<7627> AllocateTemporaryEntryPoints +00007FA12B25EEA0 18 stub<7628> AllocateTemporaryEntryPoints +00007FA12A2C0640 60 instance valuetype System.Collections.Generic.Dictionary`2/Enumerator [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::GetEnumerator()[QuickJitted] +00007FA12B290000 5e8 stub<7629> AllocateTemporaryEntryPoints +00007FA12B2905E8 5e8 stub<7630> AllocateTemporaryEntryPoints +00007FA12B290BD0 c0 stub<7631> AllocateTemporaryEntryPoints +00007FA12B290C90 c0 stub<7632> AllocateTemporaryEntryPoints +00007FA12B290D50 a8 stub<7633> AllocateTemporaryEntryPoints +00007FA12B290DF8 90 stub<7634> AllocateTemporaryEntryPoints +00007FA12B290E88 18 stub<7635> AllocateTemporaryEntryPoints +00007FA12B290EA0 a8 stub<7636> AllocateTemporaryEntryPoints +00007FA12B290F48 78 stub<7637> AllocateTemporaryEntryPoints +00007FA12B290FC0 18 stub<7638> AllocateTemporaryEntryPoints +00007FA12B290FD8 18 stub<7639> AllocateTemporaryEntryPoints +00007FA12B292000 78 stub<7640> AllocateTemporaryEntryPoints +00007FA12B292078 18 stub<7641> AllocateTemporaryEntryPoints +00007FA12A2C06C0 5b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::.ctor(class System.Collections.Generic.Dictionary`2,int32)[QuickJitted] +00007FA12B292090 f0 stub<7642> AllocateTemporaryEntryPoints +00007FA12B292180 60 stub<7643> AllocateTemporaryEntryPoints +00007FA12A2C0730 143 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::MoveNext()[QuickJitted] +00007FA12A2C0890 14 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::Dispose()[QuickJitted] +00007FA12A2C08C0 27 instance bool [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_TailCall()[QuickJitted] +00007FA12B2921E0 18 stub<7644> AllocateTemporaryEntryPoints +00007FA12A2C0900 7c8 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.__Canon]::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver)[QuickJitted] +00007FA12B2921F8 108 stub<7645> AllocateTemporaryEntryPoints +00007FA12B292300 48 stub<7646> AllocateTemporaryEntryPoints +00007FA1277C0460 18 stub<7647> GenerateLookupStub +00007FA12A2C10F0 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::.ctor()[QuickJitted] +00007FA12B292348 30 stub<7648> AllocateTemporaryEntryPoints +00007FA1277C0480 18 stub<7649> GenerateLookupStub +00007FA1277F6BC0 18 stub<7650> GenerateResolveStub +00007FA12B292378 d8 stub<7651> AllocateTemporaryEntryPoints +00007FA1277C4420 20 stub<7652> GenerateDispatchStub +00007FA12B292450 78 stub<7653> AllocateTemporaryEntryPoints +00007FA12B2924C8 60 stub<7654> AllocateTemporaryEntryPoints +00007FA1277C4440 20 stub<7655> GenerateDispatchStub +00007FA1277C4460 20 stub<7656> GenerateDispatchStub +00007FA12B292528 a8 stub<7657> AllocateTemporaryEntryPoints +00007FA12A2C1130 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B2925E8 18 stub<7658> AllocateTemporaryEntryPoints +00007FA12B292600 18 stub<7659> AllocateTemporaryEntryPoints +00007FA12B292618 60 stub<7660> AllocateTemporaryEntryPoints +00007FA12A2C1310 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.__Canon,System.__Canon,System.UInt32],System.__Canon]::.ctor()[QuickJitted] +00007FA12B292678 30 stub<7661> AllocateTemporaryEntryPoints +00007FA12B2926A8 30 stub<7662> AllocateTemporaryEntryPoints +00007FA12B2926D8 d8 stub<7663> AllocateTemporaryEntryPoints +00007FA12A2C1350 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.__Canon,System.__Canon,System.UInt32],System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B2927B0 18 stub<7664> AllocateTemporaryEntryPoints +00007FA12A2C1530 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::.ctor()[QuickJitted] +00007FA12B2927C8 360 stub<7665> AllocateTemporaryEntryPoints +00007FA12B292B28 30 stub<7666> AllocateTemporaryEntryPoints +00007FA12B292B58 d8 stub<7667> AllocateTemporaryEntryPoints +00007FA12A2C1570 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA1277C04A0 18 stub<7668> GenerateLookupStub +00007FA128660C90 72 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method1(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12A2C1750 35 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::get_Empty()[QuickJitted] +00007FA12A2C17A0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::set_DefaultCreator(class [System.Runtime]System.Func`1)[QuickJitted] +00007FA12A2C17E0 8d void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::.cctor()[QuickJitted] +00007FA12B292C30 18 stub<7669> AllocateTemporaryEntryPoints +00007FA12A2C1890 21 class [System.Runtime]System.Reflection.ConstructorInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultConstructor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B292C48 18 stub<7670> AllocateTemporaryEntryPoints +00007FA12B292C60 18 stub<7671> AllocateTemporaryEntryPoints +00007FA12A2C18D0 77 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::.ctor(int32,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA12A2C1960 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::set_DefaultCreatorNonPublic(bool)[QuickJitted] +00007FA12B292C78 18 stub<7672> AllocateTemporaryEntryPoints +00007FA12B292C90 18 stub<7673> AllocateTemporaryEntryPoints +00007FA12A2C19A0 e0 int32 [System.Private.CoreLib] System.HashCode::Combine(!!0,!!1,!!2)[QuickJitted] +00007FA12B292CA8 18 stub<7674> AllocateTemporaryEntryPoints +00007FA1277F6C30 18 stub<7675> GenerateResolveStub +00007FA1277C4480 20 stub<7676> GenerateDispatchStub +00007FA12B292CC0 210 stub<7677> AllocateTemporaryEntryPoints +00007FA12A2C1AA0 151 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveCallbackMethods(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B292ED0 f0 stub<7678> AllocateTemporaryEntryPoints +00007FA12B292FC0 18 stub<7679> AllocateTemporaryEntryPoints +00007FA12B292FD8 18 stub<7680> AllocateTemporaryEntryPoints +00007FA12A2C1C10 d0 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateFalse(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA12B294000 18 stub<7681> AllocateTemporaryEntryPoints +00007FA12B294018 18 stub<7682> AllocateTemporaryEntryPoints +00007FA12B294030 2a0 stub<7683> AllocateTemporaryEntryPoints +00007FA12B2942D0 18 stub<7684> AllocateTemporaryEntryPoints +00007FA12B2942E8 18 stub<7685> AllocateTemporaryEntryPoints +00007FA12B294300 18 stub<7686> AllocateTemporaryEntryPoints +00007FA12B294318 18 stub<7687> AllocateTemporaryEntryPoints +00007FA12B294330 5e8 stub<7688> AllocateTemporaryEntryPoints +00007FA12B294918 c0 stub<7689> AllocateTemporaryEntryPoints +00007FA12B2949D8 90 stub<7690> AllocateTemporaryEntryPoints +00007FA12B294A68 a8 stub<7691> AllocateTemporaryEntryPoints +00007FA12B294B10 18 stub<7692> AllocateTemporaryEntryPoints +00007FA12B294B28 78 stub<7693> AllocateTemporaryEntryPoints +00007FA12B294BA0 18 stub<7694> AllocateTemporaryEntryPoints +00007FA12A2C1D00 825 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetCallbackMethodsForType(class [System.Runtime]System.Type,class [System.Collections]System.Collections.Generic.List`1&,class [System.Collections]System.Collections.Generic.List`1&,class [System.Collections]System.Collections.Generic.List`1&,class [System.Collections]System.Collections.Generic.List`1&,class [System.Collections]System.Collections.Generic.List`1&)[QuickJitted] +00007FA12A2C2550 201 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::Create(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32,int32,!0,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo)[QuickJitted] +00007FA12A2C2770 f4 instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetClassHierarchyForType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2C2880 7e instance void [System.Private.CoreLib] System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::.ctor(!0,!1,!2,!3,!4,!5,!6)[QuickJitted] +00007FA12B294BB8 18 stub<7695> AllocateTemporaryEntryPoints +00007FA12B294BD0 18 stub<7696> AllocateTemporaryEntryPoints +00007FA12B294BE8 18 stub<7697> AllocateTemporaryEntryPoints +00007FA12B294C00 18 stub<7698> AllocateTemporaryEntryPoints +00007FA12B294C18 18 stub<7699> AllocateTemporaryEntryPoints +00007FA12B294C30 18 stub<7700> AllocateTemporaryEntryPoints +00007FA12A2C2920 94 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12A2C29D0 a6 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSkipSerializing(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B294C48 60 stub<7701> AllocateTemporaryEntryPoints +00007FA12B294CA8 18 stub<7702> AllocateTemporaryEntryPoints +00007FA12B294CC0 18 stub<7703> AllocateTemporaryEntryPoints +00007FA12B294CD8 18 stub<7704> AllocateTemporaryEntryPoints +00007FA12B294CF0 18 stub<7705> AllocateTemporaryEntryPoints +00007FA12A2C2A90 f0 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::IsConcurrentOrObservableCollection(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B294D08 18 stub<7706> AllocateTemporaryEntryPoints +00007FA12A2C2BA0 a6 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSkipDeserialized(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2C2C60 7ce instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::FindValue(!0)[QuickJitted] +00007FA12B294D20 d8 stub<7707> AllocateTemporaryEntryPoints +00007FA12A2C3460 102 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32,int32,!0,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo)[QuickJitted] +00007FA12A2C3580 25 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_StartsWithSomeAnchor()[QuickJitted] +00007FA12A2C35C0 69 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::set_Item(!0,!1)[QuickJitted] +00007FA12A2C3640 7a8 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::IsValidCallback(class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Reflection.ParameterInfo[],class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Type&)[QuickJitted] +00007FA12B294DF8 18 stub<7708> AllocateTemporaryEntryPoints +00007FA12B294E10 18 stub<7709> AllocateTemporaryEntryPoints +00007FA12B294E28 18 stub<7710> AllocateTemporaryEntryPoints +00007FA12B294E40 30 stub<7711> AllocateTemporaryEntryPoints +00007FA12B294E70 18 stub<7712> AllocateTemporaryEntryPoints +00007FA12B294E88 150 stub<7713> AllocateTemporaryEntryPoints +00007FA12B294FD8 18 stub<7714> AllocateTemporaryEntryPoints +00007FA12B296000 18 stub<7715> AllocateTemporaryEntryPoints +00007FA12B296018 18 stub<7716> AllocateTemporaryEntryPoints +00007FA12B296030 150 stub<7717> AllocateTemporaryEntryPoints +00007FA12B296180 18 stub<7718> AllocateTemporaryEntryPoints +00007FA12B296198 a8 stub<7719> AllocateTemporaryEntryPoints +00007FA12A2C3E10 ca9 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12B296240 240 stub<7720> AllocateTemporaryEntryPoints +00007FA12A2C4AE0 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::Initialize(int32)[QuickJitted] +00007FA12B296480 60 stub<7721> AllocateTemporaryEntryPoints +00007FA12B2964E0 18 stub<7722> AllocateTemporaryEntryPoints +00007FA12B2964F8 18 stub<7723> AllocateTemporaryEntryPoints +00007FA12B296510 60 stub<7724> AllocateTemporaryEntryPoints +00007FA12B296570 18 stub<7725> AllocateTemporaryEntryPoints +00007FA12B296588 60 stub<7726> AllocateTemporaryEntryPoints +00007FA12B2965E8 a8 stub<7727> AllocateTemporaryEntryPoints +00007FA12B296690 258 stub<7728> AllocateTemporaryEntryPoints +00007FA12B2968E8 2d0 stub<7729> AllocateTemporaryEntryPoints +00007FA12A2C4BE0 658 instance int32 [System.Private.CoreLib] System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::GetHashCode()[QuickJitted] +00007FA12A2C5260 1b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::GetHashCode()[QuickJitted] +00007FA12A2C5290 1f instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::GetHashCode()[QuickJitted] +00007FA12B298000 4e0 stub<7730> AllocateTemporaryEntryPoints +00007FA12A2C52D0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::GetBucket(uint32)[QuickJitted] +00007FA12A2C5340 d0 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateTrue(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA1277C04C0 18 stub<7731> GenerateLookupStub +00007FA12A2C5430 21 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::get_Full()[QuickJitted] +00007FA12B2984E0 60 stub<7732> AllocateTemporaryEntryPoints +00007FA12B298540 60 stub<7733> AllocateTemporaryEntryPoints +00007FA12A2C5470 192 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateLoop(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32,int32,bool)[QuickJitted] +00007FA12B2985A0 60 stub<7734> AllocateTemporaryEntryPoints +00007FA12A2C5620 7b valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::Loop(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo,int32,bool)[QuickJitted] +00007FA12A2C56B0 20 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::.ctor(uint32)[QuickJitted] +00007FA12B298600 1c8 stub<7735> AllocateTemporaryEntryPoints +00007FA12B2987C8 3a8 stub<7736> AllocateTemporaryEntryPoints +00007FA12B298B70 c0 stub<7737> AllocateTemporaryEntryPoints +00007FA12B29A000 3d8 stub<7738> AllocateTemporaryEntryPoints +00007FA12A2C56F0 304 !0 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::ComputeStartSet(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1)[QuickJitted] +00007FA12A2C5A60 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_Converter()[QuickJitted] +00007FA12A2C5A90 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::Resize()[QuickJitted] +00007FA12A2C5AE0 1c instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_UnderlyingType()[QuickJitted] +00007FA12B29A3D8 18 stub<7739> AllocateTemporaryEntryPoints +00007FA12A2C5B10 2b instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2C5B50 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_InternalConverter()[QuickJitted] +00007FA12A2C5B80 505 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::Resize(int32,bool)[QuickJitted] +00007FA12B29A3F0 60 stub<7740> AllocateTemporaryEntryPoints +00007FA1277F6CA0 18 stub<7741> GenerateResolveStub +00007FA1277C44A0 20 stub<7742> GenerateDispatchStub +00007FA12A2C60B0 32f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[QuickJitted] +00007FA12A2C6410 2c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[QuickJitted] +00007FA12A2C6450 49 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class [System.Runtime]System.Collections.Hashtable)[QuickJitted] +00007FA12B29A450 f0 stub<7743> AllocateTemporaryEntryPoints +00007FA12A2C64B0 5d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,bool)[QuickJitted] +00007FA12B29A540 18 stub<7744> AllocateTemporaryEntryPoints +00007FA12B29A558 60 stub<7745> AllocateTemporaryEntryPoints +00007FA12B29A5B8 f0 stub<7746> AllocateTemporaryEntryPoints +00007FA12A2C6530 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::.ctor()[QuickJitted] +00007FA12B29A6A8 240 stub<7747> AllocateTemporaryEntryPoints +00007FA12B29A8E8 18 stub<7748> AllocateTemporaryEntryPoints +00007FA12A2C65A0 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::.cctor()[QuickJitted] +00007FA12B29A900 18 stub<7749> AllocateTemporaryEntryPoints +00007FA12A2C65E0 a5 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::Add(!0)[QuickJitted] +00007FA12A2C66A0 67 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::AddWithResize(!0)[QuickJitted] +00007FA1277C04E0 18 stub<7750> GenerateLookupStub +00007FA12A2C6720 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::Grow(int32)[QuickJitted] +00007FA12A2C67B0 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::set_Capacity(int32)[QuickJitted] +00007FA12A2C6890 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::get_Count()[QuickJitted] +00007FA12A2C68C0 50 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteStartArray()[QuickJitted] +00007FA12A2C6930 29 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteStartArray()[QuickJitted] +00007FA12A2C6970 53 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JArray::.ctor()[QuickJitted] +00007FA12A2C69E0 19 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JArray::get_Type()[QuickJitted] +00007FA12A2C6A10 49 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::get_HasValues()[QuickJitted] +00007FA12A2C6A70 1c instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JArray::get_ChildrenTokens()[QuickJitted] +00007FA12A2C6AA0 ec bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReferenceExtensions::StartsWith(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference,string)[QuickJitted] +00007FA12A2C7D70 5f instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::get_Item(int32)[QuickJitted] +00007FA12B29A918 18 stub<7751> AllocateTemporaryEntryPoints +00007FA12B29A930 18 stub<7752> AllocateTemporaryEntryPoints +00007FA12A2C6BB0 10b9 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter::ConvertToSymbolicRegexNode(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12A2C7DF0 ce instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::RemoveAt(int32)[QuickJitted] +00007FA12A2C7EE0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1[System.__Canon]::.ctor()[QuickJitted] +00007FA12A2C7F20 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12B29A948 18 stub<7753> AllocateTemporaryEntryPoints +00007FA12B29A960 18 stub<7754> AllocateTemporaryEntryPoints +00007FA12B29A978 18 stub<7755> AllocateTemporaryEntryPoints +00007FA12A2C7F40 24 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteEndArray()[QuickJitted] +00007FA12B29A990 60 stub<7756> AllocateTemporaryEntryPoints +00007FA12B29A9F0 90 stub<7757> AllocateTemporaryEntryPoints +00007FA12A2C7F80 86 instance void [System.Collections] System.Collections.Generic.Stack`1[System.ValueTuple`3[System.__Canon,System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12B29AA80 18 stub<7758> AllocateTemporaryEntryPoints +00007FA12B29AA98 18 stub<7759> AllocateTemporaryEntryPoints +00007FA12A2C8020 a1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseTrue()[QuickJitted] +00007FA12B29AAB0 60 stub<7760> AllocateTemporaryEntryPoints +00007FA12A2C84E0 b8 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::MatchValueWithTrailingSeparator(string)[QuickJitted] +00007FA12A2C85B0 37 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1>[] [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter::g__CreateChildResultArray|4_3(int32)[QuickJitted] +00007FA12A2C8600 50 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::MatchValue(string)[QuickJitted] +00007FA12A2C8670 bf instance void [System.Collections] System.Collections.Generic.Stack`1[System.ValueTuple`3[System.__Canon,System.__Canon,System.__Canon]]::Push(!0)[QuickJitted] +00007FA12A2C8750 11d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::MatchValue(bool,string)[QuickJitted] +00007FA12A2C8890 6d instance void [System.Collections] System.Collections.Generic.Stack`1[System.ValueTuple`3[System.__Canon,System.__Canon,System.__Canon]]::PushWithResize(!0)[QuickJitted] +00007FA12B29AB10 18 stub<7761> AllocateTemporaryEntryPoints +00007FA12B29AB28 18 stub<7762> AllocateTemporaryEntryPoints +00007FA12A2C8920 15d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::IsSeparator(char)[QuickJitted] +00007FA12B29AB40 18 stub<7763> AllocateTemporaryEntryPoints +00007FA12A2C8AB0 e3 instance void [System.Collections] System.Collections.Generic.Stack`1[System.ValueTuple`3[System.__Canon,System.__Canon,System.__Canon]]::Grow(int32)[QuickJitted] +00007FA12B29AB58 18 stub<7764> AllocateTemporaryEntryPoints +00007FA12B29AB70 18 stub<7765> AllocateTemporaryEntryPoints +00007FA12B29AB88 18 stub<7766> AllocateTemporaryEntryPoints +00007FA12B29ABA0 18 stub<7767> AllocateTemporaryEntryPoints +00007FA12B29ABB8 18 stub<7768> AllocateTemporaryEntryPoints +00007FA12A2C8BB0 59e void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BoxedPrimitives::.cctor()[QuickJitted] +00007FA12A2C9170 21c void [System.Private.CoreLib] System.Array::Resize(!!0[]&,int32)[QuickJitted] +00007FA12B29ABD0 18 stub<7769> AllocateTemporaryEntryPoints +00007FA12A2C93B0 66 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(bool)[QuickJitted] +00007FA12A2C9430 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(bool)[QuickJitted] +00007FA12A2C9470 26 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[QuickJitted] +00007FA12B29ABE8 18 stub<7770> AllocateTemporaryEntryPoints +00007FA12B29AC00 18 stub<7771> AllocateTemporaryEntryPoints +00007FA12A2C94B0 42 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(bool)[QuickJitted] +00007FA12B29AC18 18 stub<7772> AllocateTemporaryEntryPoints +00007FA12B29AC30 18 stub<7773> AllocateTemporaryEntryPoints +00007FA12B29AC48 18 stub<7774> AllocateTemporaryEntryPoints +00007FA12B29AC60 18 stub<7775> AllocateTemporaryEntryPoints +00007FA12A2C9510 3d object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BoxedPrimitives::Get(bool)[QuickJitted] +00007FA12B29AC78 18 stub<7776> AllocateTemporaryEntryPoints +00007FA12A2C9570 19 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::get_Type()[QuickJitted] +00007FA12A2C95A0 a8 void [System.Private.CoreLib] System.Buffer::Memmove(!!0&,!!0&,native uint)[QuickJitted] +00007FA12B29AC90 18 stub<7777> AllocateTemporaryEntryPoints +00007FA12A2C9660 19 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12A2C9690 7e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseNumber(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[QuickJitted] +00007FA12B29ACA8 18 stub<7778> AllocateTemporaryEntryPoints +00007FA12A2C9730 d1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadNumberIntoBuffer()[QuickJitted] +00007FA12A2C9820 145 instance bool [System.Collections] System.Collections.Generic.Stack`1[System.ValueTuple`3[System.__Canon,System.__Canon,System.__Canon]]::TryPop(!0&)[QuickJitted] +00007FA12A2C9980 15b instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadNumberCharIntoBuffer(char,int32)[QuickJitted] +00007FA12A2C9B70 67 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter::g__ConvertSet|4_2(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode)[QuickJitted] +00007FA12B29ACC0 18 stub<7779> AllocateTemporaryEntryPoints +00007FA12B29ACD8 18 stub<7780> AllocateTemporaryEntryPoints +00007FA12B29ACF0 18 stub<7781> AllocateTemporaryEntryPoints +00007FA12B29AD08 18 stub<7782> AllocateTemporaryEntryPoints +00007FA12A2C9BF0 12f instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter::CreateBDDFromSetString(string)[QuickJitted] +00007FA12B29AD20 18 stub<7783> AllocateTemporaryEntryPoints +00007FA12B29AD38 60 stub<7784> AllocateTemporaryEntryPoints +00007FA12B29AD98 120 stub<7785> AllocateTemporaryEntryPoints +00007FA12B29C000 4f8 stub<7786> AllocateTemporaryEntryPoints +00007FA12B29C4F8 a8 stub<7787> AllocateTemporaryEntryPoints +00007FA12B29C5A0 18 stub<7788> AllocateTemporaryEntryPoints +00007FA12B29C5B8 108 stub<7789> AllocateTemporaryEntryPoints +00007FA12B29C6C0 18 stub<7790> AllocateTemporaryEntryPoints +00007FA12B29C6D8 a8 stub<7791> AllocateTemporaryEntryPoints +00007FA12B29C780 18 stub<7792> AllocateTemporaryEntryPoints +00007FA12B29C798 18 stub<7793> AllocateTemporaryEntryPoints +00007FA12A2CAFF0 65b instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter::g__Compute|5_0(string)[QuickJitted] +00007FA12A2C9D40 1217 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseReadNumber(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType,char,int32)[QuickJitted] +00007FA12B29C7B0 120 stub<7794> AllocateTemporaryEntryPoints +00007FA12A2CB680 4b instance valuetype System.Collections.Generic.List`1/Enumerator [System.Private.CoreLib] System.Collections.Generic.List`1[System.ValueTuple`2[System.Char,System.Char]]::GetEnumerator()[QuickJitted] +00007FA12A2CB6E0 250 valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ParseResult [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ConvertUtils::Int64TryParse(char[],int32,int32,int64&)[QuickJitted] +00007FA12B29C8D0 6f0 stub<7795> AllocateTemporaryEntryPoints +00007FA12B29E000 78 stub<7796> AllocateTemporaryEntryPoints +00007FA12A2CB950 173 object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BoxedPrimitives::Get(int64)[QuickJitted] +00007FA12B29E078 a8 stub<7797> AllocateTemporaryEntryPoints +00007FA12B29E120 18 stub<7798> AllocateTemporaryEntryPoints +00007FA12B29E138 18 stub<7799> AllocateTemporaryEntryPoints +00007FA12B29E150 18 stub<7800> AllocateTemporaryEntryPoints +00007FA12A2CBB10 61 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(int64)[QuickJitted] +00007FA12A2CBB90 45 instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.Char,System.Char]]::.ctor(class System.Collections.Generic.List`1)[QuickJitted] +00007FA12A2CBBF0 28 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(int64)[QuickJitted] +00007FA12A2CBC30 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(int64)[QuickJitted] +00007FA12A2CBC90 8c instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.Char,System.Char]]::MoveNext()[QuickJitted] +00007FA1277F6D10 18 stub<7801> GenerateResolveStub +00007FA1277C44C0 20 stub<7802> GenerateDispatchStub +00007FA12A2CBD30 1b instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.Char,System.Char]]::get_Current()[QuickJitted] +00007FA12A2CBD60 42 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::BlockCopyChars(char[],int32,char[],int32,int32)[QuickJitted] +00007FA12A2CBDC0 7e instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::CreateBDDFromRange(char,char)[QuickJitted] +00007FA12B29E168 18 stub<7803> AllocateTemporaryEntryPoints +00007FA12B29E180 1c8 stub<7804> AllocateTemporaryEntryPoints +00007FA12A2CBE60 135 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::CreateBDDFromChar(char)[QuickJitted] +00007FA12A2CBFB0 2d void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::.cctor()[QuickJitted] +00007FA12B29E348 2a0 stub<7805> AllocateTemporaryEntryPoints +00007FA12A2CC000 df instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::g__CreateBdd|6_0(uint16)[QuickJitted] +00007FA12B29E5E8 18 stub<7806> AllocateTemporaryEntryPoints +00007FA12B29E600 18 stub<7807> AllocateTemporaryEntryPoints +00007FA12A2CC100 dc object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BoxedPrimitives::Get(float64)[QuickJitted] +00007FA12A2CC340 67 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(float64)[QuickJitted] +00007FA12A2CC200 119 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::GetOrCreateBDD(int32,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA12A2CC3C0 29 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(float64)[QuickJitted] +00007FA12B29E618 18 stub<7808> AllocateTemporaryEntryPoints +00007FA12A2CC400 45 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(float64)[QuickJitted] +00007FA12B29E630 18 stub<7809> AllocateTemporaryEntryPoints +00007FA12A2CC460 94 !!1& [System.Private.CoreLib] System.Runtime.InteropServices.CollectionsMarshal::GetValueRefOrAddDefault(class System.Collections.Generic.Dictionary`2,!!0,bool&)[QuickJitted] +00007FA12B29E648 60 stub<7810> AllocateTemporaryEntryPoints +00007FA12A2CC510 81 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseFalse()[QuickJitted] +00007FA1277C44E0 20 stub<7811> GenerateDispatchStub +00007FA1277C4500 20 stub<7812> GenerateDispatchStub +00007FA12B29E6A8 18 stub<7813> AllocateTemporaryEntryPoints +00007FA12B29E6C0 5e8 stub<7814> AllocateTemporaryEntryPoints +00007FA12B29ECA8 18 stub<7815> AllocateTemporaryEntryPoints +00007FA12B29ECC0 18 stub<7816> AllocateTemporaryEntryPoints +00007FA12B29ECD8 c0 stub<7817> AllocateTemporaryEntryPoints +00007FA12B29ED98 18 stub<7818> AllocateTemporaryEntryPoints +00007FA12B29EDB0 18 stub<7819> AllocateTemporaryEntryPoints +00007FA12B29EDC8 90 stub<7820> AllocateTemporaryEntryPoints +00007FA12B29EE58 a8 stub<7821> AllocateTemporaryEntryPoints +00007FA12B29EF00 18 stub<7822> AllocateTemporaryEntryPoints +00007FA12B29EF18 78 stub<7823> AllocateTemporaryEntryPoints +00007FA12A2CC5B0 63 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Value(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12B29EF90 18 stub<7824> AllocateTemporaryEntryPoints +00007FA12B29EFA8 18 stub<7825> AllocateTemporaryEntryPoints +00007FA12B29EFC0 18 stub<7826> AllocateTemporaryEntryPoints +00007FA12B29EFD8 18 stub<7827> AllocateTemporaryEntryPoints +00007FA12B2C0000 18 stub<7828> AllocateTemporaryEntryPoints +00007FA12B2C0018 18 stub<7829> AllocateTemporaryEntryPoints +00007FA12B2C0030 18 stub<7830> AllocateTemporaryEntryPoints +00007FA12B2C0048 30 stub<7831> AllocateTemporaryEntryPoints +00007FA12A2CC630 f8 !!1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Value(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12B2C0078 18 stub<7832> AllocateTemporaryEntryPoints +00007FA12B2C0090 d8 stub<7833> AllocateTemporaryEntryPoints +00007FA12A2CC740 39b !!1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Convert(!!0)[QuickJitted] +00007FA12A2CCB00 1c instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::get_Value()[QuickJitted] +00007FA12B2C0168 18 stub<7834> AllocateTemporaryEntryPoints +00007FA12B2C0180 18 stub<7835> AllocateTemporaryEntryPoints +00007FA12A2CCB30 29 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Value(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12B2C0198 18 stub<7836> AllocateTemporaryEntryPoints +00007FA12B2C01B0 18 stub<7837> AllocateTemporaryEntryPoints +00007FA12A2CD530 bc !!1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Value(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12A2CCB70 994 !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+CollectionsMarshalHelper[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon],System.__Canon]::GetValueRefOrAddDefault(class System.Collections.Generic.Dictionary`2,!0,bool&)[QuickJitted] +00007FA12A2CD610 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon],System.__Canon]::Initialize(int32)[QuickJitted] +00007FA12B2C01C8 60 stub<7838> AllocateTemporaryEntryPoints +00007FA12B2C0228 18 stub<7839> AllocateTemporaryEntryPoints +00007FA12A2CD710 380 !!1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Convert(!!0)[QuickJitted] +00007FA12B2C0240 18 stub<7840> AllocateTemporaryEntryPoints +00007FA12B2C0258 18 stub<7841> AllocateTemporaryEntryPoints +00007FA12B2C0270 18 stub<7842> AllocateTemporaryEntryPoints +00007FA12B2C0288 18 stub<7843> AllocateTemporaryEntryPoints +00007FA12B2C02A0 18 stub<7844> AllocateTemporaryEntryPoints +00007FA12A2CDAB0 7f instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::Values()[QuickJitted] +00007FA12A2CDB50 1d7 instance int32 [System.Private.CoreLib] System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon]::GetHashCode()[QuickJitted] +00007FA12B2C02B8 18 stub<7845> AllocateTemporaryEntryPoints +00007FA12B2C02D0 d8 stub<7846> AllocateTemporaryEntryPoints +00007FA12A2CDD50 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon],System.__Canon]::GetBucket(uint32)[QuickJitted] +00007FA12B2C03A8 18 stub<7847> AllocateTemporaryEntryPoints +00007FA12B2C03C0 18 stub<7848> AllocateTemporaryEntryPoints +00007FA12A2CDDC0 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon],System.__Canon]::Resize()[QuickJitted] +00007FA12B2C03D8 d8 stub<7849> AllocateTemporaryEntryPoints +00007FA12B2C04B0 d8 stub<7850> AllocateTemporaryEntryPoints +00007FA12B2C0588 18 stub<7851> AllocateTemporaryEntryPoints +00007FA12B2C05A0 18 stub<7852> AllocateTemporaryEntryPoints +00007FA12A2CDE10 8b class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Convert(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12A2CDEB0 37 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::.ctor(int32)[QuickJitted] +00007FA12B2C05B8 18 stub<7853> AllocateTemporaryEntryPoints +00007FA12A2CDF00 503 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon],System.__Canon]::Resize(int32,bool)[QuickJitted] +00007FA12A2CE430 90 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12A2CE4E0 24 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon]]::get_Default()[QuickJitted] +00007FA12B2C05D0 18 stub<7854> AllocateTemporaryEntryPoints +00007FA12A2CE520 7e void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon]]::.cctor()[QuickJitted] +00007FA12B2C05E8 a8 stub<7855> AllocateTemporaryEntryPoints +00007FA12B2C0690 18 stub<7856> AllocateTemporaryEntryPoints +00007FA12B2C06A8 18 stub<7857> AllocateTemporaryEntryPoints +00007FA12B2C06C0 18 stub<7858> AllocateTemporaryEntryPoints +00007FA12A2CE5C0 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12A2CE600 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12B2C06D8 18 stub<7859> AllocateTemporaryEntryPoints +00007FA12B2C06F0 18 stub<7860> AllocateTemporaryEntryPoints +00007FA12A2CE640 2bd instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::MoveNext()[QuickJitted] +00007FA12A2CE930 d7 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon]]::Equals(!0,!0)[QuickJitted] +00007FA12B2C0708 18 stub<7861> AllocateTemporaryEntryPoints +00007FA1277C4520 20 stub<7862> GenerateDispatchStub +00007FA1277C4540 20 stub<7863> GenerateDispatchStub +00007FA1277C4560 20 stub<7864> GenerateDispatchStub +00007FA12B2C0720 d8 stub<7865> AllocateTemporaryEntryPoints +00007FA12B2C07F8 30 stub<7866> AllocateTemporaryEntryPoints +00007FA12A2CEA20 1c instance !1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::System.Collections.Generic.IEnumerator.get_Current()[QuickJitted] +00007FA12B2C0828 d8 stub<7867> AllocateTemporaryEntryPoints +00007FA12B2C0900 30 stub<7868> AllocateTemporaryEntryPoints +00007FA1277C4580 20 stub<7869> GenerateDispatchStub +00007FA12B2C0930 d8 stub<7870> AllocateTemporaryEntryPoints +00007FA12B2C0A08 30 stub<7871> AllocateTemporaryEntryPoints +00007FA12A2CEA50 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::<>m__Finally1()[QuickJitted] +00007FA12A2CEAB0 13a instance bool [System.Private.CoreLib] System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon]::Equals(valuetype System.ValueTuple`3)[QuickJitted] +00007FA1277C45A0 20 stub<7872> GenerateDispatchStub +00007FA1277C0500 18 stub<7873> GenerateLookupStub +00007FA12A2CEC00 5d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::System.IDisposable.Dispose()[QuickJitted] +00007FA12A2CEC80 7c instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::Equals(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA1277F6D80 18 stub<7874> GenerateResolveStub +00007FA12A2CED10 a3 instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.AgentConfiguration::.ctor(string,string,string,string,string,string,bool)[QuickJitted] +00007FA1277C45C0 20 stub<7875> GenerateDispatchStub +00007FA12B2C0A38 18 stub<7876> AllocateTemporaryEntryPoints +00007FA12A2CEDD0 29 void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::.cctor()[QuickJitted] +00007FA12A2CEE10 4b instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.Char,System.Char]]::MoveNextRare()[QuickJitted] +00007FA12B2C0A50 18 stub<7877> AllocateTemporaryEntryPoints +00007FA12A2CEE70 14 instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.Char,System.Char]]::Dispose()[QuickJitted] +00007FA12B2C0A68 18 stub<7878> AllocateTemporaryEntryPoints +00007FA12B2C0A80 18 stub<7879> AllocateTemporaryEntryPoints +00007FA12B2C0A98 18 stub<7880> AllocateTemporaryEntryPoints +00007FA12A2CEEA0 f6 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::Or(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12A2CEFB0 1f6 instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::NotifySubscribers(class Datadog.Trace.Agent.DiscoveryService.AgentConfiguration)[QuickJitted] +00007FA1277C0520 18 stub<7881> GenerateLookupStub +00007FA1277F6DF0 18 stub<7882> GenerateResolveStub +00007FA12A2CF1F0 31 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::Or(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA1277C45E0 20 stub<7883> GenerateDispatchStub +00007FA12A2CF240 25 instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::Dispose()[QuickJitted] +00007FA12B2C0AC8 48 stub<7884> AllocateTemporaryEntryPoints +00007FA12B2C0B10 18 stub<7885> AllocateTemporaryEntryPoints +00007FA12A2CF280 575 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::ApplyBinaryOp(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver/BooleanOperation,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA12A2CF830 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B2C0B28 18 stub<7886> AllocateTemporaryEntryPoints +00007FA12A2CF880 4c instance void [System.Private.CoreLib] System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon]::.ctor(!0,!1,!2)[QuickJitted] +00007FA12A2CF8E0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2CF940 82 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12B2C0B40 60 stub<7887> AllocateTemporaryEntryPoints +00007FA12B2C0BA0 18 stub<7888> AllocateTemporaryEntryPoints +00007FA12B2C0BB8 18 stub<7889> AllocateTemporaryEntryPoints +00007FA12B2C0BD0 18 stub<7890> AllocateTemporaryEntryPoints +00007FA12B2C0BE8 18 stub<7891> AllocateTemporaryEntryPoints +00007FA12A2CF9E0 17 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A2CFA10 63 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::ClearStateUponCompletion()[QuickJitted] +00007FA12A2CFA90 98 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12A2CFB40 83 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::ClearStateUponCompletion()[QuickJitted] +00007FA12A2D0350 5d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::ClearStateUponCompletion()[QuickJitted] +00007FA12A2CFBE0 74c instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::FindValue(!0)[QuickJitted] +00007FA12A2D03D0 23 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::get_IsLeaf()[QuickJitted] +00007FA12A2D0410 7c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::ClearStateUponCompletion()[QuickJitted] +00007FA12A2D04A0 57 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::set_Item(!0,!1)[QuickJitted] +00007FA12A2D0510 7c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::ClearStateUponCompletion()[QuickJitted] +00007FA12B2C0C00 18 stub<7892> AllocateTemporaryEntryPoints +00007FA12B2C0C18 18 stub<7893> AllocateTemporaryEntryPoints +00007FA12A2D05A0 bee instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12A2D11C0 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::Initialize(int32)[QuickJitted] +00007FA12B2C0C30 60 stub<7894> AllocateTemporaryEntryPoints +00007FA12B2C0C90 18 stub<7895> AllocateTemporaryEntryPoints +00007FA12A2D12C0 1d7 instance int32 [System.Private.CoreLib] System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon]::GetHashCode()[QuickJitted] +00007FA12A2D14C0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::GetBucket(uint32)[QuickJitted] +00007FA12A2D1530 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::Resize()[QuickJitted] +00007FA12A2D1580 503 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::Resize(int32,bool)[QuickJitted] +00007FA12B2C0CA8 18 stub<7896> AllocateTemporaryEntryPoints +00007FA12B2C0CC0 18 stub<7897> AllocateTemporaryEntryPoints +00007FA12B2C0CD8 18 stub<7898> AllocateTemporaryEntryPoints +00007FA12A2D1AB0 150 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.__Canon]::CreateSingleton(!0)[QuickJitted] +00007FA12B2C0CF0 18 stub<7899> AllocateTemporaryEntryPoints +00007FA12A2D1C20 61 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateSingleton(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,!0)[QuickJitted] +00007FA12B2C0D08 30 stub<7900> AllocateTemporaryEntryPoints +00007FA12B2C0D38 30 stub<7901> AllocateTemporaryEntryPoints +00007FA12B2C0D68 30 stub<7902> AllocateTemporaryEntryPoints +00007FA12A2D1CA0 193 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1[System.__Canon]::AddLast(!0)[QuickJitted] +00007FA12A2D1E50 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1+Node[System.__Canon]::.ctor(!0)[QuickJitted] +00007FA12A2D1EA0 5e instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1+Node[System.__Canon]::.ctor(!0,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1/Node,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1/Node)[QuickJitted] +00007FA12A2D1F20 e8 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1[System.__Canon]::AddLast(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1)[QuickJitted] +00007FA12A2D2020 227 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::g__CreateBDDFromRangeImpl|21_0(uint32,uint32,int32)[QuickJitted] +00007FA12A2D2260 1b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1[System.__Canon]::get_Count()[QuickJitted] +00007FA12A2D2290 25f instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.__Canon]::CreateConcatAlreadyReversed(class [System.Runtime]System.Collections.Generic.IEnumerable`1>)[QuickJitted] +00007FA12A2D2520 cb instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.__Canon]::get_Epsilon()[QuickJitted] +00007FA12A2D2610 70 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateEpsilon(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA12A2D26A0 38 valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::Epsilon()[QuickJitted] +00007FA12A2D26F0 1c1 valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::Create(bool,bool,bool,bool,bool,bool,bool,bool)[QuickJitted] +00007FA1277C0540 18 stub<7903> GenerateLookupStub +00007FA12B2C0D98 90 stub<7904> AllocateTemporaryEntryPoints +00007FA12B2C0E28 18 stub<7905> AllocateTemporaryEntryPoints +00007FA12B2C0E40 90 stub<7906> AllocateTemporaryEntryPoints +00007FA12B2C0ED0 90 stub<7907> AllocateTemporaryEntryPoints +00007FA12B2C0F60 18 stub<7908> AllocateTemporaryEntryPoints +00007FA12A2D28D0 95 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1[System.__Canon]::GetEnumerator()[QuickJitted] +00007FA12A2D2980 2b instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1+d__12[System.__Canon]::.ctor(int32)[QuickJitted] +00007FA12B2C2000 f0 stub<7909> AllocateTemporaryEntryPoints +00007FA12B2C20F0 18 stub<7910> AllocateTemporaryEntryPoints +00007FA12B2C2108 30 stub<7911> AllocateTemporaryEntryPoints +00007FA12A2D29C0 fa instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1+d__12[System.__Canon]::MoveNext()[QuickJitted] +00007FA1277C0560 18 stub<7912> GenerateLookupStub +00007FA12A2D2AD0 1c instance !0 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1+d__12[System.__Canon]::System.Collections.Generic.IEnumerator.get_Current()[QuickJitted] +00007FA12A2D2B00 14d class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateConcat(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1)[QuickJitted] +00007FA12A2D2C70 22 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::get_IsEpsilon()[QuickJitted] +00007FA1277C4600 20 stub<7913> GenerateDispatchStub +00007FA1277F6E60 18 stub<7914> GenerateResolveStub +00007FA1277C4620 20 stub<7915> GenerateDispatchStub +00007FA12A2D2CB0 588 valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::Concat(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo)[QuickJitted] +00007FA12A2D3260 25 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_IsNullable()[QuickJitted] +00007FA12A2D32A0 25 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_CanBeNullable()[QuickJitted] +00007FA12A2D32E0 25 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_StartsWithLineAnchor()[QuickJitted] +00007FA12A2D3320 27 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_ContainsLineAnchor()[QuickJitted] +00007FA12A2D3360 25 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_ContainsSomeAnchor()[QuickJitted] +00007FA12A2D33A0 25 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_IsHighPriorityNullable()[QuickJitted] +00007FA12A2D33E0 27 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_ContainsEffect()[QuickJitted] +00007FA12A2D3420 2a instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::get_CanBeNullable()[QuickJitted] +00007FA12A2D3460 14 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1+d__12[System.__Canon]::System.IDisposable.Dispose()[QuickJitted] +00007FA12A2D3490 a4 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::IsNothing(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1)[QuickJitted] +00007FA12A2D3550 143 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::IsAnyStar(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1)[QuickJitted] +00007FA12A2D36B0 37 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::get_IsStar()[QuickJitted] +00007FA12A2D3700 6c0 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateAlternate(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,bool,bool)[QuickJitted] +00007FA1277C0580 18 stub<7916> GenerateLookupStub +00007FA12A2D3DE0 2c instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::IsEmpty(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA1277F6ED0 18 stub<7917> GenerateResolveStub +00007FA1277C4640 20 stub<7918> GenerateDispatchStub +00007FA1277C4660 20 stub<7919> GenerateDispatchStub +00007FA12A2D3E20 2a instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::get_IsNullable()[QuickJitted] +00007FA12B2C2138 60 stub<7920> AllocateTemporaryEntryPoints +00007FA12B2C2198 18 stub<7921> AllocateTemporaryEntryPoints +00007FA12B2C21B0 18 stub<7922> AllocateTemporaryEntryPoints +00007FA12B2C21C8 18 stub<7923> AllocateTemporaryEntryPoints +00007FA12A2D3E60 35d instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::Subsumes(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32)[QuickJitted] +00007FA12A2D41E0 2e4 valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::g__ApplySubsumptionRules|50_0(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32)[QuickJitted] +00007FA12A2D44E0 3df valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::Alternate(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo)[QuickJitted] +00007FA1277C05A0 18 stub<7924> GenerateLookupStub +00007FA1277F6F40 18 stub<7925> GenerateResolveStub +00007FA1277C4680 20 stub<7926> GenerateDispatchStub +00007FA12A2D48E0 20 instance !0 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1[System.__Canon]::get_FirstElement()[QuickJitted] +00007FA1277F6FB0 18 stub<7927> GenerateResolveStub +00007FA1277C46A0 20 stub<7928> GenerateDispatchStub +00007FA12A2D4920 29d instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.__Canon]::CreateLoop(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,bool,int32,int32)[QuickJitted] +00007FA12A2D4BE0 1b instance valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::get_Kind()[QuickJitted] +00007FA12B2C21E0 78 stub<7929> AllocateTemporaryEntryPoints +00007FA12A2D4C10 30 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter::g__MapCategoryCodeToCondition|5_2(valuetype [System.Runtime]System.Globalization.UnicodeCategory)[QuickJitted] +00007FA12B2C2258 300 stub<7930> AllocateTemporaryEntryPoints +00007FA12A2D4C60 fa class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryConditions::get_WhiteSpace()[QuickJitted] +00007FA12A2D4D80 2d void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryConditions::.cctor()[QuickJitted] +00007FA12A2D4DD0 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedWhitespaceBDD()[QuickJitted] +00007FA12A2D4E30 280 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::Deserialize(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12A2D50D0 95 int64 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::g__Get|19_0(int32,valuetype [System.Runtime]System.ReadOnlySpan`1,int32)[QuickJitted] +00007FA12A2D5180 3f void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::BitLayout(int32,int32,int32&,int32&,int32&)[QuickJitted] +00007FA12A2D51E0 24 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::get_Default()[QuickJitted] +00007FA12A2D5220 7e void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::.cctor()[QuickJitted] +00007FA12B2C2558 a8 stub<7931> AllocateTemporaryEntryPoints +00007FA12A2D52C0 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::.ctor()[QuickJitted] +00007FA12A2D5300 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::.ctor()[QuickJitted] +00007FA12B2C2600 18 stub<7932> AllocateTemporaryEntryPoints +00007FA12A2D5340 e9 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::Equals(!0,!0)[QuickJitted] +00007FA12B2C2618 18 stub<7933> AllocateTemporaryEntryPoints +00007FA12B2C2630 d8 stub<7934> AllocateTemporaryEntryPoints +00007FA12B2C2708 30 stub<7935> AllocateTemporaryEntryPoints +00007FA12B2C2738 d8 stub<7936> AllocateTemporaryEntryPoints +00007FA12B2C2810 30 stub<7937> AllocateTemporaryEntryPoints +00007FA12B2C2840 d8 stub<7938> AllocateTemporaryEntryPoints +00007FA12B2C2918 30 stub<7939> AllocateTemporaryEntryPoints +00007FA12B2C2948 d8 stub<7940> AllocateTemporaryEntryPoints +00007FA12B2C2A20 30 stub<7941> AllocateTemporaryEntryPoints +00007FA12B2C2A50 d8 stub<7942> AllocateTemporaryEntryPoints +00007FA12B2C2B28 30 stub<7943> AllocateTemporaryEntryPoints +00007FA12B2C2B58 d8 stub<7944> AllocateTemporaryEntryPoints +00007FA12B2C2C30 30 stub<7945> AllocateTemporaryEntryPoints +00007FA12B2C2C60 d8 stub<7946> AllocateTemporaryEntryPoints +00007FA12B2C2D38 30 stub<7947> AllocateTemporaryEntryPoints +00007FA12B2C2D68 d8 stub<7948> AllocateTemporaryEntryPoints +00007FA12B2C2E40 30 stub<7949> AllocateTemporaryEntryPoints +00007FA12B2C2E70 d8 stub<7950> AllocateTemporaryEntryPoints +00007FA12B2C2F48 30 stub<7951> AllocateTemporaryEntryPoints +00007FA12A2D5440 240 instance bool [System.Private.CoreLib] System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.__Canon,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::Equals(valuetype System.ValueTuple`7)[QuickJitted] +00007FA12A2D56A0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind]::get_Default()[QuickJitted] +00007FA12A2D56E0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind]::.cctor()[QuickJitted] +00007FA12B2C2F78 18 stub<7952> AllocateTemporaryEntryPoints +00007FA12B2C4000 d8 stub<7953> AllocateTemporaryEntryPoints +00007FA12B2C40D8 d8 stub<7954> AllocateTemporaryEntryPoints +00007FA12B2C41B0 30 stub<7955> AllocateTemporaryEntryPoints +00007FA12B2C41E0 d8 stub<7956> AllocateTemporaryEntryPoints +00007FA12A2D5760 1f instance void [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind]::.ctor()[QuickJitted] +00007FA12A2D57A0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind]::.ctor()[QuickJitted] +00007FA12B2C42B8 18 stub<7957> AllocateTemporaryEntryPoints +00007FA12B2C42D0 18 stub<7958> AllocateTemporaryEntryPoints +00007FA12A2D57E0 27 instance bool [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind]::Equals(!0,!0)[QuickJitted] +00007FA12A2D5820 22 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::EnumEquals(!!0,!!0)[QuickJitted] +00007FA12A2D5860 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::get_Default()[QuickJitted] +00007FA12A2D58A0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::.cctor()[QuickJitted] +00007FA12B2C42E8 18 stub<7959> AllocateTemporaryEntryPoints +00007FA12B2C4300 a8 stub<7960> AllocateTemporaryEntryPoints +00007FA12A2D5920 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::.ctor()[QuickJitted] +00007FA12A2D5960 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::.ctor()[QuickJitted] +00007FA12A2D59A0 58 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::Equals(!0,!0)[QuickJitted] +00007FA12A2D5A10 26 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::Equals(valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo)[QuickJitted] +00007FA12A2D5A50 24 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon]]::get_Default()[QuickJitted] +00007FA12A2D5A90 7e void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon]]::.cctor()[QuickJitted] +00007FA12B2C43A8 a8 stub<7961> AllocateTemporaryEntryPoints +00007FA12A2D5B30 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12A2D5B70 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12B2C4450 18 stub<7962> AllocateTemporaryEntryPoints +00007FA12A2D5BB0 d7 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon]]::Equals(!0,!0)[QuickJitted] +00007FA12B2C4468 18 stub<7963> AllocateTemporaryEntryPoints +00007FA12B2C4480 d8 stub<7964> AllocateTemporaryEntryPoints +00007FA12B2C4558 30 stub<7965> AllocateTemporaryEntryPoints +00007FA12A2D5CA0 13a instance bool [System.Private.CoreLib] System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon]::Equals(valuetype System.ValueTuple`3)[QuickJitted] +00007FA12A2D5DF0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation]::get_Default()[QuickJitted] +00007FA12A2D5E30 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation]::.cctor()[QuickJitted] +00007FA12B2C4588 18 stub<7966> AllocateTemporaryEntryPoints +00007FA12B2C45A0 d8 stub<7967> AllocateTemporaryEntryPoints +00007FA12A2D5EB0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation]::.ctor()[QuickJitted] +00007FA12A2D5EF0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation]::.ctor()[QuickJitted] +00007FA12B2C4678 18 stub<7968> AllocateTemporaryEntryPoints +00007FA12A2D5F30 27 instance bool [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation]::Equals(!0,!0)[QuickJitted] +00007FA12A2D5F70 22 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::EnumEquals(!!0,!!0)[QuickJitted] +00007FA12A2D5FB0 57 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexNode::get_IsNotoneFamily()[QuickJitted] +00007FA12A2D6020 1c2 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::Not(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA12A2D6200 21 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::.ctor()[QuickJitted] +00007FA12B2C4690 30 stub<7969> AllocateTemporaryEntryPoints +00007FA12B2C46C0 30 stub<7970> AllocateTemporaryEntryPoints +00007FA12B2C46F0 d8 stub<7971> AllocateTemporaryEntryPoints +00007FA12B2C47C8 d8 stub<7972> AllocateTemporaryEntryPoints +00007FA12A2D6240 ed instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::.ctor(class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12A2D6350 29 instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::Add(!0)[QuickJitted] +00007FA12B2C48A0 60 stub<7973> AllocateTemporaryEntryPoints +00007FA12B2C4900 18 stub<7974> AllocateTemporaryEntryPoints +00007FA1277C05C0 18 stub<7975> GenerateLookupStub +00007FA1277C05E0 18 stub<7976> GenerateLookupStub +00007FA12A2D6390 561 instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::AddIfNotPresent(!0,int32&)[QuickJitted] +00007FA12A2D6910 a0 instance int32 [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::Initialize(int32)[QuickJitted] +00007FA12A2D69D0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::GetBucketRef(int32)[QuickJitted] +00007FA12A2D6A40 34 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::Resize()[QuickJitted] +00007FA12A2D6A90 340 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::Resize(int32,bool)[QuickJitted] +00007FA12B2C4918 108 stub<7977> AllocateTemporaryEntryPoints +00007FA12B2C4A20 18 stub<7978> AllocateTemporaryEntryPoints +00007FA12A2D6DF0 25e class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter::g__MapCategoryCodeSetToCondition|5_1(class [System.Collections]System.Collections.Generic.HashSet`1,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.RegexNodeConverter/<>c__DisplayClass5_0&)[QuickJitted] +00007FA12A2D7070 2c instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::Contains(!0)[QuickJitted] +00007FA12A2D70B0 3cf instance int32 [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::FindItemIndex(!0)[QuickJitted] +00007FA12A2D74A0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Globalization.UnicodeCategory]::get_Default()[QuickJitted] +00007FA12A2D74E0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Globalization.UnicodeCategory]::.cctor()[QuickJitted] +00007FA12B2C4A38 18 stub<7979> AllocateTemporaryEntryPoints +00007FA12B2C4A50 d8 stub<7980> AllocateTemporaryEntryPoints +00007FA12A2D7560 1f instance void [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[System.Globalization.UnicodeCategory]::.ctor()[QuickJitted] +00007FA12A2D75A0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Globalization.UnicodeCategory]::.ctor()[QuickJitted] +00007FA12B2C4B28 18 stub<7981> AllocateTemporaryEntryPoints +00007FA12A2D75E0 27 instance bool [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[System.Globalization.UnicodeCategory]::Equals(!0,!0)[QuickJitted] +00007FA12A2D7620 22 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::EnumEquals(!!0,!!0)[QuickJitted] +00007FA12B2C4B40 18 stub<7982> AllocateTemporaryEntryPoints +00007FA12B2C4B58 18 stub<7983> AllocateTemporaryEntryPoints +00007FA12A2D7660 29d instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::Remove(!0)[QuickJitted] +00007FA12A2D7920 8 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12A2D7940 206 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryConditions::WordLetter(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver)[QuickJitted] +00007FA12B2C4B70 18 stub<7984> AllocateTemporaryEntryPoints +00007FA12A2D7B60 125 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryConditions::GetCategory(valuetype [System.Runtime]System.Globalization.UnicodeCategory)[QuickJitted] +00007FA12A2D7CA0 4db valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::GetSerializedCategory(valuetype [System.Runtime]System.Globalization.UnicodeCategory)[QuickJitted] +00007FA12A2D8250 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedCategory0_UppercaseLetter()[QuickJitted] +00007FA12A2D82B0 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedCategory1_LowercaseLetter()[QuickJitted] +00007FA12A2D8310 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedCategory2_TitlecaseLetter()[QuickJitted] +00007FA12A2D8370 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedCategory3_ModifierLetter()[QuickJitted] +00007FA12A2D83D0 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedCategory4_OtherLetter()[QuickJitted] +00007FA12A2D8430 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedCategory5_NonSpacingMark()[QuickJitted] +00007FA12A2D8490 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedCategory8_DecimalDigitNumber()[QuickJitted] +00007FA12A2D84F0 43 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UnicodeCategoryRanges::get_SerializedCategory18_ConnectorPunctuation()[QuickJitted] +00007FA12B2C4B88 108 stub<7985> AllocateTemporaryEntryPoints +00007FA12B2C4C90 18 stub<7986> AllocateTemporaryEntryPoints +00007FA12A2D8550 4b instance valuetype System.Collections.Generic.HashSet`1/Enumerator [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.Globalization.UnicodeCategory]::GetEnumerator()[QuickJitted] +00007FA12B2C6000 4f8 stub<7987> AllocateTemporaryEntryPoints +00007FA12B2C64F8 a8 stub<7988> AllocateTemporaryEntryPoints +00007FA12B2C65A0 18 stub<7989> AllocateTemporaryEntryPoints +00007FA12B2C65B8 108 stub<7990> AllocateTemporaryEntryPoints +00007FA12B2C66C0 18 stub<7991> AllocateTemporaryEntryPoints +00007FA12B2C66D8 a8 stub<7992> AllocateTemporaryEntryPoints +00007FA12A2D85B0 45 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1+Enumerator[System.Globalization.UnicodeCategory]::.ctor(class System.Collections.Generic.HashSet`1)[QuickJitted] +00007FA12A2D8610 fe instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1+Enumerator[System.Globalization.UnicodeCategory]::MoveNext()[QuickJitted] +00007FA12A2D8730 14 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1+Enumerator[System.Globalization.UnicodeCategory]::Dispose()[QuickJitted] +00007FA12A2D8760 f6 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::And(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12A2D8870 34 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::And(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA1277F7020 18 stub<7993> GenerateResolveStub +00007FA1277C46C0 20 stub<7994> GenerateDispatchStub +00007FA12B2C6780 60 stub<7995> AllocateTemporaryEntryPoints +00007FA12B2C67E0 18 stub<7996> AllocateTemporaryEntryPoints +00007FA12A2D88C0 2a instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::get_IsLazy()[QuickJitted] +00007FA12A2D8900 25 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo::get_IsLazyLoop()[QuickJitted] +00007FA12A2D8940 8f int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexParser::MapCaptureNumber(int32,class [System.Runtime]System.Collections.Hashtable)[QuickJitted] +00007FA12A2D89F0 76 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.__Canon]::CreateCaptureStart(int32)[QuickJitted] +00007FA12A2D8A80 74 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateCaptureStart(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,int32)[QuickJitted] +00007FA12A2D8B10 192 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.DoublyLinkedList`1[System.__Canon]::AddFirst(!0)[QuickJitted] +00007FA12A2D8CC0 76 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.__Canon]::CreateCaptureEnd(int32)[QuickJitted] +00007FA12A2D8D50 74 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateCaptureEnd(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,int32)[QuickJitted] +00007FA12A2D8DE0 76 int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexThresholds::GetSymbolicRegexSafeSizeThreshold()[QuickJitted] +00007FA12A2D8E70 8a instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::EstimateNfaSize()[QuickJitted] +00007FA12B2C67F8 60 stub<7997> AllocateTemporaryEntryPoints +00007FA12B2C6858 18 stub<7998> AllocateTemporaryEntryPoints +00007FA12A2D8F10 1e0 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CountSingletons()[QuickJitted] +00007FA12A2D9120 39 int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::Times(int32,int32)[QuickJitted] +00007FA12A2D9170 38 int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::Sum(int32,int32)[QuickJitted] +00007FA12A2D91C0 22a instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::AddFixedLengthMarkers(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,int32)[QuickJitted] +00007FA12A2D9410 19e instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::GetFixedLength()[QuickJitted] +00007FA12A2D9610 74 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CreateFixedLengthMarker(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,int32)[QuickJitted] +00007FA12B2C6870 18 stub<7999> AllocateTemporaryEntryPoints +00007FA12B2C6888 18 stub<8000> AllocateTemporaryEntryPoints +00007FA12B2C68A0 18 stub<8001> AllocateTemporaryEntryPoints +00007FA12B2C68B8 18 stub<8002> AllocateTemporaryEntryPoints +00007FA12B2C68D0 6f0 stub<8003> AllocateTemporaryEntryPoints +00007FA12B2C8000 78 stub<8004> AllocateTemporaryEntryPoints +00007FA12B2C8078 a8 stub<8005> AllocateTemporaryEntryPoints +00007FA12B2C8120 18 stub<8006> AllocateTemporaryEntryPoints +00007FA12B2C8138 18 stub<8007> AllocateTemporaryEntryPoints +00007FA12B2C8150 18 stub<8008> AllocateTemporaryEntryPoints +00007FA12A2D96A0 c7 instance !0[] [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::ComputeMinterms(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA12B2C8168 4f8 stub<8009> AllocateTemporaryEntryPoints +00007FA12B2C8660 108 stub<8010> AllocateTemporaryEntryPoints +00007FA12B2C8768 a8 stub<8011> AllocateTemporaryEntryPoints +00007FA12A2D9780 a4 instance class [System.Collections]System.Collections.Generic.HashSet`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::GetSets(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA12B2C8810 18 stub<8012> AllocateTemporaryEntryPoints +00007FA12B2C8828 18 stub<8013> AllocateTemporaryEntryPoints +00007FA12B2C8840 18 stub<8014> AllocateTemporaryEntryPoints +00007FA12A2D9840 288 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::CollectSets(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class [System.Collections]System.Collections.Generic.HashSet`1)[QuickJitted] +00007FA12B2C8858 60 stub<8015> AllocateTemporaryEntryPoints +00007FA12B2C88B8 48 stub<8016> AllocateTemporaryEntryPoints +00007FA12B2C8900 18 stub<8017> AllocateTemporaryEntryPoints +00007FA12B2C8918 48 stub<8018> AllocateTemporaryEntryPoints +00007FA12B2C8960 f0 stub<8019> AllocateTemporaryEntryPoints +00007FA12B2C8A50 48 stub<8020> AllocateTemporaryEntryPoints +00007FA12B2C8A98 4f8 stub<8021> AllocateTemporaryEntryPoints +00007FA12B2CA000 a8 stub<8022> AllocateTemporaryEntryPoints +00007FA12B2CA0A8 18 stub<8023> AllocateTemporaryEntryPoints +00007FA12B2CA0C0 108 stub<8024> AllocateTemporaryEntryPoints +00007FA12B2CA1C8 18 stub<8025> AllocateTemporaryEntryPoints +00007FA12B2CA1E0 a8 stub<8026> AllocateTemporaryEntryPoints +00007FA12B2CA288 108 stub<8027> AllocateTemporaryEntryPoints +00007FA12B2CA390 18 stub<8028> AllocateTemporaryEntryPoints +00007FA12B2CA3A8 18 stub<8029> AllocateTemporaryEntryPoints +00007FA12A2D9B30 30b class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MintermGenerator`1[System.__Canon]::GenerateMinterms(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1,class [System.Collections]System.Collections.Generic.HashSet`1)[QuickJitted] +00007FA12A2D9E70 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MintermGenerator`1+PartitionTree[System.__Canon]::.ctor(!0)[QuickJitted] +00007FA12B2CA3C0 f0 stub<8030> AllocateTemporaryEntryPoints +00007FA12B2CA4B0 60 stub<8031> AllocateTemporaryEntryPoints +00007FA12B2CA510 18 stub<8032> AllocateTemporaryEntryPoints +00007FA12B2CA528 18 stub<8033> AllocateTemporaryEntryPoints +00007FA12B2CA540 18 stub<8034> AllocateTemporaryEntryPoints +00007FA12A2D9EC0 4d2 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MintermGenerator`1+PartitionTree[System.__Canon]::Refine(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1,!0)[QuickJitted] +00007FA1277C0600 18 stub<8035> GenerateLookupStub +00007FA1277F7090 18 stub<8036> GenerateResolveStub +00007FA1277C46E0 20 stub<8037> GenerateDispatchStub +00007FA12A2DA3C0 117 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver+BooleanOperation,System.__Canon,System.__Canon],System.__Canon]::Resize(int32,bool)[OptimizedTier1OSR] +00007FA12A2DA500 117 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.Int32,System.__Canon,System.__Canon],System.__Canon]::Resize(int32,bool)[OptimizedTier1OSR] +00007FA12B2CA558 18 stub<8038> AllocateTemporaryEntryPoints +00007FA12B2CA570 6f0 stub<8039> AllocateTemporaryEntryPoints +00007FA12B2CAC60 78 stub<8040> AllocateTemporaryEntryPoints +00007FA12B2CACD8 a8 stub<8041> AllocateTemporaryEntryPoints +00007FA12B2CAD80 18 stub<8042> AllocateTemporaryEntryPoints +00007FA12B2CAD98 18 stub<8043> AllocateTemporaryEntryPoints +00007FA12B2CADB0 18 stub<8044> AllocateTemporaryEntryPoints +00007FA12A2DA640 1ef instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MintermGenerator`1+PartitionTree[System.__Canon]::GetLeafSets()[QuickJitted] +00007FA12B2CADC8 18 stub<8045> AllocateTemporaryEntryPoints +00007FA12B2CADE0 18 stub<8046> AllocateTemporaryEntryPoints +00007FA12B2CADF8 18 stub<8047> AllocateTemporaryEntryPoints +00007FA12B2CAE10 18 stub<8048> AllocateTemporaryEntryPoints +00007FA12B2CAE28 18 stub<8049> AllocateTemporaryEntryPoints +00007FA1277C0620 18 stub<8050> GenerateLookupStub +00007FA1277F7100 18 stub<8051> GenerateResolveStub +00007FA1277C4700 20 stub<8052> GenerateDispatchStub +00007FA1277C0640 18 stub<8053> GenerateLookupStub +00007FA12A2DA850 f6 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::CompareTo(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA12A2DA960 cc instance uint64 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::GetMin()[QuickJitted] +00007FA12A2DAA40 2b instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::get_IsFull()[QuickJitted] +00007FA12A2DAA80 2b instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::get_IsEmpty()[QuickJitted] +00007FA1277F7170 18 stub<8054> GenerateResolveStub +00007FA1277C4720 20 stub<8055> GenerateDispatchStub +00007FA12B2CAE40 48 stub<8056> AllocateTemporaryEntryPoints +00007FA12A2DAAC0 d5 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD[],class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver)[QuickJitted] +00007FA12A2DABB0 272 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MintermClassifier::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD[],class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver)[QuickJitted] +00007FA12A2DAE40 6e instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::ReplaceTrue(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,int32)[QuickJitted] +00007FA12A2DAED0 f4 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::g__ReplaceTrueImpl|22_0(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,class [System.Collections]System.Collections.Generic.Dictionary`2)[QuickJitted] +00007FA12B2CAE88 60 stub<8057> AllocateTemporaryEntryPoints +00007FA12A2DAFE0 9f instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::Find(int32)[QuickJitted] +00007FA12A2DB0A0 a8 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver::get_NonAscii()[QuickJitted] +00007FA12A2DB160 1fe instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD::IsEssentiallyBoolean(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD&)[QuickJitted] +00007FA12B2CAEE8 18 stub<8058> AllocateTemporaryEntryPoints +00007FA12B2CAF00 18 stub<8059> AllocateTemporaryEntryPoints +00007FA12B2CAF18 18 stub<8060> AllocateTemporaryEntryPoints +00007FA12B2CAF30 18 stub<8061> AllocateTemporaryEntryPoints +00007FA12B2CAF48 30 stub<8062> AllocateTemporaryEntryPoints +00007FA12B2CAF78 18 stub<8063> AllocateTemporaryEntryPoints +00007FA12B2CAF90 18 stub<8064> AllocateTemporaryEntryPoints +00007FA12B2CAFA8 30 stub<8065> AllocateTemporaryEntryPoints +00007FA12B2CC000 210 stub<8066> AllocateTemporaryEntryPoints +00007FA12B2CC210 5b8 stub<8067> AllocateTemporaryEntryPoints +00007FA12B2CC7C8 30 stub<8068> AllocateTemporaryEntryPoints +00007FA12B2CC7F8 210 stub<8069> AllocateTemporaryEntryPoints +00007FA1277C0660 18 stub<8070> GenerateLookupStub +00007FA12B2CCA08 f0 stub<8071> AllocateTemporaryEntryPoints +00007FA12B2CCAF8 60 stub<8072> AllocateTemporaryEntryPoints +00007FA12B2CCB58 60 stub<8073> AllocateTemporaryEntryPoints +00007FA12B2CCBB8 18 stub<8074> AllocateTemporaryEntryPoints +00007FA12B2CCBD0 18 stub<8075> AllocateTemporaryEntryPoints +00007FA12B2CCBE8 18 stub<8076> AllocateTemporaryEntryPoints +00007FA12B2CCC00 18 stub<8077> AllocateTemporaryEntryPoints +00007FA12A2DB380 1a2 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1[System.UInt64]::Create(int32,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexFindOptimizations,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12A2DB540 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1+<>c__DisplayClass53_0[System.UInt64]::.ctor()[QuickJitted] +00007FA12B2CCC18 2a0 stub<8078> AllocateTemporaryEntryPoints +00007FA12B2CCEB8 18 stub<8079> AllocateTemporaryEntryPoints +00007FA12B2CCED0 18 stub<8080> AllocateTemporaryEntryPoints +00007FA12B2CE000 5e8 stub<8081> AllocateTemporaryEntryPoints +00007FA12B2CE5E8 c0 stub<8082> AllocateTemporaryEntryPoints +00007FA12B2CE6A8 90 stub<8083> AllocateTemporaryEntryPoints +00007FA12B2CE738 a8 stub<8084> AllocateTemporaryEntryPoints +00007FA12B2CE7E0 18 stub<8085> AllocateTemporaryEntryPoints +00007FA12B2CE7F8 78 stub<8086> AllocateTemporaryEntryPoints +00007FA12B2CE870 18 stub<8087> AllocateTemporaryEntryPoints +00007FA12B2CE888 2a0 stub<8088> AllocateTemporaryEntryPoints +00007FA12B2CEB28 18 stub<8089> AllocateTemporaryEntryPoints +00007FA12B2CEB40 18 stub<8090> AllocateTemporaryEntryPoints +00007FA12B300000 5e8 stub<8091> AllocateTemporaryEntryPoints +00007FA12B3005E8 c0 stub<8092> AllocateTemporaryEntryPoints +00007FA12B3006A8 90 stub<8093> AllocateTemporaryEntryPoints +00007FA12B300738 a8 stub<8094> AllocateTemporaryEntryPoints +00007FA12B3007E0 18 stub<8095> AllocateTemporaryEntryPoints +00007FA12B3007F8 78 stub<8096> AllocateTemporaryEntryPoints +00007FA12B300870 18 stub<8097> AllocateTemporaryEntryPoints +00007FA1277C0680 18 stub<8098> GenerateLookupStub +00007FA1277C06A0 18 stub<8099> GenerateLookupStub +00007FA12A2DB580 29f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver)[QuickJitted] +00007FA12A2DB840 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::.ctor()[QuickJitted] +00007FA12B300888 30 stub<8100> AllocateTemporaryEntryPoints +00007FA12B3008B8 d8 stub<8101> AllocateTemporaryEntryPoints +00007FA12A2DB880 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12A2DBA60 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.__Canon,System.UInt64,System.UInt32],System.__Canon]::.ctor()[QuickJitted] +00007FA12B300990 30 stub<8102> AllocateTemporaryEntryPoints +00007FA12B3009C0 d8 stub<8103> AllocateTemporaryEntryPoints +00007FA12A2DBAA0 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`3[System.__Canon,System.UInt64,System.UInt32],System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12A2DBC80 18 instance uint64 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::get_Empty()[QuickJitted] +00007FA1277F71E0 18 stub<8104> GenerateResolveStub +00007FA1277C4740 20 stub<8105> GenerateDispatchStub +00007FA12A2DBCB0 67 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateFalse(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA12A2DBD30 19b class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::Create(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32,int32,!0,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo)[QuickJitted] +00007FA12A2DBEF0 79 instance void [System.Private.CoreLib] System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::.ctor(!0,!1,!2,!3,!4,!5,!6)[QuickJitted] +00007FA12A2DBF80 86 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12B300A98 60 stub<8106> AllocateTemporaryEntryPoints +00007FA12B300AF8 18 stub<8107> AllocateTemporaryEntryPoints +00007FA12B300B10 18 stub<8108> AllocateTemporaryEntryPoints +00007FA12B300B28 18 stub<8109> AllocateTemporaryEntryPoints +00007FA12A2DC020 76c instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::FindValue(!0)[QuickJitted] +00007FA12A2DC7B0 fd instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32,int32,!0,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo)[QuickJitted] +00007FA12A2DC8D0 5b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::set_Item(!0,!1)[QuickJitted] +00007FA12B300B40 18 stub<8110> AllocateTemporaryEntryPoints +00007FA12B300B58 18 stub<8111> AllocateTemporaryEntryPoints +00007FA12A2DC940 c1a instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12A2DD590 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::Initialize(int32)[QuickJitted] +00007FA12B300B70 60 stub<8112> AllocateTemporaryEntryPoints +00007FA12B300BD0 18 stub<8113> AllocateTemporaryEntryPoints +00007FA12A2DD690 655 instance int32 [System.Private.CoreLib] System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::GetHashCode()[QuickJitted] +00007FA12A2DDD10 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::GetBucket(uint32)[QuickJitted] +00007FA12A2DDD80 67 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateTrue(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA12A2DDE00 1c instance uint64 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::get_Full()[QuickJitted] +00007FA12A2DDE30 17c class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateLoop(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32,int32,bool)[QuickJitted] +00007FA1277C06C0 18 stub<8114> GenerateLookupStub +00007FA12A2DDFD0 118 !0 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::ComputeStartSet(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1)[QuickJitted] +00007FA12A2DE150 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::Resize()[QuickJitted] +00007FA12A2DE1A0 4f7 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo],System.__Canon]::Resize(int32,bool)[QuickJitted] +00007FA12B300BE8 60 stub<8115> AllocateTemporaryEntryPoints +00007FA1277F7250 18 stub<8116> GenerateResolveStub +00007FA1277C4760 20 stub<8117> GenerateDispatchStub +00007FA12A2DE6C0 ec instance uint64 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::ConvertFromBDD(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.CharSetSolver)[QuickJitted] +00007FA1277F72C0 18 stub<8118> GenerateResolveStub +00007FA1277C4780 20 stub<8119> GenerateDispatchStub +00007FA12B300C48 18 stub<8120> AllocateTemporaryEntryPoints +00007FA12B300C60 210 stub<8121> AllocateTemporaryEntryPoints +00007FA12B302000 5b8 stub<8122> AllocateTemporaryEntryPoints +00007FA12B3025B8 60 stub<8123> AllocateTemporaryEntryPoints +00007FA12B302618 60 stub<8124> AllocateTemporaryEntryPoints +00007FA12B302678 18 stub<8125> AllocateTemporaryEntryPoints +00007FA12B302690 18 stub<8126> AllocateTemporaryEntryPoints +00007FA12B3026A8 18 stub<8127> AllocateTemporaryEntryPoints +00007FA12A2DE7D0 579 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.__Canon]::Transform(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class [System.Runtime]System.Func`3,!0,!!0>)[QuickJitted] +00007FA12A2DEDB0 b6 instance class [System.Collections]System.Collections.Generic.List`1> [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::ToList(class [System.Collections]System.Collections.Generic.List`1>,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind)[QuickJitted] +00007FA12B3026C0 18 stub<8128> AllocateTemporaryEntryPoints +00007FA12B3026D8 18 stub<8129> AllocateTemporaryEntryPoints +00007FA12B3026F0 60 stub<8130> AllocateTemporaryEntryPoints +00007FA12B302750 18 stub<8131> AllocateTemporaryEntryPoints +00007FA12B302768 18 stub<8132> AllocateTemporaryEntryPoints +00007FA12B302780 18 stub<8133> AllocateTemporaryEntryPoints +00007FA12B302798 18 stub<8134> AllocateTemporaryEntryPoints +00007FA12A2DEE80 2ef void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.__Canon]::g__AppendToList|25_0(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class [System.Collections]System.Collections.Generic.List`1>,valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind)[QuickJitted] +00007FA12A2DF190 25 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::CreateCaptureEnd(int32)[QuickJitted] +00007FA12A2DF1D0 61 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateCaptureEnd(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,int32)[QuickJitted] +00007FA12B3027B0 210 stub<8135> AllocateTemporaryEntryPoints +00007FA12B3029C0 f0 stub<8136> AllocateTemporaryEntryPoints +00007FA12A2DF250 3e instance !0 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1+<>c__DisplayClass53_0[System.UInt64]::b__0(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.BDD)[QuickJitted] +00007FA12B302AB0 18 stub<8137> AllocateTemporaryEntryPoints +00007FA12B302AC8 18 stub<8138> AllocateTemporaryEntryPoints +00007FA12A2DF2B0 a0 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::CreateSingleton(!0)[QuickJitted] +00007FA12B302AE0 18 stub<8139> AllocateTemporaryEntryPoints +00007FA12A2DF370 73 !!1& [System.Private.CoreLib] System.Runtime.InteropServices.CollectionsMarshal::GetValueRefOrAddDefault(class System.Collections.Generic.Dictionary`2,!!0,bool&)[QuickJitted] +00007FA12B302AF8 60 stub<8140> AllocateTemporaryEntryPoints +00007FA1277C06E0 18 stub<8141> GenerateLookupStub +00007FA1277C0700 18 stub<8142> GenerateLookupStub +00007FA12A2DF400 645 !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+CollectionsMarshalHelper[System.UInt64,System.__Canon]::GetValueRefOrAddDefault(class System.Collections.Generic.Dictionary`2,!0,bool&)[QuickJitted] +00007FA12A2DFA70 52 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateSingleton(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,!0)[QuickJitted] +00007FA1277C0720 18 stub<8143> GenerateLookupStub +00007FA12A2DFAE0 153 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::CreateLoop(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,bool,int32,int32)[QuickJitted] +00007FA12A2DFC50 1b instance valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::get_Kind()[QuickJitted] +00007FA1277C0740 18 stub<8144> GenerateLookupStub +00007FA1277C0760 18 stub<8145> GenerateLookupStub +00007FA12A2DFC80 125 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::CreateConcatAlreadyReversed(class [System.Runtime]System.Collections.Generic.IEnumerable`1>)[QuickJitted] +00007FA12A2DFDD0 76 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::get_Epsilon()[QuickJitted] +00007FA12A2DFE60 5d class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateEpsilon(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA12B302B58 18 stub<8146> AllocateTemporaryEntryPoints +00007FA1277C47A0 20 stub<8147> GenerateDispatchStub +00007FA1277F7330 18 stub<8148> GenerateResolveStub +00007FA1277C47C0 20 stub<8149> GenerateDispatchStub +00007FA12A2DFEE0 137 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateConcat(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1)[QuickJitted] +00007FA12A2E0030 22 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::get_IsEpsilon()[QuickJitted] +00007FA12A2E0070 2a instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::get_CanBeNullable()[QuickJitted] +00007FA1277C47E0 20 stub<8150> GenerateDispatchStub +00007FA12A2E00B0 652 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateAlternate(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,bool,bool)[QuickJitted] +00007FA12B302B70 240 stub<8151> AllocateTemporaryEntryPoints +00007FA12B302DB0 48 stub<8152> AllocateTemporaryEntryPoints +00007FA12B302DF8 60 stub<8153> AllocateTemporaryEntryPoints +00007FA12B302E58 a8 stub<8154> AllocateTemporaryEntryPoints +00007FA12B302F00 18 stub<8155> AllocateTemporaryEntryPoints +00007FA12B304000 390 stub<8156> AllocateTemporaryEntryPoints +00007FA12B304390 30 stub<8157> AllocateTemporaryEntryPoints +00007FA12B3043C0 18 stub<8158> AllocateTemporaryEntryPoints +00007FA12B3043D8 30 stub<8159> AllocateTemporaryEntryPoints +00007FA12B304408 30 stub<8160> AllocateTemporaryEntryPoints +00007FA12B304438 30 stub<8161> AllocateTemporaryEntryPoints +00007FA12B304468 18 stub<8162> AllocateTemporaryEntryPoints +00007FA12B304480 30 stub<8163> AllocateTemporaryEntryPoints +00007FA12B3044B0 30 stub<8164> AllocateTemporaryEntryPoints +00007FA12B3044E0 30 stub<8165> AllocateTemporaryEntryPoints +00007FA12B304510 30 stub<8166> AllocateTemporaryEntryPoints +00007FA12B304540 18 stub<8167> AllocateTemporaryEntryPoints +00007FA12B304558 30 stub<8168> AllocateTemporaryEntryPoints +00007FA12B304588 30 stub<8169> AllocateTemporaryEntryPoints +00007FA12A2E0720 84 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::IsAnyStar(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1)[QuickJitted] +00007FA12A2E07C0 37 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::get_IsStar()[QuickJitted] +00007FA1277C0780 18 stub<8170> GenerateLookupStub +00007FA12A2E0810 44 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::IsNothing(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1)[QuickJitted] +00007FA12A2E0870 2a instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::get_IsNullable()[QuickJitted] +00007FA12B3045B8 18 stub<8171> AllocateTemporaryEntryPoints +00007FA12A2E08B0 1d6 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::Subsumes(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32)[QuickJitted] +00007FA12A2E0AA0 2aa valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::g__ApplySubsumptionRules|50_0(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32)[QuickJitted] +00007FA12A2E0D70 26 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::IsEmpty(uint64)[QuickJitted] +00007FA12A2E0DB0 24 instance uint64 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::Or(uint64,uint64)[QuickJitted] +00007FA1277F73A0 18 stub<8172> GenerateResolveStub +00007FA1277C4800 20 stub<8173> GenerateDispatchStub +00007FA1277F7410 18 stub<8174> GenerateResolveStub +00007FA1277C4820 20 stub<8175> GenerateDispatchStub +00007FA1277F7480 18 stub<8176> GenerateResolveStub +00007FA1277C4840 20 stub<8177> GenerateDispatchStub +00007FA12A2E0DF0 24 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::get_Default()[QuickJitted] +00007FA12A2E0E30 7e void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::.cctor()[QuickJitted] +00007FA12B3045D0 a8 stub<8178> AllocateTemporaryEntryPoints +00007FA12A2E0ED0 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::.ctor()[QuickJitted] +00007FA12A2E0F10 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::.ctor()[QuickJitted] +00007FA12B304678 18 stub<8179> AllocateTemporaryEntryPoints +00007FA12A2E0F50 db instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]]::Equals(!0,!0)[QuickJitted] +00007FA12B304690 18 stub<8180> AllocateTemporaryEntryPoints +00007FA12A2E1040 1fa instance bool [System.Private.CoreLib] System.ValueTuple`7[Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNodeKind,System.__Canon,System.__Canon,System.Int32,System.Int32,System.UInt64,Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexInfo]::Equals(valuetype System.ValueTuple`7)[QuickJitted] +00007FA12B3046A8 60 stub<8181> AllocateTemporaryEntryPoints +00007FA12B304708 18 stub<8182> AllocateTemporaryEntryPoints +00007FA12A2E1260 2a instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::get_IsLazy()[QuickJitted] +00007FA12A2E12A0 25 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::CreateFixedLengthMarker(int32)[QuickJitted] +00007FA12A2E12E0 61 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateFixedLengthMarker(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,int32)[QuickJitted] +00007FA12A2E1360 25 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::CreateCaptureStart(int32)[QuickJitted] +00007FA12A2E13A0 61 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateCaptureStart(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,int32)[QuickJitted] +00007FA12B304720 138 stub<8183> AllocateTemporaryEntryPoints +00007FA12B304858 18 stub<8184> AllocateTemporaryEntryPoints +00007FA12B304870 18 stub<8185> AllocateTemporaryEntryPoints +00007FA12B304888 138 stub<8186> AllocateTemporaryEntryPoints +00007FA12B3049C0 5b8 stub<8187> AllocateTemporaryEntryPoints +00007FA12B306000 138 stub<8188> AllocateTemporaryEntryPoints +00007FA12B306138 18 stub<8189> AllocateTemporaryEntryPoints +00007FA12B306150 5e8 stub<8190> AllocateTemporaryEntryPoints +00007FA12B306738 c0 stub<8191> AllocateTemporaryEntryPoints +00007FA12B3067F8 90 stub<8192> AllocateTemporaryEntryPoints +00007FA12B306888 a8 stub<8193> AllocateTemporaryEntryPoints +00007FA12B306930 18 stub<8194> AllocateTemporaryEntryPoints +00007FA12B306948 78 stub<8195> AllocateTemporaryEntryPoints +00007FA12B3069C0 18 stub<8196> AllocateTemporaryEntryPoints +00007FA12B3069D8 18 stub<8197> AllocateTemporaryEntryPoints +00007FA12B3069F0 48 stub<8198> AllocateTemporaryEntryPoints +00007FA12B306A38 60 stub<8199> AllocateTemporaryEntryPoints +00007FA12B306A98 2a0 stub<8200> AllocateTemporaryEntryPoints +00007FA12B306D38 18 stub<8201> AllocateTemporaryEntryPoints +00007FA12B306D50 18 stub<8202> AllocateTemporaryEntryPoints +00007FA12B306D68 60 stub<8203> AllocateTemporaryEntryPoints +00007FA12B306DC8 18 stub<8204> AllocateTemporaryEntryPoints +00007FA12B306DE0 78 stub<8205> AllocateTemporaryEntryPoints +00007FA1277C07A0 18 stub<8206> GenerateLookupStub +00007FA12B306E58 18 stub<8207> AllocateTemporaryEntryPoints +00007FA12B306E70 18 stub<8208> AllocateTemporaryEntryPoints +00007FA12B306E88 60 stub<8209> AllocateTemporaryEntryPoints +00007FA12A2E1420 763 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1[System.UInt64]::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,int32,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexFindOptimizations,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12A2E1BB0 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Int32,System.Int32]::.ctor()[QuickJitted] +00007FA12A2E1BF0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher::.ctor()[QuickJitted] +00007FA12A2E1C30 48 void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Regex::.cctor()[QuickJitted] +00007FA12A2E1C90 1d9 valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Regex::InitDefaultMatchTimeout()[QuickJitted] +00007FA12A2E1E90 ac instance uint64[] [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::GetMinterms()[QuickJitted] +00007FA1277C07C0 18 stub<8210> GenerateLookupStub +00007FA12A2E1F50 15b instance uint32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1[System.UInt64]::<.ctor>g__CalculateMintermIdKind|54_0(int32)[QuickJitted] +00007FA12A2E20D0 41 instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexFindOptimizations::get_IsUseful()[QuickJitted] +00007FA12A2E2130 1b instance valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.FindNextStartingPositionMode [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.RegexFindOptimizations::get_FindMode()[QuickJitted] +00007FA12B306EE8 18 stub<8211> AllocateTemporaryEntryPoints +00007FA12B306F00 18 stub<8212> AllocateTemporaryEntryPoints +00007FA12B306F18 18 stub<8213> AllocateTemporaryEntryPoints +00007FA12B306F30 18 stub<8214> AllocateTemporaryEntryPoints +00007FA12B306F48 18 stub<8215> AllocateTemporaryEntryPoints +00007FA12B306F60 18 stub<8216> AllocateTemporaryEntryPoints +00007FA12B306F78 18 stub<8217> AllocateTemporaryEntryPoints +00007FA12B306F90 18 stub<8218> AllocateTemporaryEntryPoints +00007FA12A2E2160 2e8 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MatchingState`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1[System.UInt64]::GetOrCreateState_NoLock(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,uint32,bool)[QuickJitted] +00007FA1277C07E0 18 stub<8219> GenerateLookupStub +00007FA12A2E2470 165 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::PruneAnchors(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,uint32)[QuickJitted] +00007FA12A2E25F0 24 instance uint64 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::And(uint64,uint64)[QuickJitted] +00007FA12A2E2630 2c instance uint64 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.UInt64Solver::Not(uint64)[QuickJitted] +00007FA1277F74F0 18 stub<8220> GenerateResolveStub +00007FA1277C4860 20 stub<8221> GenerateDispatchStub +00007FA12B308000 60 stub<8222> AllocateTemporaryEntryPoints +00007FA12B308060 18 stub<8223> AllocateTemporaryEntryPoints +00007FA12B308078 18 stub<8224> AllocateTemporaryEntryPoints +00007FA12B308090 18 stub<8225> AllocateTemporaryEntryPoints +00007FA12A2E2670 4e0 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::PruneAnchorsImpl(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,uint32,bool,bool)[QuickJitted] +00007FA12A2E2BB0 36 instance void [System.Private.CoreLib] System.ValueTuple`2[System.__Canon,System.UInt32]::.ctor(!0,!1)[QuickJitted] +00007FA12A2E2C00 69 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12B3080A8 60 stub<8226> AllocateTemporaryEntryPoints +00007FA12B308108 18 stub<8227> AllocateTemporaryEntryPoints +00007FA12B308120 18 stub<8228> AllocateTemporaryEntryPoints +00007FA12B308138 18 stub<8229> AllocateTemporaryEntryPoints +00007FA12A2E2C80 671 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::FindValue(!0)[QuickJitted] +00007FA12A2E3320 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MatchingState`1[System.UInt64]::.ctor(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,uint32)[QuickJitted] +00007FA12A2E3380 3f instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::Add(!0,!1)[QuickJitted] +00007FA12B308150 18 stub<8230> AllocateTemporaryEntryPoints +00007FA12B308168 18 stub<8231> AllocateTemporaryEntryPoints +00007FA12A2E33E0 aba instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12A2E3ED0 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::Initialize(int32)[QuickJitted] +00007FA12B308180 60 stub<8232> AllocateTemporaryEntryPoints +00007FA12B3081E0 18 stub<8233> AllocateTemporaryEntryPoints +00007FA12A2E3FD0 106 instance int32 [System.Private.CoreLib] System.ValueTuple`2[System.__Canon,System.UInt32]::GetHashCode()[QuickJitted] +00007FA12A2E40F0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::GetBucket(uint32)[QuickJitted] +00007FA12A2E4160 22 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.UInt32],System.__Canon]::get_Count()[QuickJitted] +00007FA12A2E41A0 21 instance void [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MatchingState`1[System.UInt64]::set_Id(int32)[QuickJitted] +00007FA12A2E41E0 1b instance int32 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MatchingState`1[System.UInt64]::get_Id()[QuickJitted] +00007FA12A2E4210 20 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1[System.UInt64]::get_Solver()[QuickJitted] +00007FA12B3081F8 5b8 stub<8234> AllocateTemporaryEntryPoints +00007FA12A2E4250 3d instance bool [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MatchingState`1[System.UInt64]::IsDeadend(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.ISolver`1)[QuickJitted] +00007FA12A2E42B0 1c instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.MatchingState`1[System.UInt64]::get_Node()[QuickJitted] +00007FA12A2E42E0 85 valuetype Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1/ContextIndependentState [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexMatcher`1[System.UInt64]::g__BuildStateInfo|17_0(int32,bool,bool,bool,bool)[QuickJitted] +00007FA12A2E4380 2f instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::CreateConcat(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1)[QuickJitted] +00007FA1277F7560 18 stub<8235> GenerateResolveStub +00007FA1277C4880 20 stub<8236> GenerateDispatchStub +00007FA12B3087B0 18 stub<8237> AllocateTemporaryEntryPoints +00007FA12B3087C8 18 stub<8238> AllocateTemporaryEntryPoints +00007FA12A2E43D0 33a instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::Reverse(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1)[QuickJitted] +00007FA12A2E4770 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.__Canon],System.Boolean]::Resize()[QuickJitted] +00007FA12B3087E0 60 stub<8239> AllocateTemporaryEntryPoints +00007FA12B308840 30 stub<8240> AllocateTemporaryEntryPoints +00007FA12B308870 d8 stub<8241> AllocateTemporaryEntryPoints +00007FA12A2E47C0 4cf instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.ValueTuple`2[System.__Canon,System.__Canon],System.Boolean]::Resize(int32,bool)[QuickJitted] +00007FA12A2E4CB0 43 instance class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1[System.UInt64]::CreateDisableBacktrackingSimulation(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1)[QuickJitted] +00007FA12A2E4D10 59 class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1 [Datadog.Trace] Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1[System.UInt64]::CreateDisableBacktrackingSimulation(class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexBuilder`1,class Datadog.Trace.Vendors.IndieSystem.Text.RegularExpressions.Symbolic.SymbolicRegexNode`1)[QuickJitted] +00007FA12A2E4D80 1c instance class Datadog.Trace.Processors.ITraceProcessor[] [Datadog.Trace] Datadog.Trace.TracerManager::get_TraceProcessors()[QuickJitted] +00007FA12A2E4DB0 1c instance class Datadog.Trace.ContinuousProfiler.IProfilerStatus [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler::get_Status()[QuickJitted] +00007FA1277F75D0 18 stub<8242> GenerateResolveStub +00007FA1277C48A0 20 stub<8243> GenerateDispatchStub +00007FA12A2E4DE0 1c instance string [Datadog.Trace] Datadog.Trace.TracerManager::get_DefaultServiceName()[QuickJitted] +00007FA12A2E4E10 1c instance class Datadog.Trace.Configuration.ImmutableTracerSettings [Datadog.Trace] Datadog.Trace.TracerManager::get_Settings()[QuickJitted] +00007FA12A2E4E40 36 void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.NativeInterop::SetApplicationInfoForAppDomain(string,string,string,string)[QuickJitted] +00007FA12B308948 18 stub<8244> AllocateTemporaryEntryPoints +00007FA12B308960 60 stub<8245> AllocateTemporaryEntryPoints +00007FA12B3089C0 120 stub<8246> AllocateTemporaryEntryPoints +00007FA12A2E4E90 404 void [Samples.BuggyBits] dynamicClass::IL_STUB_PInvoke(string,string,string,string)[Optimized] +00007FA12A2E52E0 19b void [Datadog.Trace] Datadog.Trace.TracerManager::OneTimeSetup()[QuickJitted] +00007FA12A2E54B0 2d instance void [Datadog.Trace] Datadog.Trace.LifetimeManager::AddAsyncShutdownTask(class [System.Runtime]System.Func`1)[QuickJitted] +00007FA12A2E5500 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_StartupDiagnosticLogEnabled()[QuickJitted] +00007FA12A2E5540 47 instance class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.Tracer::get_TracerManager()[QuickJitted] +00007FA12A2E55A0 23 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.TracerManager+<>c__DisplayClass59_0::b__0()[QuickJitted] +00007FA12B308AF8 48 stub<8247> AllocateTemporaryEntryPoints +00007FA1277C0800 18 stub<8248> GenerateLookupStub +00007FA1277C0820 18 stub<8249> GenerateLookupStub +00007FA12A2E59E0 9c instance void [Datadog.Trace] Datadog.Trace.TracerManager::Start()[QuickJitted] +00007FA1277C0840 18 stub<8250> GenerateLookupStub +00007FA12B308B40 a8 stub<8251> AllocateTemporaryEntryPoints +00007FA12B308BE8 60 stub<8252> AllocateTemporaryEntryPoints +00007FA12A2E5AD0 b5 void [Datadog.Trace] Datadog.Trace.TracerManager::HeartbeatCallback(object)[QuickJitted] +00007FA12A2E5AA0 1c instance class Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager [Datadog.Trace] Datadog.Trace.TracerManager::get_DirectLogSubmission()[QuickJitted] +00007FA12B308C48 18 stub<8253> AllocateTemporaryEntryPoints +00007FA12A2E5BB0 1c instance class Datadog.Trace.Vendors.StatsdClient.IDogStatsd [Datadog.Trace] Datadog.Trace.TracerManager::get_Statsd()[QuickJitted] +00007FA12A2E5BE0 1c instance class Datadog.Trace.Logging.DirectSubmission.Sink.IDatadogSink [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager::get_Sink()[QuickJitted] +00007FA12A2E5C10 60 class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.TracerManager::WriteDiagnosticLog(class Datadog.Trace.TracerManager)[QuickJitted] +00007FA12B308C60 18 stub<8254> AllocateTemporaryEntryPoints +00007FA12A2E5C90 14 instance void [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.Sink.NullDatadogSink::Start()[QuickJitted] +00007FA12A2E5CC0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2E5D00 1c instance class Datadog.Trace.Telemetry.ITelemetryController [Datadog.Trace] Datadog.Trace.TracerManager::get_Telemetry()[QuickJitted] +00007FA12A2E5D30 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::Start()[QuickJitted] +00007FA12A2E5D70 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2E5E70 4a instance bool [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.Boolean]::TrySetResult(!0)[QuickJitted] +00007FA12B308C78 30 stub<8255> AllocateTemporaryEntryPoints +00007FA12B308CA8 18 stub<8256> AllocateTemporaryEntryPoints +00007FA12B308CC0 18 stub<8257> AllocateTemporaryEntryPoints +00007FA12A2E5ED0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__30]::MoveNext()[QuickJitted] +00007FA12B30A000 978 stub<8258> AllocateTemporaryEntryPoints +00007FA12A2E5F10 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__30]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B30C000 828 stub<8259> AllocateTemporaryEntryPoints +00007FA12A2E6090 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__30]::.cctor()[QuickJitted] +00007FA12B30C828 18 stub<8260> AllocateTemporaryEntryPoints +00007FA12A2E6110 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__30]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B30C840 60 stub<8261> AllocateTemporaryEntryPoints +00007FA1277C0860 18 stub<8262> GenerateLookupStub +00007FA12B30C8A0 18 stub<8263> AllocateTemporaryEntryPoints +00007FA12B30C8B8 18 stub<8264> AllocateTemporaryEntryPoints +00007FA12A2E6150 6e instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::PushTelemetry(bool)[QuickJitted] +00007FA12B30C8D0 18 stub<8265> AllocateTemporaryEntryPoints +00007FA12A2E61E0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2E6220 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B30C8E8 180 stub<8266> AllocateTemporaryEntryPoints +00007FA12B30CA68 18 stub<8267> AllocateTemporaryEntryPoints +00007FA12A2E6320 5c9 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController+d__32::MoveNext()[QuickJitted] +00007FA12A2E6930 4c instance class Datadog.Trace.Telemetry.ApplicationTelemetryData [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::GetApplicationData()[QuickJitted] +00007FA12A2E6990 1c instance class Datadog.Trace.Telemetry.ApplicationTelemetryData [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector+CurrentSettings::get_ApplicationData()[QuickJitted] +00007FA12A2E69C0 1c instance class Datadog.Trace.Telemetry.HostTelemetryData [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::GetHostData()[QuickJitted] +00007FA12B30CA80 1e0 stub<8268> AllocateTemporaryEntryPoints +00007FA12B30CC60 60 stub<8269> AllocateTemporaryEntryPoints +00007FA12B30CCC0 18 stub<8270> AllocateTemporaryEntryPoints +00007FA12A2E8510 82 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::PushTelemetry(class Datadog.Trace.Telemetry.ApplicationTelemetryData,class Datadog.Trace.Telemetry.HostTelemetryData)[QuickJitted] +00007FA12B30CCD8 18 stub<8271> AllocateTemporaryEntryPoints +00007FA12A2E85B0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::Start(!!0&)[QuickJitted] +00007FA12A2E85F0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2E69F0 1aa0 instance void [Datadog.Trace] Datadog.Trace.TracerManager+d__57::MoveNext()[QuickJitted] +00007FA12A2E86F0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_TraceEnabled()[QuickJitted] +00007FA12B30CCF0 108 stub<8272> AllocateTemporaryEntryPoints +00007FA12A2E8730 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_IsRunningInAzureAppService()[QuickJitted] +00007FA12A2E8770 1c instance class Datadog.Trace.Agent.IAgentWriter [Datadog.Trace] Datadog.Trace.TracerManager::get_AgentWriter()[QuickJitted] +00007FA12B30CDF8 48 stub<8273> AllocateTemporaryEntryPoints +00007FA12B30CE40 a8 stub<8275> AllocateTemporaryEntryPoints +00007FA1277C0880 18 stub<8274> GenerateLookupStub +00007FA12B30CEE8 18 stub<8276> AllocateTemporaryEntryPoints +00007FA12B30CF00 18 stub<8277> AllocateTemporaryEntryPoints +00007FA12A2E87A0 60 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::Ping()[QuickJitted] +00007FA12B30CF18 18 stub<8278> AllocateTemporaryEntryPoints +00007FA12B30CF30 18 stub<8279> AllocateTemporaryEntryPoints +00007FA12A2E8820 106 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Api::SendTracesAsync(valuetype [System.Runtime]System.ArraySegment`1,int32,bool,int64,int64)[QuickJitted] +00007FA12B30CF48 18 stub<8280> AllocateTemporaryEntryPoints +00007FA12B30CF60 18 stub<8281> AllocateTemporaryEntryPoints +00007FA12A2E8940 48 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,int32,string)[QuickJitted] +00007FA12A2E8F20 b7 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,int32,string)[QuickJitted] +00007FA12A2E89A0 545 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController+d__33::MoveNext()[QuickJitted] +00007FA12A2E8FF0 66 instance void [Datadog.Trace] Datadog.Trace.Agent.Api+SendTracesState::.ctor(valuetype [System.Runtime]System.ArraySegment`1,int32,bool,int64,int64)[QuickJitted] +00007FA12B30E000 6f0 stub<8282> AllocateTemporaryEntryPoints +00007FA12B30E6F0 78 stub<8283> AllocateTemporaryEntryPoints +00007FA12B30E768 18 stub<8284> AllocateTemporaryEntryPoints +00007FA12B30E780 18 stub<8285> AllocateTemporaryEntryPoints +00007FA12B30E798 60 stub<8286> AllocateTemporaryEntryPoints +00007FA12B30E7F8 60 stub<8287> AllocateTemporaryEntryPoints +00007FA12B30E858 60 stub<8288> AllocateTemporaryEntryPoints +00007FA12B30E8B8 18 stub<8289> AllocateTemporaryEntryPoints +00007FA12B30E8D0 18 stub<8290> AllocateTemporaryEntryPoints +00007FA12A2E9070 c2 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Api::SendWithRetry(class [System.Runtime]System.Uri,class Datadog.Trace.Agent.Api/SendCallback`1,!!0)[QuickJitted] +00007FA12B30E8E8 18 stub<8291> AllocateTemporaryEntryPoints +00007FA12A2E9160 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::Start(!!0&)[QuickJitted] +00007FA12A2E91A0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B30E900 18 stub<8292> AllocateTemporaryEntryPoints +00007FA1277C08A0 18 stub<8293> GenerateLookupStub +00007FA12A2E92A0 1190 instance class [System.Runtime]System.Collections.Generic.ICollection`1 [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector::GetConfigurationData()[QuickJitted] +00007FA12B30E918 18 stub<8294> AllocateTemporaryEntryPoints +00007FA12B30E930 18 stub<8295> AllocateTemporaryEntryPoints +00007FA12B30E948 18 stub<8296> AllocateTemporaryEntryPoints +00007FA12B30E960 18 stub<8297> AllocateTemporaryEntryPoints +00007FA12A2EA450 1c instance class Datadog.Trace.Configuration.ImmutableTracerSettings [Datadog.Trace] Datadog.Trace.Telemetry.ConfigurationTelemetryCollector+CurrentSettings::get_Settings()[QuickJitted] +00007FA12B30E978 60 stub<8298> AllocateTemporaryEntryPoints +00007FA12B30E9D8 60 stub<8299> AllocateTemporaryEntryPoints +00007FA12B30EA38 18 stub<8300> AllocateTemporaryEntryPoints +00007FA12A2EA480 98 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Telemetry.TelemetryValue]::.ctor(int32)[QuickJitted] +00007FA12B30EA50 18 stub<8301> AllocateTemporaryEntryPoints +00007FA12A2EA530 3b instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryValue::.ctor(string,object)[QuickJitted] +00007FA12A2EA580 9c instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Telemetry.TelemetryValue]::Add(!0)[QuickJitted] +00007FA12A2EAE60 13 string [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::GetNativeTracerVersion()[QuickJitted] +00007FA12A2EAE90 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_AnalyticsEnabled()[QuickJitted] +00007FA12A2EA630 7e2 instance void [Datadog.Trace] Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]::MoveNext()[QuickJitted] +00007FA12A2EAED0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_LogsInjectionEnabled()[QuickJitted] +00007FA1277F7640 18 stub<8302> GenerateResolveStub +00007FA12A2EAF10 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_ExpandRouteTemplatesEnabled()[QuickJitted] +00007FA1277C48C0 20 stub<8303> GenerateDispatchStub +00007FA12A2EAF50 1b instance int32 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableExporterSettings::get_PartialFlushMinSpans()[QuickJitted] +00007FA12A2EAF80 1f instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_TraceMethods()[QuickJitted] +00007FA12A2EAFC0 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_IsActivityListenerEnabled()[QuickJitted] +00007FA1277F76B0 18 stub<8304> GenerateResolveStub +00007FA1277C48E0 20 stub<8305> GenerateDispatchStub +00007FA12B30EA68 60 stub<8306> AllocateTemporaryEntryPoints +00007FA12A2EB000 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_WcfObfuscationEnabled()[QuickJitted] +00007FA12B30EAC8 18 stub<8307> AllocateTemporaryEntryPoints +00007FA12B30EAE0 18 stub<8308> AllocateTemporaryEntryPoints +00007FA1277C08C0 18 stub<8309> GenerateLookupStub +00007FA12A2EB040 b9 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Api::SendTracesAsyncImpl(class Datadog.Trace.Agent.IApiRequest,bool,valuetype Datadog.Trace.Agent.Api/SendTracesState)[QuickJitted] +00007FA12B30EAF8 18 stub<8310> AllocateTemporaryEntryPoints +00007FA12A2EB120 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::Start(!!0&)[QuickJitted] +00007FA12A2EB160 1d7 instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryCollector::GetData()[QuickJitted] +00007FA12A2EB370 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B30EB10 30 stub<8311> AllocateTemporaryEntryPoints +00007FA12B30EB40 a8 stub<8312> AllocateTemporaryEntryPoints +00007FA12B30EBE8 a8 stub<8313> AllocateTemporaryEntryPoints +00007FA12B30EC90 18 stub<8314> AllocateTemporaryEntryPoints +00007FA12B30ECA8 18 stub<8315> AllocateTemporaryEntryPoints +00007FA12B30ECC0 18 stub<8316> AllocateTemporaryEntryPoints +00007FA12B30ECD8 18 stub<8317> AllocateTemporaryEntryPoints +00007FA12A2EB470 86 instance class [System.Private.CoreLib]System.Collections.Generic.IEnumerator`1> [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Boolean]::GetEnumerator()[QuickJitted] +00007FA1277C08E0 18 stub<8318> GenerateLookupStub +00007FA12B30ECF0 18 stub<8319> AllocateTemporaryEntryPoints +00007FA12B30ED08 18 stub<8320> AllocateTemporaryEntryPoints +00007FA12A2EB510 3e instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.Boolean]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2)[QuickJitted] +00007FA12B30ED20 18 stub<8321> AllocateTemporaryEntryPoints +00007FA12B30ED38 18 stub<8322> AllocateTemporaryEntryPoints +00007FA1277C0900 18 stub<8323> GenerateLookupStub +00007FA1277C0920 18 stub<8325> GenerateLookupStub +00007FA12B30ED50 18 stub<8324> AllocateTemporaryEntryPoints +00007FA12B30ED68 18 stub<8326> AllocateTemporaryEntryPoints +00007FA12B30ED80 18 stub<8327> AllocateTemporaryEntryPoints +00007FA1277C0940 18 stub<8328> GenerateLookupStub +00007FA12B330000 6f0 stub<8329> AllocateTemporaryEntryPoints +00007FA12B3306F0 c0 stub<8330> AllocateTemporaryEntryPoints +00007FA12B3307B0 a8 stub<8331> AllocateTemporaryEntryPoints +00007FA12B330858 18 stub<8332> AllocateTemporaryEntryPoints +00007FA12B330870 78 stub<8333> AllocateTemporaryEntryPoints +00007FA12B3308E8 18 stub<8334> AllocateTemporaryEntryPoints +00007FA12B330900 48 stub<8335> AllocateTemporaryEntryPoints +00007FA12A2EB570 2fd instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.Boolean]::MoveNext()[QuickJitted] +00007FA12B330948 18 stub<8336> AllocateTemporaryEntryPoints +00007FA12A2EB8A0 2f instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.Boolean]::set_Current(valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA12A2EB8F0 33 instance valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.Boolean]::get_Current()[QuickJitted] +00007FA12A2EC7A0 5b instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Boolean]::set_Item(!0,!1)[QuickJitted] +00007FA1277C0960 18 stub<8337> GenerateLookupStub +00007FA12A2EB940 dc8 instance void [Datadog.Trace] Datadog.Trace.Agent.Api+d__22::MoveNext()[QuickJitted] +00007FA12A2EC810 77 instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::AddHeader(string,string)[QuickJitted] +00007FA1277F7720 18 stub<8338> GenerateResolveStub +00007FA1277C4900 20 stub<8339> GenerateDispatchStub +00007FA12A2EC8A0 102 instance bool [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::Equals(class Datadog.Trace.Telemetry.DependencyTelemetryData)[QuickJitted] +00007FA12A2EC9C0 3a instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::PostAsync(valuetype [System.Runtime]System.ArraySegment`1,string)[QuickJitted] +00007FA12A2ECA10 33 void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Boolean]::.cctor()[QuickJitted] +00007FA12A2ECA60 189 bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Boolean]::IsValueWriteAtomic()[QuickJitted] +00007FA12B330960 60 stub<8340> AllocateTemporaryEntryPoints +00007FA1277C4920 20 stub<8341> GenerateDispatchStub +00007FA1277F7790 18 stub<8342> GenerateResolveStub +00007FA1277C4940 20 stub<8343> GenerateDispatchStub +00007FA12B3309C0 18 stub<8344> AllocateTemporaryEntryPoints +00007FA12B3309D8 18 stub<8345> AllocateTemporaryEntryPoints +00007FA1277F7800 18 stub<8346> GenerateResolveStub +00007FA1277C4960 20 stub<8347> GenerateDispatchStub +00007FA12A2ECC40 bd instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::PostAsync(valuetype [System.Runtime]System.ArraySegment`1,string,string)[QuickJitted] +00007FA12A2ECD20 14 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.Boolean]::Dispose()[QuickJitted] +00007FA12B3309F0 18 stub<8348> AllocateTemporaryEntryPoints +00007FA12A2ECD50 1c instance class [System.Runtime]System.Collections.Generic.ICollection`1 [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::get_PreviousDependencies()[QuickJitted] +00007FA12A2ECD80 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12B330A08 48 stub<8349> AllocateTemporaryEntryPoints +00007FA12B330A50 60 stub<8350> AllocateTemporaryEntryPoints +00007FA12B330AB0 18 stub<8351> AllocateTemporaryEntryPoints +00007FA12B330AC8 18 stub<8352> AllocateTemporaryEntryPoints +00007FA12A2ECDC0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B330AE0 18 stub<8353> AllocateTemporaryEntryPoints +00007FA12B330AF8 120 stub<8354> AllocateTemporaryEntryPoints +00007FA12A2ECEC0 152 instance class [System.Runtime]System.Collections.Generic.ICollection`1 [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector::GetData()[QuickJitted] +00007FA12B330C18 18 stub<8355> AllocateTemporaryEntryPoints +00007FA12B330C30 18 stub<8356> AllocateTemporaryEntryPoints +00007FA1277C0980 18 stub<8357> GenerateLookupStub +00007FA12A2ED030 47 void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector+<>c::.cctor()[QuickJitted] +00007FA12A2ED090 1f instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector+<>c::.ctor()[QuickJitted] +00007FA12B330C48 18 stub<8358> AllocateTemporaryEntryPoints +00007FA12B330C60 108 stub<8359> AllocateTemporaryEntryPoints +00007FA12B330D68 18 stub<8360> AllocateTemporaryEntryPoints +00007FA12B330D80 78 stub<8361> AllocateTemporaryEntryPoints +00007FA12B330DF8 a8 stub<8362> AllocateTemporaryEntryPoints +00007FA12B330EA0 78 stub<8363> AllocateTemporaryEntryPoints +00007FA12B330F18 48 stub<8364> AllocateTemporaryEntryPoints +00007FA12A2ED0D0 41d instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest+d__11::MoveNext()[QuickJitted] +00007FA12B332000 6f0 stub<8365> AllocateTemporaryEntryPoints +00007FA12B3326F0 18 stub<8366> AllocateTemporaryEntryPoints +00007FA12B332708 18 stub<8367> AllocateTemporaryEntryPoints +00007FA12B332750 18 stub<8368> AllocateTemporaryEntryPoints +00007FA12B332768 18 stub<8369> AllocateTemporaryEntryPoints +00007FA12B332780 c0 stub<8370> AllocateTemporaryEntryPoints +00007FA12B332840 18 stub<8371> AllocateTemporaryEntryPoints +00007FA12B332858 18 stub<8372> AllocateTemporaryEntryPoints +00007FA12A2ED530 92 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[System.Net.Http.Headers.HeaderEntry]::.ctor(!0[],int32,int32)[QuickJitted] +00007FA12B332870 150 stub<8373> AllocateTemporaryEntryPoints +00007FA12B3329F0 120 stub<8374> AllocateTemporaryEntryPoints +00007FA12B332B10 138 stub<8375> AllocateTemporaryEntryPoints +00007FA1277F7870 18 stub<8376> GenerateResolveStub +00007FA1277C4980 20 stub<8377> GenerateDispatchStub +00007FA12B332C48 18 stub<8378> AllocateTemporaryEntryPoints +00007FA1277C49A0 20 stub<8379> GenerateDispatchStub +00007FA12B332C60 138 stub<8380> AllocateTemporaryEntryPoints +00007FA12B332DB0 18 stub<8381> AllocateTemporaryEntryPoints +00007FA12B332DC8 18 stub<8382> AllocateTemporaryEntryPoints +00007FA1277F78E0 18 stub<8383> GenerateResolveStub +00007FA1277C49C0 20 stub<8384> GenerateDispatchStub +00007FA12B332DF8 18 stub<8385> AllocateTemporaryEntryPoints +00007FA12B332E10 18 stub<8386> AllocateTemporaryEntryPoints +00007FA12A2ED5E0 497 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Select(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12A2EDAA0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B332E28 18 stub<8387> AllocateTemporaryEntryPoints +00007FA12B332E40 18 stub<8388> AllocateTemporaryEntryPoints +00007FA12B332E58 18 stub<8389> AllocateTemporaryEntryPoints +00007FA12A2EDB40 49 instance void [System.Linq] System.Linq.Enumerable+SelectArrayIterator`2[Datadog.Trace.Telemetry.IntegrationTelemetryCollector+IntegrationDetail,System.__Canon]::.ctor(!0[],class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1277C49E0 20 stub<8390> GenerateDispatchStub +00007FA1277C09A0 18 stub<8391> GenerateLookupStub +00007FA1277F7950 18 stub<8392> GenerateResolveStub +00007FA1277C4A00 20 stub<8393> GenerateDispatchStub +00007FA12B332E70 30 stub<8394> AllocateTemporaryEntryPoints +00007FA1277F79C0 18 stub<8395> GenerateResolveStub +00007FA1277C4A20 20 stub<8396> GenerateDispatchStub +00007FA12B334000 6f0 stub<8397> AllocateTemporaryEntryPoints +00007FA1277F7A30 18 stub<8398> GenerateResolveStub +00007FA1277C4A40 20 stub<8399> GenerateDispatchStub +00007FA12A2EDBA0 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B334708 78 stub<8400> AllocateTemporaryEntryPoints +00007FA12B334780 18 stub<8401> AllocateTemporaryEntryPoints +00007FA12B334798 a8 stub<8402> AllocateTemporaryEntryPoints +00007FA12B334840 18 stub<8403> AllocateTemporaryEntryPoints +00007FA12B334858 18 stub<8404> AllocateTemporaryEntryPoints +00007FA12B334870 d8 stub<8405> AllocateTemporaryEntryPoints +00007FA12A2EDC80 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::MoveNext()[QuickJitted] +00007FA12B334948 18 stub<8406> AllocateTemporaryEntryPoints +00007FA12B334960 60 stub<8407> AllocateTemporaryEntryPoints +00007FA12B3349C0 18 stub<8408> AllocateTemporaryEntryPoints +00007FA12A2EDCC0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::MoveNext()[QuickJitted] +00007FA12A2EDD00 193 instance class [System.Collections]System.Collections.Generic.List`1 [System.Linq] System.Linq.Enumerable+SelectArrayIterator`2[Datadog.Trace.Telemetry.IntegrationTelemetryCollector+IntegrationDetail,System.__Canon]::ToList()[QuickJitted] +00007FA12A2EDEB0 39a class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3349D8 108 stub<8409> AllocateTemporaryEntryPoints +00007FA12A2EE270 bd instance class Datadog.Trace.Telemetry.IntegrationTelemetryData [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector+<>c::b__8_0(valuetype Datadog.Trace.Telemetry.IntegrationTelemetryCollector/IntegrationDetail)[QuickJitted] +00007FA12B334AE0 90 stub<8410> AllocateTemporaryEntryPoints +00007FA12A2EE390 45 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::.ctor(string,bool)[QuickJitted] +00007FA12A2EE350 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::.ctor()[QuickJitted] +00007FA12B334B70 60 stub<8411> AllocateTemporaryEntryPoints +00007FA12A2EE3F0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::set_Name(string)[QuickJitted] +00007FA12B334BD0 18 stub<8412> AllocateTemporaryEntryPoints +00007FA12B334BE8 18 stub<8413> AllocateTemporaryEntryPoints +00007FA12A2EE430 22 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::set_Enabled(bool)[QuickJitted] +00007FA12B334C00 60 stub<8414> AllocateTemporaryEntryPoints +00007FA12A2EE470 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B334C60 18 stub<8415> AllocateTemporaryEntryPoints +00007FA12A2EE510 23 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::set_AutoEnabled(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B334C78 18 stub<8416> AllocateTemporaryEntryPoints +00007FA12B334C90 18 stub<8417> AllocateTemporaryEntryPoints +00007FA12A2EE550 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::set_Error(string)[QuickJitted] +00007FA12B334CA8 18 stub<8418> AllocateTemporaryEntryPoints +00007FA12B334CC0 d8 stub<8419> AllocateTemporaryEntryPoints +00007FA12B334D98 48 stub<8420> AllocateTemporaryEntryPoints +00007FA12A2EE590 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B334DE0 48 stub<8421> AllocateTemporaryEntryPoints +00007FA12B334E28 d8 stub<8422> AllocateTemporaryEntryPoints +00007FA12B334F00 18 stub<8423> AllocateTemporaryEntryPoints +00007FA12B334F18 18 stub<8424> AllocateTemporaryEntryPoints +00007FA12B334F30 18 stub<8425> AllocateTemporaryEntryPoints +00007FA12A2EE630 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B336000 d8 stub<8426> AllocateTemporaryEntryPoints +00007FA12B3360D8 18 stub<8427> AllocateTemporaryEntryPoints +00007FA12A2EE670 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2EE770 5fd instance class Datadog.Trace.Telemetry.TelemetryData[] [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryDataBuilder::BuildTelemetryData(class Datadog.Trace.Telemetry.ApplicationTelemetryData,class Datadog.Trace.Telemetry.HostTelemetryData,class [System.Runtime]System.Collections.Generic.ICollection`1,class [System.Runtime]System.Collections.Generic.ICollection`1,class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12B3360F0 60 stub<8428> AllocateTemporaryEntryPoints +00007FA12B336150 18 stub<8429> AllocateTemporaryEntryPoints +00007FA12B336168 18 stub<8430> AllocateTemporaryEntryPoints +00007FA12A2EED90 269 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B336180 18 stub<8431> AllocateTemporaryEntryPoints +00007FA12A2EF020 29 void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryDataBuilder::.cctor()[QuickJitted] +00007FA12A2EF060 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12A2EF0A0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::.ctor()[QuickJitted] +00007FA12B336198 18 stub<8432> AllocateTemporaryEntryPoints +00007FA12A2EF0E0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2EF1E0 1d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12B3361B0 60 stub<8433> AllocateTemporaryEntryPoints +00007FA12B336210 18 stub<8434> AllocateTemporaryEntryPoints +00007FA12B336228 18 stub<8435> AllocateTemporaryEntryPoints +00007FA12A2EF220 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B336240 18 stub<8436> AllocateTemporaryEntryPoints +00007FA12A2EF260 55 instance void [Datadog.Trace] Datadog.Trace.Telemetry.AppStartedPayload::.ctor(class [System.Runtime]System.Collections.Generic.ICollection`1,class [System.Runtime]System.Collections.Generic.ICollection`1,class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12A2EF2D0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A2EF320 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.AppStartedPayload::set_Integrations(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12A2EF360 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B336258 18 stub<8437> AllocateTemporaryEntryPoints +00007FA12A2EF460 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.AppStartedPayload::set_Dependencies(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12B336270 18 stub<8438> AllocateTemporaryEntryPoints +00007FA12A2EF4A0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.AppStartedPayload::set_Configuration(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12A2EF4E0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B336288 d8 stub<8439> AllocateTemporaryEntryPoints +00007FA12B336360 18 stub<8440> AllocateTemporaryEntryPoints +00007FA12A2EF540 d9 instance class Datadog.Trace.Telemetry.TelemetryData [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryDataBuilder::GetRequest(class Datadog.Trace.Telemetry.ApplicationTelemetryData,class Datadog.Trace.Telemetry.HostTelemetryData,string,class Datadog.Trace.Telemetry.IPayload)[QuickJitted] +00007FA12B336378 18 stub<8441> AllocateTemporaryEntryPoints +00007FA1277F7AA0 18 stub<8442> GenerateResolveStub +00007FA12B336390 540 stub<8443> AllocateTemporaryEntryPoints +00007FA1277C4A60 20 stub<8444> GenerateDispatchStub +00007FA1277F7B10 18 stub<8445> GenerateResolveStub +00007FA1277C4A80 20 stub<8446> GenerateDispatchStub +00007FA12A2EF640 94 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::.ctor(string,int64,string,int32,class Datadog.Trace.Telemetry.ApplicationTelemetryData,class Datadog.Trace.Telemetry.HostTelemetryData,class Datadog.Trace.Telemetry.IPayload)[QuickJitted] +00007FA12A2EF6F0 270 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3368D0 18 stub<8447> AllocateTemporaryEntryPoints +00007FA12B3368E8 18 stub<8448> AllocateTemporaryEntryPoints +00007FA12A2EF980 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::set_RequestType(string)[QuickJitted] +00007FA12A2EFA00 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B336900 18 stub<8449> AllocateTemporaryEntryPoints +00007FA12A2EFA50 24 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::set_TracerTime(int64)[QuickJitted] +00007FA12B336918 18 stub<8450> AllocateTemporaryEntryPoints +00007FA12A2EFA90 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::set_RuntimeId(string)[QuickJitted] +00007FA12A2EFAD0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2EFB30 21 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::set_SeqId(int32)[QuickJitted] +00007FA12B336930 d8 stub<8451> AllocateTemporaryEntryPoints +00007FA12A2EFB70 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::set_Application(class Datadog.Trace.Telemetry.ApplicationTelemetryData)[QuickJitted] +00007FA12B336A08 18 stub<8452> AllocateTemporaryEntryPoints +00007FA12A2EFBB0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::set_Host(class Datadog.Trace.Telemetry.HostTelemetryData)[QuickJitted] +00007FA12A2EFBF0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::set_Payload(class Datadog.Trace.Telemetry.IPayload)[QuickJitted] +00007FA12A2EF9C0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::.ctor()[QuickJitted] +00007FA12B336A20 18 stub<8453> AllocateTemporaryEntryPoints +00007FA12B336A38 18 stub<8454> AllocateTemporaryEntryPoints +00007FA12A2EFC30 29 void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::.cctor()[QuickJitted] +00007FA12A2EFC70 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2EFEE0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::.ctor()[QuickJitted] +00007FA12A2EFF20 17 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12B336A50 18 stub<8455> AllocateTemporaryEntryPoints +00007FA12B336A68 18 stub<8456> AllocateTemporaryEntryPoints +00007FA12A2EFF50 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B336A80 540 stub<8457> AllocateTemporaryEntryPoints +00007FA12B336FC0 18 stub<8458> AllocateTemporaryEntryPoints +00007FA12B338000 a8 stub<8459> AllocateTemporaryEntryPoints +00007FA12B3380A8 48 stub<8460> AllocateTemporaryEntryPoints +00007FA12B3380F0 18 stub<8461> AllocateTemporaryEntryPoints +00007FA12B338108 60 stub<8462> AllocateTemporaryEntryPoints +00007FA12B338168 18 stub<8463> AllocateTemporaryEntryPoints +00007FA12B338180 18 stub<8464> AllocateTemporaryEntryPoints +00007FA12A2EFFA0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA1277C09C0 18 stub<8465> GenerateLookupStub +00007FA12B338198 d8 stub<8466> AllocateTemporaryEntryPoints +00007FA12A2F0000 95 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::TryPushTelemetry(class Datadog.Trace.Telemetry.TelemetryData,class [System.Runtime]System.Collections.Generic.ICollection`1,class [System.Runtime]System.Collections.Generic.ICollection`1,class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12B338270 18 stub<8467> AllocateTemporaryEntryPoints +00007FA12B338288 18 stub<8468> AllocateTemporaryEntryPoints +00007FA12A2F00B0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::Start(!!0&)[QuickJitted] +00007FA12A2F0270 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2F00F0 146 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12A2F0370 253 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA1277F7B80 18 stub<8469> GenerateResolveStub +00007FA1277C4AA0 20 stub<8470> GenerateDispatchStub +00007FA12B3382A0 30 stub<8471> AllocateTemporaryEntryPoints +00007FA12B3382D0 18 stub<8472> AllocateTemporaryEntryPoints +00007FA12B3382E8 18 stub<8473> AllocateTemporaryEntryPoints +00007FA12A2F05E0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.TracerManager+d__57]::.ctor()[QuickJitted] +00007FA12A2F0620 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B338300 18 stub<8474> AllocateTemporaryEntryPoints +00007FA1277C09E0 18 stub<8475> GenerateLookupStub +00007FA12B338318 18 stub<8476> AllocateTemporaryEntryPoints +00007FA12B338330 18 stub<8477> AllocateTemporaryEntryPoints +00007FA12B338348 540 stub<8478> AllocateTemporaryEntryPoints +00007FA12A2F06C0 17 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12B338888 18 stub<8479> AllocateTemporaryEntryPoints +00007FA12A2F06F0 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3388A0 18 stub<8480> AllocateTemporaryEntryPoints +00007FA12B3388B8 d8 stub<8481> AllocateTemporaryEntryPoints +00007FA12B338990 18 stub<8482> AllocateTemporaryEntryPoints +00007FA12A2F07D0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::MoveNext()[QuickJitted] +00007FA12B3389A8 18 stub<8483> AllocateTemporaryEntryPoints +00007FA12A2F0810 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A2F0990 4c8 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager+d__23::MoveNext()[QuickJitted] +00007FA12A2F0EA0 3d4 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2F12A0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::.cctor()[QuickJitted] +00007FA12A2F1320 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::.ctor()[QuickJitted] +00007FA12B3389C0 18 stub<8484> AllocateTemporaryEntryPoints +00007FA12B3389D8 1e0 stub<8485> AllocateTemporaryEntryPoints +00007FA12A2F1360 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B338BB8 18 stub<8486> AllocateTemporaryEntryPoints +00007FA12B338BD0 18 stub<8487> AllocateTemporaryEntryPoints +00007FA12B338BE8 18 stub<8488> AllocateTemporaryEntryPoints +00007FA12A2F13A0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::MoveNext()[QuickJitted] +00007FA12B338C00 60 stub<8489> AllocateTemporaryEntryPoints +00007FA12B338C60 18 stub<8490> AllocateTemporaryEntryPoints +00007FA12A2F13E0 66 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport::PushTelemetry(class Datadog.Trace.Telemetry.TelemetryData)[QuickJitted] +00007FA12A2F1460 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A2F1650 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12A2F16F0 20 valuetype System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::Create()[QuickJitted] +00007FA12B338C78 18 stub<8491> AllocateTemporaryEntryPoints +00007FA12B338C90 18 stub<8492> AllocateTemporaryEntryPoints +00007FA12B338CA8 18 stub<8493> AllocateTemporaryEntryPoints +00007FA12A2F1730 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::.cctor()[QuickJitted] +00007FA12A2F17E0 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12A2F18C0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::Start(!!0&)[QuickJitted] +00007FA12B338CC0 18 stub<8494> AllocateTemporaryEntryPoints +00007FA12B338CD8 18 stub<8495> AllocateTemporaryEntryPoints +00007FA12A2F1950 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2F1900 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B338CF0 18 stub<8496> AllocateTemporaryEntryPoints +00007FA12B338D08 18 stub<8497> AllocateTemporaryEntryPoints +00007FA12B338D38 18 stub<8498> AllocateTemporaryEntryPoints +00007FA12B338D80 18 stub<8499> AllocateTemporaryEntryPoints +00007FA12B338DC8 18 stub<8500> AllocateTemporaryEntryPoints +00007FA12B338DE0 18 stub<8501> AllocateTemporaryEntryPoints +00007FA12A2F1A50 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::MoveNext()[QuickJitted] +00007FA12A2F1A90 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B338DF8 18 stub<8502> AllocateTemporaryEntryPoints +00007FA12A2F24B0 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::.cctor()[QuickJitted] +00007FA12A2F1C80 7c5 instance void [Datadog.Trace] Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport+d__6::MoveNext()[QuickJitted] +00007FA12B338E10 18 stub<8503> AllocateTemporaryEntryPoints +00007FA12B338E28 18 stub<8504> AllocateTemporaryEntryPoints +00007FA12A2F2560 50 string [Datadog.Trace] Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport::SerializeTelemetry(class Datadog.Trace.Telemetry.TelemetryData)[QuickJitted] +00007FA12B338E40 18 stub<8505> AllocateTemporaryEntryPoints +00007FA12A2F25D0 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B338E58 60 stub<8506> AllocateTemporaryEntryPoints +00007FA1277C4AC0 20 stub<8507> GenerateDispatchStub +00007FA12A2F2620 de void [Datadog.Trace] Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport::.cctor()[QuickJitted] +00007FA12A2F2720 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::MoveNext()[QuickJitted] +00007FA12A2F2760 50 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::.ctor()[QuickJitted] +00007FA12A2F2950 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::set_Converters(class [System.Runtime]System.Collections.Generic.IList`1)[QuickJitted] +00007FA12A2F27D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12A2F2990 39 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::set_NullValueHandling(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling)[QuickJitted] +00007FA12A2F29E0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::.cctor()[QuickJitted] +00007FA12B338EB8 18 stub<8508> AllocateTemporaryEntryPoints +00007FA12A2F2A60 28 instance void [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling]::.ctor(!0)[QuickJitted] +00007FA12A2F2AA0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::ExecutionContextCallback(object)[QuickJitted] +00007FA12A2F2AE0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy::.ctor()[QuickJitted] +00007FA1277F7BF0 18 stub<8509> GenerateResolveStub +00007FA1277C4AE0 20 stub<8510> GenerateDispatchStub +00007FA12A2F2B20 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::set_NamingStrategy(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.NamingStrategy)[QuickJitted] +00007FA12A2F2B60 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::set_ContractResolver(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IContractResolver)[QuickJitted] +00007FA12A2F2BA0 bb instance string [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::GetHeader(string)[QuickJitted] +00007FA12A2F2C70 2f string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::SerializeObject(object,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Formatting,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[QuickJitted] +00007FA12A2F2CC0 5b string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::SerializeObject(object,class [System.Runtime]System.Type,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Formatting,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[QuickJitted] +00007FA12B338ED0 18 stub<8511> AllocateTemporaryEntryPoints +00007FA12B338EE8 18 stub<8512> AllocateTemporaryEntryPoints +00007FA12B338F00 48 stub<8513> AllocateTemporaryEntryPoints +00007FA12A2F2D30 15f instance bool [Datadog.Trace] Datadog.Trace.Agent.Api::LogPartialFlushWarningIfRequired(string)[QuickJitted] +00007FA12B338F48 60 stub<8514> AllocateTemporaryEntryPoints +00007FA12B338FA8 18 stub<8515> AllocateTemporaryEntryPoints +00007FA12B338FC0 18 stub<8516> AllocateTemporaryEntryPoints +00007FA12A2F2EB0 82 class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions::ReadAsStringAsync(class Datadog.Trace.Agent.IApiResponse)[QuickJitted] +00007FA12B338FD8 18 stub<8517> AllocateTemporaryEntryPoints +00007FA12A2F2F50 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12A2F3760 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12A2F2F90 7ac void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::ApplySerializerSettings(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[QuickJitted] +00007FA12A2F3860 1c instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::get_Converters()[QuickJitted] +00007FA12B33A000 a8 stub<8518> AllocateTemporaryEntryPoints +00007FA12B33A0A8 18 stub<8519> AllocateTemporaryEntryPoints +00007FA12B33A0C0 18 stub<8520> AllocateTemporaryEntryPoints +00007FA12B33A0D8 18 stub<8521> AllocateTemporaryEntryPoints +00007FA12B33A0F0 18 stub<8522> AllocateTemporaryEntryPoints +00007FA12A2F3890 84 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.CollectionUtils::IsNullOrEmpty(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA1277C4B00 20 stub<8523> GenerateDispatchStub +00007FA12A2F3930 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameHandling]::get_HasValue()[QuickJitted] +00007FA12A2F3960 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.MetadataPropertyHandling]::get_HasValue()[QuickJitted] +00007FA12A2F3DD0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameAssemblyFormatHandling]::get_HasValue()[QuickJitted] +00007FA12A2F3990 3f9 instance void [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions+d__0::MoveNext()[QuickJitted] +00007FA12A2F3E00 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.PreserveReferencesHandling]::get_HasValue()[QuickJitted] +00007FA1277F7C60 18 stub<8524> GenerateResolveStub +00007FA12A2F3E30 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.ReferenceLoopHandling]::get_HasValue()[QuickJitted] +00007FA1277C4B20 20 stub<8525> GenerateDispatchStub +00007FA1277F7CD0 18 stub<8526> GenerateResolveStub +00007FA12A2F3E60 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.MissingMemberHandling]::get_HasValue()[QuickJitted] +00007FA1277C4B40 20 stub<8527> GenerateDispatchStub +00007FA12A2F3E90 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.ObjectCreationHandling]::get_HasValue()[QuickJitted] +00007FA12B33A108 60 stub<8528> AllocateTemporaryEntryPoints +00007FA12A2F3EC0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling]::get_HasValue()[QuickJitted] +00007FA12B33A168 18 stub<8529> AllocateTemporaryEntryPoints +00007FA12B33A180 18 stub<8530> AllocateTemporaryEntryPoints +00007FA12B33A198 18 stub<8531> AllocateTemporaryEntryPoints +00007FA12A2F3EF0 2d instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::get_NullValueHandling()[QuickJitted] +00007FA12B33A1B0 18 stub<8532> AllocateTemporaryEntryPoints +00007FA12B33A1C8 18 stub<8533> AllocateTemporaryEntryPoints +00007FA12A2F3F40 1b instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling]::GetValueOrDefault()[QuickJitted] +00007FA12B33A1E0 f0 stub<8534> AllocateTemporaryEntryPoints +00007FA12A2F3F70 79 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::set_NullValueHandling(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling)[QuickJitted] +00007FA12B33A2D0 60 stub<8535> AllocateTemporaryEntryPoints +00007FA12B33A330 18 stub<8536> AllocateTemporaryEntryPoints +00007FA12A2F4000 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling]::get_HasValue()[QuickJitted] +00007FA12A2F4030 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.ConstructorHandling]::get_HasValue()[QuickJitted] +00007FA1277C4B60 20 stub<8537> GenerateDispatchStub +00007FA12B33A348 18 stub<8538> AllocateTemporaryEntryPoints +00007FA12A2F4060 1c instance class [System.Runtime]System.EventHandler`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::get_Error()[QuickJitted] +00007FA12B33A360 18 stub<8539> AllocateTemporaryEntryPoints +00007FA12B33A378 18 stub<8540> AllocateTemporaryEntryPoints +00007FA12A2F4090 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IContractResolver [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::get_ContractResolver()[QuickJitted] +00007FA12A2F40C0 21 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::DeserializeObject(string)[QuickJitted] +00007FA12A2F4100 55 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::set_ContractResolver(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IContractResolver)[QuickJitted] +00007FA12A2F4170 76 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::DeserializeObject(string,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[QuickJitted] +00007FA12A2F4200 1c instance class [System.Runtime]System.Func`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::get_ReferenceResolverProvider()[QuickJitted] +00007FA1277F7D40 18 stub<8541> GenerateResolveStub +00007FA12A2F4230 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ITraceWriter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::get_TraceWriter()[QuickJitted] +00007FA1277C4B80 20 stub<8542> GenerateDispatchStub +00007FA12A2F4260 1c instance class [System.Runtime]System.Collections.IEqualityComparer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::get_EqualityComparer()[QuickJitted] +00007FA12B33A390 18 stub<8543> AllocateTemporaryEntryPoints +00007FA12B33A3A8 30 stub<8544> AllocateTemporaryEntryPoints +00007FA12A2F4290 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ISerializationBinder [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings::get_SerializationBinder()[QuickJitted] +00007FA1277F7DB0 18 stub<8545> GenerateResolveStub +00007FA12A2F42C0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.Formatting]::get_HasValue()[QuickJitted] +00007FA1277C4BA0 20 stub<8546> GenerateDispatchStub +00007FA12A2F42F0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DateFormatHandling]::get_HasValue()[QuickJitted] +00007FA12A2F4320 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.FloatFormatHandling]::get_HasValue()[QuickJitted] +00007FA12A2F4350 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling]::get_HasValue()[QuickJitted] +00007FA12A2F4380 10b bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.CollectionUtils::IsDictionaryType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2F44B0 39 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::set_Formatting(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Formatting)[QuickJitted] +00007FA12A2F4500 31 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2F4550 28 instance void [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.Formatting]::.ctor(!0)[QuickJitted] +00007FA12A2F4590 144 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::SerializeObjectInternal(object,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[QuickJitted] +00007FA12A2F4700 237 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type&)[QuickJitted] +00007FA12A2F4960 27 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsGenericTypeDefinition(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2F49A0 114 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::.ctor(class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12B33A3D8 150 stub<8547> AllocateTemporaryEntryPoints +00007FA12B33A528 738 stub<8548> AllocateTemporaryEntryPoints +00007FA12A2F4AD0 46 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::UpdateCharEscapeFlags()[QuickJitted] +00007FA12A2F4B30 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_StringEscapeHandling()[QuickJitted] +00007FA12B33C000 6d8 stub<8549> AllocateTemporaryEntryPoints +00007FA12B33C6D8 120 stub<8550> AllocateTemporaryEntryPoints +00007FA12A2F4B60 6e bool[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JavaScriptUtils::GetCharEscapeFlags(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling,char)[QuickJitted] +00007FA12B33C7F8 18 stub<8551> AllocateTemporaryEntryPoints +00007FA1277C0A00 18 stub<8552> GenerateLookupStub +00007FA12A2F4BF0 13f bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CanConvertToString(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B33C810 18 stub<8553> AllocateTemporaryEntryPoints +00007FA1277C0A20 18 stub<8554> GenerateLookupStub +00007FA1277C0A40 18 stub<8555> GenerateLookupStub +00007FA12B33E000 7f8 stub<8556> AllocateTemporaryEntryPoints +00007FA12B33E7F8 120 stub<8557> AllocateTemporaryEntryPoints +00007FA12A2F4D50 18f bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::CanTypeDescriptorConvertString(class [System.Runtime]System.Type,class [System.ComponentModel.TypeConverter]System.ComponentModel.TypeConverter&)[QuickJitted] +00007FA12B33E918 258 stub<8558> AllocateTemporaryEntryPoints +00007FA12A2F4F00 4cf void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JavaScriptUtils::.cctor()[QuickJitted] +00007FA12B33EB70 168 stub<8559> AllocateTemporaryEntryPoints +00007FA1277F7E20 18 stub<8560> GenerateResolveStub +00007FA1277C4BC0 20 stub<8561> GenerateDispatchStub +00007FA12B33ECD8 108 stub<8562> AllocateTemporaryEntryPoints +00007FA12B33EDE0 18 stub<8563> AllocateTemporaryEntryPoints +00007FA12B360528 108 stub<8564> AllocateTemporaryEntryPoints +00007FA12B360000 528 stub<8565> AllocateTemporaryEntryPoints +00007FA12B360630 120 stub<8566> AllocateTemporaryEntryPoints +00007FA12B360750 108 stub<8567> AllocateTemporaryEntryPoints +00007FA12B360858 60 stub<8568> AllocateTemporaryEntryPoints +00007FA12B3608B8 48 stub<8569> AllocateTemporaryEntryPoints +00007FA12B360900 48 stub<8570> AllocateTemporaryEntryPoints +00007FA12B360948 60 stub<8571> AllocateTemporaryEntryPoints +00007FA12B3609A8 48 stub<8572> AllocateTemporaryEntryPoints +00007FA12B3609F0 120 stub<8573> AllocateTemporaryEntryPoints +00007FA12B360B10 60 stub<8574> AllocateTemporaryEntryPoints +00007FA12B362000 4f8 stub<8575> AllocateTemporaryEntryPoints +00007FA12B3624F8 108 stub<8576> AllocateTemporaryEntryPoints +00007FA12B362600 a8 stub<8577> AllocateTemporaryEntryPoints +00007FA12B3626A8 60 stub<8578> AllocateTemporaryEntryPoints +00007FA1277C4BE0 20 stub<8579> GenerateDispatchStub +00007FA1277F7E90 18 stub<8580> GenerateResolveStub +00007FA1277C4C00 20 stub<8581> GenerateDispatchStub +00007FA1277C4C20 20 stub<8582> GenerateDispatchStub +00007FA12B362720 18 stub<8583> AllocateTemporaryEntryPoints +00007FA12B362738 a8 stub<8584> AllocateTemporaryEntryPoints +00007FA1277C4C40 20 stub<8585> GenerateDispatchStub +00007FA1277F7F00 18 stub<8586> GenerateResolveStub +00007FA1277C4C60 20 stub<8587> GenerateDispatchStub +00007FA1277C4C80 20 stub<8588> GenerateDispatchStub +00007FA12784B4B0 11 stub<8589> GenerateVTableCallStub +00007FA12B3627F8 48 stub<8590> AllocateTemporaryEntryPoints +00007FA12A2F5410 2d instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Formatting [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::get_Formatting()[QuickJitted] +00007FA12B362840 18 stub<8591> AllocateTemporaryEntryPoints +00007FA12A2F5460 1b instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.Formatting]::GetValueOrDefault()[QuickJitted] +00007FA1277F7F70 18 stub<8592> GenerateResolveStub +00007FA1277C4CA0 20 stub<8593> GenerateDispatchStub +00007FA12A2F5490 79 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::set_Formatting(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Formatting)[QuickJitted] +00007FA12B362858 150 stub<8594> AllocateTemporaryEntryPoints +00007FA12A2F5520 42 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Serialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3629A8 48 stub<8595> AllocateTemporaryEntryPoints +00007FA12B3629F0 a8 stub<8596> AllocateTemporaryEntryPoints +00007FA12B362A98 540 stub<8597> AllocateTemporaryEntryPoints +00007FA12B364000 3c0 stub<8598> AllocateTemporaryEntryPoints +00007FA12B3643C0 18 stub<8599> AllocateTemporaryEntryPoints +00007FA12B3643D8 3c0 stub<8600> AllocateTemporaryEntryPoints +00007FA12B364798 18 stub<8601> AllocateTemporaryEntryPoints +00007FA1277C4CC0 20 stub<8602> GenerateDispatchStub +00007FA1277C0A60 18 stub<8603> GenerateLookupStub +00007FA1277F7FE0 18 stub<8604> GenerateResolveStub +00007FA1277C4CE0 20 stub<8605> GenerateDispatchStub +00007FA12784B4D0 11 stub<8606> GenerateVTableCallStub +00007FA12A2F5980 7c7 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::SerializeInternal(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3647B0 60 stub<8607> AllocateTemporaryEntryPoints +00007FA12A2F6170 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Formatting [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_Formatting()[QuickJitted] +00007FA12A2F61A0 47 instance class [System.Runtime]System.Globalization.CultureInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_Culture()[QuickJitted] +00007FA12B364810 60 stub<8608> AllocateTemporaryEntryPoints +00007FA12A2F6200 5b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::.ctor(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[QuickJitted] +00007FA12784B4F0 11 stub<8609> GenerateVTableCallStub +00007FA12B364870 30 stub<8610> AllocateTemporaryEntryPoints +00007FA12A2F6270 1c9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::Serialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2F6470 36 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::GetContractSafe(object)[QuickJitted] +00007FA12B3648A0 60 stub<8611> AllocateTemporaryEntryPoints +00007FA12A2F64C0 57 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::GetContract(object)[QuickJitted] +00007FA12784B510 e stub<8612> GenerateVTableCallStub +00007FA12B364900 60 stub<8613> AllocateTemporaryEntryPoints +00007FA12B364960 30 stub<8614> AllocateTemporaryEntryPoints +00007FA12B364990 18 stub<8615> AllocateTemporaryEntryPoints +00007FA12B3649A8 18 stub<8616> AllocateTemporaryEntryPoints +00007FA12B3649C0 18 stub<8617> AllocateTemporaryEntryPoints +00007FA12B366000 780 stub<8618> AllocateTemporaryEntryPoints +00007FA12B366780 4e0 stub<8619> AllocateTemporaryEntryPoints +00007FA12B368000 420 stub<8620> AllocateTemporaryEntryPoints +00007FA12B368420 60 stub<8621> AllocateTemporaryEntryPoints +00007FA12B368480 30 stub<8622> AllocateTemporaryEntryPoints +00007FA12B3684B0 48 stub<8623> AllocateTemporaryEntryPoints +00007FA12B3684F8 7c8 stub<8624> AllocateTemporaryEntryPoints +00007FA12B36A000 4e0 stub<8625> AllocateTemporaryEntryPoints +00007FA12B36A4E0 480 stub<8626> AllocateTemporaryEntryPoints +00007FA12B36A960 30 stub<8627> AllocateTemporaryEntryPoints +00007FA12B36A990 60 stub<8628> AllocateTemporaryEntryPoints +00007FA12B36A9F0 30 stub<8629> AllocateTemporaryEntryPoints +00007FA12B36AA20 48 stub<8630> AllocateTemporaryEntryPoints +00007FA12B36AA68 60 stub<8631> AllocateTemporaryEntryPoints +00007FA12A2F6940 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreSerializableInterface()[QuickJitted] +00007FA12A2F6970 114 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::IsIConvertible(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B36AAC8 330 stub<8632> AllocateTemporaryEntryPoints +00007FA12B36ADF8 1e0 stub<8633> AllocateTemporaryEntryPoints +00007FA12B36C000 1e0 stub<8634> AllocateTemporaryEntryPoints +00007FA12B36C1E0 90 stub<8635> AllocateTemporaryEntryPoints +00007FA12B36C270 78 stub<8636> AllocateTemporaryEntryPoints +00007FA12B36C2E8 a8 stub<8637> AllocateTemporaryEntryPoints +00007FA12B36C390 18 stub<8638> AllocateTemporaryEntryPoints +00007FA12B36C3A8 18 stub<8639> AllocateTemporaryEntryPoints +00007FA12B36C3C0 18 stub<8640> AllocateTemporaryEntryPoints +00007FA12B36C3D8 18 stub<8641> AllocateTemporaryEntryPoints +00007FA12B36C3F0 18 stub<8642> AllocateTemporaryEntryPoints +00007FA12B36C408 18 stub<8643> AllocateTemporaryEntryPoints +00007FA12B36C420 18 stub<8644> AllocateTemporaryEntryPoints +00007FA1277C0A80 18 stub<8645> GenerateLookupStub +00007FA12B36C438 30 stub<8646> AllocateTemporaryEntryPoints +00007FA12A2F6AA0 750 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateObjectContract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2F7210 7f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2F72B0 f6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12A2F73C0 95 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B36C468 18 stub<8647> AllocateTemporaryEntryPoints +00007FA12A2F7470 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreSerializableAttribute()[QuickJitted] +00007FA12A2F74A0 75 valuetype Datadog.Trace.Vendors.Newtonsoft.Json.MemberSerialization [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetObjectMemberSerialization(class [System.Runtime]System.Type,bool)[QuickJitted] +00007FA12B36C480 18 stub<8648> AllocateTemporaryEntryPoints +00007FA1277F8050 18 stub<8649> GenerateResolveStub +00007FA12B36C498 18 stub<8650> AllocateTemporaryEntryPoints +00007FA1277C4D00 20 stub<8651> GenerateDispatchStub +00007FA12B36C4B0 18 stub<8652> AllocateTemporaryEntryPoints +00007FA12B36C4C8 18 stub<8653> AllocateTemporaryEntryPoints +00007FA12B36C4E0 18 stub<8654> AllocateTemporaryEntryPoints +00007FA1277F80C0 18 stub<8655> GenerateResolveStub +00007FA12B36C4F8 18 stub<8656> AllocateTemporaryEntryPoints +00007FA1277C4D20 20 stub<8657> GenerateDispatchStub +00007FA12B36C510 18 stub<8658> AllocateTemporaryEntryPoints +00007FA12B36C528 18 stub<8659> AllocateTemporaryEntryPoints +00007FA12B36C540 18 stub<8660> AllocateTemporaryEntryPoints +00007FA1277C0AA0 18 stub<8661> GenerateLookupStub +00007FA1277F8130 18 stub<8662> GenerateResolveStub +00007FA1277C4D40 20 stub<8663> GenerateDispatchStub +00007FA12B36C558 18 stub<8664> AllocateTemporaryEntryPoints +00007FA12B36C570 18 stub<8665> AllocateTemporaryEntryPoints +00007FA12B36C588 60 stub<8666> AllocateTemporaryEntryPoints +00007FA1277C0AC0 18 stub<8667> GenerateLookupStub +00007FA12B36C5E8 438 stub<8668> AllocateTemporaryEntryPoints +00007FA1277F81A0 18 stub<8669> GenerateResolveStub +00007FA1277C4D60 20 stub<8670> GenerateDispatchStub +00007FA12A2F7530 24 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::set_MemberSerialization(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.MemberSerialization)[QuickJitted] +00007FA12A2F7570 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_Properties()[QuickJitted] +00007FA128660D70 1b object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method2(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12A2F75B0 1e instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.MemberSerialization [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_MemberSerialization()[QuickJitted] +00007FA12B36CA20 18 stub<8671> AllocateTemporaryEntryPoints +00007FA12B36CA38 c0 stub<8672> AllocateTemporaryEntryPoints +00007FA12B36CAF8 60 stub<8673> AllocateTemporaryEntryPoints +00007FA12B36CB58 18 stub<8674> AllocateTemporaryEntryPoints +00007FA12B36CB70 18 stub<8675> AllocateTemporaryEntryPoints +00007FA12B36CB88 18 stub<8676> AllocateTemporaryEntryPoints +00007FA12B36CBA0 18 stub<8677> AllocateTemporaryEntryPoints +00007FA12A2F75F0 3e4 instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateProperties(class [System.Runtime]System.Type,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.MemberSerialization)[QuickJitted] +00007FA12B36CBB8 18 stub<8678> AllocateTemporaryEntryPoints +00007FA1277C0AE0 18 stub<8679> GenerateLookupStub +00007FA1277C0B00 18 stub<8680> GenerateLookupStub +00007FA12B36CBD0 18 stub<8681> AllocateTemporaryEntryPoints +00007FA12B36CBE8 330 stub<8682> AllocateTemporaryEntryPoints +00007FA12B36CF18 18 stub<8683> AllocateTemporaryEntryPoints +00007FA12B36CF30 18 stub<8684> AllocateTemporaryEntryPoints +00007FA12B36CF48 18 stub<8685> AllocateTemporaryEntryPoints +00007FA12A2F7A10 6db instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetSerializableMembers(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B36CF60 18 stub<8686> AllocateTemporaryEntryPoints +00007FA12B36CF78 18 stub<8687> AllocateTemporaryEntryPoints +00007FA12B36CF90 18 stub<8688> AllocateTemporaryEntryPoints +00007FA12B36CFA8 30 stub<8689> AllocateTemporaryEntryPoints +00007FA12B36CFD8 18 stub<8690> AllocateTemporaryEntryPoints +00007FA12B36E000 18 stub<8691> AllocateTemporaryEntryPoints +00007FA1277C0B20 18 stub<8692> GenerateLookupStub +00007FA1277C0B40 18 stub<8693> GenerateLookupStub +00007FA12B36E018 18 stub<8694> AllocateTemporaryEntryPoints +00007FA12B36E030 18 stub<8695> AllocateTemporaryEntryPoints +00007FA12B36E048 18 stub<8696> AllocateTemporaryEntryPoints +00007FA12B36E060 18 stub<8697> AllocateTemporaryEntryPoints +00007FA12B36E078 18 stub<8698> AllocateTemporaryEntryPoints +00007FA12A2F8120 4d4 class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetFieldsAndProperties(class [System.Runtime]System.Type,valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA12B36E090 18 stub<8699> AllocateTemporaryEntryPoints +00007FA12A2F8630 9b class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetFields(class [System.Runtime]System.Type,valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA1277C0B60 18 stub<8700> GenerateLookupStub +00007FA1277C0B80 18 stub<8701> GenerateLookupStub +00007FA1277F8210 18 stub<8702> GenerateResolveStub +00007FA1277F8280 18 stub<8703> GenerateResolveStub +00007FA1277C4D80 20 stub<8704> GenerateDispatchStub +00007FA1277C4DA0 20 stub<8705> GenerateDispatchStub +00007FA1277C0BA0 18 stub<8706> GenerateLookupStub +00007FA1277C0BC0 18 stub<8707> GenerateLookupStub +00007FA1277F82F0 18 stub<8708> GenerateResolveStub +00007FA1277F8360 18 stub<8709> GenerateResolveStub +00007FA1277C4DC0 20 stub<8710> GenerateDispatchStub +00007FA1277C4DE0 20 stub<8711> GenerateDispatchStub +00007FA12B36E0A8 18 stub<8712> AllocateTemporaryEntryPoints +00007FA12B36E0C0 18 stub<8713> AllocateTemporaryEntryPoints +00007FA12A2F86E0 1a1 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetChildPrivateFields(class [System.Runtime]System.Collections.Generic.IList`1,class [System.Runtime]System.Type,valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA12A2F88A0 30 valuetype [System.Runtime]System.Reflection.BindingFlags [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::RemoveFlag(valuetype [System.Runtime]System.Reflection.BindingFlags,valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA12B36E0D8 18 stub<8714> AllocateTemporaryEntryPoints +00007FA12B36E0F0 18 stub<8715> AllocateTemporaryEntryPoints +00007FA12B36E0F0 18 stub<8716> AllocateTemporaryEntryPoints +00007FA12B36E108 18 stub<8717> AllocateTemporaryEntryPoints +00007FA12B36E108 18 stub<8718> AllocateTemporaryEntryPoints +00007FA12B36E120 18 stub<8719> AllocateTemporaryEntryPoints +00007FA12B36E138 a8 stub<8720> AllocateTemporaryEntryPoints +00007FA12A2F88F0 24c void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.CollectionUtils::AddRange(class [System.Runtime]System.Collections.Generic.IList`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1277F83D0 18 stub<8721> GenerateResolveStub +00007FA1277F8440 18 stub<8722> GenerateResolveStub +00007FA1277C4E00 20 stub<8723> GenerateDispatchStub +00007FA1277C4E20 20 stub<8724> GenerateDispatchStub +00007FA1277C4E40 20 stub<8725> GenerateDispatchStub +00007FA1277C4E60 20 stub<8726> GenerateDispatchStub +00007FA1277C4E80 20 stub<8727> GenerateDispatchStub +00007FA1277C4EA0 20 stub<8728> GenerateDispatchStub +00007FA12B36E1E0 18 stub<8729> AllocateTemporaryEntryPoints +00007FA12B36E1F8 18 stub<8730> AllocateTemporaryEntryPoints +00007FA1277C4EE0 20 stub<8731> GenerateDispatchStub +00007FA1277C4EC0 20 stub<8732> GenerateDispatchStub +00007FA1277F84B0 18 stub<8733> GenerateResolveStub +00007FA1277F8520 18 stub<8734> GenerateResolveStub +00007FA1277C4F00 20 stub<8735> GenerateDispatchStub +00007FA1277C4F20 20 stub<8736> GenerateDispatchStub +00007FA12A2F8B70 26a class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetProperties(class [System.Runtime]System.Type,valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA12B36E210 60 stub<8737> AllocateTemporaryEntryPoints +00007FA1277C0BE0 18 stub<8738> GenerateLookupStub +00007FA1277C0C00 18 stub<8739> GenerateLookupStub +00007FA1277F8590 18 stub<8740> GenerateResolveStub +00007FA1277C4F40 20 stub<8741> GenerateDispatchStub +00007FA1277C4F60 20 stub<8742> GenerateDispatchStub +00007FA1277C0C20 18 stub<8744> GenerateLookupStub +00007FA1277C0C40 18 stub<8743> GenerateLookupStub +00007FA1277F8600 18 stub<8745> GenerateResolveStub +00007FA1277C4F80 20 stub<8746> GenerateDispatchStub +00007FA1277C4FA0 20 stub<8747> GenerateDispatchStub +00007FA12B36E288 48 stub<8748> AllocateTemporaryEntryPoints +00007FA12B36E2D0 30 stub<8749> AllocateTemporaryEntryPoints +00007FA12B36E300 18 stub<8750> AllocateTemporaryEntryPoints +00007FA12B36E318 18 stub<8751> AllocateTemporaryEntryPoints +00007FA1277C0C60 18 stub<8752> GenerateLookupStub +00007FA1277C0C80 18 stub<8753> GenerateLookupStub +00007FA1277C0CA0 18 stub<8754> GenerateLookupStub +00007FA12A2F8E00 482 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetChildPrivateProperties(class [System.Runtime]System.Collections.Generic.IList`1,class [System.Runtime]System.Type,valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA12B36E330 18 stub<8755> AllocateTemporaryEntryPoints +00007FA12B36E348 18 stub<8756> AllocateTemporaryEntryPoints +00007FA12B36E360 18 stub<8757> AllocateTemporaryEntryPoints +00007FA12B36E378 18 stub<8758> AllocateTemporaryEntryPoints +00007FA12B36E378 90 stub<8759> AllocateTemporaryEntryPoints +00007FA12B36E408 90 stub<8760> AllocateTemporaryEntryPoints +00007FA12B36E498 18 stub<8761> AllocateTemporaryEntryPoints +00007FA12B36E4B0 18 stub<8762> AllocateTemporaryEntryPoints +00007FA12B36E4C8 48 stub<8763> AllocateTemporaryEntryPoints +00007FA12B36E510 1b0 stub<8764> AllocateTemporaryEntryPoints +00007FA12B36E6C0 1b0 stub<8765> AllocateTemporaryEntryPoints +00007FA12B36E870 18 stub<8766> AllocateTemporaryEntryPoints +00007FA12B36E888 48 stub<8767> AllocateTemporaryEntryPoints +00007FA12B36E8D0 18 stub<8768> AllocateTemporaryEntryPoints +00007FA12B36E8E8 48 stub<8769> AllocateTemporaryEntryPoints +00007FA12B36E930 18 stub<8770> AllocateTemporaryEntryPoints +00007FA12B36E948 18 stub<8771> AllocateTemporaryEntryPoints +00007FA12B36E960 1b0 stub<8772> AllocateTemporaryEntryPoints +00007FA12B36EB10 1b0 stub<8773> AllocateTemporaryEntryPoints +00007FA12B36ECC0 18 stub<8774> AllocateTemporaryEntryPoints +00007FA12B36ECD8 18 stub<8775> AllocateTemporaryEntryPoints +00007FA12B36ECF0 78 stub<8776> AllocateTemporaryEntryPoints +00007FA12B36ED68 a8 stub<8777> AllocateTemporaryEntryPoints +00007FA1277C4FC0 20 stub<8778> GenerateDispatchStub +00007FA1277C4FE0 20 stub<8779> GenerateDispatchStub +00007FA1277C5000 20 stub<8780> GenerateDispatchStub +00007FA1277C5020 20 stub<8780> GenerateDispatchStub +00007FA12A2F96B0 2b instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils+<>c::b__31_0(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA1277C5040 20 stub<8781> GenerateDispatchStub +00007FA1277C5060 20 stub<8782> GenerateDispatchStub +00007FA12B36EE10 90 stub<8783> AllocateTemporaryEntryPoints +00007FA12B36EEA0 90 stub<8784> AllocateTemporaryEntryPoints +00007FA12B36EF30 18 stub<8785> AllocateTemporaryEntryPoints +00007FA12B36EF48 18 stub<8786> AllocateTemporaryEntryPoints +00007FA12B36EF78 18 stub<8788> AllocateTemporaryEntryPoints +00007FA12B36EF60 18 stub<8787> AllocateTemporaryEntryPoints +00007FA1277C5080 20 stub<8789> GenerateDispatchStub +00007FA1277C50A0 20 stub<8790> GenerateDispatchStub +00007FA1277C0CC0 18 stub<8791> GenerateLookupStub +00007FA1277C0CE0 18 stub<8792> GenerateLookupStub +00007FA1277C50C0 20 stub<8793> GenerateDispatchStub +00007FA1277C50E0 20 stub<8794> GenerateDispatchStub +00007FA1277F8670 18 stub<8795> GenerateResolveStub +00007FA1277F86E0 18 stub<8796> GenerateResolveStub +00007FA1277C5100 20 stub<8797> GenerateDispatchStub +00007FA1277C5120 20 stub<8798> GenerateDispatchStub +00007FA1277F8750 18 stub<8799> GenerateResolveStub +00007FA1277C5140 20 stub<8800> GenerateDispatchStub +00007FA1277C5160 20 stub<8801> GenerateDispatchStub +00007FA128523430 47 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c::.cctor()[QuickJitted] +00007FA128523490 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c::.ctor()[QuickJitted] +00007FA1285234D0 1b instance valuetype [System.Runtime]System.Reflection.BindingFlags [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_DefaultMembersSearchFlags()[QuickJitted] +00007FA1277F87C0 18 stub<8802> GenerateResolveStub +00007FA1277F8830 18 stub<8803> GenerateResolveStub +00007FA1277C5180 20 stub<8804> GenerateDispatchStub +00007FA1277C51A0 20 stub<8805> GenerateDispatchStub +00007FA1277C51C0 20 stub<8806> GenerateDispatchStub +00007FA1277C51E0 20 stub<8807> GenerateDispatchStub +00007FA1277C0D00 18 stub<8808> GenerateLookupStub +00007FA1277C0D20 18 stub<8809> GenerateLookupStub +00007FA128523500 c9 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::FilterMembers(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA1285235E0 47 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::IsIndexedProperty(class [System.Runtime]System.Reflection.PropertyInfo)[QuickJitted] +00007FA128523640 101 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::IsByRefLikeType(class [System.Runtime]System.Type)[QuickJitted] +00007FA1277C5200 20 stub<8810> GenerateDispatchStub +00007FA128523760 5a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c::b__40_0(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA1277C5220 20 stub<8811> GenerateDispatchStub +00007FA1277C5240 20 stub<8812> GenerateDispatchStub +00007FA1285237D0 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_SerializeCompilerGeneratedMembers()[QuickJitted] +00007FA12B36EFA8 18 stub<8813> AllocateTemporaryEntryPoints +00007FA12B36EFC0 18 stub<8814> AllocateTemporaryEntryPoints +00007FA12842A528 a8 stub<8815> AllocateTemporaryEntryPoints +00007FA12B390048 30 stub<8816> AllocateTemporaryEntryPoints +00007FA12B390078 30 stub<8817> AllocateTemporaryEntryPoints +00007FA12B3900A8 48 stub<8818> AllocateTemporaryEntryPoints +00007FA1277C5260 20 stub<8819> GenerateDispatchStub +00007FA128523800 246 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateProperty(class [System.Runtime]System.Reflection.MemberInfo,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.MemberSerialization)[QuickJitted] +00007FA128523A70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::.ctor()[QuickJitted] +00007FA12B3900F0 228 stub<8820> AllocateTemporaryEntryPoints +00007FA128523AB0 1a3 class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberUnderlyingType(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA128523C70 27 valuetype [System.Runtime]System.Reflection.MemberTypes [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::MemberType(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA128523CB0 47 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_PropertyType(class [System.Runtime]System.Type)[QuickJitted] +00007FA128523D10 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_DeclaringType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B390318 48 stub<8821> AllocateTemporaryEntryPoints +00007FA128523D50 43 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IValueProvider [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateMemberValueProvider(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA128523DB0 4b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExpressionValueProvider::.ctor(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA128523E10 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_ValueProvider(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IValueProvider)[QuickJitted] +00007FA128523E50 4b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ReflectionAttributeProvider::.ctor(object)[QuickJitted] +00007FA128523EB0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_AttributeProvider(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IAttributeProvider)[QuickJitted] +00007FA12B390360 1e0 stub<8822> AllocateTemporaryEntryPoints +00007FA12B390540 18 stub<8823> AllocateTemporaryEntryPoints +00007FA12B390558 18 stub<8824> AllocateTemporaryEntryPoints +00007FA12B390570 18 stub<8825> AllocateTemporaryEntryPoints +00007FA12B390588 78 stub<8826> AllocateTemporaryEntryPoints +00007FA12B390600 18 stub<8827> AllocateTemporaryEntryPoints +00007FA12B3A0020 7c9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::SetPropertySettingsFromAttributes(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object,string,class [System.Runtime]System.Type,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.MemberSerialization,bool&)[QuickJitted] +00007FA12B390618 18 stub<8828> AllocateTemporaryEntryPoints +00007FA12B390630 18 stub<8829> AllocateTemporaryEntryPoints +00007FA12B390630 18 stub<8830> AllocateTemporaryEntryPoints +00007FA12B3A0810 2e8 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA12B390648 18 stub<8831> AllocateTemporaryEntryPoints +00007FA12B390660 18 stub<8832> AllocateTemporaryEntryPoints +00007FA12B390678 18 stub<8833> AllocateTemporaryEntryPoints +00007FA12B390690 18 stub<8834> AllocateTemporaryEntryPoints +00007FA12B390690 18 stub<8835> AllocateTemporaryEntryPoints +00007FA12B3906A8 18 stub<8836> AllocateTemporaryEntryPoints +00007FA12B3A0B20 31 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPropertyAttribute::.ctor(string)[QuickJitted] +00007FA1277C0D40 18 stub<8837> GenerateLookupStub +00007FA12B3A0B70 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPropertyAttribute::set_PropertyName(string)[QuickJitted] +00007FA1277F88A0 18 stub<8838> GenerateResolveStub +00007FA1277C5280 20 stub<8839> GenerateDispatchStub +00007FA1277C52A0 20 stub<8840> GenerateDispatchStub +00007FA12B3906C0 18 stub<8841> AllocateTemporaryEntryPoints +00007FA12B3906D8 18 stub<8842> AllocateTemporaryEntryPoints +00007FA12B3906F0 18 stub<8843> AllocateTemporaryEntryPoints +00007FA1277C0D60 18 stub<8844> GenerateLookupStub +00007FA1277F8910 18 stub<8845> GenerateResolveStub +00007FA1277C52C0 20 stub<8846> GenerateDispatchStub +00007FA12B390720 18 stub<8847> AllocateTemporaryEntryPoints +00007FA12B390738 18 stub<8848> AllocateTemporaryEntryPoints +00007FA1277C0D80 18 stub<8849> GenerateLookupStub +00007FA1277C0DA0 18 stub<8850> GenerateLookupStub +00007FA1277F8980 18 stub<8851> GenerateResolveStub +00007FA1277C52E0 20 stub<8852> GenerateDispatchStub +00007FA1277C5300 20 stub<8853> GenerateDispatchStub +00007FA12B3A0BB0 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPropertyAttribute::get_PropertyName()[QuickJitted] +00007FA12B3A0BE0 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.NamingStrategy [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_NamingStrategy()[QuickJitted] +00007FA12B3A0C10 1c instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPropertyAttribute::get_NamingStrategyType()[QuickJitted] +00007FA12B3A0C40 55 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.NamingStrategy::GetPropertyName(string,bool)[QuickJitted] +00007FA12B3A0CB0 23 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy::ResolvePropertyName(string)[QuickJitted] +00007FA12B3A0CF0 5e instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolvePropertyName(string)[QuickJitted] +00007FA12B3A0D70 50 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_PropertyName(string)[QuickJitted] +00007FA12B3A0DE0 24 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringUtils::ToSnakeCase(string)[QuickJitted] +00007FA12B3A0E20 bd bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JavaScriptUtils::ShouldEscapeJavaScriptString(string,bool[])[QuickJitted] +00007FA12B3A0F00 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_UnderlyingName(string)[QuickJitted] +00007FA12B3A0F40 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_Order(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A0F80 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_DefaultValueHandling(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A0FC0 28e string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringUtils::ToSeparatedCase(string,char)[QuickJitted] +00007FA12B3A1280 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_NullValueHandling(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A12C0 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_ReferenceLoopHandling(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A1300 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_ObjectCreationHandling(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A1340 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_TypeNameHandling(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A1380 26 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_IsReference(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A13C0 26 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_ItemIsReference(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A1400 1c instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPropertyAttribute::get_ItemConverterType()[QuickJitted] +00007FA12B3A1430 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_ItemConverter(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter)[QuickJitted] +00007FA12B3A1470 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_ItemReferenceLoopHandling(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A14B0 27 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_ItemTypeNameHandling(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3A14F0 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_HasMemberAttribute(bool)[QuickJitted] +00007FA12B390750 18 stub<8854> AllocateTemporaryEntryPoints +00007FA12B390768 18 stub<8855> AllocateTemporaryEntryPoints +00007FA12B390780 18 stub<8856> AllocateTemporaryEntryPoints +00007FA12B390798 18 stub<8857> AllocateTemporaryEntryPoints +00007FA12B3907B0 18 stub<8858> AllocateTemporaryEntryPoints +00007FA1277C0DC0 18 stub<8859> GenerateLookupStub +00007FA1277F89F0 18 stub<8860> GenerateResolveStub +00007FA1277C5320 20 stub<8861> GenerateDispatchStub +00007FA12B3907C8 18 stub<8862> AllocateTemporaryEntryPoints +00007FA12B3907E0 18 stub<8863> AllocateTemporaryEntryPoints +00007FA12B3907F8 18 stub<8864> AllocateTemporaryEntryPoints +00007FA12B390810 18 stub<8865> AllocateTemporaryEntryPoints +00007FA12B390828 18 stub<8866> AllocateTemporaryEntryPoints +00007FA1277C0DE0 18 stub<8867> GenerateLookupStub +00007FA1277F8A60 18 stub<8868> GenerateResolveStub +00007FA1277C5340 20 stub<8869> GenerateDispatchStub +00007FA12B390840 18 stub<8870> AllocateTemporaryEntryPoints +00007FA12B3A1530 33 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::IsNonSerializable(object)[QuickJitted] +00007FA12B390858 18 stub<8871> AllocateTemporaryEntryPoints +00007FA12B390870 18 stub<8872> AllocateTemporaryEntryPoints +00007FA12B390888 18 stub<8873> AllocateTemporaryEntryPoints +00007FA1277C0E00 18 stub<8874> GenerateLookupStub +00007FA1277F8AD0 18 stub<8875> GenerateResolveStub +00007FA1277C5360 20 stub<8876> GenerateDispatchStub +00007FA12B3A1580 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_Ignored(bool)[QuickJitted] +00007FA12B3908A0 18 stub<8877> AllocateTemporaryEntryPoints +00007FA12B3A15C0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_Converter(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter)[QuickJitted] +00007FA12B3908B8 18 stub<8878> AllocateTemporaryEntryPoints +00007FA12B3908D0 18 stub<8879> AllocateTemporaryEntryPoints +00007FA12B3908E8 18 stub<8880> AllocateTemporaryEntryPoints +00007FA12B390900 18 stub<8881> AllocateTemporaryEntryPoints +00007FA12B390918 18 stub<8882> AllocateTemporaryEntryPoints +00007FA1277C0E20 18 stub<8883> GenerateLookupStub +00007FA1277F8B40 18 stub<8884> GenerateResolveStub +00007FA1277C5380 20 stub<8885> GenerateDispatchStub +00007FA12B3A1600 fe bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::CanReadMemberValue(class [System.Runtime]System.Reflection.MemberInfo,bool)[QuickJitted] +00007FA12B3A1720 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_Readable(bool)[QuickJitted] +00007FA12B3A1760 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_HasMemberAttribute()[QuickJitted] +00007FA12B3A1790 136 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::CanSetMemberValue(class [System.Runtime]System.Reflection.MemberInfo,bool,bool)[QuickJitted] +00007FA12B3A18E0 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_Writable(bool)[QuickJitted] +00007FA12B3A1920 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreShouldSerializeMembers()[QuickJitted] +00007FA12B390930 30 stub<8886> AllocateTemporaryEntryPoints +00007FA12B390960 18 stub<8887> AllocateTemporaryEntryPoints +00007FA12B390978 18 stub<8888> AllocateTemporaryEntryPoints +00007FA12B3A1950 1a4 instance class [System.Runtime]System.Predicate`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateShouldSerializeTest(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA12B3A1B10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c__DisplayClass79_0::.ctor()[QuickJitted] +00007FA12B390990 18 stub<8889> AllocateTemporaryEntryPoints +00007FA12B3A1B50 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_ShouldSerialize(class [System.Runtime]System.Predicate`1)[QuickJitted] +00007FA12B3A1B90 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreIsSpecifiedMembers()[QuickJitted] +00007FA12B3909A8 30 stub<8890> AllocateTemporaryEntryPoints +00007FA12B3909D8 18 stub<8891> AllocateTemporaryEntryPoints +00007FA12B3909F0 18 stub<8892> AllocateTemporaryEntryPoints +00007FA12B390A08 18 stub<8893> AllocateTemporaryEntryPoints +00007FA12B390A20 18 stub<8894> AllocateTemporaryEntryPoints +00007FA12B3A1BC0 28c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::SetIsSpecifiedActions(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class [System.Runtime]System.Reflection.MemberInfo,bool)[QuickJitted] +00007FA12B3A1E70 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c__DisplayClass80_0::.ctor()[QuickJitted] +00007FA12784B520 11 stub<8895> GenerateVTableCallStub +00007FA12B3A1EB0 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyName()[QuickJitted] +00007FA12B3A1EE0 1e1 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::Add(string)[QuickJitted] +00007FA12B3A20E0 d2 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::AddEntry(string,int32)[QuickJitted] +00007FA12B3A21D0 56 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable+Entry::.ctor(string,int32,class Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable/Entry)[QuickJitted] +00007FA12B3A2240 392 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::AddProperty(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B390A38 18 stub<8896> AllocateTemporaryEntryPoints +00007FA1277C0E40 18 stub<8897> GenerateLookupStub +00007FA1277F8BB0 18 stub<8898> GenerateResolveStub +00007FA1277C53A0 20 stub<8899> GenerateDispatchStub +00007FA1277C0E60 18 stub<8900> GenerateLookupStub +00007FA1277F8C20 18 stub<8901> GenerateResolveStub +00007FA1277C53C0 20 stub<8902> GenerateDispatchStub +00007FA12784B540 e stub<8903> GenerateVTableCallStub +00007FA12B3A25F0 25 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::GetKeyForItem(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B390A50 60 stub<8904> AllocateTemporaryEntryPoints +00007FA1277C0E80 18 stub<8905> GenerateLookupStub +00007FA1277F8C90 18 stub<8906> GenerateResolveStub +00007FA1277C53E0 20 stub<8907> GenerateDispatchStub +00007FA12B390AC8 48 stub<8908> AllocateTemporaryEntryPoints +00007FA1277C0EA0 18 stub<8909> GenerateLookupStub +00007FA12B390B10 18 stub<8910> AllocateTemporaryEntryPoints +00007FA1277C0EC0 18 stub<8911> GenerateLookupStub +00007FA1277F8D00 18 stub<8912> GenerateResolveStub +00007FA1277C5400 20 stub<8913> GenerateDispatchStub +00007FA12B390B28 c0 stub<8914> AllocateTemporaryEntryPoints +00007FA12B3A2A40 52 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c::b__74_0(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3A2AB0 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Order()[QuickJitted] +00007FA1277C0EE0 18 stub<8915> GenerateLookupStub +00007FA1277F8D70 18 stub<8916> GenerateResolveStub +00007FA1277C5420 20 stub<8917> GenerateDispatchStub +00007FA1277C0F00 18 stub<8918> GenerateLookupStub +00007FA1277F8DE0 18 stub<8919> GenerateResolveStub +00007FA1277C5440 20 stub<8920> GenerateDispatchStub +00007FA1277C0F20 18 stub<8921> GenerateLookupStub +00007FA1277F8E50 18 stub<8922> GenerateResolveStub +00007FA1277C5460 20 stub<8923> GenerateDispatchStub +00007FA12B3A2AF0 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::set_ExtensionDataNameResolver(class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12B390C18 18 stub<8924> AllocateTemporaryEntryPoints +00007FA12B3A2B40 30b instance class [System.Runtime]System.Reflection.ConstructorInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetAttributeConstructor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B390C30 18 stub<8925> AllocateTemporaryEntryPoints +00007FA1277C5480 20 stub<8926> GenerateDispatchStub +00007FA1277C54A0 20 stub<8927> GenerateDispatchStub +00007FA12B3A2E70 1c instance class [System.Runtime]System.Func`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreator()[QuickJitted] +00007FA12B3A2EA0 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreatorNonPublic()[QuickJitted] +00007FA12B3A2ED0 1e2 instance class [System.Runtime]System.Reflection.ConstructorInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetImmutableConstructor(class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection)[QuickJitted] +00007FA1277C54C0 20 stub<8928> GenerateDispatchStub +00007FA12B390C48 18 stub<8929> AllocateTemporaryEntryPoints +00007FA12B390C60 18 stub<8930> AllocateTemporaryEntryPoints +00007FA12B390C78 18 stub<8931> AllocateTemporaryEntryPoints +00007FA12B390C90 18 stub<8932> AllocateTemporaryEntryPoints +00007FA12B3A30D0 16b instance class [System.Runtime]System.Reflection.MemberInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetExtensionDataMemberForType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B390CA8 108 stub<8933> AllocateTemporaryEntryPoints +00007FA12B390DB0 a8 stub<8934> AllocateTemporaryEntryPoints +00007FA12B390E58 a8 stub<8935> AllocateTemporaryEntryPoints +00007FA12B390F00 18 stub<8936> AllocateTemporaryEntryPoints +00007FA12B390F18 18 stub<8937> AllocateTemporaryEntryPoints +00007FA12B390F30 48 stub<8938> AllocateTemporaryEntryPoints +00007FA12B390F78 18 stub<8939> AllocateTemporaryEntryPoints +00007FA12B390F90 18 stub<8940> AllocateTemporaryEntryPoints +00007FA1277F8EC0 18 stub<8941> GenerateResolveStub +00007FA1277C54E0 20 stub<8942> GenerateDispatchStub +00007FA1277C5500 20 stub<8943> GenerateDispatchStub +00007FA12B3A3260 b4 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c::b__43_0(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B390FA8 18 stub<8944> AllocateTemporaryEntryPoints +00007FA1277C5520 20 stub<8945> GenerateDispatchStub +00007FA1277C0F40 18 stub<8946> GenerateLookupStub +00007FA1277F8F30 18 stub<8947> GenerateResolveStub +00007FA1277C5540 20 stub<8948> GenerateDispatchStub +00007FA12B3A3330 377 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c::b__43_1(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA1277C5560 20 stub<8949> GenerateDispatchStub +00007FA12B390FC0 18 stub<8950> AllocateTemporaryEntryPoints +00007FA12B3A3AD0 be bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::TextEquals(string,char[],int32,int32)[QuickJitted] +00007FA12B390FD8 18 stub<8951> AllocateTemporaryEntryPoints +00007FA12B392000 18 stub<8952> AllocateTemporaryEntryPoints +00007FA12B3A3BB0 2c3 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewObject(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,string,bool&)[QuickJitted] +00007FA12B3A3E90 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ObjectConstructor`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_OverrideCreator()[QuickJitted] +00007FA12B392018 5e8 stub<8953> AllocateTemporaryEntryPoints +00007FA12B392600 c0 stub<8954> AllocateTemporaryEntryPoints +00007FA12B3926C0 90 stub<8955> AllocateTemporaryEntryPoints +00007FA12B392750 a8 stub<8956> AllocateTemporaryEntryPoints +00007FA12B3927F8 18 stub<8957> AllocateTemporaryEntryPoints +00007FA12B392810 78 stub<8958> AllocateTemporaryEntryPoints +00007FA12B392888 18 stub<8959> AllocateTemporaryEntryPoints +00007FA12B3928A0 198 stub<8960> AllocateTemporaryEntryPoints +00007FA12B392A38 18 stub<8961> AllocateTemporaryEntryPoints +00007FA12B392A50 90 stub<8962> AllocateTemporaryEntryPoints +00007FA12B392AE0 60 stub<8963> AllocateTemporaryEntryPoints +00007FA12B392B40 18 stub<8964> AllocateTemporaryEntryPoints +00007FA12B392B58 18 stub<8965> AllocateTemporaryEntryPoints +00007FA12B392B70 18 stub<8966> AllocateTemporaryEntryPoints +00007FA12B3A3ED0 b83 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateObject(object,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,string)[QuickJitted] +00007FA12B3A4A90 13b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserializing(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,object)[QuickJitted] +00007FA12B392B88 18 stub<8967> AllocateTemporaryEntryPoints +00007FA12B3A4BF0 10d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserializing(object,valuetype [System.Runtime]System.Runtime.Serialization.StreamingContext)[QuickJitted] +00007FA12B3A4D20 298 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_HasRequiredOrDefaultValueProperties()[QuickJitted] +00007FA12B3A4FF0 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_ItemRequired()[QuickJitted] +00007FA12B3A5030 32 instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.Required]::GetValueOrDefault(!0)[QuickJitted] +00007FA1277C5580 20 stub<8968> GenerateDispatchStub +00007FA12B3A5080 2d instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Required [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Required()[QuickJitted] +00007FA12B3A50D0 1b instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.Required]::GetValueOrDefault()[QuickJitted] +00007FA12B3A5100 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_DefaultValueHandling()[QuickJitted] +00007FA12B3A5140 1b instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling]::GetValueOrDefault()[QuickJitted] +00007FA1277C55A0 20 stub<8969> GenerateDispatchStub +00007FA12B3A5170 29 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasFlag(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling)[QuickJitted] +00007FA12B3A51B0 57 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::GetClosestMatchProperty(string)[QuickJitted] +00007FA12B3A5220 ed instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::GetProperty(string,valuetype [System.Runtime]System.StringComparison)[QuickJitted] +00007FA1277C0F60 18 stub<8970> GenerateLookupStub +00007FA12B3A5330 6a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::TryGetProperty(string,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty&)[QuickJitted] +00007FA1277F8FA0 18 stub<8971> GenerateResolveStub +00007FA1277C55C0 20 stub<8972> GenerateDispatchStub +00007FA12B3A53B0 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Ignored()[QuickJitted] +00007FA12B3A53E0 171 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldDeserialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[QuickJitted] +00007FA12B3A5570 1c instance class [System.Runtime]System.Predicate`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ShouldDeserialize()[QuickJitted] +00007FA12B3A55A0 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyContract()[QuickJitted] +00007FA12B3A55D0 1c instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyType()[QuickJitted] +00007FA12B392BA0 a8 stub<8973> AllocateTemporaryEntryPoints +00007FA12B392C48 30 stub<8974> AllocateTemporaryEntryPoints +00007FA12B392C90 18 stub<8975> AllocateTemporaryEntryPoints +00007FA12B392CA8 18 stub<8976> AllocateTemporaryEntryPoints +00007FA12B392CC0 f0 stub<8977> AllocateTemporaryEntryPoints +00007FA12B392DB0 30 stub<8978> AllocateTemporaryEntryPoints +00007FA12B3A5600 527 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateDictionaryContract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B392DE0 48 stub<8979> AllocateTemporaryEntryPoints +00007FA12B3A5B50 948 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3A64C0 59 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::IsGenericDefinition(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3A6530 31 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3A6580 ef bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type&)[QuickJitted] +00007FA12B3A6690 21 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsClass(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3A66D0 cc bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinitionInternal(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type&)[QuickJitted] +00007FA1277C0F80 18 stub<8980> GenerateLookupStub +00007FA12B3A67B0 217 class [System.Runtime]System.Reflection.ConstructorInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA1277F9010 18 stub<8981> GenerateResolveStub +00007FA1277C55E0 20 stub<8982> GenerateDispatchStub +00007FA12B3A69F0 4f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreatorInternal()[QuickJitted] +00007FA12B3A6A60 1f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreator()[QuickJitted] +00007FA12B3A6AA0 1f instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryKeyType()[QuickJitted] +00007FA12B3A6AE0 1f instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryValueType()[QuickJitted] +00007FA12B392E28 30 stub<8983> AllocateTemporaryEntryPoints +00007FA12B392E58 a8 stub<8984> AllocateTemporaryEntryPoints +00007FA12B392F00 18 stub<8985> AllocateTemporaryEntryPoints +00007FA12B392F18 60 stub<8986> AllocateTemporaryEntryPoints +00007FA12B392F78 18 stub<8987> AllocateTemporaryEntryPoints +00007FA12B3A6B20 44a bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils::TryBuildImmutableForDictionaryContract(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ObjectConstructor`1&)[QuickJitted] +00007FA12B3A6F90 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+<>c__DisplayClass25_0::.ctor()[QuickJitted] +00007FA12B3A6FD0 4ef void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils::.cctor()[QuickJitted] +00007FA12B3A74E0 55 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+ImmutableCollectionTypeInfo::.ctor(string,string,string)[QuickJitted] +00007FA12B3A7550 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+ImmutableCollectionTypeInfo::set_ContractTypeName(string)[QuickJitted] +00007FA12B3A7590 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+ImmutableCollectionTypeInfo::set_CreatedTypeName(string)[QuickJitted] +00007FA1277F9080 18 stub<8988> GenerateResolveStub +00007FA12B3A75D0 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+ImmutableCollectionTypeInfo::set_BuilderTypeName(string)[QuickJitted] +00007FA12B392FA8 18 stub<8989> AllocateTemporaryEntryPoints +00007FA1277C5600 20 stub<8990> GenerateDispatchStub +00007FA1277C0FA0 18 stub<8991> GenerateLookupStub +00007FA1277C5620 20 stub<8992> GenerateDispatchStub +00007FA1277F90F0 18 stub<8993> GenerateResolveStub +00007FA1277C5640 20 stub<8994> GenerateDispatchStub +00007FA1277C5660 20 stub<8995> GenerateDispatchStub +00007FA1277C0FC0 18 stub<8996> GenerateLookupStub +00007FA1277F9160 18 stub<8997> GenerateResolveStub +00007FA1277C5680 20 stub<8998> GenerateDispatchStub +00007FA12B3A7610 41 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+<>c__DisplayClass25_0::b__0(class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo)[QuickJitted] +00007FA12B3A7670 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+ImmutableCollectionTypeInfo::get_ContractTypeName()[QuickJitted] +00007FA1277F91D0 18 stub<8999> GenerateResolveStub +00007FA1277C56A0 20 stub<9000> GenerateDispatchStub +00007FA12B394000 c0 stub<9001> AllocateTemporaryEntryPoints +00007FA12B3940C0 18 stub<9002> AllocateTemporaryEntryPoints +00007FA12B3A76A0 5f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver+<>c::b__46_0(class [System.Runtime]System.Reflection.ConstructorInfo)[QuickJitted] +00007FA12B3A7720 66 instance class [System.Runtime]System.Reflection.ConstructorInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetParameterizedConstructor(class [System.Runtime]System.Type)[QuickJitted] +00007FA128660DF0 33 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method3(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B3A77A0 144 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ObjectConstructor`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::CreateParameterizedConstructor(class [System.Runtime]System.Reflection.MethodBase)[QuickJitted] +00007FA12B3940D8 18 stub<9003> AllocateTemporaryEntryPoints +00007FA12B3940F0 30 stub<9004> AllocateTemporaryEntryPoints +00007FA12B394120 150 stub<9005> AllocateTemporaryEntryPoints +00007FA12B394270 30 stub<9006> AllocateTemporaryEntryPoints +00007FA12B3942A0 30 stub<9007> AllocateTemporaryEntryPoints +00007FA12B3942D0 150 stub<9008> AllocateTemporaryEntryPoints +00007FA12B394420 30 stub<9009> AllocateTemporaryEntryPoints +00007FA12B394450 30 stub<9010> AllocateTemporaryEntryPoints +00007FA12B394480 60 stub<9011> AllocateTemporaryEntryPoints +00007FA12B3944E0 198 stub<9012> AllocateTemporaryEntryPoints +00007FA12B394678 18 stub<9013> AllocateTemporaryEntryPoints +00007FA12B394690 30 stub<9014> AllocateTemporaryEntryPoints +00007FA12B3946C0 30 stub<9015> AllocateTemporaryEntryPoints +00007FA12B3946F0 30 stub<9016> AllocateTemporaryEntryPoints +00007FA12B394720 30 stub<9017> AllocateTemporaryEntryPoints +00007FA12B394750 30 stub<9018> AllocateTemporaryEntryPoints +00007FA12B394780 30 stub<9019> AllocateTemporaryEntryPoints +00007FA12B3947B0 30 stub<9020> AllocateTemporaryEntryPoints +00007FA12B3947E0 30 stub<9021> AllocateTemporaryEntryPoints +00007FA12B394810 30 stub<9022> AllocateTemporaryEntryPoints +00007FA12B394840 30 stub<9023> AllocateTemporaryEntryPoints +00007FA12B394870 30 stub<9024> AllocateTemporaryEntryPoints +00007FA12B3948A0 30 stub<9025> AllocateTemporaryEntryPoints +00007FA12B3948D0 30 stub<9026> AllocateTemporaryEntryPoints +00007FA12B394900 18 stub<9027> AllocateTemporaryEntryPoints +00007FA12B394918 60 stub<9028> AllocateTemporaryEntryPoints +00007FA12B3A7900 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryKeyResolver(class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1277C0FE0 18 stub<9029> GenerateLookupStub +00007FA1277C1000 18 stub<9030> GenerateLookupStub +00007FA12B3A7950 2a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::set_PropertyContract(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[QuickJitted] +00007FA1277C1020 18 stub<9031> GenerateLookupStub +00007FA12B3A7990 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Converter()[QuickJitted] +00007FA1277C1040 18 stub<9032> GenerateLookupStub +00007FA1277C1060 18 stub<9033> GenerateLookupStub +00007FA12B3A79C0 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemConverter()[QuickJitted] +00007FA1277C1080 18 stub<9034> GenerateLookupStub +00007FA12B394990 18 stub<9035> AllocateTemporaryEntryPoints +00007FA12B3A7A00 118 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyPresence(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class [System.Collections]System.Collections.Generic.Dictionary`2)[QuickJitted] +00007FA12B3949A8 18 stub<9036> AllocateTemporaryEntryPoints +00007FA1277C10A0 18 stub<9037> GenerateLookupStub +00007FA1277C10C0 18 stub<9038> GenerateLookupStub +00007FA12B3A7B30 500 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyValue(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,object)[QuickJitted] +00007FA12B3A8050 6a8 instance class [System.Linq.Expressions]System.Linq.Expressions.Expression [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::BuildMethodCall(class [System.Runtime]System.Reflection.MethodBase,class [System.Runtime]System.Type,class [System.Linq.Expressions]System.Linq.Expressions.ParameterExpression,class [System.Linq.Expressions]System.Linq.Expressions.ParameterExpression)[QuickJitted] +00007FA12B3A8730 5d8 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CalculatePropertyDetails(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,object,bool&,object&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract&,bool&,bool&)[QuickJitted] +00007FA12B3949C0 48 stub<9039> AllocateTemporaryEntryPoints +00007FA12B3A8D30 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ObjectCreationHandling()[QuickJitted] +00007FA12B3A8D70 32 instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.ObjectCreationHandling]::GetValueOrDefault(!0)[QuickJitted] +00007FA12B3A8DC0 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Readable()[QuickJitted] +00007FA12B3A8F90 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IValueProvider [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ValueProvider()[QuickJitted] +00007FA12B3A8DF0 17f class System.Linq.Expressions.BinaryExpression [System.Linq.Expressions] System.Linq.Expressions.Expression::ArrayIndex(class System.Linq.Expressions.Expression,class System.Linq.Expressions.Expression)[QuickJitted] +00007FA12B3A8FC0 170 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExpressionValueProvider::GetValue(object)[QuickJitted] +00007FA12B394A08 18 stub<9040> AllocateTemporaryEntryPoints +00007FA12B394A20 18 stub<9041> AllocateTemporaryEntryPoints +00007FA12B394A38 18 stub<9042> AllocateTemporaryEntryPoints +00007FA12B394A50 18 stub<9043> AllocateTemporaryEntryPoints +00007FA12B394A68 18 stub<9044> AllocateTemporaryEntryPoints +00007FA12B394A80 18 stub<9045> AllocateTemporaryEntryPoints +00007FA12B3A9160 21 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsPrimitive(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3A91A0 258 instance class [System.Runtime]System.Func`2 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateGet(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA12B394A98 18 stub<9046> AllocateTemporaryEntryPoints +00007FA12B394AB0 18 stub<9047> AllocateTemporaryEntryPoints +00007FA12B394AC8 18 stub<9048> AllocateTemporaryEntryPoints +00007FA12B394AE0 60 stub<9049> AllocateTemporaryEntryPoints +00007FA12B394B40 90 stub<9050> AllocateTemporaryEntryPoints +00007FA12B3A9420 2bf instance class [System.Runtime]System.Func`2 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::CreateGet(class [System.Runtime]System.Reflection.PropertyInfo)[QuickJitted] +00007FA12784B550 e stub<9051> GenerateVTableCallStub +00007FA12B394BD0 30 stub<9052> AllocateTemporaryEntryPoints +00007FA12B394C00 48 stub<9053> AllocateTemporaryEntryPoints +00007FA12B394C60 30 stub<9054> AllocateTemporaryEntryPoints +00007FA12B394C90 30 stub<9055> AllocateTemporaryEntryPoints +00007FA1277C10E0 18 stub<9056> GenerateLookupStub +00007FA1277F9240 18 stub<9057> GenerateResolveStub +00007FA1277C56C0 20 stub<9058> GenerateDispatchStub +00007FA12B394CC0 18 stub<9059> AllocateTemporaryEntryPoints +00007FA12B394CD8 18 stub<9060> AllocateTemporaryEntryPoints +00007FA1277C1120 18 stub<9062> GenerateLookupStub +00007FA1277C1100 18 stub<9061> GenerateLookupStub +00007FA1277F92B0 18 stub<9063> GenerateResolveStub +00007FA1277F9320 18 stub<9064> GenerateResolveStub +00007FA1277C56E0 20 stub<9065> GenerateDispatchStub +00007FA1277C5700 20 stub<9066> GenerateDispatchStub +00007FA1277F9390 18 stub<9067> GenerateResolveStub +00007FA12B394CF0 60 stub<9068> AllocateTemporaryEntryPoints +00007FA1277C5720 20 stub<9069> GenerateDispatchStub +00007FA12B394D50 18 stub<9070> AllocateTemporaryEntryPoints +00007FA12B394D68 18 stub<9071> AllocateTemporaryEntryPoints +00007FA12B394D80 120 stub<9072> AllocateTemporaryEntryPoints +00007FA12B394EA0 90 stub<9073> AllocateTemporaryEntryPoints +00007FA12B394F30 90 stub<9074> AllocateTemporaryEntryPoints +00007FA1277F9400 18 stub<9075> GenerateResolveStub +00007FA1277F9470 18 stub<9076> GenerateResolveStub +00007FA1277C5740 20 stub<9077> GenerateDispatchStub +00007FA1277C5760 20 stub<9078> GenerateDispatchStub +00007FA12B394FC0 18 stub<9079> AllocateTemporaryEntryPoints +00007FA12B394FD8 18 stub<9080> AllocateTemporaryEntryPoints +00007FA1277F94E0 18 stub<9081> GenerateResolveStub +00007FA1277C5780 20 stub<9082> GenerateDispatchStub +00007FA12B396000 18 stub<9083> AllocateTemporaryEntryPoints +00007FA12B396018 18 stub<9084> AllocateTemporaryEntryPoints +00007FA12B396030 90 stub<9085> AllocateTemporaryEntryPoints +00007FA12B3960C0 30 stub<9086> AllocateTemporaryEntryPoints +00007FA12B3960F0 60 stub<9087> AllocateTemporaryEntryPoints +00007FA12B396150 90 stub<9088> AllocateTemporaryEntryPoints +00007FA12B3961E0 90 stub<9089> AllocateTemporaryEntryPoints +00007FA12B396270 18 stub<9090> AllocateTemporaryEntryPoints +00007FA12B396288 18 stub<9091> AllocateTemporaryEntryPoints +00007FA12B3A9700 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::Initialize(int32)[QuickJitted] +00007FA12B3962A0 60 stub<9092> AllocateTemporaryEntryPoints +00007FA1277F9550 18 stub<9093> GenerateResolveStub +00007FA1277C57A0 20 stub<9094> GenerateDispatchStub +00007FA12B396300 18 stub<9095> AllocateTemporaryEntryPoints +00007FA12B396318 18 stub<9096> AllocateTemporaryEntryPoints +00007FA12B3A9800 2c instance class System.Linq.Expressions.ParameterExpression [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::System.Linq.Expressions.IParameterProvider.GetParameter(int32)[QuickJitted] +00007FA12B396330 18 stub<9097> AllocateTemporaryEntryPoints +00007FA1277F95C0 18 stub<9098> GenerateResolveStub +00007FA1277C57C0 20 stub<9099> GenerateDispatchStub +00007FA12B3A9840 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::Add(!0,!1)[QuickJitted] +00007FA12B3A9890 9a0 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12B3AA250 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::GetBucket(uint32)[QuickJitted] +00007FA12B396360 18 stub<9100> AllocateTemporaryEntryPoints +00007FA12B396378 18 stub<9101> AllocateTemporaryEntryPoints +00007FA12B396390 120 stub<9102> AllocateTemporaryEntryPoints +00007FA12B3964B0 120 stub<9103> AllocateTemporaryEntryPoints +00007FA12B3965D0 18 stub<9104> AllocateTemporaryEntryPoints +00007FA12B3965E8 18 stub<9105> AllocateTemporaryEntryPoints +00007FA12B3AA2C0 2f instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::ContainsKey(!0)[QuickJitted] +00007FA12B396600 18 stub<9106> AllocateTemporaryEntryPoints +00007FA12B396618 18 stub<9107> AllocateTemporaryEntryPoints +00007FA12B396630 18 stub<9108> AllocateTemporaryEntryPoints +00007FA12B3AA310 5bb instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::FindValue(!0)[QuickJitted] +00007FA12B396648 18 stub<9109> AllocateTemporaryEntryPoints +00007FA12B396660 18 stub<9110> AllocateTemporaryEntryPoints +00007FA12B396660 60 stub<9111> AllocateTemporaryEntryPoints +00007FA1277C1140 18 stub<9112> GenerateLookupStub +00007FA1277C1160 18 stub<9113> GenerateLookupStub +00007FA1277F9630 18 stub<9114> GenerateResolveStub +00007FA1277F96A0 18 stub<9115> GenerateResolveStub +00007FA1277C57E0 20 stub<9116> GenerateDispatchStub +00007FA1277C5800 20 stub<9117> GenerateDispatchStub +00007FA12B396720 18 stub<9118> AllocateTemporaryEntryPoints +00007FA12B396738 18 stub<9119> AllocateTemporaryEntryPoints +00007FA12B396750 18 stub<9120> AllocateTemporaryEntryPoints +00007FA12B3AA8F0 a6 instance !1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::get_Item(!0)[QuickJitted] +00007FA12B396768 30 stub<9121> AllocateTemporaryEntryPoints +00007FA12B3AA9B0 8e int32 [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterProviderExtensions::IndexOf(class System.Linq.Expressions.IParameterProvider,class System.Linq.Expressions.ParameterExpression)[QuickJitted] +00007FA1277C5820 20 stub<9122> GenerateDispatchStub +00007FA1277C5840 20 stub<9123> GenerateDispatchStub +00007FA1277C5860 20 stub<9124> GenerateDispatchStub +00007FA12B396798 60 stub<9125> AllocateTemporaryEntryPoints +00007FA12B3967F8 18 stub<9126> AllocateTemporaryEntryPoints +00007FA12B396810 18 stub<9127> AllocateTemporaryEntryPoints +00007FA12B396810 48 stub<9128> AllocateTemporaryEntryPoints +00007FA12B396858 90 stub<9129> AllocateTemporaryEntryPoints +00007FA12B3AAA60 478 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitBinaryExpression(class System.Linq.Expressions.Expression,valuetype System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags)[QuickJitted] +00007FA12B3AAF00 153 instance bool [System.Linq.Expressions] System.Linq.Expressions.BinaryExpression::get_IsLifted()[QuickJitted] +00007FA128660E80 41 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method4(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3AB070 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Writable()[QuickJitted] +00007FA12B3AB0A0 32 instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling]::GetValueOrDefault(!0)[QuickJitted] +00007FA12B3AB4F0 2c5 instance class [System.Runtime]System.Collections.IDictionary [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewDictionary(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract,bool&)[QuickJitted] +00007FA12B3AB7E0 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ObjectConstructor`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_OverrideCreator()[QuickJitted] +00007FA12B3AB820 1f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_ShouldCreateWrapper()[QuickJitted] +00007FA1277C1180 18 stub<9130> GenerateLookupStub +00007FA128660F30 25d object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method5(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12B3AC380 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::set_ParameterizedCreator(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ObjectConstructor`1)[QuickJitted] +00007FA12B3AB860 ade instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateDictionary(class [System.Runtime]System.Collections.IDictionary,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,string)[QuickJitted] +00007FA12B3AC3D0 7a instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_CreatorParameters()[QuickJitted] +00007FA12B3AC460 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_KeyContract()[QuickJitted] +00007FA12B3AC4A0 5d instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPrimitiveContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePrimitiveContract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3AC520 1ea instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateConstructorParameters(class [System.Runtime]System.Reflection.ConstructorInfo,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection)[QuickJitted] +00007FA12B3968E8 5e8 stub<9131> AllocateTemporaryEntryPoints +00007FA12B3AC730 82 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::MatchProperty(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection,string,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B396ED0 c0 stub<9132> AllocateTemporaryEntryPoints +00007FA12B398000 90 stub<9133> AllocateTemporaryEntryPoints +00007FA12B398090 a8 stub<9134> AllocateTemporaryEntryPoints +00007FA12B398138 18 stub<9135> AllocateTemporaryEntryPoints +00007FA12B398150 78 stub<9136> AllocateTemporaryEntryPoints +00007FA12B3981C8 18 stub<9137> AllocateTemporaryEntryPoints +00007FA12B3AC7D0 a8 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPrimitiveContract::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3AC890 61a instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePropertyFromConstructorParameter(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class [System.Runtime]System.Reflection.ParameterInfo)[QuickJitted] +00007FA12B3ACED0 21 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPrimitiveContract::set_TypeCode(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode)[QuickJitted] +00007FA12B3ACF10 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.Required]::get_HasValue()[QuickJitted] +00007FA12B3ACF40 337 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPrimitiveContract::.cctor()[QuickJitted] +00007FA12B3AD2A0 20 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_IsReference()[QuickJitted] +00007FA12B3AD2E0 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::.ctor()[QuickJitted] +00007FA12B3AD320 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_NullValueHandling()[QuickJitted] +00007FA12B3AD360 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ReferenceLoopHandling()[QuickJitted] +00007FA12B3AD3A0 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_TypeNameHandling()[QuickJitted] +00007FA12B3AD3E0 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA1277C5880 20 stub<9138> GenerateDispatchStub +00007FA12B3AD5C0 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::set_Item(!0,!1)[QuickJitted] +00007FA1277C11A0 18 stub<9139> GenerateLookupStub +00007FA12B398228 60 stub<9140> AllocateTemporaryEntryPoints +00007FA12B3AD610 12d instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteReference(object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3AD760 b2 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ResolveIsReference(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3AD830 1d instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_IsReference()[QuickJitted] +00007FA12B3AD870 29 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.PreserveReferencesHandling,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.PreserveReferencesHandling)[QuickJitted] +00007FA12B398288 18 stub<9141> AllocateTemporaryEntryPoints +00007FA12B3AD8B0 9a0 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12B3AE270 5f6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeValue(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3AE8B0 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::Initialize(int32)[QuickJitted] +00007FA12B3982A0 60 stub<9142> AllocateTemporaryEntryPoints +00007FA12B398300 60 stub<9143> AllocateTemporaryEntryPoints +00007FA1277C11C0 18 stub<9144> GenerateLookupStub +00007FA12B3AE9B0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::GetBucket(uint32)[QuickJitted] +00007FA1277C11E0 18 stub<9145> GenerateLookupStub +00007FA12B3AEA20 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::Resize()[QuickJitted] +00007FA12B3AEA70 68f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeObject(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3AF140 115 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::OnSerializing(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,object)[QuickJitted] +00007FA12B3AF270 10d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::InvokeOnSerializing(object,valuetype [System.Runtime]System.Runtime.Serialization.StreamingContext)[QuickJitted] +00007FA12B3AF3A0 143 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteObjectStart(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3AF500 52 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteStartObject()[QuickJitted] +00007FA12B3AF570 2f1 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteType(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameHandling,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3AF880 29 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameHandling,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameHandling)[QuickJitted] +00007FA1277C1200 18 stub<9146> GenerateLookupStub +00007FA1277F9710 18 stub<9147> GenerateResolveStub +00007FA1277C58A0 20 stub<9148> GenerateDispatchStub +00007FA12B3AF8C0 47f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::CalculatePropertyValues(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract&,object&)[QuickJitted] +00007FA12B3AFD60 16b instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldSerialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[QuickJitted] +00007FA12B3AFEF0 1c instance class [System.Runtime]System.Predicate`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ShouldSerialize()[QuickJitted] +00007FA12B3AFF20 16b instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::IsSpecified(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[QuickJitted] +00007FA12B3B00B0 1c instance class [System.Runtime]System.Predicate`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_GetIsSpecified()[QuickJitted] +00007FA12B3B00E0 4c5 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::Resize(int32,bool)[QuickJitted] +00007FA12B398360 18 stub<9149> AllocateTemporaryEntryPoints +00007FA12B3B05D0 5c instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12B398378 18 stub<9150> AllocateTemporaryEntryPoints +00007FA12B398390 18 stub<9151> AllocateTemporaryEntryPoints +00007FA12B3983A8 18 stub<9152> AllocateTemporaryEntryPoints +00007FA12B3B0640 5bb instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.Vendors.Newtonsoft.Json.ReadType]::FindValue(!0)[QuickJitted] +00007FA12B3983C0 18 stub<9153> AllocateTemporaryEntryPoints +00007FA12B3983D8 18 stub<9154> AllocateTemporaryEntryPoints +00007FA12B3983F0 78 stub<9155> AllocateTemporaryEntryPoints +00007FA12B398468 a8 stub<9156> AllocateTemporaryEntryPoints +00007FA12B398510 7c8 stub<9157> AllocateTemporaryEntryPoints +00007FA12B398CD8 30 stub<9158> AllocateTemporaryEntryPoints +00007FA12B398D08 180 stub<9159> AllocateTemporaryEntryPoints +00007FA12B398E88 18 stub<9160> AllocateTemporaryEntryPoints +00007FA12B398EA0 18 stub<9161> AllocateTemporaryEntryPoints +00007FA12B39A000 2b8 stub<9162> AllocateTemporaryEntryPoints +00007FA12B39A2B8 c0 stub<9163> AllocateTemporaryEntryPoints +00007FA12B39A378 c0 stub<9164> AllocateTemporaryEntryPoints +00007FA12B39A438 18 stub<9165> AllocateTemporaryEntryPoints +00007FA12B3B0C20 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::set_KeyContract(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[QuickJitted] +00007FA12B3B0C70 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemContract()[QuickJitted] +00007FA1277F9780 18 stub<9166> GenerateResolveStub +00007FA12B39A450 18 stub<9167> AllocateTemporaryEntryPoints +00007FA12B39A468 18 stub<9168> AllocateTemporaryEntryPoints +00007FA1277C58C0 20 stub<9169> GenerateDispatchStub +00007FA12B39A480 48 stub<9170> AllocateTemporaryEntryPoints +00007FA12B39A4C8 60 stub<9171> AllocateTemporaryEntryPoints +00007FA12B39A528 a8 stub<9172> AllocateTemporaryEntryPoints +00007FA12B39A5D0 18 stub<9173> AllocateTemporaryEntryPoints +00007FA12B39A5E8 390 stub<9174> AllocateTemporaryEntryPoints +00007FA12B39A978 30 stub<9175> AllocateTemporaryEntryPoints +00007FA12B39A9A8 18 stub<9176> AllocateTemporaryEntryPoints +00007FA12B39A9C0 30 stub<9177> AllocateTemporaryEntryPoints +00007FA12B39A9F0 30 stub<9178> AllocateTemporaryEntryPoints +00007FA128661200 32 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method6(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B39AA20 30 stub<9179> AllocateTemporaryEntryPoints +00007FA12B39AA50 18 stub<9180> AllocateTemporaryEntryPoints +00007FA12B39AA68 30 stub<9181> AllocateTemporaryEntryPoints +00007FA12B39AA98 30 stub<9182> AllocateTemporaryEntryPoints +00007FA12B39AAC8 30 stub<9183> AllocateTemporaryEntryPoints +00007FA12B39AAF8 30 stub<9184> AllocateTemporaryEntryPoints +00007FA12B39AB28 18 stub<9185> AllocateTemporaryEntryPoints +00007FA12B39AB40 30 stub<9186> AllocateTemporaryEntryPoints +00007FA12B3B0CA0 bd instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteProperty(object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B39AB70 168 stub<9187> AllocateTemporaryEntryPoints +00007FA12B3B0D80 29 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling)[QuickJitted] +00007FA12B39ACD8 90 stub<9188> AllocateTemporaryEntryPoints +00007FA12B39AD68 48 stub<9189> AllocateTemporaryEntryPoints +00007FA12B39ADB0 18 stub<9190> AllocateTemporaryEntryPoints +00007FA12B39ADC8 18 stub<9191> AllocateTemporaryEntryPoints +00007FA12B39C000 288 stub<9192> AllocateTemporaryEntryPoints +00007FA12B39C288 18 stub<9193> AllocateTemporaryEntryPoints +00007FA12B39C2A0 90 stub<9194> AllocateTemporaryEntryPoints +00007FA12B39C330 a8 stub<9195> AllocateTemporaryEntryPoints +00007FA12B39C3D8 18 stub<9196> AllocateTemporaryEntryPoints +00007FA12B39C3F0 60 stub<9197> AllocateTemporaryEntryPoints +00007FA12B3B0DC0 3bc instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::CheckForCircularReference(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B39C450 150 stub<9198> AllocateTemporaryEntryPoints +00007FA12B3B11B0 75 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::WritePropertyName(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter)[QuickJitted] +00007FA12B3B1240 11d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WritePropertyName(string,bool)[QuickJitted] +00007FA12B39C5A0 30 stub<9199> AllocateTemporaryEntryPoints +00007FA12B3B1380 122 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializePrimitive(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPrimitiveContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3B14C0 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPrimitiveContract::get_TypeCode()[QuickJitted] +00007FA128661290 1a object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method7(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B3B14F0 b5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemContract(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[QuickJitted] +00007FA12B3B15C0 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ItemConverter()[QuickJitted] +00007FA12B3B15F0 41f instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureType(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,object,class [System.Runtime]System.Globalization.CultureInfo,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3B1A40 14da void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode,object)[QuickJitted] +00007FA12B3B3040 2d class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetObjectType(object)[QuickJitted] +00007FA12B3B3090 65 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(string)[QuickJitted] +00007FA12B3B3110 5a instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadAsDouble()[QuickJitted] +00007FA12B3B3190 a2 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteEscapedString(string,bool)[QuickJitted] +00007FA12B3B3250 43 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::EnsureWriteBuffer()[QuickJitted] +00007FA12B3B32B0 408 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadNumberValue(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[QuickJitted] +00007FA12B39C5D0 48 stub<9200> AllocateTemporaryEntryPoints +00007FA12B39C618 18 stub<9201> AllocateTemporaryEntryPoints +00007FA12B39C630 18 stub<9202> AllocateTemporaryEntryPoints +00007FA12B3B3790 5f0 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptString(class [System.Runtime]System.IO.TextWriter,string,char,bool,bool[],valuetype Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling,class Datadog.Trace.Vendors.Newtonsoft.Json.IArrayPool`1,char[]&)[QuickJitted] +00007FA12B39C648 18 stub<9203> AllocateTemporaryEntryPoints +00007FA12B39C660 18 stub<9204> AllocateTemporaryEntryPoints +00007FA12B39C678 18 stub<9205> AllocateTemporaryEntryPoints +00007FA12B39C690 18 stub<9206> AllocateTemporaryEntryPoints +00007FA12B3B3DC0 f0 int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JavaScriptUtils::FirstCharToEscape(string,bool[],valuetype Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling)[QuickJitted] +00007FA12B3B3ED0 174 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::System.Collections.IDictionary.set_Item(object,object)[QuickJitted] +00007FA12B3B4080 34 void [System.Private.CoreLib] System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow(object,valuetype System.ExceptionArgument)[QuickJitted] +00007FA12B3B40D0 3b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::set_Item(!0,!1)[QuickJitted] +00007FA12B39C6A8 60 stub<9207> AllocateTemporaryEntryPoints +00007FA128661310 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method8(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B4130 3e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValueDelimiter()[QuickJitted] +00007FA12B39C708 30 stub<9208> AllocateTemporaryEntryPoints +00007FA12B39C738 18 stub<9209> AllocateTemporaryEntryPoints +00007FA12B3B4190 9b5 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA1286613A0 1b object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method9(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B3B4B70 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::Initialize(int32)[QuickJitted] +00007FA12B3B4C70 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::GetBucket(uint32)[QuickJitted] +00007FA1277F97F0 18 stub<9210> GenerateResolveStub +00007FA1277C58E0 20 stub<9211> GenerateDispatchStub +00007FA1277F9860 18 stub<9212> GenerateResolveStub +00007FA1277C5900 20 stub<9213> GenerateDispatchStub +00007FA128661420 46 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method10(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B4CE0 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::Resize()[QuickJitted] +00007FA12B3B4D30 36 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(int64)[QuickJitted] +00007FA12B3B4D80 d3 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteIntegerValue(int64)[QuickJitted] +00007FA12B3B4E70 cb instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteIntegerValue(uint64,bool)[QuickJitted] +00007FA12B39C750 90 stub<9214> AllocateTemporaryEntryPoints +00007FA12B3B4F50 4c5 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::Resize(int32,bool)[QuickJitted] +00007FA12B3B5440 144 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteNumberToBuffer(uint64,bool)[QuickJitted] +00007FA12B3B55A0 13b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserialized(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,object)[QuickJitted] +00007FA12B3B5700 f9 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteNumberToBuffer(uint32,bool)[QuickJitted] +00007FA12B3B5810 10d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserialized(object,valuetype [System.Runtime]System.Runtime.Serialization.StreamingContext)[QuickJitted] +00007FA12B3B5940 113 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldSetPropertyValue(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,object)[QuickJitted] +00007FA12B3B5A70 209 int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.MathUtils::IntLength(uint64)[QuickJitted] +00007FA12B3B5C90 170 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExpressionValueProvider::SetValue(object,object)[QuickJitted] +00007FA12B39C7E0 18 stub<9215> AllocateTemporaryEntryPoints +00007FA12B39C7F8 18 stub<9216> AllocateTemporaryEntryPoints +00007FA1286614D0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method11(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B39C810 18 stub<9217> AllocateTemporaryEntryPoints +00007FA12B39C828 18 stub<9218> AllocateTemporaryEntryPoints +00007FA12B39C840 18 stub<9219> AllocateTemporaryEntryPoints +00007FA12B39C858 18 stub<9220> AllocateTemporaryEntryPoints +00007FA12B39C870 30 stub<9221> AllocateTemporaryEntryPoints +00007FA12B39C8A0 18 stub<9222> AllocateTemporaryEntryPoints +00007FA12B3B5E30 1a9 instance class [System.Runtime]System.Action`2 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateSet(class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA12B39C8B8 18 stub<9223> AllocateTemporaryEntryPoints +00007FA12B39C8D0 18 stub<9224> AllocateTemporaryEntryPoints +00007FA12B39C8E8 18 stub<9225> AllocateTemporaryEntryPoints +00007FA12B39C900 60 stub<9226> AllocateTemporaryEntryPoints +00007FA12B39C960 f0 stub<9227> AllocateTemporaryEntryPoints +00007FA12B39CA50 18 stub<9228> AllocateTemporaryEntryPoints +00007FA128661560 1a object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method12(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B3B6000 3ef instance class [System.Runtime]System.Action`2 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::CreateSet(class [System.Runtime]System.Reflection.PropertyInfo)[QuickJitted] +00007FA12B3B6410 27 class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionDelegateFactory [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::get_Instance()[QuickJitted] +00007FA12B3B6450 47 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::.cctor()[QuickJitted] +00007FA12B3B64B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::.ctor()[QuickJitted] +00007FA12B39CA68 18 stub<9229> AllocateTemporaryEntryPoints +00007FA12B39CA80 18 stub<9230> AllocateTemporaryEntryPoints +00007FA12B39CA98 30 stub<9231> AllocateTemporaryEntryPoints +00007FA12B39CAC8 30 stub<9232> AllocateTemporaryEntryPoints +00007FA12B39CAF8 30 stub<9233> AllocateTemporaryEntryPoints +00007FA12B39CB28 60 stub<9234> AllocateTemporaryEntryPoints +00007FA1286615E0 44 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method13(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B64F0 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(int32)[QuickJitted] +00007FA12B3B6540 106 instance class [System.Runtime]System.Action`2 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateSet(class [System.Runtime]System.Reflection.PropertyInfo)[QuickJitted] +00007FA12B3B6660 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory+<>c__DisplayClass9_0`1[System.__Canon]::.ctor()[QuickJitted] +00007FA12B3B66A0 b1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteIntegerValue(int32)[QuickJitted] +00007FA12B3B6770 4b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory+<>c__DisplayClass9_0`1[System.__Canon]::b__0(!0,object)[QuickJitted] +00007FA12B3B67D0 26 instance void [Datadog.Trace] Datadog.Trace.Agent.Api+ApiResponse::set_RateByService(class [System.Collections]System.Collections.Generic.Dictionary`2)[QuickJitted] +00007FA12B3B6810 1c instance class [System.Runtime]System.Action`2 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_SetIsSpecified()[QuickJitted] +00007FA12B3B6840 1b instance class [System.Collections]System.Collections.Generic.Dictionary`2 [Datadog.Trace] Datadog.Trace.Agent.Api+ApiResponse::get_RateByService()[QuickJitted] +00007FA1277C1220 18 stub<9235> GenerateLookupStub +00007FA1277F98D0 18 stub<9236> GenerateResolveStub +00007FA12B3B6870 32 instance void [Datadog.Trace] Datadog.Trace.TracerManagerFactory+<>c__DisplayClass8_0::b__0(class [System.Collections]System.Collections.Generic.Dictionary`2)[QuickJitted] +00007FA1277C5920 20 stub<9237> GenerateDispatchStub +00007FA12B3B68C0 2d instance void [Datadog.Trace] Datadog.Trace.Sampling.TraceSampler::SetDefaultSampleRates(class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2)[QuickJitted] +00007FA12B39CB88 138 stub<9238> AllocateTemporaryEntryPoints +00007FA1277C1240 18 stub<9239> GenerateLookupStub +00007FA1277C1260 18 stub<9240> GenerateLookupStub +00007FA1277C1280 18 stub<9241> GenerateLookupStub +00007FA12B3B6910 3e1 instance void [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::SetDefaultSampleRates(class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2)[QuickJitted] +00007FA12B3B6D30 22 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::get_Count()[QuickJitted] +00007FA1277F9940 18 stub<9242> GenerateResolveStub +00007FA1277C5940 20 stub<9243> GenerateDispatchStub +00007FA12B3B6D70 27 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::.ctor(int32)[QuickJitted] +00007FA12B39CCC0 60 stub<9244> AllocateTemporaryEntryPoints +00007FA12B3B6DB0 a0 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::Initialize(int32)[QuickJitted] +00007FA128661690 182 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method14(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12B3B6E70 e4 instance class System.Collections.Generic.IEnumerator`1> [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::System.Collections.Generic.IEnumerable>.GetEnumerator()[QuickJitted] +00007FA12B3B6F70 5b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.Single]::.ctor(class System.Collections.Generic.Dictionary`2,int32)[QuickJitted] +00007FA128661880 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method15(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B6FE0 20 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemIsReference()[QuickJitted] +00007FA12B3B7020 1ba instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.Single]::MoveNext()[QuickJitted] +00007FA12B3B7200 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemReferenceLoopHandling()[QuickJitted] +00007FA12B3B7240 3f instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Single]::.ctor(!0,!1)[QuickJitted] +00007FA12B3B72A0 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemTypeNameHandling()[QuickJitted] +00007FA12B3B72E0 38 instance valuetype System.Collections.Generic.KeyValuePair`2 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.Single]::get_Current()[QuickJitted] +00007FA12B3B7330 1f instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Single]::get_Key()[QuickJitted] +00007FA12B3B7370 24 instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Single]::get_Value()[QuickJitted] +00007FA128661910 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method16(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B73B0 31 instance void [System.Private.CoreLib] System.Nullable`1[System.Single]::.ctor(!0)[QuickJitted] +00007FA1277C5960 20 stub<9245> GenerateDispatchStub +00007FA1277F99B0 18 stub<9246> GenerateResolveStub +00007FA1277C5980 20 stub<9247> GenerateDispatchStub +00007FA1286619A0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method17(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B7400 26d valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey::Parse(string)[QuickJitted] +00007FA12B3B7690 a5 void [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey::.cctor()[QuickJitted] +00007FA128661A30 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method18(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B7750 3b instance void [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey::.ctor(string,string)[QuickJitted] +00007FA12B3B77A0 39 instance void [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::.ctor(!0)[QuickJitted] +00007FA12B3B77F0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::get_HasValue()[QuickJitted] +00007FA128661AC0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method19(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B7820 48 instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::get_Value()[QuickJitted] +00007FA12B3B7880 43 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::Add(!0,!1)[QuickJitted] +00007FA1277C12A0 18 stub<9248> GenerateLookupStub +00007FA12B39CD20 18 stub<9249> AllocateTemporaryEntryPoints +00007FA128661B50 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method20(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1277C12C0 18 stub<9250> GenerateLookupStub +00007FA128661BE0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method21(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B78E0 6ea instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12B3B8000 9e instance int32 [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey::GetHashCode()[QuickJitted] +00007FA128661C70 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method22(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B80C0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::GetBucket(uint32)[QuickJitted] +00007FA12B3B8130 18 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.Single]::Dispose()[QuickJitted] +00007FA1277C59A0 20 stub<9251> GenerateDispatchStub +00007FA128661D00 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method23(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B8160 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::MoveNext()[QuickJitted] +00007FA12B3B81A0 b6 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::ResolvedNullValueHandling(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3B8270 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_ItemNullValueHandling()[QuickJitted] +00007FA12B3B82B0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B3B8430 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::.cctor()[QuickJitted] +00007FA12B39CD50 18 stub<9252> AllocateTemporaryEntryPoints +00007FA12B3B84B0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::ExecutionContextCallback(object)[QuickJitted] +00007FA128661D90 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method24(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B84F0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.TracerManager+d__57]::MoveNext()[QuickJitted] +00007FA12B3B8530 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExtensionDataGetter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_ExtensionDataGetter()[QuickJitted] +00007FA12B3B8570 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.TracerManager+d__57]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B3B86F0 155 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteEnd(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA12B3B8870 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.TracerManager+d__57]::.cctor()[QuickJitted] +00007FA12B39CD68 18 stub<9253> AllocateTemporaryEntryPoints +00007FA12B3B88F0 115 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::OnSerialized(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,object)[QuickJitted] +00007FA12B3B8A20 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.TracerManager+d__57]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B3B8A60 69 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WritePropertyName(string)[QuickJitted] +00007FA12B3B8AE0 10d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::InvokeOnSerialized(object,valuetype [System.Runtime]System.Runtime.Serialization.StreamingContext)[QuickJitted] +00007FA12B3B8C10 16b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA12B3B8DA0 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_DateTimeZoneHandling()[QuickJitted] +00007FA128661E20 16 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method25(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B3B8DD0 ca valuetype [System.Runtime]System.DateTime [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::EnsureDateTime(valuetype [System.Runtime]System.DateTime,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling)[QuickJitted] +00007FA12B3B8ED0 1c instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_DateFormatString()[QuickJitted] +00007FA12B3B8F00 14f instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValueToBuffer(valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA12B3B9070 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateFormatHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_DateFormatHandling()[QuickJitted] +00007FA12B3B90A0 2de int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeString(char[],int32,valuetype [System.Runtime]System.DateTime,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.DateTimeKind,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateFormatHandling)[QuickJitted] +00007FA128661EA0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method26(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B93A0 270 int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::WriteDefaultIsoDate(char[],int32,valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA128661F30 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method27(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B9630 1e8 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::GetDateValues(valuetype [System.Runtime]System.DateTime,int32&,int32&,int32&)[QuickJitted] +00007FA128661FC0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method28(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B9830 9b void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::CopyIntToCharArray(char[],int32,int32,int32)[QuickJitted] +00007FA12B3B98E0 35 valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::GetUtcOffset(valuetype [System.Runtime]System.DateTime)[QuickJitted] +00007FA12B39CD80 18 stub<9254> AllocateTemporaryEntryPoints +00007FA128662050 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method29(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B9930 14a int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeOffset(char[],int32,valuetype [System.Runtime]System.TimeSpan,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateFormatHandling)[QuickJitted] +00007FA12B3B9A90 51 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(bool)[QuickJitted] +00007FA1286620E0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method30(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B9B00 3d string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::ToString(bool)[QuickJitted] +00007FA12B3B9B60 44 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValueInternal(string,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[QuickJitted] +00007FA12B3B9BC0 7d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(class [System.Runtime]System.Uri)[QuickJitted] +00007FA12B3B9C60 b6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3B9D30 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteNull()[QuickJitted] +00007FA128662170 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method31(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B9D90 52 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteStartArray()[QuickJitted] +00007FA12B3B9E00 1c instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_GlobalTags()[QuickJitted] +00007FA12B3B9E30 1c instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettings::get_IntegrationName()[QuickJitted] +00007FA128662200 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method32(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B9E60 76 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(float64)[QuickJitted] +00007FA12B3B9EF0 1b instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.FloatFormatHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_FloatFormatHandling()[QuickJitted] +00007FA12B3B9F20 1f instance char [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::get_QuoteChar()[QuickJitted] +00007FA128662290 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method33(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3B9F60 a0 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::ToString(float64,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.FloatFormatHandling,char,bool)[QuickJitted] +00007FA12B39CD98 120 stub<9255> AllocateTemporaryEntryPoints +00007FA12B3BA020 6f char[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BufferUtils::EnsureBufferSize(class Datadog.Trace.Vendors.Newtonsoft.Json.IArrayPool`1,int32,char[])[QuickJitted] +00007FA12B39CEB8 108 stub<9256> AllocateTemporaryEntryPoints +00007FA12B39E000 d8 stub<9257> AllocateTemporaryEntryPoints +00007FA12B39E0D8 18 stub<9258> AllocateTemporaryEntryPoints +00007FA12B39E0F0 18 stub<9259> AllocateTemporaryEntryPoints +00007FA12B3BA0B0 98 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::EnsureDecimalPlace(float64,string)[QuickJitted] +00007FA12B3BA160 2f int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringUtils::IndexOf(string,char)[QuickJitted] +00007FA12B3BA1B0 c2 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::EnsureFloatFormat(float64,string,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.FloatFormatHandling,char,bool)[QuickJitted] +00007FA128662320 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method34(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3BA290 ba instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteIntegerValue(uint32,bool)[QuickJitted] +00007FA12B3BA360 22b void [Datadog.Trace] Datadog.Trace.TracerManager::WriteAsmInfo(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter)[QuickJitted] +00007FA12B3BA5B0 1b instance int32 [Datadog.Trace] Datadog.Trace.AppSec.SecuritySettings::get_TraceRateLimit()[QuickJitted] +00007FA12B3BA5E0 1c instance string [Datadog.Trace] Datadog.Trace.AppSec.SecuritySettings::get_Rules()[QuickJitted] +00007FA1277C12E0 18 stub<9260> GenerateLookupStub +00007FA12B3BA610 53 instance string [Datadog.Trace] Datadog.Trace.AppSec.Security::get_DdlibWafVersion()[QuickJitted] +00007FA12B3BA680 4c instance bool [Datadog.Trace] Datadog.Trace.AppSec.Security::get_WafExportsErrorHappened()[QuickJitted] +00007FA12B39E108 18 stub<9261> AllocateTemporaryEntryPoints +00007FA12B39E120 18 stub<9262> AllocateTemporaryEntryPoints +00007FA12B3BA6E0 1c instance bool [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::get_DeduplicationEnabled()[QuickJitted] +00007FA12B39E138 18 stub<9263> AllocateTemporaryEntryPoints +00007FA12B3BA710 1c instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::get_EnabledIntegrationNames()[QuickJitted] +00007FA12B39E150 18 stub<9264> AllocateTemporaryEntryPoints +00007FA12B3BA740 1c instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::get_ValidationErrors()[QuickJitted] +00007FA12B39E168 18 stub<9265> AllocateTemporaryEntryPoints +00007FA12B3BA770 1c instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableExporterSettings::get_ValidationWarnings()[QuickJitted] +00007FA12B3BA7A0 1f2 class [System.Runtime]System.Reflection.MemberInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberInfoFromType(class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.MemberInfo)[QuickJitted] +00007FA12B39E180 18 stub<9266> AllocateTemporaryEntryPoints +00007FA12B3BA9B0 29 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::Close()[QuickJitted] +00007FA1277C1300 18 stub<9267> GenerateLookupStub +00007FA12B3BA9F0 8b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::CloseBufferAndWriter()[QuickJitted] +00007FA12B39E198 18 stub<9268> AllocateTemporaryEntryPoints +00007FA12B3BAA90 1c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_CloseOutput()[QuickJitted] +00007FA1277F9A20 18 stub<9269> GenerateResolveStub +00007FA1277C59C0 20 stub<9270> GenerateDispatchStub +00007FA12B3BAAC0 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.TracerManager+d__57]::ClearStateUponCompletion()[QuickJitted] +00007FA12B3BAB50 5d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::ClearStateUponCompletion()[QuickJitted] +00007FA12B3BABD0 a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::ClearStateUponCompletion()[QuickJitted] +00007FA12B3BAC90 83 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::ClearStateUponCompletion()[QuickJitted] +00007FA1286623B0 b3 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method35(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12B3BAD30 5d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::ClearStateUponCompletion()[QuickJitted] +00007FA12B3BADB0 63 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::ClearStateUponCompletion()[QuickJitted] +00007FA12B3BAE30 300 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::CreateArrayContract(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3BB150 f97 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3BC110 1f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::get_IsArray()[QuickJitted] +00007FA12B3BC150 1f instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::get_CollectionItemType()[QuickJitted] +00007FA12B3BC190 9f class [System.Runtime]System.Reflection.ConstructorInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3BC250 25 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::set_CanDeserialize(bool)[QuickJitted] +00007FA12B39E1B0 30 stub<9271> AllocateTemporaryEntryPoints +00007FA12B3BC290 403 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils::TryBuildImmutableForArrayContract(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ObjectConstructor`1&)[QuickJitted] +00007FA12B3BC6B0 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+<>c__DisplayClass24_0::.ctor()[QuickJitted] +00007FA12B3BC6F0 41 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils+<>c__DisplayClass24_0::b__0(class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo)[QuickJitted] +00007FA12B39E1E0 18 stub<9272> AllocateTemporaryEntryPoints +00007FA1286624D0 42 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method36(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B39E1F8 18 stub<9273> AllocateTemporaryEntryPoints +00007FA12B39E210 18 stub<9274> AllocateTemporaryEntryPoints +00007FA12B39E228 18 stub<9275> AllocateTemporaryEntryPoints +00007FA12B39E240 18 stub<9276> AllocateTemporaryEntryPoints +00007FA12B39E258 18 stub<9277> AllocateTemporaryEntryPoints +00007FA12B39E270 18 stub<9278> AllocateTemporaryEntryPoints +00007FA12B39E288 18 stub<9279> AllocateTemporaryEntryPoints +00007FA12B39E2A0 360 stub<9280> AllocateTemporaryEntryPoints +00007FA128662570 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method37(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B39E600 30 stub<9281> AllocateTemporaryEntryPoints +00007FA128662600 42 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method38(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B39E630 18 stub<9282> AllocateTemporaryEntryPoints +00007FA12B39E648 60 stub<9283> AllocateTemporaryEntryPoints +00007FA12B3BC750 20 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ItemIsReference()[QuickJitted] +00007FA12B3BC790 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ItemReferenceLoopHandling()[QuickJitted] +00007FA12B3BC7D0 1f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::get_IsMultidimensionalArray()[QuickJitted] +00007FA12B39E6A8 18 stub<9284> AllocateTemporaryEntryPoints +00007FA1277C1320 18 stub<9285> GenerateLookupStub +00007FA12B3BC810 472 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeList(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class [System.Runtime]System.Collections.IEnumerable,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3BCCD0 2d2 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteStartArray(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[QuickJitted] +00007FA12B3BCFC0 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ItemTypeNameHandling()[QuickJitted] +00007FA12B3BD000 178 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::Grow()[QuickJitted] +00007FA1286626A0 d3 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method39(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA1277C59E0 20 stub<9286> GenerateDispatchStub +00007FA1277C5A00 20 stub<9287> GenerateDispatchStub +00007FA1277C5A20 20 stub<9288> GenerateDispatchStub +00007FA12B3BD190 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_FinalItemContract()[QuickJitted] +00007FA1286627E0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method40(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B39E6C0 18 stub<9289> AllocateTemporaryEntryPoints +00007FA12B39E6D8 18 stub<9290> AllocateTemporaryEntryPoints +00007FA128662870 19 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method41(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA1286628F0 47 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method42(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1286629A0 19 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method43(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA128662A20 49 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method44(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3BD1D0 67 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA128662AD0 49 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method45(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128662B80 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method46(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1277C5A40 20 stub<9291> GenerateDispatchStub +00007FA12B39E6F0 18 stub<9292> AllocateTemporaryEntryPoints +00007FA128662C10 2e object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method47(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B39E708 18 stub<9293> AllocateTemporaryEntryPoints +00007FA12B39E720 18 stub<9294> AllocateTemporaryEntryPoints +00007FA12B39E738 18 stub<9295> AllocateTemporaryEntryPoints +00007FA12B39E750 18 stub<9296> AllocateTemporaryEntryPoints +00007FA12B39E768 18 stub<9297> AllocateTemporaryEntryPoints +00007FA12B39E780 18 stub<9298> AllocateTemporaryEntryPoints +00007FA12B39E798 18 stub<9299> AllocateTemporaryEntryPoints +00007FA128662CA0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method48(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128662D30 2e object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method49(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B39E7B0 18 stub<9300> AllocateTemporaryEntryPoints +00007FA12B39E7C8 18 stub<9301> AllocateTemporaryEntryPoints +00007FA128662DC0 5d object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method50(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA128662E80 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method51(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128662F10 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method52(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128662FA0 42 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method53(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA128663040 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method54(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1286630D0 42 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method55(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B39E7E0 300 stub<9302> AllocateTemporaryEntryPoints +00007FA12B39EAE0 18 stub<9303> AllocateTemporaryEntryPoints +00007FA12B39EAF8 60 stub<9304> AllocateTemporaryEntryPoints +00007FA12B39EB58 60 stub<9305> AllocateTemporaryEntryPoints +00007FA12B39EBB8 120 stub<9306> AllocateTemporaryEntryPoints +00007FA12B39ECD8 18 stub<9307> AllocateTemporaryEntryPoints +00007FA12B39ECF0 60 stub<9308> AllocateTemporaryEntryPoints +00007FA128663170 22 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method56(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA1286631F0 85 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method57(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12B3BD250 2d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::set_OverrideCreator(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ObjectConstructor`1)[QuickJitted] +00007FA12B3BD2A0 4a instance class System.Collections.IEnumerator [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Telemetry.TelemetryValue]::System.Collections.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12B3BD300 4a instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.Telemetry.TelemetryValue]::.ctor(class System.Collections.Generic.List`1)[QuickJitted] +00007FA12B3BD360 99 instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.Telemetry.TelemetryValue]::MoveNext()[QuickJitted] +00007FA12B3BD410 6b instance object [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.Telemetry.TelemetryValue]::System.Collections.IEnumerator.get_Current()[QuickJitted] +00007FA12B3BD490 37 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.Telemetry.TelemetryValue]::get_Current()[QuickJitted] +00007FA1286632E0 44 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method58(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128663390 16 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method59(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA128663410 45 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method60(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3BD4E0 50 instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.Telemetry.TelemetryValue]::MoveNextRare()[QuickJitted] +00007FA12B3BD550 14 instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.Telemetry.TelemetryValue]::Dispose()[QuickJitted] +00007FA1286634C0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method61(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1277C5A60 20 stub<9309> GenerateDispatchStub +00007FA12B3BD580 21 instance string [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::get_ApiVersion()[QuickJitted] +00007FA12B3BD5C0 1c instance string [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryData::get_RequestType()[QuickJitted] +00007FA1277F9A90 18 stub<9310> GenerateResolveStub +00007FA1277C5A80 20 stub<9311> GenerateDispatchStub +00007FA12B39ED50 18 stub<9312> AllocateTemporaryEntryPoints +00007FA12B39ED68 18 stub<9313> AllocateTemporaryEntryPoints +00007FA12B3BD5F0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B39ED80 18 stub<9314> AllocateTemporaryEntryPoints +00007FA12B39ED98 18 stub<9315> AllocateTemporaryEntryPoints +00007FA12B39EDB0 18 stub<9316> AllocateTemporaryEntryPoints +00007FA12B39EDC8 18 stub<9317> AllocateTemporaryEntryPoints +00007FA12B3BD690 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B39EDE0 d8 stub<9318> AllocateTemporaryEntryPoints +00007FA12B39EEB8 d8 stub<9319> AllocateTemporaryEntryPoints +00007FA12B39EF90 18 stub<9320> AllocateTemporaryEntryPoints +00007FA12B3BD730 24e class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3BD9A0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[Datadog.Trace.Telemetry.TelemetryPushResult,Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport+d__6]::.ctor()[QuickJitted] +00007FA12B3BD9E0 1f instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[Datadog.Trace.Telemetry.TelemetryPushResult]::.ctor()[QuickJitted] +00007FA12B39EFA8 18 stub<9321> AllocateTemporaryEntryPoints +00007FA12B3BDA20 1d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12B3BDA60 4a instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::get_Task()[QuickJitted] +00007FA12B460000 a8 stub<9322> AllocateTemporaryEntryPoints +00007FA12B4600A8 30 stub<9323> AllocateTemporaryEntryPoints +00007FA12B3BDAC0 45 instance valuetype System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 [System.Private.CoreLib] System.Threading.Tasks.Task`1[Datadog.Trace.Telemetry.TelemetryPushResult]::ConfigureAwait(bool)[QuickJitted] +00007FA12B3BDB20 50 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1[Datadog.Trace.Telemetry.TelemetryPushResult]::.ctor(class System.Threading.Tasks.Task`1,bool)[QuickJitted] +00007FA12B3BDB90 33 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1+ConfiguredTaskAwaiter[Datadog.Trace.Telemetry.TelemetryPushResult]::.ctor(class System.Threading.Tasks.Task`1,bool)[QuickJitted] +00007FA12B3BDBE0 32 instance valuetype System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1[Datadog.Trace.Telemetry.TelemetryPushResult]::GetAwaiter()[QuickJitted] +00007FA12B3BDC30 24 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1+ConfiguredTaskAwaiter[Datadog.Trace.Telemetry.TelemetryPushResult]::get_IsCompleted()[QuickJitted] +00007FA12B4600D8 18 stub<9324> AllocateTemporaryEntryPoints +00007FA12B3BDC70 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B4600F0 18 stub<9325> AllocateTemporaryEntryPoints +00007FA12B460108 18 stub<9326> AllocateTemporaryEntryPoints +00007FA12B3BDCC0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B460120 d8 stub<9327> AllocateTemporaryEntryPoints +00007FA12B4601F8 18 stub<9328> AllocateTemporaryEntryPoints +00007FA12B3BDD20 25d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3BDFA0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryTransportManager+d__23]::.ctor()[QuickJitted] +00007FA12B460210 18 stub<9329> AllocateTemporaryEntryPoints +00007FA12B3BDFE0 17 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12B460228 18 stub<9330> AllocateTemporaryEntryPoints +00007FA12B3BE010 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B460240 18 stub<9331> AllocateTemporaryEntryPoints +00007FA12B3BE060 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B460258 d8 stub<9332> AllocateTemporaryEntryPoints +00007FA12B460330 18 stub<9333> AllocateTemporaryEntryPoints +00007FA12B3BE0C0 267 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3BE340 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryController+d__33]::.ctor()[QuickJitted] +00007FA12B460348 18 stub<9334> AllocateTemporaryEntryPoints +00007FA12B3BE380 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B460360 18 stub<9335> AllocateTemporaryEntryPoints +00007FA12B3BE3D0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B460378 d8 stub<9336> AllocateTemporaryEntryPoints +00007FA12B460450 18 stub<9337> AllocateTemporaryEntryPoints +00007FA12B3BE430 253 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3BE6A0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__32]::.ctor()[QuickJitted] +00007FA12B460468 18 stub<9338> AllocateTemporaryEntryPoints +00007FA12B3BE6E0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12B3BE730 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3BE790 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__29]::MoveNext()[QuickJitted] +00007FA12B3BE7D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__29]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B3BE950 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__29]::.cctor()[QuickJitted] +00007FA12B460498 18 stub<9339> AllocateTemporaryEntryPoints +00007FA12B3BE9D0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__29]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B4604B0 18 stub<9340> AllocateTemporaryEntryPoints +00007FA12B3BEA10 2a instance class Datadog.Trace.Configuration.ImmutableTracerSettings [Datadog.Trace] Datadog.Trace.Tracer::get_Settings()[QuickJitted] +00007FA12B3BEA50 1f instance class Datadog.Trace.Configuration.ImmutableAzureAppServiceSettings [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_AzureAppServiceMetadata()[QuickJitted] +00007FA12B3BEA90 23 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::.ctor()[QuickJitted] +00007FA12B3BEAD0 49 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::.ctor(class Datadog.Trace.Tracer,class Datadog.Trace.AppSec.Security)[QuickJitted] +00007FA12B3BEB30 1f instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticObserver::.ctor()[QuickJitted] +00007FA12B4604C8 48 stub<9341> AllocateTemporaryEntryPoints +00007FA12B460510 18 stub<9342> AllocateTemporaryEntryPoints +00007FA12B3BEB70 174 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticManager::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12B3BED00 47 void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticManager+<>c::.cctor()[QuickJitted] +00007FA12B3BED60 1f instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticManager+<>c::.ctor()[QuickJitted] +00007FA12B460528 18 stub<9343> AllocateTemporaryEntryPoints +00007FA1277C1340 18 stub<9344> GenerateLookupStub +00007FA12B3BEDA0 b2 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticManager::Start()[QuickJitted] +00007FA12B460540 18 stub<9345> AllocateTemporaryEntryPoints +00007FA12B3BEE70 29 void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticManager::.cctor()[QuickJitted] +00007FA12B460558 60 stub<9346> AllocateTemporaryEntryPoints +00007FA12B4605B8 18 stub<9347> AllocateTemporaryEntryPoints +00007FA12B4605D0 30 stub<9348> AllocateTemporaryEntryPoints +00007FA1277C1360 18 stub<9349> GenerateLookupStub +00007FA1277C1380 18 stub<9350> GenerateLookupStub +00007FA12B460600 18 stub<9351> AllocateTemporaryEntryPoints +00007FA12B460618 18 stub<9352> AllocateTemporaryEntryPoints +00007FA12B3BEEB0 1ea instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticManager::System.IObserver.OnNext(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener)[QuickJitted] +00007FA1277F9B00 18 stub<9353> GenerateResolveStub +00007FA1277C5AA0 20 stub<9354> GenerateDispatchStub +00007FA1277C5AC0 20 stub<9355> GenerateDispatchStub +00007FA12B3BF0D0 2b instance bool [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticManager+<>c::<.ctor>b__4_0(class Datadog.Trace.DiagnosticListeners.DiagnosticObserver)[QuickJitted] +00007FA12B3BF110 19 instance bool [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticObserver::IsSubscriberEnabled()[QuickJitted] +00007FA1277F9B70 18 stub<9356> GenerateResolveStub +00007FA1277C5AE0 20 stub<9357> GenerateDispatchStub +00007FA12B3BF140 c9 instance class [System.Runtime]System.IDisposable [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticObserver::SubscribeIfMatch(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener)[QuickJitted] +00007FA12B3BF220 21 instance string [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::get_ListenerName()[QuickJitted] +00007FA1277C5B00 20 stub<9358> GenerateDispatchStub +00007FA12B3BF260 28 void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticManager::set_Instance(class Datadog.Trace.DiagnosticListeners.DiagnosticManager)[QuickJitted] +00007FA12B3BF2A0 62 instance bool [Datadog.Trace] Datadog.Trace.FrameworkDescription::IsCoreClr()[QuickJitted] +00007FA12B3BF320 20 bool [Datadog.Trace] Datadog.Trace.FrameworkDescription::IsNet5()[QuickJitted] +00007FA12B460630 90 stub<9359> AllocateTemporaryEntryPoints +00007FA12B3BF360 22d void [Datadog.Trace] Datadog.Trace.ServiceFabric.ServiceRemotingClient::StartTracing()[QuickJitted] +00007FA12B3BF5B0 58 void [Datadog.Trace] Datadog.Trace.ServiceFabric.ServiceRemotingClient::.cctor()[QuickJitted] +00007FA12B4606C0 30 stub<9360> AllocateTemporaryEntryPoints +00007FA12B3BF620 347 bool [Datadog.Trace] Datadog.Trace.ServiceFabric.ServiceRemotingHelpers::AddEventHandler(string,string,class [System.Runtime]System.EventHandler)[QuickJitted] +00007FA12B3BF990 2e bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.ServiceFabric::IsRunningInServiceFabric()[QuickJitted] +00007FA12B3BF9E0 f1 void [Datadog.Trace] Datadog.Trace.PlatformHelpers.ServiceFabric::.cctor()[QuickJitted] +00007FA12B3BFAF0 22d void [Datadog.Trace] Datadog.Trace.ServiceFabric.ServiceRemotingService::StartTracing()[QuickJitted] +00007FA12B3BFD40 58 void [Datadog.Trace] Datadog.Trace.ServiceFabric.ServiceRemotingService::.cctor()[QuickJitted] +00007FA12B3BFDB0 36 valuetype Datadog.Trace.ClrProfiler.InstrumentationDefinitions/Payload [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetAllDefinitions(valuetype Datadog.Trace.ClrProfiler.InstrumentationCategory)[QuickJitted] +00007FA1277C13A0 18 stub<9361> GenerateLookupStub +00007FA12B3BFE00 4a valuetype Datadog.Trace.ClrProfiler.InstrumentationDefinitions/Payload [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetDefinitionsArray(valuetype Datadog.Trace.ClrProfiler.InstrumentationCategory)[QuickJitted] +00007FA12B460708 18 stub<9362> AllocateTemporaryEntryPoints +00007FA12B460720 18 stub<9363> AllocateTemporaryEntryPoints +00007FA12B3BFE60 7c instance !1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.ClrProfiler.InstrumentationCategory,Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload]::get_Item(!0)[QuickJitted] +00007FA12B460738 18 stub<9364> AllocateTemporaryEntryPoints +00007FA12B460750 18 stub<9365> AllocateTemporaryEntryPoints +00007FA12B3BFF00 3c2 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.ClrProfiler.InstrumentationCategory,Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload]::FindValue(!0)[QuickJitted] +00007FA12B3C02E0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.ClrProfiler.InstrumentationCategory]::get_Default()[QuickJitted] +00007FA12B3C0320 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.ClrProfiler.InstrumentationCategory]::.cctor()[QuickJitted] +00007FA12B460768 18 stub<9366> AllocateTemporaryEntryPoints +00007FA12B460780 d8 stub<9367> AllocateTemporaryEntryPoints +00007FA12B3C03A0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Datadog.Trace.ClrProfiler.InstrumentationCategory]::.ctor()[QuickJitted] +00007FA12B3C03E0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.ClrProfiler.InstrumentationCategory]::.ctor()[QuickJitted] +00007FA12B460858 18 stub<9368> AllocateTemporaryEntryPoints +00007FA12B3C0420 27 instance bool [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Datadog.Trace.ClrProfiler.InstrumentationCategory]::Equals(!0,!0)[QuickJitted] +00007FA12B3C0460 22 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::EnumEquals(!!0,!!0)[QuickJitted] +00007FA12B3C04A0 1b instance string [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions+Payload::get_DefinitionsId()[QuickJitted] +00007FA12B3C04D0 65 void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeMethods::InitializeProfiler(string,valuetype Datadog.Trace.ClrProfiler.NativeCallTargetDefinition[])[QuickJitted] +00007FA12B460870 18 stub<9369> AllocateTemporaryEntryPoints +00007FA12B460888 108 stub<9370> AllocateTemporaryEntryPoints +00007FA12B460990 60 stub<9371> AllocateTemporaryEntryPoints +00007FA12B4609F0 18 stub<9372> AllocateTemporaryEntryPoints +00007FA12B460A08 a8 stub<9373> AllocateTemporaryEntryPoints +00007FA12B3C0550 1bb void [Samples.BuggyBits] dynamicClass::IL_STUB_PInvoke(string,Datadog.Trace.ClrProfiler.NativeCallTargetDefinition /* MT: 0x00007FA1289FA220 */[],int32)[Optimized] +00007FA12B3C0750 806 void [Samples.BuggyBits] dynamicClass::IL_STUB_StructMarshal(Datadog.Trace.ClrProfiler.NativeCallTargetDefinition /* MT: 0x00007FA1289FA220 */&,Datadog.Trace.ClrProfiler.NativeCallTargetDefinition_NativeValueType /* MT: 0x00007FA1289FA220 */*,int32,System.StubHelpers.CleanupWorkListElement /* MT: 0x00007FA12B44BE08 */&)[Optimized] +00007FA12B460AB0 18 stub<9374> AllocateTemporaryEntryPoints +00007FA12B3C0FA0 48 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Information(string,!!0,int32,string)[QuickJitted] +00007FA12B3C1000 9f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Policies.SimpleScalarConversionPolicy::TryConvertToScalar(object,class Datadog.Trace.Vendors.Serilog.Events.ScalarValue&)[QuickJitted] +00007FA12B3C10C0 54 void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Rendering.MessageTemplateRenderer::.cctor()[QuickJitted] +00007FA12B3C1130 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Json.JsonValueFormatter::.ctor(string)[QuickJitted] +00007FA12B3C1180 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Data.LogEventPropertyValueVisitor`2[System.__Canon,System.Boolean]::.ctor()[QuickJitted] +00007FA12B3C11C0 37 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Json.JsonValueFormatter::Format(class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12B460AC8 48 stub<9375> AllocateTemporaryEntryPoints +00007FA12B460B10 48 stub<9376> AllocateTemporaryEntryPoints +00007FA12B3C1210 19f instance !1 [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Data.LogEventPropertyValueVisitor`2[System.__Canon,System.Boolean]::Visit(!0,class Datadog.Trace.Vendors.Serilog.Events.LogEventPropertyValue)[QuickJitted] +00007FA12B3C13D0 a1 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Json.JsonValueFormatter::VisitScalarValue(class [System.Runtime]System.IO.TextWriter,class Datadog.Trace.Vendors.Serilog.Events.ScalarValue)[QuickJitted] +00007FA12B3C1490 384 instance void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Json.JsonValueFormatter::FormatLiteralValue(object,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12B3C1840 5e void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Formatting.Json.JsonValueFormatter::FormatExactNumericValue(class [System.Runtime]System.IFormattable,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12B3C18C0 f9 void [Datadog.Trace] Datadog.Trace.ClrProfiler.ServerlessInstrumentation.Serverless::InitIfNeeded()[QuickJitted] +00007FA12B3C19D0 36 valuetype Datadog.Trace.ClrProfiler.InstrumentationDefinitions/Payload [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetDerivedDefinitions(valuetype Datadog.Trace.ClrProfiler.InstrumentationCategory)[QuickJitted] +00007FA12B3C1A20 4a valuetype Datadog.Trace.ClrProfiler.InstrumentationDefinitions/Payload [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetDerivedDefinitionsArray(valuetype Datadog.Trace.ClrProfiler.InstrumentationCategory)[QuickJitted] +00007FA1277F9BE0 18 stub<9377> GenerateResolveStub +00007FA1277C5B20 20 stub<9378> GenerateDispatchStub +00007FA12B3C1A80 65 void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeMethods::AddDerivedInstrumentations(string,valuetype Datadog.Trace.ClrProfiler.NativeCallTargetDefinition[])[QuickJitted] +00007FA1277F9C50 18 stub<9379> GenerateResolveStub +00007FA1277C5B40 20 stub<9380> GenerateDispatchStub +00007FA1277C5B60 20 stub<9381> GenerateDispatchStub +00007FA12B3C1B00 36 valuetype Datadog.Trace.ClrProfiler.InstrumentationDefinitions/Payload [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetInterfaceDefinitions(valuetype Datadog.Trace.ClrProfiler.InstrumentationCategory)[QuickJitted] +00007FA12B3C1B50 4a valuetype Datadog.Trace.ClrProfiler.InstrumentationDefinitions/Payload [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetInterfaceDefinitionsArray(valuetype Datadog.Trace.ClrProfiler.InstrumentationCategory)[QuickJitted] +00007FA12B3C1BB0 65 void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeMethods::AddInterfaceInstrumentations(string,valuetype Datadog.Trace.ClrProfiler.NativeCallTargetDefinition[])[QuickJitted] +00007FA12B460B58 30 stub<9382> AllocateTemporaryEntryPoints +00007FA12B460B88 c0 stub<9383> AllocateTemporaryEntryPoints +00007FA12B3C1C30 128 void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::InitRemoteConfigurationManagement(class Datadog.Trace.Tracer)[QuickJitted] +00007FA12B3C1D70 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+<>c__DisplayClass11_0::.ctor()[QuickJitted] +00007FA12B460C48 90 stub<9384> AllocateTemporaryEntryPoints +00007FA12B460CD8 90 stub<9385> AllocateTemporaryEntryPoints +00007FA12B460D68 18 stub<9386> AllocateTemporaryEntryPoints +00007FA12B3C1DB0 866 string [Datadog.Trace] Datadog.Trace.Processors.TraceUtil::NormalizeTag(string)[QuickJitted] +00007FA12B3C2650 49 void [Datadog.Trace] Datadog.Trace.Processors.TraceUtil::.cctor()[QuickJitted] +00007FA12B3C26B0 1c instance class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService [Datadog.Trace] Datadog.Trace.TracerManager::get_DiscoveryService()[QuickJitted] +00007FA12B3C26E0 cd valuetype Datadog.Trace.ClrProfiler.InstrumentationDefinitions/TraceMethodPayload [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetTraceMethodDefinitions()[QuickJitted] +00007FA12B3C27D0 88 void [Datadog.Trace] Datadog.Trace.ClrProfiler.NativeMethods::InitializeTraceMethods(string,string,string,string)[QuickJitted] +00007FA12B460D80 18 stub<9387> AllocateTemporaryEntryPoints +00007FA12B460D98 18 stub<9388> AllocateTemporaryEntryPoints +00007FA12B460DB0 18 stub<9389> AllocateTemporaryEntryPoints +00007FA12B460DC8 60 stub<9390> AllocateTemporaryEntryPoints +00007FA12B460E28 18 stub<9391> AllocateTemporaryEntryPoints +00007FA12B3C2870 49 instance void [Datadog.Trace] dynamicClass::IL_STUB_InstantiatingStub(string,System.String /* MT: 0x00007FA128531038 */,System.String /* MT: 0x00007FA128531038 */,System.String /* MT: 0x00007FA128531038 */,int32,string)[Optimized] +00007FA12B460E40 18 stub<9392> AllocateTemporaryEntryPoints +00007FA12B460E58 18 stub<9393> AllocateTemporaryEntryPoints +00007FA12B460E70 18 stub<9394> AllocateTemporaryEntryPoints +00007FA12B3C28D0 60 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+<>c__DisplayClass11_0::b__0()[QuickJitted] +00007FA12B460E88 18 stub<9395> AllocateTemporaryEntryPoints +00007FA12B3C2A10 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B3C2950 a3 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Information(string,!!0,!!1,!!2,int32,string)[QuickJitted] +00007FA12B460EA0 18 stub<9396> AllocateTemporaryEntryPoints +00007FA12B3C2A50 ba instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,!!1,!!2,int32,string)[QuickJitted] +00007FA12B3C2B20 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B460EB8 c0 stub<9397> AllocateTemporaryEntryPoints +00007FA12B460F78 18 stub<9398> AllocateTemporaryEntryPoints +00007FA12B462000 2d0 stub<9399> AllocateTemporaryEntryPoints +00007FA12B3C2C20 cc void [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Debugging.SelfLog::WriteLine(string,object,object,object)[QuickJitted] +00007FA12B4622D0 30 stub<9400> AllocateTemporaryEntryPoints +00007FA12B462300 48 stub<9401> AllocateTemporaryEntryPoints +00007FA12B462348 60 stub<9402> AllocateTemporaryEntryPoints +00007FA12B4623A8 18 stub<9403> AllocateTemporaryEntryPoints +00007FA12B4623C0 18 stub<9404> AllocateTemporaryEntryPoints +00007FA12B4623D8 18 stub<9405> AllocateTemporaryEntryPoints +00007FA12B3C2D10 69 class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] BuggyBits.Program::Main(string[])[QuickJitted] +00007FA12B4623F0 18 stub<9406> AllocateTemporaryEntryPoints +00007FA12B3C2DA0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B3C2DE0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B3C2EE0 583 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+<>c__DisplayClass11_0+<b__0>d::MoveNext()[QuickJitted] +00007FA12B462408 60 stub<9407> AllocateTemporaryEntryPoints +00007FA12B462468 18 stub<9408> AllocateTemporaryEntryPoints +00007FA12B3C34A0 5b class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::WaitForDiscoveryService(class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService)[QuickJitted] +00007FA12B462480 78 stub<9409> AllocateTemporaryEntryPoints +00007FA12B4624F8 18 stub<9410> AllocateTemporaryEntryPoints +00007FA12B3C3520 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::Start(!!0&)[QuickJitted] +00007FA12B3C3560 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B462510 48 stub<9411> AllocateTemporaryEntryPoints +00007FA1277C13C0 18 stub<9412> GenerateLookupStub +00007FA12B462558 18 stub<9413> AllocateTemporaryEntryPoints +00007FA12B462570 48 stub<9414> AllocateTemporaryEntryPoints +00007FA1277C13E0 18 stub<9415> GenerateLookupStub +00007FA12B4625B8 18 stub<9416> AllocateTemporaryEntryPoints +00007FA12B4625D0 c0 stub<9417> AllocateTemporaryEntryPoints +00007FA12B462690 18 stub<9418> AllocateTemporaryEntryPoints +00007FA12B3C3660 2d6 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+d__13::MoveNext()[QuickJitted] +00007FA12B4626A8 18 stub<9419> AllocateTemporaryEntryPoints +00007FA12B3C3970 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+<>c__DisplayClass13_0::.ctor()[QuickJitted] +00007FA1277C1400 18 stub<9420> GenerateLookupStub +00007FA12B4626C0 18 stub<9421> AllocateTemporaryEntryPoints +00007FA1277C1420 18 stub<9422> GenerateLookupStub +00007FA1277C1440 18 stub<9423> GenerateLookupStub +00007FA1277C1460 18 stub<9424> GenerateLookupStub +00007FA12B3C39B0 157 instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::SubscribeToChanges(class [System.Runtime]System.Action`1)[QuickJitted] +00007FA1277C1480 18 stub<9425> GenerateLookupStub +00007FA12B3C3B40 84 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+<>c__DisplayClass13_0::g__Callback|1(class Datadog.Trace.Agent.DiscoveryService.AgentConfiguration)[QuickJitted] +00007FA12B4626D8 60 stub<9426> AllocateTemporaryEntryPoints +00007FA12B3C3BE0 8f instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::RemoveSubscription(class [System.Runtime]System.Action`1)[QuickJitted] +00007FA12B462738 c0 stub<9427> AllocateTemporaryEntryPoints +00007FA12B4627F8 18 stub<9428> AllocateTemporaryEntryPoints +00007FA1277C14A0 18 stub<9429> GenerateLookupStub +00007FA12B462810 18 stub<9430> AllocateTemporaryEntryPoints +00007FA12B3C3C90 16 class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings::FromDefaultSource()[QuickJitted] +00007FA12B3C3CC0 3f class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings::FromSource(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12B3C3D20 1da instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12B462828 60 stub<9431> AllocateTemporaryEntryPoints +00007FA12B462888 78 stub<9432> AllocateTemporaryEntryPoints +00007FA12B3C3F20 c5d instance void [Samples.BuggyBits] BuggyBits.Program+
d__0::MoveNext()[QuickJitted] +00007FA12B3C4BF0 2dd class Datadog.Trace.RemoteConfigurationManagement.Transport.IRemoteConfigurationApi [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApiFactory::Create(class Datadog.Trace.Configuration.ImmutableExporterSettings,class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService)[QuickJitted] +00007FA12B3C4F00 47 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApiFactory+<>c::.cctor()[QuickJitted] +00007FA12B3C4F60 1f instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApiFactory+<>c::.ctor()[QuickJitted] +00007FA12B3C4FA0 49 void [Samples.BuggyBits] BuggyBits.Program::WriteLine(string)[QuickJitted] +00007FA12B3C5000 1c instance class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApiFactory+<>c::b__0_1(class [System.Runtime]System.Uri)[QuickJitted] +00007FA12B3C5030 47 class Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi::Create(class Datadog.Trace.Agent.IApiRequestFactory,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService)[QuickJitted] +00007FA12B3C5090 94 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi::.ctor(class Datadog.Trace.Agent.IApiRequestFactory,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService)[QuickJitted] +00007FA1277F9CC0 18 stub<9433> GenerateResolveStub +00007FA1277F9D30 18 stub<9434> GenerateResolveStub +00007FA1277C5B80 20 stub<9435> GenerateDispatchStub +00007FA1277C5BA0 20 stub<9436> GenerateDispatchStub +00007FA12B3C5140 35 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi::<.ctor>b__4_0(class Datadog.Trace.Agent.DiscoveryService.AgentConfiguration)[QuickJitted] +00007FA12B3C5190 1c instance string [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.AgentConfiguration::get_ConfigurationEndpoint()[QuickJitted] +00007FA12B462900 48 stub<9437> AllocateTemporaryEntryPoints +00007FA12B462948 18 stub<9438> AllocateTemporaryEntryPoints +00007FA1277C5BC0 20 stub<9439> GenerateDispatchStub +00007FA12B3C51C0 46 void [Datadog.Demos.Util] Datadog.Demos.Util.EnvironmentInfo::PrintDescriptionToConsole()[QuickJitted] +00007FA12B3C5260 4f string [Datadog.Demos.Util] Datadog.Demos.Util.EnvironmentInfo::GetDescription()[QuickJitted] +00007FA12B3C5220 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[Datadog.Trace.Telemetry.TelemetryPushResult,Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport+d__6]::MoveNext()[QuickJitted] +00007FA12B3C52D0 374 class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::GetTags(class Datadog.Trace.Tracer,class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings)[QuickJitted] +00007FA12B462960 18 stub<9440> AllocateTemporaryEntryPoints +00007FA12B3C5670 47 void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+<>c::.cctor()[QuickJitted] +00007FA12B3C5850 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+<>c::.ctor()[QuickJitted] +00007FA12B462978 18 stub<9441> AllocateTemporaryEntryPoints +00007FA12B3C56D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[Datadog.Trace.Telemetry.TelemetryPushResult,Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport+d__6]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B462990 18 stub<9442> AllocateTemporaryEntryPoints +00007FA12B4629A8 78 stub<9443> AllocateTemporaryEntryPoints +00007FA12B462A20 18 stub<9444> AllocateTemporaryEntryPoints +00007FA12B3C5890 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[Datadog.Trace.Telemetry.TelemetryPushResult,Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport+d__6]::.cctor()[QuickJitted] +00007FA12B462A38 c0 stub<9445> AllocateTemporaryEntryPoints +00007FA12B462AF8 d8 stub<9446> AllocateTemporaryEntryPoints +00007FA12B462BD0 18 stub<9447> AllocateTemporaryEntryPoints +00007FA12B462BE8 18 stub<9448> AllocateTemporaryEntryPoints +00007FA12B462C00 18 stub<9449> AllocateTemporaryEntryPoints +00007FA12B462C18 18 stub<9450> AllocateTemporaryEntryPoints +00007FA12B462C30 150 stub<9451> AllocateTemporaryEntryPoints +00007FA12B3C5910 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[Datadog.Trace.Telemetry.TelemetryPushResult,Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport+d__6]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B462D80 138 stub<9452> AllocateTemporaryEntryPoints +00007FA12B462EB8 18 stub<9453> AllocateTemporaryEntryPoints +00007FA12B462ED0 18 stub<9454> AllocateTemporaryEntryPoints +00007FA12B464000 198 stub<9455> AllocateTemporaryEntryPoints +00007FA12B464198 138 stub<9456> AllocateTemporaryEntryPoints +00007FA12B4642D0 18 stub<9457> AllocateTemporaryEntryPoints +00007FA12B3C5950 4e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::SetResult(!0)[QuickJitted] +00007FA12B4642E8 18 stub<9458> AllocateTemporaryEntryPoints +00007FA12B464300 48 stub<9459> AllocateTemporaryEntryPoints +00007FA12B3C59C0 89 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[Datadog.Trace.Telemetry.TelemetryPushResult]::SetExistingTaskResult(class System.Threading.Tasks.Task`1,!0)[QuickJitted] +00007FA12B464348 60 stub<9460> AllocateTemporaryEntryPoints +00007FA12B3C5A60 a2 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task`1[Datadog.Trace.Telemetry.TelemetryPushResult]::TrySetResult(!0)[QuickJitted] +00007FA12B3C5B20 67f class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Select(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12B3C61C0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryTransportManager+d__23]::MoveNext()[QuickJitted] +00007FA12B3C6200 49 instance void [System.Linq] System.Linq.Enumerable+SelectEnumerableIterator`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.__Canon]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12B3C6260 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryTransportManager+d__23]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B3C63E0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryTransportManager+d__23]::.cctor()[QuickJitted] +00007FA12B4643A8 6f0 stub<9461> AllocateTemporaryEntryPoints +00007FA12B464A98 18 stub<9462> AllocateTemporaryEntryPoints +00007FA12B3C7930 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryTransportManager+d__23]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B464AB0 78 stub<9463> AllocateTemporaryEntryPoints +00007FA12B464B28 a8 stub<9464> AllocateTemporaryEntryPoints +00007FA12B464BD0 18 stub<9465> AllocateTemporaryEntryPoints +00007FA12B3C6460 1498 string [Datadog.Demos.Util] Datadog.Demos.Util.EnvironmentInfo::ConstructDescriptionString()[QuickJitted] +00007FA12B466000 540 stub<9466> AllocateTemporaryEntryPoints +00007FA12B466540 18 stub<9467> AllocateTemporaryEntryPoints +00007FA12B466558 18 stub<9468> AllocateTemporaryEntryPoints +00007FA12B466570 18 stub<9469> AllocateTemporaryEntryPoints +00007FA12B3C7970 31 instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1+ConfiguredTaskAwaiter[Datadog.Trace.Telemetry.TelemetryPushResult]::GetResult()[QuickJitted] +00007FA12B466588 60 stub<9470> AllocateTemporaryEntryPoints +00007FA12B3C79C0 1b instance !0 [System.Private.CoreLib] System.Threading.Tasks.Task`1[Datadog.Trace.Telemetry.TelemetryPushResult]::get_ResultOnSuccess()[QuickJitted] +00007FA12B3C79F0 92 instance valuetype Datadog.Trace.Telemetry.TelemetryTransportManager/PushEvaluationResult [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::EvaluateCircuitBreaker(valuetype Datadog.Trace.Telemetry.TelemetryPushResult)[QuickJitted] +00007FA12B3C7D80 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::set_PreviousConfiguration(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12B3C7AA0 2b5 instance class [System.Collections]System.Collections.Generic.List`1 [System.Linq] System.Linq.Enumerable+SelectEnumerableIterator`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.__Canon]::ToList()[QuickJitted] +00007FA12B3C7DC0 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::set_PreviousDependencies(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA1277C5BE0 20 stub<9471> GenerateDispatchStub +00007FA12B3C7E00 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::set_PreviousIntegrations(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12B3C7E40 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings::get_TracerVersion()[QuickJitted] +00007FA12B3C7E70 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryController+d__33]::MoveNext()[QuickJitted] +00007FA12B4665E8 c0 stub<9472> AllocateTemporaryEntryPoints +00007FA12B3C7EB0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryController+d__33]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B3C8030 235 class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::Create(class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,class Datadog.Trace.RemoteConfigurationManagement.Transport.IRemoteConfigurationApi,class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings,string,string,string,class [System.Runtime]System.Collections.Generic.IReadOnlyList`1)[QuickJitted] +00007FA12B3C8290 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryController+d__33]::.cctor()[QuickJitted] +00007FA12B3C8310 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings::get_Id()[QuickJitted] +00007FA12B4666A8 18 stub<9473> AllocateTemporaryEntryPoints +00007FA12B3C8340 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings::get_RuntimeId()[QuickJitted] +00007FA12B3C83B0 b3 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClientTracer::.ctor(string,string,string,string,string,class [System.Runtime]System.Collections.Generic.IReadOnlyList`1)[QuickJitted] +00007FA12B3C8370 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryController+d__33]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B3C8480 1c instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationSettings::get_PollInterval()[QuickJitted] +00007FA12B3C84B0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__32]::MoveNext()[QuickJitted] +00007FA12B3C84F0 14d instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::.ctor(class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,class Datadog.Trace.RemoteConfigurationManagement.Transport.IRemoteConfigurationApi,string,class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClientTracer,valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12B3C8660 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__32]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12B3C87E0 39 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::SetRcmEnabled(class Datadog.Trace.Agent.DiscoveryService.AgentConfiguration)[QuickJitted] +00007FA12B3C8830 28 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::set_Instance(class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager)[QuickJitted] +00007FA12B3C8870 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__32]::.cctor()[QuickJitted] +00007FA12B4666D8 18 stub<9474> AllocateTemporaryEntryPoints +00007FA12B4666F0 18 stub<9475> AllocateTemporaryEntryPoints +00007FA12B3C8930 12c instance void [Datadog.Trace] Datadog.Trace.AppSec.Security::b__38_0(class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager)[QuickJitted] +00007FA12B3C88F0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__32]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B466708 18 stub<9476> AllocateTemporaryEntryPoints +00007FA12B3C8A80 f9 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RcmCapabilitiesIndices::.cctor()[QuickJitted] +00007FA12B466720 18 stub<9477> AllocateTemporaryEntryPoints +00007FA12B466738 18 stub<9478> AllocateTemporaryEntryPoints +00007FA12B466750 18 stub<9479> AllocateTemporaryEntryPoints +00007FA12B3C8BA0 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__32]::ClearStateUponCompletion()[QuickJitted] +00007FA12B466768 18 stub<9480> AllocateTemporaryEntryPoints +00007FA12B3C8C30 da instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::SetCapability(valuetype [System.Runtime.Numerics]System.Numerics.BigInteger,bool)[QuickJitted] +00007FA12B3C8D30 8a instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryController+d__33]::ClearStateUponCompletion()[QuickJitted] +00007FA12B466780 2b8 stub<9481> AllocateTemporaryEntryPoints +00007FA12B3C8DD0 7c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Telemetry.TelemetryTransportManager+d__23]::ClearStateUponCompletion()[QuickJitted] +00007FA12B3C8E60 21b instance void [System.Private.CoreLib] System.Text.StringBuilder+AppendInterpolatedStringHandler::AppendFormatted(!!0)[QuickJitted] +00007FA12B3C90A0 59 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::RegisterProduct(class Datadog.Trace.RemoteConfigurationManagement.Product)[QuickJitted] +00007FA12B3C9110 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[Datadog.Trace.Telemetry.TelemetryPushResult,Datadog.Trace.Telemetry.Transports.JsonTelemetryTransport+d__6]::ClearStateUponCompletion()[QuickJitted] +00007FA12B3C9190 21 instance string [Datadog.Trace] Datadog.Trace.AppSec.AsmFeaturesProduct::get_Name()[QuickJitted] +00007FA12B3C91D0 13 class Datadog.Trace.Configuration.AsmDataProduct [Datadog.Trace] Datadog.Trace.AppSec.AsmRemoteConfigurationProducts::get_AsmDataProduct()[QuickJitted] +00007FA12B3C9200 21 instance string [Datadog.Trace] Datadog.Trace.Configuration.AsmDataProduct::get_Name()[QuickJitted] +00007FA12B3C9240 21 instance string [Datadog.Trace] Datadog.Trace.AppSec.AsmDDProduct::get_Name()[QuickJitted] +00007FA12B3C9280 13 class Datadog.Trace.AppSec.AsmProduct [Datadog.Trace] Datadog.Trace.AppSec.AsmRemoteConfigurationProducts::get_AsmProduct()[QuickJitted] +00007FA1277F9DA0 18 stub<9482> GenerateResolveStub +00007FA12B3C92B0 21 instance string [Datadog.Trace] Datadog.Trace.AppSec.AsmProduct::get_Name()[QuickJitted] +00007FA1277C5C00 20 stub<9483> GenerateDispatchStub +00007FA12B466A38 f0 stub<9484> AllocateTemporaryEntryPoints +00007FA12B466B28 138 stub<9485> AllocateTemporaryEntryPoints +00007FA12B466C60 a8 stub<9486> AllocateTemporaryEntryPoints +00007FA12B466D08 48 stub<9487> AllocateTemporaryEntryPoints +00007FA12B466D50 18 stub<9488> AllocateTemporaryEntryPoints +00007FA12B466D68 d8 stub<9489> AllocateTemporaryEntryPoints +00007FA12B466E40 18 stub<9490> AllocateTemporaryEntryPoints +00007FA12B466E58 d8 stub<9491> AllocateTemporaryEntryPoints +00007FA12B466F30 48 stub<9492> AllocateTemporaryEntryPoints +00007FA12B468000 d8 stub<9493> AllocateTemporaryEntryPoints +00007FA12B4680D8 18 stub<9494> AllocateTemporaryEntryPoints +00007FA12B4680F0 f0 stub<9495> AllocateTemporaryEntryPoints +00007FA12B4681E0 1b0 stub<9496> AllocateTemporaryEntryPoints +00007FA12B468390 78 stub<9497> AllocateTemporaryEntryPoints +00007FA12B468408 60 stub<9498> AllocateTemporaryEntryPoints +00007FA12B468468 18 stub<9499> AllocateTemporaryEntryPoints +00007FA12B468480 78 stub<9500> AllocateTemporaryEntryPoints +00007FA12B4684F8 18 stub<9501> AllocateTemporaryEntryPoints +00007FA12B468510 18 stub<9502> AllocateTemporaryEntryPoints +00007FA12B3C97E0 259 instance void [System.Private.CoreLib] System.Text.StringBuilder+AppendInterpolatedStringHandler::AppendFormatted(!!0)[QuickJitted] +00007FA12B3C92F0 4c3 class Datadog.Trace.Debugger.LiveDebugger [Datadog.Trace] Datadog.Trace.Debugger.LiveDebuggerFactory::Create(class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,class Datadog.Trace.RemoteConfigurationManagement.IRemoteConfigurationManager,class Datadog.Trace.Configuration.ImmutableTracerSettings,string)[QuickJitted] +00007FA1277C5C20 20 stub<9503> GenerateDispatchStub +00007FA12B3C9A60 16 class Datadog.Trace.Debugger.DebuggerSettings [Datadog.Trace] Datadog.Trace.Debugger.DebuggerSettings::FromDefaultSource()[QuickJitted] +00007FA12B3C9A90 3f class Datadog.Trace.Debugger.DebuggerSettings [Datadog.Trace] Datadog.Trace.Debugger.DebuggerSettings::FromSource(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12B3C9AF0 1f void [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::.cctor()[QuickJitted] +00007FA12B468528 60 stub<9504> AllocateTemporaryEntryPoints +00007FA12B3C9B30 451 instance void [Datadog.Trace] Datadog.Trace.Debugger.DebuggerSettings::.ctor(class Datadog.Trace.Configuration.IConfigurationSource)[QuickJitted] +00007FA12B3CA2A0 1c instance bool [Datadog.Trace] Datadog.Trace.Debugger.DebuggerSettings::get_Enabled()[QuickJitted] +00007FA12B3C9FA0 2c9 class Datadog.Demos.Util.RuntimeEnvironmentInfo [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::CreateNew()[QuickJitted] +00007FA12B3CA2D0 4f void [Datadog.Trace] Datadog.Trace.Debugger.LiveDebuggerFactory::.cctor()[QuickJitted] +00007FA12B3CA340 50 instance void [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo+CoreAssembyInformation::.ctor(bool,bool,string)[QuickJitted] +00007FA12B3CA3B0 1b string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::GetRuntimeName(class Datadog.Demos.Util.RuntimeEnvironmentInfo/CoreAssembyInformation)[QuickJitted] +00007FA12B3CA3E0 13c class Datadog.Trace.Debugger.LiveDebugger [Datadog.Trace] Datadog.Trace.Debugger.LiveDebugger::Create(class Datadog.Trace.Debugger.DebuggerSettings,string,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,class Datadog.Trace.RemoteConfigurationManagement.IRemoteConfigurationManager,class Datadog.Trace.Debugger.ILineProbeResolver,class Datadog.Trace.Debugger.Sink.IDebuggerSink,class Datadog.Trace.Debugger.ProbeStatuses.IProbeStatusPoller,class Datadog.Trace.Debugger.Configurations.ConfigurationUpdater)[QuickJitted] +00007FA12B3CA540 16c string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::GetRuntimeVersion(class Datadog.Demos.Util.RuntimeEnvironmentInfo/CoreAssembyInformation,class [System.Runtime]System.Reflection.Assembly)[QuickJitted] +00007FA12B3CA6D0 83 void [Datadog.Trace] Datadog.Trace.Debugger.LiveDebugger::.cctor()[QuickJitted] +00007FA12B3CA770 13 class Datadog.Trace.Debugger.LiveDebugger [Datadog.Trace] Datadog.Trace.Debugger.LiveDebugger::get_Instance()[QuickJitted] +00007FA12B3CA7A0 1c instance bool [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo+CoreAssembyInformation::get_IsSysPrivCoreLib()[QuickJitted] +00007FA12B3CA7D0 2c string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::GetProcessArchitecture()[QuickJitted] +00007FA12B468588 48 stub<9505> AllocateTemporaryEntryPoints +00007FA12B3CA810 6c string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::GetOsPlatform()[QuickJitted] +00007FA12B3CAA60 2c string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::GetOsArchitecture()[QuickJitted] +00007FA12B3CA8A0 19b instance void [Datadog.Trace] Datadog.Trace.Debugger.LiveDebugger::.ctor(class Datadog.Trace.Debugger.DebuggerSettings,string,class Datadog.Trace.Agent.DiscoveryService.IDiscoveryService,class Datadog.Trace.RemoteConfigurationManagement.IRemoteConfigurationManager,class Datadog.Trace.Debugger.ILineProbeResolver,class Datadog.Trace.Debugger.Sink.IDebuggerSink,class Datadog.Trace.Debugger.ProbeStatuses.IProbeStatusPoller,class Datadog.Trace.Debugger.Configurations.ConfigurationUpdater)[QuickJitted] +00007FA12B3CAAA0 13 string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::GetOsDescription()[QuickJitted] +00007FA12B3CAAD0 1f instance void [Datadog.Trace] Datadog.Trace.Debugger.LiveDebuggerProduct::.ctor()[QuickJitted] +00007FA12B3CAB10 aa instance void [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::.ctor(string,string,string,string,string,string,class Datadog.Demos.Util.RuntimeEnvironmentInfo/CoreAssembyInformation)[QuickJitted] +00007FA12B3CABD0 28 void [Datadog.Trace] Datadog.Trace.Debugger.LiveDebugger::set_Instance(class Datadog.Trace.Debugger.LiveDebugger)[QuickJitted] +00007FA12B3CAC10 1c3 instance string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::ToString()[QuickJitted] +00007FA12B4685D0 60 stub<9506> AllocateTemporaryEntryPoints +00007FA12B3CADF0 1c instance string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::get_RuntimeName()[QuickJitted] +00007FA12B468630 18 stub<9507> AllocateTemporaryEntryPoints +00007FA12B3CAE20 1c instance string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::get_RuntimeVersion()[QuickJitted] +00007FA12B3CAED0 1c instance string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::get_ProcessArchitecture()[QuickJitted] +00007FA12B3CAE50 5b class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::InitializeRemoteConfigurationManager(class Datadog.Trace.RemoteConfigurationManagement.IRemoteConfigurationManager)[QuickJitted] +00007FA12B3CAF00 1c instance string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::get_OsPlatform()[QuickJitted] +00007FA12B468648 18 stub<9508> AllocateTemporaryEntryPoints +00007FA12B3CAF30 1c instance string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::get_OsArchitecture()[QuickJitted] +00007FA12B3CAF60 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B3CAFA0 1c instance string [Datadog.Demos.Util] Datadog.Demos.Util.RuntimeEnvironmentInfo::get_OsDescription()[QuickJitted] +00007FA12B468660 18 stub<9509> AllocateTemporaryEntryPoints +00007FA12B3CAFD0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA1277C14C0 18 stub<9510> GenerateLookupStub +00007FA12B468678 18 stub<9511> AllocateTemporaryEntryPoints +00007FA12B3CB0D0 22b instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+d__14::MoveNext()[QuickJitted] +00007FA12B468690 60 stub<9512> AllocateTemporaryEntryPoints +00007FA12B4686F0 18 stub<9513> AllocateTemporaryEntryPoints +00007FA12B3CB340 5b instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::StartPollingAsync()[QuickJitted] +00007FA12B468708 18 stub<9514> AllocateTemporaryEntryPoints +00007FA12B3CB3C0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B468720 48 stub<9515> AllocateTemporaryEntryPoints +00007FA12B3CB400 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B468768 18 stub<9516> AllocateTemporaryEntryPoints +00007FA12B468780 18 stub<9517> AllocateTemporaryEntryPoints +00007FA12B468798 18 stub<9518> AllocateTemporaryEntryPoints +00007FA12B3CB500 51a instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24::MoveNext()[QuickJitted] +00007FA12B4687B0 a8 stub<9519> AllocateTemporaryEntryPoints +00007FA12B468858 18 stub<9520> AllocateTemporaryEntryPoints +00007FA12B468870 48 stub<9521> AllocateTemporaryEntryPoints +00007FA12B4688B8 60 stub<9522> AllocateTemporaryEntryPoints +00007FA1277C14E0 18 stub<9523> GenerateLookupStub +00007FA12B3CBA70 2cc bool [System.Linq] System.Linq.Enumerable::Any(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1277C1500 18 stub<9524> GenerateLookupStub +00007FA12B468918 a8 stub<9525> AllocateTemporaryEntryPoints +00007FA12B3CBD70 488 void [Samples.BuggyBits] BuggyBits.Program::ParseCommandLine(string[],valuetype [System.Runtime]System.TimeSpan&,int32&,valuetype BuggyBits.Scenario&,int32&)[QuickJitted] +00007FA128663550 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventSourceAttribute.set_Guid(object,object,native int*)[Optimized] +00007FA12B4689C0 48 stub<9526> AllocateTemporaryEntryPoints +00007FA12B468A08 2b8 stub<9527> AllocateTemporaryEntryPoints +00007FA12B468CC0 60 stub<9528> AllocateTemporaryEntryPoints +00007FA12B468D20 48 stub<9529> AllocateTemporaryEntryPoints +00007FA12B468D68 60 stub<9530> AllocateTemporaryEntryPoints +00007FA12B468DC8 a8 stub<9531> AllocateTemporaryEntryPoints +00007FA12B468E70 18 stub<9532> AllocateTemporaryEntryPoints +00007FA12B3CC220 5f instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::Poll()[QuickJitted] +00007FA12B468E88 18 stub<9533> AllocateTemporaryEntryPoints +00007FA12B3CC2A0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B468EA0 90 stub<9534> AllocateTemporaryEntryPoints +00007FA12B3CC2E0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B468F30 48 stub<9535> AllocateTemporaryEntryPoints +00007FA12B468F78 48 stub<9536> AllocateTemporaryEntryPoints +00007FA12B46A000 a8 stub<9537> AllocateTemporaryEntryPoints +00007FA12B46A0A8 48 stub<9538> AllocateTemporaryEntryPoints +00007FA12B46A0F0 108 stub<9539> AllocateTemporaryEntryPoints +00007FA12B46A1F8 18 stub<9540> AllocateTemporaryEntryPoints +00007FA1277C1520 18 stub<9541> GenerateLookupStub +00007FA12B46A210 18 stub<9542> AllocateTemporaryEntryPoints +00007FA12B46A228 18 stub<9543> AllocateTemporaryEntryPoints +00007FA12B46A240 30 stub<9544> AllocateTemporaryEntryPoints +00007FA12B3CC3E0 5fc instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29::MoveNext()[QuickJitted] +00007FA12B3CCA20 47 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::.cctor()[QuickJitted] +00007FA12B3CCA80 109 class [Microsoft.Extensions.Hosting.Abstractions]Microsoft.Extensions.Hosting.IHostBuilder [Samples.BuggyBits] BuggyBits.Program::CreateHostBuilder(string[])[QuickJitted] +00007FA12B3CCBA0 1f instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::.ctor()[QuickJitted] +00007FA12B46A270 18 stub<9545> AllocateTemporaryEntryPoints +00007FA1277F9E10 18 stub<9546> GenerateResolveStub +00007FA1277C5C40 20 stub<9547> GenerateDispatchStub +00007FA12B46A288 60 stub<9548> AllocateTemporaryEntryPoints +00007FA12B46A2E8 60 stub<9549> AllocateTemporaryEntryPoints +00007FA1277C1540 18 stub<9550> GenerateLookupStub +00007FA1277F9E80 18 stub<9551> GenerateResolveStub +00007FA1277C5C60 20 stub<9552> GenerateDispatchStub +00007FA1277C1560 18 stub<9553> GenerateLookupStub +00007FA12B3CCBE0 31 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__29_0(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA12B46A348 240 stub<9554> AllocateTemporaryEntryPoints +00007FA12B3CCC30 31 instance class Datadog.Trace.RemoteConfigurationManagement.Product [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__29_1(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA1277F9EF0 18 stub<9555> GenerateResolveStub +00007FA1277C5C80 20 stub<9556> GenerateDispatchStub +00007FA12B46A588 60 stub<9557> AllocateTemporaryEntryPoints +00007FA12B46A5E8 90 stub<9558> AllocateTemporaryEntryPoints +00007FA12B46A678 a8 stub<9559> AllocateTemporaryEntryPoints +00007FA1277C1580 18 stub<9560> GenerateLookupStub +00007FA12B46A720 18 stub<9561> AllocateTemporaryEntryPoints +00007FA1277C15A0 18 stub<9562> GenerateLookupStub +00007FA1277C15C0 18 stub<9563> GenerateLookupStub +00007FA12B46A738 30 stub<9564> AllocateTemporaryEntryPoints +00007FA12B46A768 180 stub<9565> AllocateTemporaryEntryPoints +00007FA12B46A8E8 60 stub<9566> AllocateTemporaryEntryPoints +00007FA12B46A948 48 stub<9567> AllocateTemporaryEntryPoints +00007FA12B46A990 30 stub<9568> AllocateTemporaryEntryPoints +00007FA12B46A9C0 18 stub<9569> AllocateTemporaryEntryPoints +00007FA12B46A9D8 18 stub<9570> AllocateTemporaryEntryPoints +00007FA12B46A9F0 2e8 stub<9571> AllocateTemporaryEntryPoints +00007FA1277C15E0 18 stub<9572> GenerateLookupStub +00007FA12B46ACD8 a8 stub<9573> AllocateTemporaryEntryPoints +00007FA12B46AD80 18 stub<9574> AllocateTemporaryEntryPoints +00007FA12B46AD98 30 stub<9575> AllocateTemporaryEntryPoints +00007FA12B46ADC8 60 stub<9576> AllocateTemporaryEntryPoints +00007FA12B46AE28 60 stub<9577> AllocateTemporaryEntryPoints +00007FA12B46AE88 60 stub<9578> AllocateTemporaryEntryPoints +00007FA12B46AEE8 90 stub<9579> AllocateTemporaryEntryPoints +00007FA12B3CCC80 5b1 instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmRequest [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::BuildRequest(class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA12B46C000 90 stub<9580> AllocateTemporaryEntryPoints +00007FA1277F9F60 18 stub<9581> GenerateResolveStub +00007FA1277C5CA0 20 stub<9582> GenerateDispatchStub +00007FA1277C5CC0 20 stub<9583> GenerateDispatchStub +00007FA1277C1600 18 stub<9584> GenerateLookupStub +00007FA12B46C090 1f8 stub<9585> AllocateTemporaryEntryPoints +00007FA12B46C288 48 stub<9586> AllocateTemporaryEntryPoints +00007FA1277C1620 18 stub<9587> GenerateLookupStub +00007FA12B3CD670 30 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__30_0(class Datadog.Trace.RemoteConfigurationManagement.Product)[QuickJitted] +00007FA12B46C2D0 90 stub<9588> AllocateTemporaryEntryPoints +00007FA12B3CD6C0 1c instance class [System.Collections]System.Collections.Generic.Dictionary`2 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Product::get_AppliedConfigurations()[QuickJitted] +00007FA1277C5CE0 20 stub<9589> GenerateDispatchStub +00007FA12B46C360 18 stub<9590> AllocateTemporaryEntryPoints +00007FA12B46C378 18 stub<9591> AllocateTemporaryEntryPoints +00007FA1277F9FD0 18 stub<9592> GenerateResolveStub +00007FA12B46C390 18 stub<9593> AllocateTemporaryEntryPoints +00007FA1277C5D00 20 stub<9594> GenerateDispatchStub +00007FA12B46C3A8 18 stub<9595> AllocateTemporaryEntryPoints +00007FA1277C5D20 20 stub<9596> GenerateDispatchStub +00007FA12B46C3C0 18 stub<9597> AllocateTemporaryEntryPoints +00007FA12B46C3D8 18 stub<9598> AllocateTemporaryEntryPoints +00007FA12B3CD6F0 47 void [Samples.BuggyBits] BuggyBits.Program+<>c::.cctor()[QuickJitted] +00007FA12B3CD750 83 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClientState::.ctor(int32,int32,class [System.Collections]System.Collections.Generic.List`1,bool,string,string)[QuickJitted] +00007FA12B3CD7F0 1f instance void [Samples.BuggyBits] BuggyBits.Program+<>c::.ctor()[QuickJitted] +00007FA12B3CD830 90 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClient::.ctor(string,class [System.Runtime]System.Collections.Generic.ICollection`1,class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClientTracer,class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClientState,uint8[])[QuickJitted] +00007FA12B3CD8E0 49 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmRequest::.ctor(class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClient,class [System.Collections]System.Collections.Generic.List`1)[QuickJitted] +00007FA12B46C3F0 60 stub<9599> AllocateTemporaryEntryPoints +00007FA12B46C450 18 stub<9600> AllocateTemporaryEntryPoints +00007FA12B46C468 18 stub<9601> AllocateTemporaryEntryPoints +00007FA12B3CD940 94 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi::GetConfigs(class Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmRequest)[QuickJitted] +00007FA12B46C480 18 stub<9602> AllocateTemporaryEntryPoints +00007FA12B3CD9F0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12B46C498 48 stub<9603> AllocateTemporaryEntryPoints +00007FA12B3CDA30 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12B46C4E0 48 stub<9604> AllocateTemporaryEntryPoints +00007FA12B46C528 30 stub<9605> AllocateTemporaryEntryPoints +00007FA12B46C558 18 stub<9606> AllocateTemporaryEntryPoints +00007FA12B46C570 18 stub<9607> AllocateTemporaryEntryPoints +00007FA12B46C588 30 stub<9608> AllocateTemporaryEntryPoints +00007FA12B46C5B8 60 stub<9609> AllocateTemporaryEntryPoints +00007FA12B46C618 18 stub<9610> AllocateTemporaryEntryPoints +00007FA12B46C630 18 stub<9611> AllocateTemporaryEntryPoints +00007FA12B46C648 18 stub<9612> AllocateTemporaryEntryPoints +00007FA12B46C660 18 stub<9613> AllocateTemporaryEntryPoints +00007FA12B46C678 1e0 stub<9614> AllocateTemporaryEntryPoints +00007FA12B46C858 18 stub<9615> AllocateTemporaryEntryPoints +00007FA12B46C870 18 stub<9616> AllocateTemporaryEntryPoints +00007FA12B46C888 18 stub<9617> AllocateTemporaryEntryPoints +00007FA12B46C8A0 18 stub<9618> AllocateTemporaryEntryPoints +00007FA12B46C8B8 78 stub<9619> AllocateTemporaryEntryPoints +00007FA12B46C930 18 stub<9620> AllocateTemporaryEntryPoints +00007FA12B3CDB30 91c instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6::MoveNext()[QuickJitted] +00007FA12B46C948 30 stub<9621> AllocateTemporaryEntryPoints +00007FA12B46C978 60 stub<9622> AllocateTemporaryEntryPoints +00007FA12B3CE4A0 23 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::SerializeObject(object)[QuickJitted] +00007FA1277FA040 18 stub<9623> GenerateResolveStub +00007FA1277C5D40 20 stub<9624> GenerateDispatchStub +00007FA12B3CE4E0 43 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::SerializeObject(object,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[QuickJitted] +00007FA12B46C9D8 48 stub<9625> AllocateTemporaryEntryPoints +00007FA12B46CA20 60 stub<9626> AllocateTemporaryEntryPoints +00007FA1277FA0B0 18 stub<9627> GenerateResolveStub +00007FA1277C5D60 20 stub<9628> GenerateDispatchStub +00007FA12B46CA80 30 stub<9629> AllocateTemporaryEntryPoints +00007FA1286635D0 a8 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method62(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12B46CAB0 120 stub<9630> AllocateTemporaryEntryPoints +00007FA12B46CBD0 78 stub<9631> AllocateTemporaryEntryPoints +00007FA1277FA120 18 stub<9632> GenerateResolveStub +00007FA1277C5D80 20 stub<9633> GenerateDispatchStub +00007FA1277C5DA0 20 stub<9634> GenerateDispatchStub +00007FA1277FA190 18 stub<9635> GenerateResolveStub +00007FA1277C5DC0 20 stub<9636> GenerateDispatchStub +00007FA12B46CC48 108 stub<9637> AllocateTemporaryEntryPoints +00007FA12B46CD50 60 stub<9638> AllocateTemporaryEntryPoints +00007FA12B46CDB0 48 stub<9639> AllocateTemporaryEntryPoints +00007FA12B46CDF8 78 stub<9640> AllocateTemporaryEntryPoints +00007FA12B46CE70 c0 stub<9641> AllocateTemporaryEntryPoints +00007FA12B46CF30 78 stub<9642> AllocateTemporaryEntryPoints +00007FA1277C5DE0 20 stub<9643> GenerateDispatchStub +00007FA1277FA200 18 stub<9644> GenerateResolveStub +00007FA1277C5E00 20 stub<9645> GenerateDispatchStub +00007FA1277FA270 18 stub<9646> GenerateResolveStub +00007FA1277C5E20 20 stub<9647> GenerateDispatchStub +00007FA1277FA2E0 18 stub<9648> GenerateResolveStub +00007FA1277C5E40 20 stub<9649> GenerateDispatchStub +00007FA12B46CFC0 30 stub<9650> AllocateTemporaryEntryPoints +00007FA1286636E0 16b object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method63(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12B46E000 90 stub<9651> AllocateTemporaryEntryPoints +00007FA12B46E090 90 stub<9652> AllocateTemporaryEntryPoints +00007FA12B46E120 48 stub<9653> AllocateTemporaryEntryPoints +00007FA12B46E168 48 stub<9654> AllocateTemporaryEntryPoints +00007FA12B46E1B0 48 stub<9655> AllocateTemporaryEntryPoints +00007FA1286638C0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method64(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B46E1F8 18 stub<9656> AllocateTemporaryEntryPoints +00007FA12B46E210 30 stub<9657> AllocateTemporaryEntryPoints +00007FA12B46E240 30 stub<9658> AllocateTemporaryEntryPoints +00007FA1277FA350 18 stub<9659> GenerateResolveStub +00007FA1277C5E60 20 stub<9660> GenerateDispatchStub +00007FA12B46E270 c0 stub<9661> AllocateTemporaryEntryPoints +00007FA12B46E330 c0 stub<9662> AllocateTemporaryEntryPoints +00007FA1277FA3C0 18 stub<9663> GenerateResolveStub +00007FA1277C5E80 20 stub<9664> GenerateDispatchStub +00007FA1277C5EA0 20 stub<9665> GenerateDispatchStub +00007FA1277FA430 18 stub<9666> GenerateResolveStub +00007FA1277C5EC0 20 stub<9667> GenerateDispatchStub +00007FA1277FA4A0 18 stub<9668> GenerateResolveStub +00007FA1277C5EE0 20 stub<9669> GenerateDispatchStub +00007FA1277FA510 18 stub<9670> GenerateResolveStub +00007FA1277C5F00 20 stub<9671> GenerateDispatchStub +00007FA1277FA580 18 stub<9672> GenerateResolveStub +00007FA1277C5F20 20 stub<9673> GenerateDispatchStub +00007FA12B46E3F0 108 stub<9674> AllocateTemporaryEntryPoints +00007FA12B46E4F8 78 stub<9675> AllocateTemporaryEntryPoints +00007FA128663950 20f object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method65(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA128663BD0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method66(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128663C60 1a object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method67(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA128663CE0 44 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method68(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128663D90 44 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method69(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B46E570 18 stub<9676> AllocateTemporaryEntryPoints +00007FA12B46E588 5e8 stub<9677> AllocateTemporaryEntryPoints +00007FA12B46EB70 d8 stub<9678> AllocateTemporaryEntryPoints +00007FA128663E40 2e object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method70(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B46EC48 30 stub<9679> AllocateTemporaryEntryPoints +00007FA12B46EC78 18 stub<9680> AllocateTemporaryEntryPoints +00007FA128663ED0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method71(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B46EC90 78 stub<9681> AllocateTemporaryEntryPoints +00007FA12B46ED08 180 stub<9682> AllocateTemporaryEntryPoints +00007FA12B46EE88 60 stub<9683> AllocateTemporaryEntryPoints +00007FA128663F60 1ca object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method72(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12B46EEE8 30 stub<9684> AllocateTemporaryEntryPoints +00007FA12B46EF18 30 stub<9685> AllocateTemporaryEntryPoints +00007FA12BFE0000 108 stub<9686> AllocateTemporaryEntryPoints +00007FA12BFE0108 360 stub<9687> AllocateTemporaryEntryPoints +00007FA12BFE0468 30 stub<9688> AllocateTemporaryEntryPoints +00007FA1286641A0 19 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method73(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12BFE0498 30 stub<9689> AllocateTemporaryEntryPoints +00007FA1277FA5F0 18 stub<9690> GenerateResolveStub +00007FA1277C5F40 20 stub<9691> GenerateDispatchStub +00007FA12BFE04E0 30 stub<9692> AllocateTemporaryEntryPoints +00007FA1277FA660 18 stub<9693> GenerateResolveStub +00007FA1277C5F60 20 stub<9694> GenerateDispatchStub +00007FA128664220 47 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method74(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1286642D0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method75(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128664360 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method76(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1286643F0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method77(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12BFE0510 18 stub<9695> AllocateTemporaryEntryPoints +00007FA128664480 2e object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method78(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12BFE0528 18 stub<9696> AllocateTemporaryEntryPoints +00007FA12BFE0540 18 stub<9697> AllocateTemporaryEntryPoints +00007FA12BFE0558 18 stub<9698> AllocateTemporaryEntryPoints +00007FA12BFE0570 18 stub<9699> AllocateTemporaryEntryPoints +00007FA12BFE0588 18 stub<9700> AllocateTemporaryEntryPoints +00007FA12BFE05A0 18 stub<9701> AllocateTemporaryEntryPoints +00007FA12BFE05B8 18 stub<9702> AllocateTemporaryEntryPoints +00007FA128664510 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method79(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12BFE05D0 30 stub<9703> AllocateTemporaryEntryPoints +00007FA12BFE0600 18 stub<9704> AllocateTemporaryEntryPoints +00007FA12BFE0618 60 stub<9705> AllocateTemporaryEntryPoints +00007FA12BFE0678 108 stub<9706> AllocateTemporaryEntryPoints +00007FA12BFE0780 18 stub<9707> AllocateTemporaryEntryPoints +00007FA12BFE0798 60 stub<9708> AllocateTemporaryEntryPoints +00007FA1277FA6D0 18 stub<9709> GenerateResolveStub +00007FA1286645A0 47 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method80(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1277C5F80 20 stub<9710> GenerateDispatchStub +00007FA1277FA740 18 stub<9711> GenerateResolveStub +00007FA1277C5FA0 20 stub<9712> GenerateDispatchStub +00007FA1277FA7B0 18 stub<9713> GenerateResolveStub +00007FA1277C5FC0 20 stub<9714> GenerateDispatchStub +00007FA1277FA820 18 stub<9715> GenerateResolveStub +00007FA1277C5FE0 20 stub<9716> GenerateDispatchStub +00007FA1277FA890 18 stub<9717> GenerateResolveStub +00007FA1277C6000 20 stub<9718> GenerateDispatchStub +00007FA12BFE07F8 60 stub<9719> AllocateTemporaryEntryPoints +00007FA12BFE0858 108 stub<9720> AllocateTemporaryEntryPoints +00007FA12BFE0960 18 stub<9721> AllocateTemporaryEntryPoints +00007FA12BFE0978 18 stub<9722> AllocateTemporaryEntryPoints +00007FA12B3CE940 2d instance void [Samples.BuggyBits] BuggyBits.Program+<>c::b__1_0(class [Microsoft.AspNetCore.Hosting.Abstractions]Microsoft.AspNetCore.Hosting.IWebHostBuilder)[QuickJitted] +00007FA12BFE0990 30 stub<9723> AllocateTemporaryEntryPoints +00007FA12BFE09C0 48 stub<9724> AllocateTemporaryEntryPoints +00007FA12BFE0A08 30 stub<9725> AllocateTemporaryEntryPoints +00007FA12BFE0A38 18 stub<9726> AllocateTemporaryEntryPoints +00007FA1277FA900 18 stub<9727> GenerateResolveStub +00007FA1277C6020 20 stub<9728> GenerateDispatchStub +00007FA128664650 1d0 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method81(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12BFE0A50 60 stub<9729> AllocateTemporaryEntryPoints +00007FA12BFE0AB0 c0 stub<9730> AllocateTemporaryEntryPoints +00007FA12BFE0B70 c0 stub<9731> AllocateTemporaryEntryPoints +00007FA128664890 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method82(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12BFE0C30 d8 stub<9732> AllocateTemporaryEntryPoints +00007FA128664920 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method83(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1286649B0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method84(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128664A40 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method85(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12BFE0D08 48 stub<9733> AllocateTemporaryEntryPoints +00007FA12BFE0D50 1c8 stub<9734> AllocateTemporaryEntryPoints +00007FA128664AD0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method86(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1277FA970 18 stub<9735> GenerateResolveStub +00007FA1277C6040 20 stub<9736> GenerateDispatchStub +00007FA128664B60 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method87(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12BFE0F18 18 stub<9737> AllocateTemporaryEntryPoints +00007FA128664BF0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method88(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B3CED90 ba instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::StoreFSharpListCreatorIfNecessary(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3CEE60 4f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreatorInternal()[QuickJitted] +00007FA12B3CEED0 1f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreator()[QuickJitted] +00007FA12BFE0F30 48 stub<9738> AllocateTemporaryEntryPoints +00007FA12BFE0F78 18 stub<9739> AllocateTemporaryEntryPoints +00007FA12BFE2000 90 stub<9740> AllocateTemporaryEntryPoints +00007FA12BFE2090 30 stub<9741> AllocateTemporaryEntryPoints +00007FA12BFE20C0 90 stub<9742> AllocateTemporaryEntryPoints +00007FA128664C80 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method89(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12BFE2150 30 stub<9743> AllocateTemporaryEntryPoints +00007FA12BFE2180 18 stub<9744> AllocateTemporaryEntryPoints +00007FA12BFE2198 18 stub<9745> AllocateTemporaryEntryPoints +00007FA12BFE21B0 150 stub<9746> AllocateTemporaryEntryPoints +00007FA12BFE2300 1c8 stub<9747> AllocateTemporaryEntryPoints +00007FA12BFE24C8 1e0 stub<9748> AllocateTemporaryEntryPoints +00007FA128664D10 2e object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method90(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12BFE26A8 18 stub<9749> AllocateTemporaryEntryPoints +00007FA12BFE26C0 30 stub<9750> AllocateTemporaryEntryPoints +00007FA12BFE26F0 18 stub<9751> AllocateTemporaryEntryPoints +00007FA12BFE2708 18 stub<9752> AllocateTemporaryEntryPoints +00007FA12BFE2720 18 stub<9753> AllocateTemporaryEntryPoints +00007FA12BFE2738 18 stub<9754> AllocateTemporaryEntryPoints +00007FA12BFE2768 d8 stub<9755> AllocateTemporaryEntryPoints +00007FA12BFE2840 d8 stub<9756> AllocateTemporaryEntryPoints +00007FA12BFE2918 18 stub<9757> AllocateTemporaryEntryPoints +00007FA12BFE2930 18 stub<9758> AllocateTemporaryEntryPoints +00007FA12BFE2948 60 stub<9759> AllocateTemporaryEntryPoints +00007FA12BFE29A8 18 stub<9760> AllocateTemporaryEntryPoints +00007FA1277C6060 20 stub<9761> GenerateDispatchStub +00007FA1277C6080 20 stub<9762> GenerateDispatchStub +00007FA12BFE29C0 18 stub<9763> AllocateTemporaryEntryPoints +00007FA1277FA9E0 18 stub<9764> GenerateResolveStub +00007FA1277C60A0 20 stub<9765> GenerateDispatchStub +00007FA1277FAA50 18 stub<9766> GenerateResolveStub +00007FA1277C60C0 20 stub<9767> GenerateDispatchStub +00007FA12BFE29D8 18 stub<9768> AllocateTemporaryEntryPoints +00007FA12BFE29F0 18 stub<9769> AllocateTemporaryEntryPoints +00007FA12BFE2A08 a8 stub<9770> AllocateTemporaryEntryPoints +00007FA128664DA0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method91(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1277FAAC0 18 stub<9771> GenerateResolveStub +00007FA12BFE2AB0 f0 stub<9772> AllocateTemporaryEntryPoints +00007FA1277C60E0 20 stub<9773> GenerateDispatchStub +00007FA12BFE2BA0 78 stub<9774> AllocateTemporaryEntryPoints +00007FA12B3CF310 e9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(uint8[])[QuickJitted] +00007FA12BFE2C18 c0 stub<9775> AllocateTemporaryEntryPoints +00007FA12B3CF410 63 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::get_Base64Encoder()[QuickJitted] +00007FA1277FAB30 18 stub<9776> GenerateResolveStub +00007FA12B3CF490 6f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::.ctor(class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA1277C6100 20 stub<9777> GenerateDispatchStub +00007FA1277FABA0 18 stub<9778> GenerateResolveStub +00007FA1277C6120 20 stub<9779> GenerateDispatchStub +00007FA12B3CF520 143 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::Encode(uint8[],int32,int32)[QuickJitted] +00007FA12B3CF680 167 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::ValidateEncode(uint8[],int32,int32)[QuickJitted] +00007FA12B3CF800 11b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::StoreLeftOverBytes(uint8[],int32,int32&)[QuickJitted] +00007FA12B3CF930 68 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::Flush()[QuickJitted] +00007FA12BFE2CF0 18 stub<9780> AllocateTemporaryEntryPoints +00007FA12B3CF9B0 4c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::WriteChars(char[],int32,int32)[QuickJitted] +00007FA12BFE2D08 258 stub<9781> AllocateTemporaryEntryPoints +00007FA12BFE2F60 78 stub<9782> AllocateTemporaryEntryPoints +00007FA12BFE2FD8 18 stub<9783> AllocateTemporaryEntryPoints +00007FA128664E30 2e object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method92(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12BFE4000 18 stub<9784> AllocateTemporaryEntryPoints +00007FA12BFE4018 90 stub<9785> AllocateTemporaryEntryPoints +00007FA1277FAC10 18 stub<9786> GenerateResolveStub +00007FA1277C6140 20 stub<9787> GenerateDispatchStub +00007FA128664EC0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method93(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12BFE40A8 2e8 stub<9788> AllocateTemporaryEntryPoints +00007FA12BFE4390 18 stub<9789> AllocateTemporaryEntryPoints +00007FA12BFE43A8 60 stub<9790> AllocateTemporaryEntryPoints +00007FA12BFE4408 f0 stub<9791> AllocateTemporaryEntryPoints +00007FA12BFE44F8 90 stub<9792> AllocateTemporaryEntryPoints +00007FA12BFE4588 90 stub<9793> AllocateTemporaryEntryPoints +00007FA128664F50 111 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method94(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12BFE4618 180 stub<9794> AllocateTemporaryEntryPoints +00007FA12BFE4798 30 stub<9795> AllocateTemporaryEntryPoints +00007FA12BFE47C8 18 stub<9796> AllocateTemporaryEntryPoints +00007FA12BFE47E0 18 stub<9797> AllocateTemporaryEntryPoints +00007FA12BFE47F8 30 stub<9798> AllocateTemporaryEntryPoints +00007FA12B3CFA10 4f void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi::.cctor()[QuickJitted] +00007FA12BFE4828 18 stub<9799> AllocateTemporaryEntryPoints +00007FA12BFE4840 60 stub<9800> AllocateTemporaryEntryPoints +00007FA1277FAC80 18 stub<9801> GenerateResolveStub +00007FA1277C6160 20 stub<9802> GenerateDispatchStub +00007FA12BFE48A0 120 stub<9803> AllocateTemporaryEntryPoints +00007FA12BFE49C0 60 stub<9804> AllocateTemporaryEntryPoints +00007FA12BFE4A20 138 stub<9805> AllocateTemporaryEntryPoints +00007FA1277FACF0 18 stub<9806> GenerateResolveStub +00007FA1277C6180 20 stub<9807> GenerateDispatchStub +00007FA1277FAD60 18 stub<9808> GenerateResolveStub +00007FA1277C61A0 20 stub<9809> GenerateDispatchStub +00007FA12BFE4B58 30 stub<9810> AllocateTemporaryEntryPoints +00007FA12BFE4B88 78 stub<9811> AllocateTemporaryEntryPoints +00007FA12BFE4C00 60 stub<9812> AllocateTemporaryEntryPoints +00007FA12BFE4C60 78 stub<9813> AllocateTemporaryEntryPoints +00007FA1277FADD0 18 stub<9814> GenerateResolveStub +00007FA1277C61C0 20 stub<9815> GenerateDispatchStub +00007FA12BFE4CD8 120 stub<9816> AllocateTemporaryEntryPoints +00007FA12BFE6000 258 stub<9817> AllocateTemporaryEntryPoints +00007FA1277FAE40 18 stub<9818> GenerateResolveStub +00007FA12BFE6258 18 stub<9819> AllocateTemporaryEntryPoints +00007FA1277C61E0 20 stub<9820> GenerateDispatchStub +00007FA12BFE6270 18 stub<9821> AllocateTemporaryEntryPoints +00007FA12BFE6288 60 stub<9822> AllocateTemporaryEntryPoints +00007FA12BFE62E8 48 stub<9823> AllocateTemporaryEntryPoints +00007FA12BFE6330 48 stub<9824> AllocateTemporaryEntryPoints +00007FA12BFE6378 48 stub<9825> AllocateTemporaryEntryPoints +00007FA12BFE63C0 18 stub<9826> AllocateTemporaryEntryPoints +00007FA12BFE63D8 18 stub<9827> AllocateTemporaryEntryPoints +00007FA12BFE63F0 18 stub<9828> AllocateTemporaryEntryPoints +00007FA12BFE6408 18 stub<9829> AllocateTemporaryEntryPoints +00007FA12BFE6420 120 stub<9830> AllocateTemporaryEntryPoints +00007FA12BFE6540 30 stub<9831> AllocateTemporaryEntryPoints +00007FA1277FAEB0 18 stub<9832> GenerateResolveStub +00007FA1277C6200 20 stub<9833> GenerateDispatchStub +00007FA12BFE6570 18 stub<9834> AllocateTemporaryEntryPoints +00007FA1277FAF20 18 stub<9835> GenerateResolveStub +00007FA12BFE6588 18 stub<9836> AllocateTemporaryEntryPoints +00007FA1277C6220 20 stub<9837> GenerateDispatchStub +00007FA12BFE65A0 60 stub<9838> AllocateTemporaryEntryPoints +00007FA12BFE6600 18 stub<9839> AllocateTemporaryEntryPoints +00007FA12BFE6618 18 stub<9840> AllocateTemporaryEntryPoints +00007FA12BFE6630 18 stub<9841> AllocateTemporaryEntryPoints +00007FA12BFE6648 60 stub<9842> AllocateTemporaryEntryPoints +00007FA12BFE66A8 60 stub<9843> AllocateTemporaryEntryPoints +00007FA12B3CFA80 319 instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpClientHandler::SendAsync(class System.Net.Http.HttpRequestMessage,valuetype [System.Runtime]System.Threading.CancellationToken)[QuickJitted] +00007FA12BFE6708 18 stub<9844> AllocateTemporaryEntryPoints +00007FA12B3CFE00 38 !!0 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::GetDefaultValue()[QuickJitted] +00007FA12B3CFE50 d void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::.cctor()[QuickJitted] +00007FA12BFE6720 d8 stub<9845> AllocateTemporaryEntryPoints +00007FA12B3CFE80 24 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1[System.__Canon]::GetDefault()[QuickJitted] +00007FA12BFE67F8 c0 stub<9846> AllocateTemporaryEntryPoints +00007FA12BFE68B8 78 stub<9847> AllocateTemporaryEntryPoints +00007FA12BFE6930 c0 stub<9848> AllocateTemporaryEntryPoints +00007FA12BFE69F0 78 stub<9849> AllocateTemporaryEntryPoints +00007FA12BFE6A68 78 stub<9850> AllocateTemporaryEntryPoints +00007FA12BFE6AE0 18 stub<9851> AllocateTemporaryEntryPoints +00007FA12BFE6AF8 30 stub<9852> AllocateTemporaryEntryPoints +00007FA12BFE6B28 30 stub<9853> AllocateTemporaryEntryPoints +00007FA12BFE6B58 30 stub<9854> AllocateTemporaryEntryPoints +00007FA12BFE6B88 168 stub<9855> AllocateTemporaryEntryPoints +00007FA12B3CFEC0 11e valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::BeginMethod(!!1,!!2&,!!3&)[QuickJitted] +00007FA12B3D0000 2d bool [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationOptions`2[System.__Canon,System.__Canon]::get_IsIntegrationEnabled()[QuickJitted] +00007FA1277FAF90 18 stub<9856> GenerateResolveStub +00007FA1277C6240 20 stub<9857> GenerateDispatchStub +00007FA12BFE6CF0 48 stub<9858> AllocateTemporaryEntryPoints +00007FA12BFE6D38 48 stub<9859> AllocateTemporaryEntryPoints +00007FA12BFE6D80 48 stub<9860> AllocateTemporaryEntryPoints +00007FA12BFE6DC8 138 stub<9861> AllocateTemporaryEntryPoints +00007FA12BFE6F00 18 stub<9862> AllocateTemporaryEntryPoints +00007FA12BFE6F18 60 stub<9863> AllocateTemporaryEntryPoints +00007FA12BFE8000 228 stub<9864> AllocateTemporaryEntryPoints +00007FA12B3D0050 122 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationOptions`2[System.__Canon,System.__Canon]::.cctor()[QuickJitted] +00007FA12B3D0190 4b void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationOptions`2+<>c[System.__Canon,System.__Canon]::.cctor()[QuickJitted] +00007FA12B3D01F0 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationOptions`2+<>c[System.__Canon,System.__Canon]::.ctor()[QuickJitted] +00007FA12BFE8228 570 stub<9865> AllocateTemporaryEntryPoints +00007FA12B3D0230 2e instance void [System.Private.CoreLib] System.Lazy`1[System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]]::.ctor(class System.Func`1)[QuickJitted] +00007FA12B3D0280 7c instance void [System.Private.CoreLib] System.Lazy`1[System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]]::.ctor(class System.Func`1,valuetype System.Threading.LazyThreadSafetyMode,bool)[QuickJitted] +00007FA12BFE8798 60 stub<9866> AllocateTemporaryEntryPoints +00007FA1277C1640 18 stub<9867> GenerateLookupStub +00007FA12BFE87F8 60 stub<9868> AllocateTemporaryEntryPoints +00007FA12BFE8858 60 stub<9869> AllocateTemporaryEntryPoints +00007FA12B3D0310 a4 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationOptions`2[System.__Canon,System.__Canon]::RecordTelemetry()[QuickJitted] +00007FA12BFE88B8 18 stub<9870> AllocateTemporaryEntryPoints +00007FA12B3D03D0 38 instance !0 [System.Private.CoreLib] System.Lazy`1[System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]]::get_Value()[QuickJitted] +00007FA12BFE88D0 78 stub<9871> AllocateTemporaryEntryPoints +00007FA12B3D0420 e7 instance !0 [System.Private.CoreLib] System.Lazy`1[System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]]::CreateValue()[QuickJitted] +00007FA12B3D0540 b4 instance void [System.Private.CoreLib] System.Lazy`1[System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]]::ExecutionAndPublication(class System.LazyHelper,bool)[QuickJitted] +00007FA12BFEA000 6f0 stub<9872> AllocateTemporaryEntryPoints +00007FA12BFEA6F0 60 stub<9873> AllocateTemporaryEntryPoints +00007FA12BFEA750 c0 stub<9874> AllocateTemporaryEntryPoints +00007FA12BFEA810 90 stub<9875> AllocateTemporaryEntryPoints +00007FA12BFEA8A0 a8 stub<9876> AllocateTemporaryEntryPoints +00007FA12BFEA948 18 stub<9877> AllocateTemporaryEntryPoints +00007FA12B3D0620 f8 instance void [System.Private.CoreLib] System.Lazy`1[System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]]::ViaFactory(valuetype System.Threading.LazyThreadSafetyMode)[QuickJitted] +00007FA12BFEA960 78 stub<9878> AllocateTemporaryEntryPoints +00007FA12BFEA9D8 18 stub<9879> AllocateTemporaryEntryPoints +00007FA12B3D0740 a3 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationOptions`2+<>c[System.__Canon,System.__Canon]::<.cctor>b__8_0()[QuickJitted] +00007FA12B3D0800 8e instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::.ctor(class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B3D08B0 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12BFEA9F0 18 stub<9880> AllocateTemporaryEntryPoints +00007FA12BFEAA08 48 stub<9881> AllocateTemporaryEntryPoints +00007FA12B3D08E0 3da instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B3D0CE0 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12BFEAA50 528 stub<9882> AllocateTemporaryEntryPoints +00007FA12BFEC000 138 stub<9883> AllocateTemporaryEntryPoints +00007FA12BFEC138 18 stub<9884> AllocateTemporaryEntryPoints +00007FA12BFEC150 a8 stub<9885> AllocateTemporaryEntryPoints +00007FA12BFEC1F8 18 stub<9886> AllocateTemporaryEntryPoints +00007FA12BFEC210 18 stub<9887> AllocateTemporaryEntryPoints +00007FA12BFEC228 18 stub<9888> AllocateTemporaryEntryPoints +00007FA12B3D0D70 2716 valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.InstrumentationDefinitions::GetIntegrationId(string,class [System.Runtime]System.Type)[QuickJitted] +00007FA12BFEC240 48 stub<9889> AllocateTemporaryEntryPoints +00007FA12B3D38B0 28 instance void [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]::.ctor(!0)[QuickJitted] +00007FA12BFEC288 18 stub<9890> AllocateTemporaryEntryPoints +00007FA12B3D38F0 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]::get_HasValue()[QuickJitted] +00007FA12B3D3920 2c instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]::get_Value()[QuickJitted] +00007FA12B3D3960 2b instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::IntegrationRunning(valuetype Datadog.Trace.Configuration.IntegrationId)[QuickJitted] +00007FA12BFEC2A0 90 stub<9891> AllocateTemporaryEntryPoints +00007FA12BFEC330 f0 stub<9892> AllocateTemporaryEntryPoints +00007FA12B3D39A0 7a instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector::IntegrationRunning(valuetype Datadog.Trace.Configuration.IntegrationId)[QuickJitted] +00007FA12BFEC420 120 stub<9893> AllocateTemporaryEntryPoints +00007FA1277C6260 20 stub<9894> GenerateDispatchStub +00007FA12BFEC540 270 stub<9895> AllocateTemporaryEntryPoints +00007FA1277C1660 18 stub<9896> GenerateLookupStub +00007FA12BFEC7B0 60 stub<9898> AllocateTemporaryEntryPoints +00007FA1277C6280 20 stub<9897> GenerateDispatchStub +00007FA12BFEC810 60 stub<9899> AllocateTemporaryEntryPoints +00007FA12BFEC870 60 stub<9900> AllocateTemporaryEntryPoints +00007FA12BFEC8D0 18 stub<9901> AllocateTemporaryEntryPoints +00007FA12BFEC8E8 48 stub<9902> AllocateTemporaryEntryPoints +00007FA12BFEC930 18 stub<9903> AllocateTemporaryEntryPoints +00007FA12BFEC948 18 stub<9904> AllocateTemporaryEntryPoints +00007FA12BFEC960 138 stub<9905> AllocateTemporaryEntryPoints +00007FA12BFECA98 330 stub<9906> AllocateTemporaryEntryPoints +00007FA12B3D3A30 1dc valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.BeginMethodHandler`4[System.__Canon,System.__Canon,System.__Canon,System.Threading.CancellationToken]::Invoke(!1,!2&,!3&)[QuickJitted] +00007FA12BFECDC8 168 stub<9907> AllocateTemporaryEntryPoints +00007FA12BFECF30 48 stub<9908> AllocateTemporaryEntryPoints +00007FA12BFECF78 48 stub<9909> AllocateTemporaryEntryPoints +00007FA12BFEE000 48 stub<9910> AllocateTemporaryEntryPoints +00007FA12B3D3C30 60f instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12BFEE048 18 stub<9911> AllocateTemporaryEntryPoints +00007FA12B3D4260 126 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::GetBucket(int32)[QuickJitted] +00007FA12BFEE060 18 stub<9912> AllocateTemporaryEntryPoints +00007FA12B3D43A0 4b9 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.BeginMethodHandler`4[System.__Canon,System.__Canon,System.__Canon,System.Threading.CancellationToken]::.cctor()[QuickJitted] +00007FA12B3D4890 18e instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::GetOrAdd(!0,!1)[QuickJitted] +00007FA12BFEE078 a8 stub<9913> AllocateTemporaryEntryPoints +00007FA1277C62A0 20 stub<9914> GenerateDispatchStub +00007FA12BFEE120 18 stub<9915> AllocateTemporaryEntryPoints +00007FA12BFEE138 18 stub<9916> AllocateTemporaryEntryPoints +00007FA12BFEE150 78 stub<9917> AllocateTemporaryEntryPoints +00007FA12BFEE1C8 18 stub<9918> AllocateTemporaryEntryPoints +00007FA12BFEE1E0 4e0 stub<9919> AllocateTemporaryEntryPoints +00007FA12B3D4A40 540 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::TryGetValueInternal(!0,int32,!1&)[QuickJitted] +00007FA12BFEE6C0 108 stub<9920> AllocateTemporaryEntryPoints +00007FA12BFEE7C8 18 stub<9921> AllocateTemporaryEntryPoints +00007FA12B3D4FA0 89f instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12B3D5870 db instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA12B3D6FA0 70 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[System.__Canon,Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher+ChangeTokenInfo]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA12BFEE7E0 18 stub<9922> AllocateTemporaryEntryPoints +00007FA12B3D5960 1618 class [System.Reflection.Emit.Lightweight]System.Reflection.Emit.DynamicMethod [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper::CreateBeginMethodDelegate(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type[])[QuickJitted] +00007FA12B3D7030 150 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper::.cctor()[QuickJitted] +00007FA1277FB000 18 stub<9923> GenerateResolveStub +00007FA1277C62C0 20 stub<9924> GenerateDispatchStub +00007FA1277FB070 18 stub<9925> GenerateResolveStub +00007FA12BFEE7F8 18 stub<9926> AllocateTemporaryEntryPoints +00007FA1277C62E0 20 stub<9927> GenerateDispatchStub +00007FA1277C1680 18 stub<9928> GenerateLookupStub +00007FA1277FB0E0 18 stub<9929> GenerateResolveStub +00007FA1277C6300 20 stub<9930> GenerateDispatchStub +00007FA1277FB150 18 stub<9931> GenerateResolveStub +00007FA1277C6320 20 stub<9932> GenerateDispatchStub +00007FA12B3D71A0 bf !!0[] [Datadog.Trace] Datadog.Trace.ExtensionMethods.ArrayExtensions::Concat(!!0[],!!0[])[QuickJitted] +00007FA1277FB1C0 18 stub<9933> GenerateResolveStub +00007FA1277C6340 20 stub<9934> GenerateDispatchStub +00007FA12B3D7280 47 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper+<>c::.cctor()[QuickJitted] +00007FA12B3D72E0 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper+<>c::.ctor()[QuickJitted] +00007FA1277FB230 18 stub<9935> GenerateResolveStub +00007FA1277C6360 20 stub<9936> GenerateDispatchStub +00007FA12BFEE810 60 stub<9937> AllocateTemporaryEntryPoints +00007FA12BFEE870 18 stub<9938> AllocateTemporaryEntryPoints +00007FA12BFEE888 18 stub<9939> AllocateTemporaryEntryPoints +00007FA1277C6380 20 stub<9940> GenerateDispatchStub +00007FA12BFEE8A0 a8 stub<9941> AllocateTemporaryEntryPoints +00007FA12B3D7320 52 instance bool [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper+<>c::b__7_0(class [System.Runtime]System.Type)[QuickJitted] +00007FA12BFEE948 c0 stub<9942> AllocateTemporaryEntryPoints +00007FA12BFEEA08 c0 stub<9943> AllocateTemporaryEntryPoints +00007FA12BFEEAC8 a8 stub<9944> AllocateTemporaryEntryPoints +00007FA12BFEEB70 228 stub<9945> AllocateTemporaryEntryPoints +00007FA12BFEED98 48 stub<9946> AllocateTemporaryEntryPoints +00007FA12BFEEDE0 18 stub<9947> AllocateTemporaryEntryPoints +00007FA12C450000 6f0 stub<9948> AllocateTemporaryEntryPoints +00007FA12C4506F0 c0 stub<9949> AllocateTemporaryEntryPoints +00007FA12C4507B0 90 stub<9950> AllocateTemporaryEntryPoints +00007FA12C450840 a8 stub<9951> AllocateTemporaryEntryPoints +00007FA1277FB2A0 18 stub<9952> GenerateResolveStub +00007FA12C4508E8 18 stub<9953> AllocateTemporaryEntryPoints +00007FA1277C63A0 20 stub<9954> GenerateDispatchStub +00007FA12C450900 78 stub<9955> AllocateTemporaryEntryPoints +00007FA12C450978 18 stub<9956> AllocateTemporaryEntryPoints +00007FA1277FB310 18 stub<9957> GenerateResolveStub +00007FA1277C63C0 20 stub<9958> GenerateDispatchStub +00007FA12C450990 198 stub<9959> AllocateTemporaryEntryPoints +00007FA12C450B28 60 stub<9960> AllocateTemporaryEntryPoints +00007FA12C450B88 1b0 stub<9961> AllocateTemporaryEntryPoints +00007FA12B3D7390 173 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetOrCreateProxyType(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12C450D38 168 stub<9962> AllocateTemporaryEntryPoints +00007FA12C450EA0 90 stub<9963> AllocateTemporaryEntryPoints +00007FA12C450F30 18 stub<9964> AllocateTemporaryEntryPoints +00007FA12C450F48 18 stub<9965> AllocateTemporaryEntryPoints +00007FA12C452000 258 stub<9966> AllocateTemporaryEntryPoints +00007FA12C452258 18 stub<9967> AllocateTemporaryEntryPoints +00007FA12C452270 18 stub<9968> AllocateTemporaryEntryPoints +00007FA12C452288 18 stub<9969> AllocateTemporaryEntryPoints +00007FA12C4522A0 18 stub<9970> AllocateTemporaryEntryPoints +00007FA12C4522B8 60 stub<9971> AllocateTemporaryEntryPoints +00007FA12C452318 18 stub<9972> AllocateTemporaryEntryPoints +00007FA12C452330 18 stub<9973> AllocateTemporaryEntryPoints +00007FA12C452348 60 stub<9974> AllocateTemporaryEntryPoints +00007FA12C4523A8 c0 stub<9975> AllocateTemporaryEntryPoints +00007FA12C452468 18 stub<9976> AllocateTemporaryEntryPoints +00007FA12C452480 18 stub<9977> AllocateTemporaryEntryPoints +00007FA12C452498 18 stub<9978> AllocateTemporaryEntryPoints +00007FA12C4524B0 18 stub<9979> AllocateTemporaryEntryPoints +00007FA12C4524C8 60 stub<9980> AllocateTemporaryEntryPoints +00007FA12C452528 30 stub<9981> AllocateTemporaryEntryPoints +00007FA1277FB380 18 stub<9982> GenerateResolveStub +00007FA1277C63E0 20 stub<9983> GenerateDispatchStub +00007FA12B3D7520 37e void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::.cctor()[QuickJitted] +00007FA12C452558 48 stub<9984> AllocateTemporaryEntryPoints +00007FA12B3D78C0 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::.ctor()[QuickJitted] +00007FA12C4525A0 30 stub<9985> AllocateTemporaryEntryPoints +00007FA12B3D7960 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12C4525D0 168 stub<9986> AllocateTemporaryEntryPoints +00007FA12C452738 30 stub<9987> AllocateTemporaryEntryPoints +00007FA12C452768 18 stub<9988> AllocateTemporaryEntryPoints +00007FA12C452780 18 stub<9989> AllocateTemporaryEntryPoints +00007FA12C452798 18 stub<9990> AllocateTemporaryEntryPoints +00007FA12C4527B0 48 stub<9991> AllocateTemporaryEntryPoints +00007FA12C4527F8 18 stub<9992> AllocateTemporaryEntryPoints +00007FA12C452810 48 stub<9993> AllocateTemporaryEntryPoints +00007FA12C452858 60 stub<9994> AllocateTemporaryEntryPoints +00007FA12C4528B8 d8 stub<9995> AllocateTemporaryEntryPoints +00007FA12C452990 18 stub<9996> AllocateTemporaryEntryPoints +00007FA12C4529A8 18 stub<9997> AllocateTemporaryEntryPoints +00007FA12C4529C0 a8 stub<9998> AllocateTemporaryEntryPoints +00007FA12C452A68 60 stub<9999> AllocateTemporaryEntryPoints +00007FA12C452AC8 60 stub<10000> AllocateTemporaryEntryPoints +00007FA12C452B28 18 stub<10001> AllocateTemporaryEntryPoints +00007FA12C452B40 48 stub<10002> AllocateTemporaryEntryPoints +00007FA12C452B88 18 stub<10003> AllocateTemporaryEntryPoints +00007FA12C452BA0 18 stub<10004> AllocateTemporaryEntryPoints +00007FA12C452BB8 d8 stub<10005> AllocateTemporaryEntryPoints +00007FA12C452C90 48 stub<10006> AllocateTemporaryEntryPoints +00007FA12C452CD8 30 stub<10007> AllocateTemporaryEntryPoints +00007FA12C452D08 18 stub<10008> AllocateTemporaryEntryPoints +00007FA12B3D7990 388 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12C452D20 2a0 stub<10009> AllocateTemporaryEntryPoints +00007FA12B3D7D40 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12B3D7DD0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.DuckTyping.TypesTuple]::get_Default()[QuickJitted] +00007FA1277FB3F0 18 stub<10010> GenerateResolveStub +00007FA1277C6400 20 stub<10011> GenerateDispatchStub +00007FA12B3D7E10 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.DuckTyping.TypesTuple]::.cctor()[QuickJitted] +00007FA1277FB460 18 stub<10012> GenerateResolveStub +00007FA12C452FC0 18 stub<10013> AllocateTemporaryEntryPoints +00007FA1277C6420 20 stub<10014> GenerateDispatchStub +00007FA12C454000 a8 stub<10015> AllocateTemporaryEntryPoints +00007FA12C4540A8 18 stub<10016> AllocateTemporaryEntryPoints +00007FA12C4540C0 18 stub<10017> AllocateTemporaryEntryPoints +00007FA12C4540D8 30 stub<10018> AllocateTemporaryEntryPoints +00007FA12B3D7E90 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Datadog.Trace.DuckTyping.TypesTuple]::.ctor()[QuickJitted] +00007FA12B3D7ED0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.DuckTyping.TypesTuple]::.ctor()[QuickJitted] +00007FA12C454108 18 stub<10019> AllocateTemporaryEntryPoints +00007FA12C454120 18 stub<10020> AllocateTemporaryEntryPoints +00007FA12C454138 78 stub<10021> AllocateTemporaryEntryPoints +00007FA12C4541B0 78 stub<10022> AllocateTemporaryEntryPoints +00007FA12C454228 18 stub<10023> AllocateTemporaryEntryPoints +00007FA12C454258 18 stub<10024> AllocateTemporaryEntryPoints +00007FA12C454270 18 stub<10025> AllocateTemporaryEntryPoints +00007FA12C454288 18 stub<10026> AllocateTemporaryEntryPoints +00007FA12C4542A0 18 stub<10027> AllocateTemporaryEntryPoints +00007FA12784B560 e stub<10028> GenerateVTableCallStub +00007FA12C4542B8 18 stub<10029> AllocateTemporaryEntryPoints +00007FA12B3D8310 3b instance void [Datadog.Trace] Datadog.Trace.DuckTyping.TypesTuple::.ctor(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3D8360 47 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c::.cctor()[QuickJitted] +00007FA12B3D83C0 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c::.ctor()[QuickJitted] +00007FA1277C16A0 18 stub<10030> GenerateLookupStub +00007FA12C4542D0 30 stub<10031> AllocateTemporaryEntryPoints +00007FA12B3D8400 13e instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::GetOrAdd(!0,class [System.Private.CoreLib]System.Func`2)[QuickJitted] +00007FA12B3D8560 70 instance int32 [Datadog.Trace] Datadog.Trace.DuckTyping.TypesTuple::GetHashCode()[QuickJitted] +00007FA12C454300 18 stub<10032> AllocateTemporaryEntryPoints +00007FA12C454318 18 stub<10033> AllocateTemporaryEntryPoints +00007FA1277C16C0 18 stub<10034> GenerateLookupStub +00007FA12C454330 48 stub<10035> AllocateTemporaryEntryPoints +00007FA12B3D85F0 47a instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::TryGetValueInternal(!0,int32,!1&)[QuickJitted] +00007FA12C454378 30 stub<10036> AllocateTemporaryEntryPoints +00007FA12B3D8A90 126 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::GetBucket(int32)[QuickJitted] +00007FA12C4543A8 18 stub<10037> AllocateTemporaryEntryPoints +00007FA12C4543C0 168 stub<10038> AllocateTemporaryEntryPoints +00007FA12C454528 18 stub<10039> AllocateTemporaryEntryPoints +00007FA12C454540 30 stub<10040> AllocateTemporaryEntryPoints +00007FA12C454570 18 stub<10041> AllocateTemporaryEntryPoints +00007FA12C454588 60 stub<10042> AllocateTemporaryEntryPoints +00007FA12C4545E8 a8 stub<10043> AllocateTemporaryEntryPoints +00007FA12C454690 18 stub<10044> AllocateTemporaryEntryPoints +00007FA12C4546A8 18 stub<10045> AllocateTemporaryEntryPoints +00007FA12B3D8BD0 af instance class [System.Runtime]System.Lazy`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c::b__4_0(valuetype Datadog.Trace.DuckTyping.TypesTuple)[QuickJitted] +00007FA12C4546C0 48 stub<10046> AllocateTemporaryEntryPoints +00007FA12C454708 48 stub<10047> AllocateTemporaryEntryPoints +00007FA12B3D8CA0 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c__DisplayClass4_0::.ctor()[QuickJitted] +00007FA12C454750 18 stub<10048> AllocateTemporaryEntryPoints +00007FA12C454768 18 stub<10049> AllocateTemporaryEntryPoints +00007FA12B3D8CE0 2e instance void [System.Private.CoreLib] System.Lazy`1[Datadog.Trace.DuckTyping.DuckType+CreateTypeResult]::.ctor(class System.Func`1)[QuickJitted] +00007FA12C454780 30 stub<10050> AllocateTemporaryEntryPoints +00007FA12C4547B0 48 stub<10051> AllocateTemporaryEntryPoints +00007FA12C4547F8 60 stub<10052> AllocateTemporaryEntryPoints +00007FA12B3D8D30 7c instance void [System.Private.CoreLib] System.Lazy`1[Datadog.Trace.DuckTyping.DuckType+CreateTypeResult]::.ctor(class System.Func`1,valuetype System.Threading.LazyThreadSafetyMode,bool)[QuickJitted] +00007FA12C454858 18 stub<10053> AllocateTemporaryEntryPoints +00007FA12C454870 18 stub<10054> AllocateTemporaryEntryPoints +00007FA12C454888 18 stub<10055> AllocateTemporaryEntryPoints +00007FA12C4548A0 30 stub<10056> AllocateTemporaryEntryPoints +00007FA12C4548D0 30 stub<10057> AllocateTemporaryEntryPoints +00007FA12B3D8DC0 74b instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12C454900 48 stub<10058> AllocateTemporaryEntryPoints +00007FA12C454948 60 stub<10059> AllocateTemporaryEntryPoints +00007FA12B3D9540 db instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA1277FB4D0 18 stub<10060> GenerateResolveStub +00007FA1277C6440 20 stub<10061> GenerateDispatchStub +00007FA12B3D9630 74 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA12C4549A8 18 stub<10062> AllocateTemporaryEntryPoints +00007FA12B3D96C0 61 instance !0 [System.Private.CoreLib] System.Lazy`1[Datadog.Trace.DuckTyping.DuckType+CreateTypeResult]::get_Value()[QuickJitted] +00007FA12B3D9740 f2 instance !0 [System.Private.CoreLib] System.Lazy`1[Datadog.Trace.DuckTyping.DuckType+CreateTypeResult]::CreateValue()[QuickJitted] +00007FA12B3D9870 b4 instance void [System.Private.CoreLib] System.Lazy`1[Datadog.Trace.DuckTyping.DuckType+CreateTypeResult]::ExecutionAndPublication(class System.LazyHelper,bool)[QuickJitted] +00007FA12C4549C0 18 stub<10063> AllocateTemporaryEntryPoints +00007FA12C4549D8 30 stub<10064> AllocateTemporaryEntryPoints +00007FA12C454A08 18 stub<10065> AllocateTemporaryEntryPoints +00007FA12C454A20 18 stub<10066> AllocateTemporaryEntryPoints +00007FA12C454A38 30 stub<10067> AllocateTemporaryEntryPoints +00007FA12C454A68 30 stub<10068> AllocateTemporaryEntryPoints +00007FA12B3D9950 ff instance void [System.Private.CoreLib] System.Lazy`1[Datadog.Trace.DuckTyping.DuckType+CreateTypeResult]::ViaFactory(valuetype System.Threading.LazyThreadSafetyMode)[QuickJitted] +00007FA12C454A98 18 stub<10069> AllocateTemporaryEntryPoints +00007FA12C454AB0 90 stub<10070> AllocateTemporaryEntryPoints +00007FA12B3D9A80 a2 instance valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c__DisplayClass4_0::b__1()[QuickJitted] +00007FA12C454B40 60 stub<10071> AllocateTemporaryEntryPoints +00007FA12C454BA0 60 stub<10072> AllocateTemporaryEntryPoints +00007FA12C454C00 60 stub<10073> AllocateTemporaryEntryPoints +00007FA12C454C60 30 stub<10074> AllocateTemporaryEntryPoints +00007FA12C454C90 18 stub<10075> AllocateTemporaryEntryPoints +00007FA12C454CA8 18 stub<10076> AllocateTemporaryEntryPoints +00007FA12B3D9B40 5b9 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::CreateProxyType(class [System.Runtime]System.Type,class [System.Runtime]System.Type,bool)[QuickJitted] +00007FA12C454CC0 30 stub<10077> AllocateTemporaryEntryPoints +00007FA12C454CF0 18 stub<10078> AllocateTemporaryEntryPoints +00007FA12C454D08 18 stub<10079> AllocateTemporaryEntryPoints +00007FA12C454D20 18 stub<10080> AllocateTemporaryEntryPoints +00007FA12C454D38 30 stub<10081> AllocateTemporaryEntryPoints +00007FA12C454D68 288 stub<10082> AllocateTemporaryEntryPoints +00007FA12C456000 18 stub<10083> AllocateTemporaryEntryPoints +00007FA12C456018 48 stub<10084> AllocateTemporaryEntryPoints +00007FA12C456060 18 stub<10085> AllocateTemporaryEntryPoints +00007FA12C456078 18 stub<10086> AllocateTemporaryEntryPoints +00007FA12C456090 18 stub<10087> AllocateTemporaryEntryPoints +00007FA12C4560A8 18 stub<10088> AllocateTemporaryEntryPoints +00007FA12C4560C0 18 stub<10089> AllocateTemporaryEntryPoints +00007FA12C4560D8 18 stub<10090> AllocateTemporaryEntryPoints +00007FA1277FB540 18 stub<10091> GenerateResolveStub +00007FA1277C6460 20 stub<10092> GenerateDispatchStub +00007FA12C4560F0 360 stub<10093> AllocateTemporaryEntryPoints +00007FA12C456450 60 stub<10094> AllocateTemporaryEntryPoints +00007FA12C4564B0 f0 stub<10095> AllocateTemporaryEntryPoints +00007FA12C4565A0 30 stub<10096> AllocateTemporaryEntryPoints +00007FA12C4565D0 30 stub<10097> AllocateTemporaryEntryPoints +00007FA12C456600 30 stub<10098> AllocateTemporaryEntryPoints +00007FA12C456630 30 stub<10099> AllocateTemporaryEntryPoints +00007FA12C456660 30 stub<10100> AllocateTemporaryEntryPoints +00007FA12C456690 30 stub<10101> AllocateTemporaryEntryPoints +00007FA12C4566C0 18 stub<10102> AllocateTemporaryEntryPoints +00007FA12C4566D8 120 stub<10103> AllocateTemporaryEntryPoints +00007FA12C4567F8 a8 stub<10104> AllocateTemporaryEntryPoints +00007FA12C4568A0 48 stub<10105> AllocateTemporaryEntryPoints +00007FA12C4568E8 18 stub<10106> AllocateTemporaryEntryPoints +00007FA12C456900 18 stub<10107> AllocateTemporaryEntryPoints +00007FA12C456918 d8 stub<10108> AllocateTemporaryEntryPoints +00007FA12C4569F0 18 stub<10109> AllocateTemporaryEntryPoints +00007FA12C456A08 18 stub<10110> AllocateTemporaryEntryPoints +00007FA12C456A20 1c8 stub<10111> AllocateTemporaryEntryPoints +00007FA12C456BE8 18 stub<10112> AllocateTemporaryEntryPoints +00007FA12C456C00 18 stub<10113> AllocateTemporaryEntryPoints +00007FA12B3DA160 c2e void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::CreateProperties(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.FieldInfo)[QuickJitted] +00007FA12C456C18 f0 stub<10114> AllocateTemporaryEntryPoints +00007FA12B3DADC0 9b class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetProperties(class [System.Runtime]System.Type)[QuickJitted] +00007FA12C456D08 30 stub<10115> AllocateTemporaryEntryPoints +00007FA12C456D38 18 stub<10116> AllocateTemporaryEntryPoints +00007FA12C456D50 d8 stub<10117> AllocateTemporaryEntryPoints +00007FA12B3DAE70 227 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::AddInterfaceProperties(class [System.Runtime]System.Type,class [System.Collections]System.Collections.Generic.List`1)[QuickJitted] +00007FA12C456E28 48 stub<10118> AllocateTemporaryEntryPoints +00007FA12C456E70 18 stub<10119> AllocateTemporaryEntryPoints +00007FA12C456E88 18 stub<10120> AllocateTemporaryEntryPoints +00007FA12B3DB0C0 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c__DisplayClass12_0::.ctor()[QuickJitted] +00007FA12C456EA0 150 stub<10121> AllocateTemporaryEntryPoints +00007FA12C458000 78 stub<10122> AllocateTemporaryEntryPoints +00007FA12C458078 18 stub<10123> AllocateTemporaryEntryPoints +00007FA12C458090 f0 stub<10124> AllocateTemporaryEntryPoints +00007FA12C458180 18 stub<10125> AllocateTemporaryEntryPoints +00007FA12B3DB100 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttribute::.ctor()[QuickJitted] +00007FA12C458198 18 stub<10126> AllocateTemporaryEntryPoints +00007FA12C4581B0 18 stub<10127> AllocateTemporaryEntryPoints +00007FA12B3DB140 2a instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttributeBase::.ctor()[QuickJitted] +00007FA12C4581C8 48 stub<10128> AllocateTemporaryEntryPoints +00007FA12B3DB180 1c instance string [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttributeBase::get_Name()[QuickJitted] +00007FA12C458210 18 stub<10129> AllocateTemporaryEntryPoints +00007FA12C458228 48 stub<10130> AllocateTemporaryEntryPoints +00007FA12C458270 18 stub<10131> AllocateTemporaryEntryPoints +00007FA12B3DB1B0 2a instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttributeBase::set_Name(string)[QuickJitted] +00007FA12C458288 18 stub<10132> AllocateTemporaryEntryPoints +00007FA12C4582A0 18 stub<10133> AllocateTemporaryEntryPoints +00007FA12B3DB1F0 1b instance valuetype Datadog.Trace.DuckTyping.DuckKind [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttribute::get_Kind()[QuickJitted] +00007FA12C4582B8 18 stub<10134> AllocateTemporaryEntryPoints +00007FA12C4582D0 18 stub<10135> AllocateTemporaryEntryPoints +00007FA12B3DB220 1b instance valuetype [System.Runtime]System.Reflection.BindingFlags [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttributeBase::get_BindingFlags()[QuickJitted] +00007FA12C4582E8 18 stub<10136> AllocateTemporaryEntryPoints +00007FA12C458300 18 stub<10137> AllocateTemporaryEntryPoints +00007FA12C458318 18 stub<10138> AllocateTemporaryEntryPoints +00007FA12C458330 60 stub<10139> AllocateTemporaryEntryPoints +00007FA12C458390 18 stub<10140> AllocateTemporaryEntryPoints +00007FA12C4583A8 18 stub<10141> AllocateTemporaryEntryPoints +00007FA12C4583C0 30 stub<10142> AllocateTemporaryEntryPoints +00007FA12C4583F0 18 stub<10143> AllocateTemporaryEntryPoints +00007FA12C458408 18 stub<10144> AllocateTemporaryEntryPoints +00007FA12C458420 18 stub<10145> AllocateTemporaryEntryPoints +00007FA12C458438 18 stub<10146> AllocateTemporaryEntryPoints +00007FA12C458450 18 stub<10147> AllocateTemporaryEntryPoints +00007FA12C458468 18 stub<10148> AllocateTemporaryEntryPoints +00007FA12C458480 18 stub<10149> AllocateTemporaryEntryPoints +00007FA12C458498 18 stub<10150> AllocateTemporaryEntryPoints +00007FA12C4584B0 18 stub<10151> AllocateTemporaryEntryPoints +00007FA12C4584C8 18 stub<10152> AllocateTemporaryEntryPoints +00007FA12C4584E0 18 stub<10153> AllocateTemporaryEntryPoints +00007FA12C4584F8 18 stub<10154> AllocateTemporaryEntryPoints +00007FA12C458510 18 stub<10155> AllocateTemporaryEntryPoints +00007FA12C458528 18 stub<10156> AllocateTemporaryEntryPoints +00007FA12B3DB250 459 class [System.Runtime]System.Reflection.PropertyInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetTargetPropertyOrIndex(class [System.Runtime]System.Type,string,valuetype [System.Runtime]System.Reflection.BindingFlags,class [System.Runtime]System.Reflection.PropertyInfo)[QuickJitted] +00007FA12C458540 18 stub<10157> AllocateTemporaryEntryPoints +00007FA12C458558 48 stub<10158> AllocateTemporaryEntryPoints +00007FA12C4585A0 18 stub<10159> AllocateTemporaryEntryPoints +00007FA12C4585B8 18 stub<10160> AllocateTemporaryEntryPoints +00007FA12C4585D0 18 stub<10161> AllocateTemporaryEntryPoints +00007FA12C4585E8 18 stub<10162> AllocateTemporaryEntryPoints +00007FA12C458600 138 stub<10163> AllocateTemporaryEntryPoints +00007FA12C458738 18 stub<10164> AllocateTemporaryEntryPoints +00007FA12C458750 18 stub<10165> AllocateTemporaryEntryPoints +00007FA12C458768 60 stub<10166> AllocateTemporaryEntryPoints +00007FA12C4587C8 18 stub<10167> AllocateTemporaryEntryPoints +00007FA12C4587E0 18 stub<10168> AllocateTemporaryEntryPoints +00007FA12C4587F8 30 stub<10169> AllocateTemporaryEntryPoints +00007FA12C458828 18 stub<10170> AllocateTemporaryEntryPoints +00007FA12C458840 18 stub<10171> AllocateTemporaryEntryPoints +00007FA12C458858 30 stub<10172> AllocateTemporaryEntryPoints +00007FA12C458888 18 stub<10173> AllocateTemporaryEntryPoints +00007FA12C4588A0 48 stub<10174> AllocateTemporaryEntryPoints +00007FA12C4588E8 18 stub<10175> AllocateTemporaryEntryPoints +00007FA12C458900 18 stub<10176> AllocateTemporaryEntryPoints +00007FA12C458918 18 stub<10177> AllocateTemporaryEntryPoints +00007FA12B3DB6E0 108b class [System.Reflection.Emit]System.Reflection.Emit.MethodBuilder [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetPropertyGetMethod(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.MemberInfo,class [System.Runtime]System.Reflection.PropertyInfo,class [System.Runtime]System.Reflection.FieldInfo,class [System.Runtime]System.Func`4,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12C458930 1b0 stub<10178> AllocateTemporaryEntryPoints +00007FA12C458AE0 18 stub<10179> AllocateTemporaryEntryPoints +00007FA12C458AF8 18 stub<10180> AllocateTemporaryEntryPoints +00007FA12C458B10 c0 stub<10181> AllocateTemporaryEntryPoints +00007FA12C458BD0 48 stub<10182> AllocateTemporaryEntryPoints +00007FA12C458C18 18 stub<10183> AllocateTemporaryEntryPoints +00007FA12C458C30 30 stub<10184> AllocateTemporaryEntryPoints +00007FA12C458C60 18 stub<10185> AllocateTemporaryEntryPoints +00007FA12C458C78 48 stub<10186> AllocateTemporaryEntryPoints +00007FA12B3DC790 82 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetPropertyGetParametersTypes(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Runtime]System.Reflection.PropertyInfo,bool,bool)[QuickJitted] +00007FA12C458CC0 18 stub<10187> AllocateTemporaryEntryPoints +00007FA12B3DC830 37 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+d__36::.ctor(int32)[QuickJitted] +00007FA12C458CD8 18 stub<10188> AllocateTemporaryEntryPoints +00007FA12C458CF0 138 stub<10189> AllocateTemporaryEntryPoints +00007FA12C458E28 90 stub<10190> AllocateTemporaryEntryPoints +00007FA12C458EB8 18 stub<10191> AllocateTemporaryEntryPoints +00007FA12C458ED0 18 stub<10192> AllocateTemporaryEntryPoints +00007FA12B3DC880 c2 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+d__36::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12C458EE8 30 stub<10193> AllocateTemporaryEntryPoints +00007FA12C458F18 18 stub<10194> AllocateTemporaryEntryPoints +00007FA12C458F30 18 stub<10195> AllocateTemporaryEntryPoints +00007FA12C458F48 18 stub<10196> AllocateTemporaryEntryPoints +00007FA12C458F60 60 stub<10197> AllocateTemporaryEntryPoints +00007FA12B3DC960 255 instance bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+d__36::MoveNext()[QuickJitted] +00007FA12C458FC0 18 stub<10198> AllocateTemporaryEntryPoints +00007FA12C458FD8 18 stub<10199> AllocateTemporaryEntryPoints +00007FA12B3DCBF0 14 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+d__36::System.IDisposable.Dispose()[QuickJitted] +00007FA1277C6480 20 stub<10200> GenerateDispatchStub +00007FA12C45A000 18 stub<10201> AllocateTemporaryEntryPoints +00007FA12C45A018 a8 stub<10202> AllocateTemporaryEntryPoints +00007FA12C45A0C0 18 stub<10203> AllocateTemporaryEntryPoints +00007FA12C45A0D8 18 stub<10204> AllocateTemporaryEntryPoints +00007FA12C45A0F0 30 stub<10205> AllocateTemporaryEntryPoints +00007FA12B3DCC20 6d instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::.ctor(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12C45A120 18 stub<10206> AllocateTemporaryEntryPoints +00007FA12C45A138 48 stub<10207> AllocateTemporaryEntryPoints +00007FA12B3DCCB0 125 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::Emit(valuetype [System.Reflection.Primitives]System.Reflection.Emit.OpCode)[QuickJitted] +00007FA12B3DCDF0 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass26_0::.ctor()[QuickJitted] +00007FA12B3DCE30 71 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::UseDirectAccessTo(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Runtime]System.Type)[QuickJitted] +00007FA12C45A180 30 stub<10208> AllocateTemporaryEntryPoints +00007FA12C45A1B0 48 stub<10209> AllocateTemporaryEntryPoints +00007FA12B3DCEC0 14f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::EmitCall(valuetype [System.Reflection.Primitives]System.Reflection.Emit.OpCode,class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Type[])[QuickJitted] +00007FA12B3DD030 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass31_0::.ctor()[QuickJitted] +00007FA12C45A1F8 90 stub<10210> AllocateTemporaryEntryPoints +00007FA12C45A288 18 stub<10211> AllocateTemporaryEntryPoints +00007FA12C45A2A0 18 stub<10212> AllocateTemporaryEntryPoints +00007FA12C45A2B8 18 stub<10213> AllocateTemporaryEntryPoints +00007FA12C45A2D0 30 stub<10214> AllocateTemporaryEntryPoints +00007FA12B3DD070 114 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::NeedsDuckChaining(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B3DD1A0 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckCopyAttribute::.ctor()[QuickJitted] +00007FA12C45A300 a8 stub<10215> AllocateTemporaryEntryPoints +00007FA12C45A3A8 48 stub<10216> AllocateTemporaryEntryPoints +00007FA12C45A3F0 18 stub<10217> AllocateTemporaryEntryPoints +00007FA12C45A408 18 stub<10218> AllocateTemporaryEntryPoints +00007FA12C45A420 60 stub<10219> AllocateTemporaryEntryPoints +00007FA12C45A480 78 stub<10220> AllocateTemporaryEntryPoints +00007FA12C45A4F8 18 stub<10221> AllocateTemporaryEntryPoints +00007FA12C45A510 18 stub<10222> AllocateTemporaryEntryPoints +00007FA12C45A528 18 stub<10223> AllocateTemporaryEntryPoints +00007FA12B3DD1E0 34c class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+MethodIlHelper::AddIlToDuckChain(class Datadog.Trace.DuckTyping.LazyILGenerator,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12C45A540 18 stub<10224> AllocateTemporaryEntryPoints +00007FA12C45A558 18 stub<10225> AllocateTemporaryEntryPoints +00007FA12C45A570 18 stub<10226> AllocateTemporaryEntryPoints +00007FA12C45A588 a8 stub<10227> AllocateTemporaryEntryPoints +00007FA12C45A630 18 stub<10228> AllocateTemporaryEntryPoints +00007FA12C45A648 18 stub<10229> AllocateTemporaryEntryPoints +00007FA12C45A660 30 stub<10230> AllocateTemporaryEntryPoints +00007FA12C45A690 48 stub<10231> AllocateTemporaryEntryPoints +00007FA1277FB5B0 18 stub<10232> GenerateResolveStub +00007FA1277C64A0 20 stub<10233> GenerateDispatchStub +00007FA12C45A6D8 18 stub<10234> AllocateTemporaryEntryPoints +00007FA12B3DD960 13f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::Emit(valuetype [System.Reflection.Primitives]System.Reflection.Emit.OpCode,class [System.Runtime]System.Reflection.MethodInfo)[QuickJitted] +00007FA12C45A6F0 18 stub<10235> AllocateTemporaryEntryPoints +00007FA12B3DDAC0 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass24_0::.ctor()[QuickJitted] +00007FA12C45A708 78 stub<10236> AllocateTemporaryEntryPoints +00007FA12C45A780 18 stub<10237> AllocateTemporaryEntryPoints +00007FA12B3DDB00 10a instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::Flush()[QuickJitted] +00007FA12C45A798 18 stub<10238> AllocateTemporaryEntryPoints +00007FA12C45A7B0 18 stub<10239> AllocateTemporaryEntryPoints +00007FA12C45A7C8 18 stub<10240> AllocateTemporaryEntryPoints +00007FA12C45A7E0 18 stub<10241> AllocateTemporaryEntryPoints +00007FA12C45A7F8 18 stub<10242> AllocateTemporaryEntryPoints +00007FA12C45A810 18 stub<10243> AllocateTemporaryEntryPoints +00007FA12C45A828 48 stub<10244> AllocateTemporaryEntryPoints +00007FA12C45A870 a8 stub<10245> AllocateTemporaryEntryPoints +00007FA12C45A918 18 stub<10246> AllocateTemporaryEntryPoints +00007FA12C45A930 18 stub<10247> AllocateTemporaryEntryPoints +00007FA12C45A948 18 stub<10248> AllocateTemporaryEntryPoints +00007FA12C45A960 18 stub<10249> AllocateTemporaryEntryPoints +00007FA12C45A978 18 stub<10250> AllocateTemporaryEntryPoints +00007FA12C45C000 6f0 stub<10251> AllocateTemporaryEntryPoints +00007FA12C45C6F0 78 stub<10252> AllocateTemporaryEntryPoints +00007FA12C45C768 a8 stub<10253> AllocateTemporaryEntryPoints +00007FA12C45C810 18 stub<10254> AllocateTemporaryEntryPoints +00007FA12C45C828 18 stub<10255> AllocateTemporaryEntryPoints +00007FA12C45C840 18 stub<10256> AllocateTemporaryEntryPoints +00007FA12C45C858 18 stub<10257> AllocateTemporaryEntryPoints +00007FA12C45C870 18 stub<10258> AllocateTemporaryEntryPoints +00007FA12C45C888 18 stub<10259> AllocateTemporaryEntryPoints +00007FA12C45C8A0 18 stub<10260> AllocateTemporaryEntryPoints +00007FA12C45C8B8 18 stub<10261> AllocateTemporaryEntryPoints +00007FA12C45C8D0 30 stub<10262> AllocateTemporaryEntryPoints +00007FA12C45C900 30 stub<10263> AllocateTemporaryEntryPoints +00007FA12C45C930 18 stub<10264> AllocateTemporaryEntryPoints +00007FA12C45C948 30 stub<10265> AllocateTemporaryEntryPoints +00007FA12C45C978 48 stub<10266> AllocateTemporaryEntryPoints +00007FA12C45C9C0 18 stub<10267> AllocateTemporaryEntryPoints +00007FA12C45C9D8 30 stub<10268> AllocateTemporaryEntryPoints +00007FA12C45CA08 1f8 stub<10269> AllocateTemporaryEntryPoints +00007FA12C45CC00 18 stub<10270> AllocateTemporaryEntryPoints +00007FA12C45CC18 18 stub<10271> AllocateTemporaryEntryPoints +00007FA12B3DDC30 f29 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::CreateMethods(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.FieldInfo)[QuickJitted] +00007FA12C45CC30 18 stub<10272> AllocateTemporaryEntryPoints +00007FA12C45CC48 18 stub<10273> AllocateTemporaryEntryPoints +00007FA12B3DEB90 4dd class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetMethods(class [System.Runtime]System.Type)[QuickJitted] +00007FA12C45CC60 c0 stub<10274> AllocateTemporaryEntryPoints +00007FA12B3DF0A0 51 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::g__GetBaseMethods|27_0(class [System.Runtime]System.Type)[QuickJitted] +00007FA12C45CD20 30 stub<10275> AllocateTemporaryEntryPoints +00007FA12C45CD50 18 stub<10276> AllocateTemporaryEntryPoints +00007FA12B3DF110 37 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseMethods|27_0>d::.ctor(int32)[QuickJitted] +00007FA12C45CD68 30 stub<10277> AllocateTemporaryEntryPoints +00007FA12C45CD98 18 stub<10278> AllocateTemporaryEntryPoints +00007FA1277C16E0 18 stub<10279> GenerateLookupStub +00007FA12C45CDB0 18 stub<10280> AllocateTemporaryEntryPoints +00007FA12B3DF160 8f instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseMethods|27_0>d::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12C45CDC8 18 stub<10281> AllocateTemporaryEntryPoints +00007FA12C45CDE0 18 stub<10282> AllocateTemporaryEntryPoints +00007FA12C45CDF8 18 stub<10283> AllocateTemporaryEntryPoints +00007FA12C45CE10 30 stub<10284> AllocateTemporaryEntryPoints +00007FA12C45CE40 18 stub<10285> AllocateTemporaryEntryPoints +00007FA12C45CE58 18 stub<10286> AllocateTemporaryEntryPoints +00007FA12C45CE70 18 stub<10287> AllocateTemporaryEntryPoints +00007FA12B3DF210 21e instance bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseMethods|27_0>d::MoveNext()[QuickJitted] +00007FA12B3DF450 14 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseMethods|27_0>d::System.IDisposable.Dispose()[QuickJitted] +00007FA1277FB620 18 stub<10288> GenerateResolveStub +00007FA1277C64C0 20 stub<10289> GenerateDispatchStub +00007FA1277C1700 18 stub<10290> GenerateLookupStub +00007FA12C45CE88 a8 stub<10291> AllocateTemporaryEntryPoints +00007FA12C45CF30 18 stub<10292> AllocateTemporaryEntryPoints +00007FA12C45CF48 18 stub<10293> AllocateTemporaryEntryPoints +00007FA12B3DF480 1c instance class [System.Runtime]System.Reflection.MethodInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseMethods|27_0>d::System.Collections.Generic.IEnumerator.get_Current()[QuickJitted] +00007FA12C45CF60 18 stub<10294> AllocateTemporaryEntryPoints +00007FA1277FB690 18 stub<10295> GenerateResolveStub +00007FA12C45CF78 30 stub<10296> AllocateTemporaryEntryPoints +00007FA1277C64E0 20 stub<10297> GenerateDispatchStub +00007FA12C45CFA8 18 stub<10298> AllocateTemporaryEntryPoints +00007FA12C45CFC0 30 stub<10299> AllocateTemporaryEntryPoints +00007FA12C45E000 18 stub<10300> AllocateTemporaryEntryPoints +00007FA12C45E018 18 stub<10301> AllocateTemporaryEntryPoints +00007FA12C45E030 60 stub<10302> AllocateTemporaryEntryPoints +00007FA12B3DF4B0 22e instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::.ctor(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Delegate,class [System.Runtime]System.Runtime.ExceptionServices.ExceptionDispatchInfo)[QuickJitted] +00007FA12B3DF700 23 instance bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CanCreate()[QuickJitted] +00007FA12C45E090 228 stub<10303> AllocateTemporaryEntryPoints +00007FA12C45E2B8 30 stub<10304> AllocateTemporaryEntryPoints +00007FA12C45E2E8 18 stub<10305> AllocateTemporaryEntryPoints +00007FA12C45E300 2d0 stub<10306> AllocateTemporaryEntryPoints +00007FA12C45E5D0 30 stub<10307> AllocateTemporaryEntryPoints +00007FA12C45E600 18 stub<10308> AllocateTemporaryEntryPoints +00007FA12C45E618 18 stub<10309> AllocateTemporaryEntryPoints +00007FA12C45E630 18 stub<10310> AllocateTemporaryEntryPoints +00007FA12C45E648 18 stub<10311> AllocateTemporaryEntryPoints +00007FA12C45E660 18 stub<10312> AllocateTemporaryEntryPoints +00007FA12C45E678 60 stub<10313> AllocateTemporaryEntryPoints +00007FA12C45E6D8 60 stub<10314> AllocateTemporaryEntryPoints +00007FA12C45E738 18 stub<10315> AllocateTemporaryEntryPoints +00007FA12C45E750 18 stub<10316> AllocateTemporaryEntryPoints +00007FA12C45E768 18 stub<10317> AllocateTemporaryEntryPoints +00007FA12B3DF740 a0f class [System.Reflection.Emit]System.Reflection.Emit.ModuleBuilder [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::CreateTypeAndModuleBuilder(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder&,class [System.Runtime]System.Reflection.FieldInfo&)[QuickJitted] +00007FA12C45E780 30 stub<10318> AllocateTemporaryEntryPoints +00007FA12B3E0170 293 class [System.Reflection.Emit]System.Reflection.Emit.ModuleBuilder [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetModuleBuilder(class [System.Runtime]System.Type,bool)[QuickJitted] +00007FA12B3E0420 132 class [System.Reflection.Emit]System.Reflection.Emit.ModuleBuilder [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::g__CreateModuleBuilder|64_0(string,class [System.Runtime]System.Reflection.Assembly)[QuickJitted] +00007FA12C45E7B0 78 stub<10319> AllocateTemporaryEntryPoints +00007FA12C45E828 240 stub<10320> AllocateTemporaryEntryPoints +00007FA12C45EA68 138 stub<10321> AllocateTemporaryEntryPoints +00007FA12C45EBA0 60 stub<10322> AllocateTemporaryEntryPoints +00007FA12C45EC00 18 stub<10323> AllocateTemporaryEntryPoints +00007FA12C45EC18 48 stub<10324> AllocateTemporaryEntryPoints +00007FA12C45EC60 60 stub<10325> AllocateTemporaryEntryPoints +00007FA12C45ECC0 18 stub<10326> AllocateTemporaryEntryPoints +00007FA12C45ECD8 18 stub<10327> AllocateTemporaryEntryPoints +00007FA12C45ECF0 90 stub<10328> AllocateTemporaryEntryPoints +00007FA12C45ED80 18 stub<10329> AllocateTemporaryEntryPoints +00007FA12C45ED98 18 stub<10330> AllocateTemporaryEntryPoints +00007FA12C45EDB0 30 stub<10331> AllocateTemporaryEntryPoints +00007FA12C45EDE0 18 stub<10332> AllocateTemporaryEntryPoints +00007FA12C45EDF8 30 stub<10333> AllocateTemporaryEntryPoints +00007FA12B3E0570 32f void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::EnsureTypeVisibility(class [System.Reflection.Emit]System.Reflection.Emit.ModuleBuilder,class [System.Runtime]System.Type)[QuickJitted] +00007FA12C45EE28 a8 stub<10334> AllocateTemporaryEntryPoints +00007FA12C45EED0 18 stub<10335> AllocateTemporaryEntryPoints +00007FA12C45EEE8 48 stub<10336> AllocateTemporaryEntryPoints +00007FA12C45EF30 18 stub<10337> AllocateTemporaryEntryPoints +00007FA12CF40000 f0 stub<10338> AllocateTemporaryEntryPoints +00007FA12CF400F0 48 stub<10339> AllocateTemporaryEntryPoints +00007FA12CF40138 30 stub<10340> AllocateTemporaryEntryPoints +00007FA12CF40168 138 stub<10341> AllocateTemporaryEntryPoints +00007FA12CF402A0 18 stub<10342> AllocateTemporaryEntryPoints +00007FA12CF402B8 120 stub<10343> AllocateTemporaryEntryPoints +00007FA12CF403D8 18 stub<10344> AllocateTemporaryEntryPoints +00007FA12B3E08C0 1a4 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::g__EnsureAssemblyNameVisibility|67_0(class [System.Reflection.Emit]System.Reflection.Emit.ModuleBuilder,string)[QuickJitted] +00007FA12CF403F0 60 stub<10345> AllocateTemporaryEntryPoints +00007FA12CF40450 150 stub<10346> AllocateTemporaryEntryPoints +00007FA12CF405A0 18 stub<10347> AllocateTemporaryEntryPoints +00007FA12CF405B8 60 stub<10348> AllocateTemporaryEntryPoints +00007FA12CF40618 60 stub<10349> AllocateTemporaryEntryPoints +00007FA12CF40678 18 stub<10350> AllocateTemporaryEntryPoints +00007FA12CF40690 c0 stub<10351> AllocateTemporaryEntryPoints +00007FA12CF40750 18 stub<10352> AllocateTemporaryEntryPoints +00007FA12CF40768 18 stub<10353> AllocateTemporaryEntryPoints +00007FA12CF40780 48 stub<10354> AllocateTemporaryEntryPoints +00007FA12B3E0A90 36 class [System.Runtime]System.Reflection.ConstructorInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::get_IgnoresAccessChecksToAttributeCtor()[QuickJitted] +00007FA12CF407C8 48 stub<10355> AllocateTemporaryEntryPoints +00007FA12CF40810 18 stub<10356> AllocateTemporaryEntryPoints +00007FA12CF40828 48 stub<10357> AllocateTemporaryEntryPoints +00007FA12CF40870 78 stub<10358> AllocateTemporaryEntryPoints +00007FA12CF408E8 18 stub<10359> AllocateTemporaryEntryPoints +00007FA12CF40900 48 stub<10360> AllocateTemporaryEntryPoints +00007FA12CF40948 378 stub<10361> AllocateTemporaryEntryPoints +00007FA12CF40CC0 198 stub<10362> AllocateTemporaryEntryPoints +00007FA12CF40E58 18 stub<10363> AllocateTemporaryEntryPoints +00007FA12CF40E70 18 stub<10364> AllocateTemporaryEntryPoints +00007FA12CF40E88 48 stub<10365> AllocateTemporaryEntryPoints +00007FA12CF40ED0 78 stub<10366> AllocateTemporaryEntryPoints +00007FA12CF40F48 18 stub<10367> AllocateTemporaryEntryPoints +00007FA12CF40F60 30 stub<10368> AllocateTemporaryEntryPoints +00007FA12CF42000 78 stub<10369> AllocateTemporaryEntryPoints +00007FA12CF42078 18 stub<10370> AllocateTemporaryEntryPoints +00007FA12CF42090 30 stub<10371> AllocateTemporaryEntryPoints +00007FA12CF420C0 48 stub<10372> AllocateTemporaryEntryPoints +00007FA12CF42108 18 stub<10373> AllocateTemporaryEntryPoints +00007FA12CF42120 30 stub<10374> AllocateTemporaryEntryPoints +00007FA12CF42150 18 stub<10375> AllocateTemporaryEntryPoints +00007FA12CF42168 18 stub<10376> AllocateTemporaryEntryPoints +00007FA12CF42180 60 stub<10377> AllocateTemporaryEntryPoints +00007FA12CF421E0 18 stub<10378> AllocateTemporaryEntryPoints +00007FA12CF42210 48 stub<10379> AllocateTemporaryEntryPoints +00007FA12CF42258 30 stub<10380> AllocateTemporaryEntryPoints +00007FA12CF42288 18 stub<10381> AllocateTemporaryEntryPoints +00007FA12CF422A0 1b0 stub<10382> AllocateTemporaryEntryPoints +00007FA12784B570 e stub<10383> GenerateVTableCallStub +00007FA12CF42450 18 stub<10384> AllocateTemporaryEntryPoints +00007FA12CF42480 30 stub<10385> AllocateTemporaryEntryPoints +00007FA12CF424B0 18 stub<10386> AllocateTemporaryEntryPoints +00007FA12CF424C8 18 stub<10387> AllocateTemporaryEntryPoints +00007FA12CF424E0 18 stub<10388> AllocateTemporaryEntryPoints +00007FA12CF424F8 c0 stub<10389> AllocateTemporaryEntryPoints +00007FA12CF425B8 18 stub<10390> AllocateTemporaryEntryPoints +00007FA12CF425D0 240 stub<10391> AllocateTemporaryEntryPoints +00007FA12CF42810 a8 stub<10392> AllocateTemporaryEntryPoints +00007FA12CF428B8 18 stub<10393> AllocateTemporaryEntryPoints +00007FA12CF428D0 48 stub<10394> AllocateTemporaryEntryPoints +00007FA12CF42918 270 stub<10395> AllocateTemporaryEntryPoints +00007FA12CF42B88 48 stub<10396> AllocateTemporaryEntryPoints +00007FA12CF42BD0 18 stub<10397> AllocateTemporaryEntryPoints +00007FA12CF42BE8 90 stub<10398> AllocateTemporaryEntryPoints +00007FA12CF42C78 18 stub<10399> AllocateTemporaryEntryPoints +00007FA12CF42C90 18 stub<10400> AllocateTemporaryEntryPoints +00007FA12CF42CA8 78 stub<10401> AllocateTemporaryEntryPoints +00007FA12CF42D20 48 stub<10402> AllocateTemporaryEntryPoints +00007FA12CF44000 330 stub<10403> AllocateTemporaryEntryPoints +00007FA12CF44330 2a0 stub<10404> AllocateTemporaryEntryPoints +00007FA12CF445D0 18 stub<10405> AllocateTemporaryEntryPoints +00007FA12CF445E8 18 stub<10406> AllocateTemporaryEntryPoints +00007FA12CF448A0 18 stub<10408> AllocateTemporaryEntryPoints +00007FA12CF44600 2a0 stub<10407> AllocateTemporaryEntryPoints +00007FA12CF448B8 18 stub<10409> AllocateTemporaryEntryPoints +00007FA12CF448D0 60 stub<10410> AllocateTemporaryEntryPoints +00007FA12CF44930 48 stub<10411> AllocateTemporaryEntryPoints +00007FA12CF44978 2a0 stub<10412> AllocateTemporaryEntryPoints +00007FA12CF44C18 78 stub<10413> AllocateTemporaryEntryPoints +00007FA12CF44C90 a8 stub<10414> AllocateTemporaryEntryPoints +00007FA12CF44D38 18 stub<10415> AllocateTemporaryEntryPoints +00007FA12CF44D50 18 stub<10416> AllocateTemporaryEntryPoints +00007FA12CF44D68 18 stub<10417> AllocateTemporaryEntryPoints +00007FA12CF44D80 78 stub<10418> AllocateTemporaryEntryPoints +00007FA12CF44DF8 18 stub<10419> AllocateTemporaryEntryPoints +00007FA1277C1720 18 stub<10420> GenerateLookupStub +00007FA1277FB700 18 stub<10421> GenerateResolveStub +00007FA1277C6500 20 stub<10422> GenerateDispatchStub +00007FA12CF46000 1f8 stub<10423> AllocateTemporaryEntryPoints +00007FA12CF461F8 18 stub<10424> AllocateTemporaryEntryPoints +00007FA12CF46210 18 stub<10425> AllocateTemporaryEntryPoints +00007FA12CF46228 18 stub<10426> AllocateTemporaryEntryPoints +00007FA12CF46240 18 stub<10427> AllocateTemporaryEntryPoints +00007FA12CF46258 18 stub<10428> AllocateTemporaryEntryPoints +00007FA12CF46270 18 stub<10429> AllocateTemporaryEntryPoints +00007FA12CF46288 1c8 stub<10430> AllocateTemporaryEntryPoints +00007FA12CF46450 c0 stub<10431> AllocateTemporaryEntryPoints +00007FA12CF46510 30 stub<10432> AllocateTemporaryEntryPoints +00007FA12CF46540 48 stub<10433> AllocateTemporaryEntryPoints +00007FA12CF46588 30 stub<10434> AllocateTemporaryEntryPoints +00007FA12CF465B8 c0 stub<10435> AllocateTemporaryEntryPoints +00007FA12CF46678 18 stub<10436> AllocateTemporaryEntryPoints +00007FA12CF46690 18 stub<10437> AllocateTemporaryEntryPoints +00007FA12CF466A8 18 stub<10438> AllocateTemporaryEntryPoints +00007FA12CF466C0 48 stub<10439> AllocateTemporaryEntryPoints +00007FA12B3E0EF0 630 class [System.Runtime]System.Reflection.FieldInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::CreateIDuckTypeImplementation(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Runtime]System.Type)[QuickJitted] +00007FA1277C1740 18 stub<10440> GenerateLookupStub +00007FA12B3E1540 60 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::UseDirectAccessTo(class [System.Reflection.Emit]System.Reflection.Emit.ModuleBuilder,class [System.Runtime]System.Type)[QuickJitted] +00007FA1277FB770 18 stub<10441> GenerateResolveStub +00007FA1277C6520 20 stub<10442> GenerateDispatchStub +00007FA12CF46708 18 stub<10443> AllocateTemporaryEntryPoints +00007FA1277C1760 18 stub<10444> GenerateLookupStub +00007FA1277FB7E0 18 stub<10445> GenerateResolveStub +00007FA1277C6540 20 stub<10446> GenerateDispatchStub +00007FA1277C1780 18 stub<10447> GenerateLookupStub +00007FA1277FB850 18 stub<10448> GenerateResolveStub +00007FA1277C6560 20 stub<10449> GenerateDispatchStub +00007FA12CF46720 168 stub<10450> AllocateTemporaryEntryPoints +00007FA12CF46888 18 stub<10451> AllocateTemporaryEntryPoints +00007FA12CF468A0 48 stub<10452> AllocateTemporaryEntryPoints +00007FA12CF468E8 48 stub<10453> AllocateTemporaryEntryPoints +00007FA12B3E15C0 34 instance void [Samples.BuggyBits] BuggyBits.Startup::.ctor(class [Microsoft.Extensions.Configuration.Abstractions]Microsoft.Extensions.Configuration.IConfiguration)[QuickJitted] +00007FA12CF46930 a8 stub<10454> AllocateTemporaryEntryPoints +00007FA12B3E1610 36 class [System.Runtime]System.Reflection.MethodInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::get_GetTypeFromHandleMethodInfo()[QuickJitted] +00007FA12CF469F0 60 stub<10455> AllocateTemporaryEntryPoints +00007FA12CF46A50 30 stub<10456> AllocateTemporaryEntryPoints +00007FA12CF46A80 288 stub<10457> AllocateTemporaryEntryPoints +00007FA12CF46D08 30 stub<10458> AllocateTemporaryEntryPoints +00007FA12CF46D38 1f8 stub<10459> AllocateTemporaryEntryPoints +00007FA12CF46F48 18 stub<10460> AllocateTemporaryEntryPoints +00007FA1277C17A0 18 stub<10461> GenerateLookupStub +00007FA12CF46F60 18 stub<10462> AllocateTemporaryEntryPoints +00007FA1277C17C0 18 stub<10463> GenerateLookupStub +00007FA1277FB8C0 18 stub<10464> GenerateResolveStub +00007FA1277C6580 20 stub<10465> GenerateDispatchStub +00007FA12CF46F90 48 stub<10466> AllocateTemporaryEntryPoints +00007FA12B3E1A70 13f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::Emit(valuetype [System.Reflection.Primitives]System.Reflection.Emit.OpCode,class [System.Runtime]System.Reflection.FieldInfo)[QuickJitted] +00007FA12B3E1BD0 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass15_0::.ctor()[QuickJitted] +00007FA12B3E1C10 33 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass26_0::b__0(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12B3E1C60 3b instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass15_0::b__0(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12CF48000 120 stub<10467> AllocateTemporaryEntryPoints +00007FA12CF48120 30 stub<10468> AllocateTemporaryEntryPoints +00007FA12B3E1CB0 43 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass31_0::b__0(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12CF48150 60 stub<10469> AllocateTemporaryEntryPoints +00007FA12CF481B0 180 stub<10470> AllocateTemporaryEntryPoints +00007FA12B3E1D10 3b instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass24_0::b__0(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12CF48330 18 stub<10471> AllocateTemporaryEntryPoints +00007FA12B3E1D60 10f instance void [Samples.BuggyBits] BuggyBits.Startup::ConfigureServices(class [Microsoft.Extensions.DependencyInjection.Abstractions]Microsoft.Extensions.DependencyInjection.IServiceCollection)[QuickJitted] +00007FA12CF48348 48 stub<10472> AllocateTemporaryEntryPoints +00007FA12784B580 11 stub<10473> GenerateVTableCallStub +00007FA12CF48390 18 stub<10474> AllocateTemporaryEntryPoints +00007FA12CF483A8 120 stub<10475> AllocateTemporaryEntryPoints +00007FA12CF484C8 18 stub<10476> AllocateTemporaryEntryPoints +00007FA12CF484E0 78 stub<10477> AllocateTemporaryEntryPoints +00007FA12CF48558 a8 stub<10478> AllocateTemporaryEntryPoints +00007FA12CF48600 a8 stub<10479> AllocateTemporaryEntryPoints +00007FA12CF486A8 18 stub<10480> AllocateTemporaryEntryPoints +00007FA12CF486C0 18 stub<10481> AllocateTemporaryEntryPoints +00007FA12CF486D8 18 stub<10482> AllocateTemporaryEntryPoints +00007FA12CF486F0 30 stub<10483> AllocateTemporaryEntryPoints +00007FA12CF48720 48 stub<10484> AllocateTemporaryEntryPoints +00007FA12CF48768 18 stub<10485> AllocateTemporaryEntryPoints +00007FA12CF48780 48 stub<10486> AllocateTemporaryEntryPoints +00007FA12CF487C8 48 stub<10487> AllocateTemporaryEntryPoints +00007FA12B3E1E90 36 class [System.Runtime]System.Reflection.MethodInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::get_MethodBuilderGetToken()[QuickJitted] +00007FA12CF48810 18 stub<10488> AllocateTemporaryEntryPoints +00007FA1277C17E0 18 stub<10489> GenerateLookupStub +00007FA1277C1800 18 stub<10490> GenerateLookupStub +00007FA1286650D0 33 object [System.Private.CoreLib] dynamicClass::InvokeStub_MethodBuilder.GetToken(object,object,native int*)[Optimized] +00007FA12CF48828 18 stub<10491> AllocateTemporaryEntryPoints +00007FA12CF48840 30 stub<10492> AllocateTemporaryEntryPoints +00007FA12CF48870 30 stub<10493> AllocateTemporaryEntryPoints +00007FA12CF488A0 18 stub<10494> AllocateTemporaryEntryPoints +00007FA12CF488B8 18 stub<10495> AllocateTemporaryEntryPoints +00007FA12CF488D0 138 stub<10496> AllocateTemporaryEntryPoints +00007FA12CF48A08 18 stub<10497> AllocateTemporaryEntryPoints +00007FA12CF48A20 18 stub<10498> AllocateTemporaryEntryPoints +00007FA12CF48A38 18 stub<10499> AllocateTemporaryEntryPoints +00007FA12CF48A50 18 stub<10500> AllocateTemporaryEntryPoints +00007FA12CF48A68 d8 stub<10501> AllocateTemporaryEntryPoints +00007FA12CF48B40 78 stub<10502> AllocateTemporaryEntryPoints +00007FA12CF48BB8 18 stub<10503> AllocateTemporaryEntryPoints +00007FA12B3E1EE0 33c class [System.Runtime]System.Delegate [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetCreateProxyInstanceDelegate(class [System.Reflection.Emit]System.Reflection.Emit.ModuleBuilder,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12CF48BD0 60 stub<10504> AllocateTemporaryEntryPoints +00007FA12CF48C30 48 stub<10505> AllocateTemporaryEntryPoints +00007FA12CF48C78 360 stub<10506> AllocateTemporaryEntryPoints +00007FA12B3E2650 4d instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::get_ProxyType()[QuickJitted] +00007FA1277FB930 18 stub<10507> GenerateResolveStub +00007FA1277C65A0 20 stub<10508> GenerateDispatchStub +00007FA1277C65C0 20 stub<10509> GenerateDispatchStub +00007FA1277C1820 18 stub<10510> GenerateLookupStub +00007FA12B3E26C0 112 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper::WriteLoadArgument(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,int32,bool)[QuickJitted] +00007FA1277C1840 18 stub<10511> GenerateLookupStub +00007FA1277FB9A0 18 stub<10512> GenerateResolveStub +00007FA1277C65E0 20 stub<10513> GenerateDispatchStub +00007FA12B3E2800 fb void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper::WriteCreateNewProxyInstance(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12CF48FD8 18 stub<10514> AllocateTemporaryEntryPoints +00007FA12CF4A000 48 stub<10515> AllocateTemporaryEntryPoints +00007FA12CF4A048 18 stub<10516> AllocateTemporaryEntryPoints +00007FA12CF4A060 18 stub<10517> AllocateTemporaryEntryPoints +00007FA12CF4A078 30 stub<10518> AllocateTemporaryEntryPoints +00007FA1277C1860 18 stub<10519> GenerateLookupStub +00007FA12B3E2910 45 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.Tracer::get_InternalActiveScope()[QuickJitted] +00007FA12CF4A0D8 30 stub<10520> AllocateTemporaryEntryPoints +00007FA12B3E2970 1c instance class Datadog.Trace.IScopeManager [Datadog.Trace] Datadog.Trace.TracerManager::get_ScopeManager()[QuickJitted] +00007FA12B3E29A0 25 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::get_Active()[QuickJitted] +00007FA12CF4A108 18 stub<10521> AllocateTemporaryEntryPoints +00007FA12B3E29E0 51 instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.GetSpanContextRaw()[QuickJitted] +00007FA12CF4A120 48 stub<10522> AllocateTemporaryEntryPoints +00007FA12CF4A168 18 stub<10523> AllocateTemporaryEntryPoints +00007FA12CF4A180 18 stub<10524> AllocateTemporaryEntryPoints +00007FA12CF4A198 18 stub<10525> AllocateTemporaryEntryPoints +00007FA12CF4A1B0 c0 stub<10526> AllocateTemporaryEntryPoints +00007FA12CF4A270 78 stub<10527> AllocateTemporaryEntryPoints +00007FA12CF4A2E8 c0 stub<10528> AllocateTemporaryEntryPoints +00007FA128665170 47 Datadog.Trace.ClrProfiler.CallTarget.CallTargetState /* MT: 0x00007FA12C287AF8 */ [Datadog.Trace] dynamicClass::HttpClientHandlerIntegration.OnMethodBegin(System.Net.Http.HttpClientHandler /* MT: 0x00007FA1299EAB90 */,System.Net.Http.HttpRequestMessage /* MT: 0x00007FA12A0F3708 */&,System.Threading.CancellationToken /* MT: 0x00007FA128C15670 */&)[Optimized] +00007FA12CF4A3A8 90 stub<10529> AllocateTemporaryEntryPoints +00007FA12CF4A438 108 stub<10530> AllocateTemporaryEntryPoints +00007FA1277FBA10 18 stub<10531> GenerateResolveStub +00007FA12CF4A540 f0 stub<10532> AllocateTemporaryEntryPoints +00007FA1277C6600 20 stub<10533> GenerateDispatchStub +00007FA12CF4A630 f0 stub<10534> AllocateTemporaryEntryPoints +00007FA1277C1880 18 stub<10535> GenerateLookupStub +00007FA12CF4A720 30 stub<10536> AllocateTemporaryEntryPoints +00007FA12CF4A750 198 stub<10537> AllocateTemporaryEntryPoints +00007FA12CF4A8E8 18 stub<10538> AllocateTemporaryEntryPoints +00007FA12CF4A900 18 stub<10539> AllocateTemporaryEntryPoints +00007FA12CF4A918 60 stub<10540> AllocateTemporaryEntryPoints +00007FA12CF4A978 18 stub<10541> AllocateTemporaryEntryPoints +00007FA12CF4A990 18 stub<10542> AllocateTemporaryEntryPoints +00007FA1277C18A0 18 stub<10543> GenerateLookupStub +00007FA12CF4A9A8 60 stub<10544> AllocateTemporaryEntryPoints +00007FA1277FBA80 18 stub<10545> GenerateResolveStub +00007FA1277C6620 20 stub<10546> GenerateDispatchStub +00007FA12CF4AA08 d8 stub<10547> AllocateTemporaryEntryPoints +00007FA1277FBAF0 18 stub<10548> GenerateResolveStub +00007FA12CF4AAE0 18 stub<10549> AllocateTemporaryEntryPoints +00007FA1277C6640 20 stub<10550> GenerateDispatchStub +00007FA1277C18C0 18 stub<10551> GenerateLookupStub +00007FA12CF4AAF8 18 stub<10552> AllocateTemporaryEntryPoints +00007FA12CF4AB10 60 stub<10553> AllocateTemporaryEntryPoints +00007FA12B3E2A50 2f2 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMessageHandlerCommon::OnMethodBegin(!!0,!!1,valuetype [System.Runtime]System.Threading.CancellationToken,valuetype Datadog.Trace.Configuration.IntegrationId,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA1277C6660 20 stub<10554> GenerateDispatchStub +00007FA12CF4AB70 60 stub<10555> AllocateTemporaryEntryPoints +00007FA12B3E2D70 1b instance object [DuckTypeNotVisibleAssembly.HttpRequestMessage_1] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpRequestMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpRequestMessage_1::get_Instance()[QuickJitted] +00007FA12CF4ABD0 48 stub<10556> AllocateTemporaryEntryPoints +00007FA12B3E2DA0 42 instance class [Datadog.Trace]Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.IRequestHeaders [DuckTypeNotVisibleAssembly.HttpRequestMessage_1] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpRequestMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpRequestMessage_1::get_Headers()[QuickJitted] +00007FA12CF4AC18 18 stub<10557> AllocateTemporaryEntryPoints +00007FA12CF4AC30 18 stub<10558> AllocateTemporaryEntryPoints +00007FA12CF4AC48 18 stub<10559> AllocateTemporaryEntryPoints +00007FA12CF4AC60 18 stub<10560> AllocateTemporaryEntryPoints +00007FA12CF4AC78 18 stub<10561> AllocateTemporaryEntryPoints +00007FA12CF4AC90 18 stub<10562> AllocateTemporaryEntryPoints +00007FA12B3E2E00 c3 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[System.__Canon]::Create(object)[QuickJitted] +00007FA12CF4ACA8 18 stub<10563> AllocateTemporaryEntryPoints +00007FA12B3E2EE0 13f valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[System.__Canon]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA1277C18E0 18 stub<10564> GenerateLookupStub +00007FA1277FBB60 18 stub<10565> GenerateResolveStub +00007FA1277C6680 20 stub<10566> GenerateDispatchStub +00007FA12CF4ACC0 18 stub<10567> AllocateTemporaryEntryPoints +00007FA12B3E3040 83 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[System.__Canon]::.cctor()[QuickJitted] +00007FA12CF4ACD8 18 stub<10568> AllocateTemporaryEntryPoints +00007FA1277C1900 18 stub<10569> GenerateLookupStub +00007FA1277FBBD0 18 stub<10570> GenerateResolveStub +00007FA1277C66A0 20 stub<10571> GenerateDispatchStub +00007FA1277C66C0 20 stub<10572> GenerateDispatchStub +00007FA1277C66E0 20 stub<10573> GenerateDispatchStub +00007FA1277C1920 18 stub<10574> GenerateLookupStub +00007FA1277FBC40 18 stub<10575> GenerateResolveStub +00007FA1277C6700 20 stub<10576> GenerateDispatchStub +00007FA12CF4ACF0 18 stub<10577> AllocateTemporaryEntryPoints +00007FA12CF4AD08 48 stub<10578> AllocateTemporaryEntryPoints +00007FA12CF4AD50 30 stub<10579> AllocateTemporaryEntryPoints +00007FA12CF4AD80 18 stub<10580> AllocateTemporaryEntryPoints +00007FA12CF4AD98 18 stub<10581> AllocateTemporaryEntryPoints +00007FA12CF4ADB0 18 stub<10582> AllocateTemporaryEntryPoints +00007FA12CF4ADC8 18 stub<10583> AllocateTemporaryEntryPoints +00007FA1277C1940 18 stub<10584> GenerateLookupStub +00007FA1277FBCB0 18 stub<10585> GenerateResolveStub +00007FA1277C6720 20 stub<10586> GenerateDispatchStub +00007FA12B3E30E0 2b instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c::b__28_0(class [System.Runtime]System.Reflection.ParameterInfo)[QuickJitted] +00007FA1277FBD20 18 stub<10587> GenerateResolveStub +00007FA1277C6740 20 stub<10588> GenerateDispatchStub +00007FA12CF4ADE0 18 stub<10589> AllocateTemporaryEntryPoints +00007FA12CF4ADF8 18 stub<10590> AllocateTemporaryEntryPoints +00007FA12CF4AE10 18 stub<10591> AllocateTemporaryEntryPoints +00007FA12CF4AE58 18 stub<10593> AllocateTemporaryEntryPoints +00007FA12CF4AE28 30 stub<10592> AllocateTemporaryEntryPoints +00007FA12CF4AE70 a8 stub<10594> AllocateTemporaryEntryPoints +00007FA12CF4AF18 18 stub<10595> AllocateTemporaryEntryPoints +00007FA12CF4AF30 30 stub<10596> AllocateTemporaryEntryPoints +00007FA12CF4AF60 60 stub<10597> AllocateTemporaryEntryPoints +00007FA12CF4AFC0 18 stub<10598> AllocateTemporaryEntryPoints +00007FA12CF4C000 60 stub<10599> AllocateTemporaryEntryPoints +00007FA12CF4C060 90 stub<10600> AllocateTemporaryEntryPoints +00007FA12CF4C0F0 18 stub<10601> AllocateTemporaryEntryPoints +00007FA12CF4C108 60 stub<10602> AllocateTemporaryEntryPoints +00007FA12CF4C168 18 stub<10603> AllocateTemporaryEntryPoints +00007FA12CF4C180 48 stub<10604> AllocateTemporaryEntryPoints +00007FA12CF4C1C8 18 stub<10605> AllocateTemporaryEntryPoints +00007FA12CF4C1E0 18 stub<10606> AllocateTemporaryEntryPoints +00007FA12CF4C1F8 18 stub<10607> AllocateTemporaryEntryPoints +00007FA12CF4C210 30 stub<10608> AllocateTemporaryEntryPoints +00007FA12CF4C240 30 stub<10609> AllocateTemporaryEntryPoints +00007FA12CF4C270 18 stub<10610> AllocateTemporaryEntryPoints +00007FA12CF4C288 18 stub<10611> AllocateTemporaryEntryPoints +00007FA12CF4C2A0 30 stub<10612> AllocateTemporaryEntryPoints +00007FA12CF4C2D0 78 stub<10613> AllocateTemporaryEntryPoints +00007FA12CF4C348 18 stub<10614> AllocateTemporaryEntryPoints +00007FA12CF4C360 48 stub<10615> AllocateTemporaryEntryPoints +00007FA12CF4C3A8 18 stub<10616> AllocateTemporaryEntryPoints +00007FA12CF4C3C0 18 stub<10617> AllocateTemporaryEntryPoints +00007FA12CF4C3D8 90 stub<10618> AllocateTemporaryEntryPoints +00007FA12CF4C468 18 stub<10619> AllocateTemporaryEntryPoints +00007FA12CF4C480 90 stub<10620> AllocateTemporaryEntryPoints +00007FA12CF4C510 18 stub<10621> AllocateTemporaryEntryPoints +00007FA12CF4C528 78 stub<10622> AllocateTemporaryEntryPoints +00007FA12CF4C5A0 18 stub<10623> AllocateTemporaryEntryPoints +00007FA12CF4C5B8 18 stub<10624> AllocateTemporaryEntryPoints +00007FA12CF4C5D0 18 stub<10625> AllocateTemporaryEntryPoints +00007FA12CF4C5E8 18 stub<10626> AllocateTemporaryEntryPoints +00007FA12CF4C600 18 stub<10627> AllocateTemporaryEntryPoints +00007FA12CF4C618 18 stub<10628> AllocateTemporaryEntryPoints +00007FA12CF4C630 18 stub<10629> AllocateTemporaryEntryPoints +00007FA12CF4C648 30 stub<10630> AllocateTemporaryEntryPoints +00007FA12CF4C678 18 stub<10631> AllocateTemporaryEntryPoints +00007FA12CF4C690 18 stub<10632> AllocateTemporaryEntryPoints +00007FA12CF4C6A8 48 stub<10633> AllocateTemporaryEntryPoints +00007FA12CF4C6F0 90 stub<10634> AllocateTemporaryEntryPoints +00007FA12CF4C780 18 stub<10635> AllocateTemporaryEntryPoints +00007FA12CF4C798 18 stub<10636> AllocateTemporaryEntryPoints +00007FA12CF4C7B0 30 stub<10637> AllocateTemporaryEntryPoints +00007FA12CF4C7E0 18 stub<10638> AllocateTemporaryEntryPoints +00007FA12CF4C7F8 30 stub<10639> AllocateTemporaryEntryPoints +00007FA12CF4C828 48 stub<10640> AllocateTemporaryEntryPoints +00007FA12CF4C870 18 stub<10641> AllocateTemporaryEntryPoints +00007FA12CF4C888 30 stub<10642> AllocateTemporaryEntryPoints +00007FA12CF4C8B8 90 stub<10643> AllocateTemporaryEntryPoints +00007FA12CF4C948 18 stub<10644> AllocateTemporaryEntryPoints +00007FA12CF4C960 18 stub<10645> AllocateTemporaryEntryPoints +00007FA12CF4C978 30 stub<10646> AllocateTemporaryEntryPoints +00007FA12CF4C9A8 18 stub<10647> AllocateTemporaryEntryPoints +00007FA12CF4C9C0 18 stub<10648> AllocateTemporaryEntryPoints +00007FA12CF4C9D8 30 stub<10649> AllocateTemporaryEntryPoints +00007FA12CF4CA08 18 stub<10650> AllocateTemporaryEntryPoints +00007FA12CF4CA20 18 stub<10651> AllocateTemporaryEntryPoints +00007FA12CF4CA38 30 stub<10652> AllocateTemporaryEntryPoints +00007FA12CF4CA68 18 stub<10653> AllocateTemporaryEntryPoints +00007FA12CF4CA80 18 stub<10654> AllocateTemporaryEntryPoints +00007FA12CF4CA98 30 stub<10655> AllocateTemporaryEntryPoints +00007FA12CF4CAC8 18 stub<10656> AllocateTemporaryEntryPoints +00007FA12CF4CAE0 30 stub<10657> AllocateTemporaryEntryPoints +00007FA12CF4CB10 18 stub<10658> AllocateTemporaryEntryPoints +00007FA12CF4CB28 30 stub<10659> AllocateTemporaryEntryPoints +00007FA12B3E3120 131c class [System.Runtime]System.Reflection.MethodInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::SelectTargetMethod(class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Reflection.ParameterInfo[],class [System.Runtime]System.Type[],class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12CF4CB58 d8 stub<10660> AllocateTemporaryEntryPoints +00007FA12CF4CC30 18 stub<10661> AllocateTemporaryEntryPoints +00007FA12CF4CC48 18 stub<10662> AllocateTemporaryEntryPoints +00007FA12CF4CC60 48 stub<10663> AllocateTemporaryEntryPoints +00007FA12CF4CCA8 60 stub<10664> AllocateTemporaryEntryPoints +00007FA12B3E4470 1c instance string[] [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttributeBase::get_ParameterTypeNames()[QuickJitted] +00007FA12CF4CD08 18 stub<10665> AllocateTemporaryEntryPoints +00007FA12CF4CD20 30 stub<10666> AllocateTemporaryEntryPoints +00007FA12CF4CD50 18 stub<10667> AllocateTemporaryEntryPoints +00007FA1277C1960 18 stub<10668> GenerateLookupStub +00007FA1277FBD90 18 stub<10669> GenerateResolveStub +00007FA1277C6760 20 stub<10670> GenerateDispatchStub +00007FA12B3E44A0 2b instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c::b__28_2(class [System.Runtime]System.Reflection.ParameterInfo)[QuickJitted] +00007FA12CF4CD68 f0 stub<10671> AllocateTemporaryEntryPoints +00007FA12CF4CE58 18 stub<10672> AllocateTemporaryEntryPoints +00007FA12CF4CE70 30 stub<10673> AllocateTemporaryEntryPoints +00007FA12CF4CEA0 18 stub<10674> AllocateTemporaryEntryPoints +00007FA12CF4CEB8 90 stub<10675> AllocateTemporaryEntryPoints +00007FA12CF4CF48 18 stub<10676> AllocateTemporaryEntryPoints +00007FA12CF4E000 6f0 stub<10677> AllocateTemporaryEntryPoints +00007FA12CF4E6F0 78 stub<10678> AllocateTemporaryEntryPoints +00007FA12CF4E768 18 stub<10679> AllocateTemporaryEntryPoints +00007FA12CF4E780 60 stub<10680> AllocateTemporaryEntryPoints +00007FA12CF4E7E0 18 stub<10681> AllocateTemporaryEntryPoints +00007FA12CF4E7F8 60 stub<10682> AllocateTemporaryEntryPoints +00007FA12CF4E858 18 stub<10683> AllocateTemporaryEntryPoints +00007FA12CF4E870 48 stub<10684> AllocateTemporaryEntryPoints +00007FA12CF4E8B8 60 stub<10685> AllocateTemporaryEntryPoints +00007FA12CF4E918 18 stub<10686> AllocateTemporaryEntryPoints +00007FA12CF4E930 48 stub<10687> AllocateTemporaryEntryPoints +00007FA12CF4E978 c0 stub<10688> AllocateTemporaryEntryPoints +00007FA12CF4EA38 18 stub<10689> AllocateTemporaryEntryPoints +00007FA12B3E44E0 312 class Datadog.Trace.DuckTyping.LazyILGenerator [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+MethodIlHelper::InitialiseProxyMethod(class [System.Reflection.Emit]System.Reflection.Emit.MethodBuilder,class [System.Runtime]System.Reflection.ParameterInfo[],string[],class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Reflection.FieldInfo)[QuickJitted] +00007FA12CF4EA50 48 stub<10690> AllocateTemporaryEntryPoints +00007FA12CF4EA98 60 stub<10691> AllocateTemporaryEntryPoints +00007FA12CF4EAF8 18 stub<10692> AllocateTemporaryEntryPoints +00007FA12CF4EB10 48 stub<10693> AllocateTemporaryEntryPoints +00007FA12CF4EB58 30 stub<10694> AllocateTemporaryEntryPoints +00007FA12CF4EB88 78 stub<10695> AllocateTemporaryEntryPoints +00007FA12CF4EC00 18 stub<10696> AllocateTemporaryEntryPoints +00007FA12CF4EC18 30 stub<10697> AllocateTemporaryEntryPoints +00007FA12CF4EC48 90 stub<10698> AllocateTemporaryEntryPoints +00007FA12CF4ECD8 18 stub<10699> AllocateTemporaryEntryPoints +00007FA12CF4ECF0 108 stub<10700> AllocateTemporaryEntryPoints +00007FA12CF4EDF8 18 stub<10701> AllocateTemporaryEntryPoints +00007FA12CF4EE10 48 stub<10702> AllocateTemporaryEntryPoints +00007FA12CF4EE58 30 stub<10703> AllocateTemporaryEntryPoints +00007FA12CF4EE88 c0 stub<10704> AllocateTemporaryEntryPoints +00007FA12CF4EF48 18 stub<10705> AllocateTemporaryEntryPoints +00007FA12D110000 180 stub<10706> AllocateTemporaryEntryPoints +00007FA12D110180 18 stub<10707> AllocateTemporaryEntryPoints +00007FA12D110198 90 stub<10708> AllocateTemporaryEntryPoints +00007FA12D110228 18 stub<10709> AllocateTemporaryEntryPoints +00007FA12D110240 30 stub<10710> AllocateTemporaryEntryPoints +00007FA12D110270 60 stub<10711> AllocateTemporaryEntryPoints +00007FA12D1102D0 18 stub<10712> AllocateTemporaryEntryPoints +00007FA12D1102E8 30 stub<10713> AllocateTemporaryEntryPoints +00007FA12D110318 a8 stub<10714> AllocateTemporaryEntryPoints +00007FA12D1103C0 48 stub<10715> AllocateTemporaryEntryPoints +00007FA12D110408 2a0 stub<10716> AllocateTemporaryEntryPoints +00007FA12D1106A8 18 stub<10717> AllocateTemporaryEntryPoints +00007FA12D1106C0 48 stub<10718> AllocateTemporaryEntryPoints +00007FA12D110708 90 stub<10719> AllocateTemporaryEntryPoints +00007FA12D110798 18 stub<10720> AllocateTemporaryEntryPoints +00007FA12D1107B0 48 stub<10721> AllocateTemporaryEntryPoints +00007FA12D1107F8 78 stub<10722> AllocateTemporaryEntryPoints +00007FA12D110870 18 stub<10723> AllocateTemporaryEntryPoints +00007FA12B3E4810 937 class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+MethodIlHelper::AddIlToLoadArguments(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class Datadog.Trace.DuckTyping.LazyILGenerator,class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Reflection.ParameterInfo[],class [System.Runtime]System.Type[],class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Reflection.ParameterInfo[],class [System.Runtime]System.Type[],class [System.Runtime]System.Func`4,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12D110888 48 stub<10724> AllocateTemporaryEntryPoints +00007FA12D1108D0 90 stub<10725> AllocateTemporaryEntryPoints +00007FA12D110960 18 stub<10726> AllocateTemporaryEntryPoints +00007FA12D110978 48 stub<10727> AllocateTemporaryEntryPoints +00007FA12D1109C0 78 stub<10728> AllocateTemporaryEntryPoints +00007FA12D110A38 18 stub<10729> AllocateTemporaryEntryPoints +00007FA12D110A50 30 stub<10730> AllocateTemporaryEntryPoints +00007FA12D110A80 18 stub<10731> AllocateTemporaryEntryPoints +00007FA12D110A98 c0 stub<10732> AllocateTemporaryEntryPoints +00007FA12D110B58 18 stub<10733> AllocateTemporaryEntryPoints +00007FA12B3E5170 f4 void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::WriteLoadArgument(class Datadog.Trace.DuckTyping.LazyILGenerator,int32,bool)[QuickJitted] +00007FA12D110B70 78 stub<10734> AllocateTemporaryEntryPoints +00007FA12D110BE8 18 stub<10735> AllocateTemporaryEntryPoints +00007FA12B3E5290 61 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::WriteSafeTypeConversion(class Datadog.Trace.DuckTyping.LazyILGenerator,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12D110C00 180 stub<10736> AllocateTemporaryEntryPoints +00007FA12D110D80 60 stub<10737> AllocateTemporaryEntryPoints +00007FA12D110DE0 78 stub<10738> AllocateTemporaryEntryPoints +00007FA12D110E58 18 stub<10739> AllocateTemporaryEntryPoints +00007FA12D110E70 30 stub<10740> AllocateTemporaryEntryPoints +00007FA12D110EA0 18 stub<10741> AllocateTemporaryEntryPoints +00007FA12D110EB8 18 stub<10742> AllocateTemporaryEntryPoints +00007FA12D110ED0 48 stub<10743> AllocateTemporaryEntryPoints +00007FA12D110F18 18 stub<10744> AllocateTemporaryEntryPoints +00007FA12D110F30 c0 stub<10745> AllocateTemporaryEntryPoints +00007FA12D112000 18 stub<10746> AllocateTemporaryEntryPoints +00007FA12D112018 30 stub<10747> AllocateTemporaryEntryPoints +00007FA12D112048 18 stub<10748> AllocateTemporaryEntryPoints +00007FA12D112060 f0 stub<10749> AllocateTemporaryEntryPoints +00007FA12B3E5310 394 void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::WriteTypeConversion(class Datadog.Trace.DuckTyping.LazyILGenerator,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12D112150 78 stub<10750> AllocateTemporaryEntryPoints +00007FA12D1121C8 78 stub<10751> AllocateTemporaryEntryPoints +00007FA12D112240 48 stub<10752> AllocateTemporaryEntryPoints +00007FA12D112288 18 stub<10753> AllocateTemporaryEntryPoints +00007FA12D1122A0 78 stub<10754> AllocateTemporaryEntryPoints +00007FA12D112318 48 stub<10755> AllocateTemporaryEntryPoints +00007FA12D112360 18 stub<10756> AllocateTemporaryEntryPoints +00007FA12B3E56C0 168 class [System.Runtime]System.Reflection.MethodInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+MethodIlHelper::AddIlForDirectMethodCall(class Datadog.Trace.DuckTyping.LazyILGenerator,class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Type[])[QuickJitted] +00007FA12D112378 108 stub<10757> AllocateTemporaryEntryPoints +00007FA12D112480 60 stub<10758> AllocateTemporaryEntryPoints +00007FA12D1124E0 18 stub<10759> AllocateTemporaryEntryPoints +00007FA12D1124F8 120 stub<10760> AllocateTemporaryEntryPoints +00007FA12D112618 30 stub<10761> AllocateTemporaryEntryPoints +00007FA12D112648 18 stub<10762> AllocateTemporaryEntryPoints +00007FA12D112660 480 stub<10763> AllocateTemporaryEntryPoints +00007FA12B3E5840 1f1 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+MethodIlHelper::TryAddReturnIl(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class Datadog.Trace.DuckTyping.LazyILGenerator,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Func`3,class [System.Runtime]System.Func`4)[QuickJitted] +00007FA12D112AE0 78 stub<10764> AllocateTemporaryEntryPoints +00007FA12D112B58 18 stub<10765> AllocateTemporaryEntryPoints +00007FA12D112B70 18 stub<10766> AllocateTemporaryEntryPoints +00007FA12D112B88 138 stub<10767> AllocateTemporaryEntryPoints +00007FA12D112CC0 a8 stub<10768> AllocateTemporaryEntryPoints +00007FA12D112D68 18 stub<10769> AllocateTemporaryEntryPoints +00007FA12D112D80 78 stub<10770> AllocateTemporaryEntryPoints +00007FA12D112DF8 90 stub<10771> AllocateTemporaryEntryPoints +00007FA12D112E88 18 stub<10772> AllocateTemporaryEntryPoints +00007FA12D112EA0 120 stub<10773> AllocateTemporaryEntryPoints +00007FA12D112FC0 30 stub<10774> AllocateTemporaryEntryPoints +00007FA12D114000 18 stub<10775> AllocateTemporaryEntryPoints +00007FA12D114018 1f8 stub<10776> AllocateTemporaryEntryPoints +00007FA12D114228 30 stub<10777> AllocateTemporaryEntryPoints +00007FA12D114258 18 stub<10778> AllocateTemporaryEntryPoints +00007FA12D114288 2a0 stub<10779> AllocateTemporaryEntryPoints +00007FA12D114528 30 stub<10780> AllocateTemporaryEntryPoints +00007FA12D114570 18 stub<10781> AllocateTemporaryEntryPoints +00007FA12D114588 1e0 stub<10782> AllocateTemporaryEntryPoints +00007FA12D114768 30 stub<10783> AllocateTemporaryEntryPoints +00007FA12D114798 18 stub<10784> AllocateTemporaryEntryPoints +00007FA12D1147B0 a8 stub<10785> AllocateTemporaryEntryPoints +00007FA12D114858 a8 stub<10786> AllocateTemporaryEntryPoints +00007FA12D114900 18 stub<10787> AllocateTemporaryEntryPoints +00007FA12D114918 30 stub<10788> AllocateTemporaryEntryPoints +00007FA12D114948 18 stub<10789> AllocateTemporaryEntryPoints +00007FA12D114960 18 stub<10790> AllocateTemporaryEntryPoints +00007FA12D114978 18 stub<10791> AllocateTemporaryEntryPoints +00007FA12D114990 18 stub<10792> AllocateTemporaryEntryPoints +00007FA12D1149A8 30 stub<10793> AllocateTemporaryEntryPoints +00007FA12D1149D8 18 stub<10794> AllocateTemporaryEntryPoints +00007FA12D1149F0 30 stub<10795> AllocateTemporaryEntryPoints +00007FA12D114A20 18 stub<10796> AllocateTemporaryEntryPoints +00007FA12D114A38 48 stub<10797> AllocateTemporaryEntryPoints +00007FA12D114A80 18 stub<10798> AllocateTemporaryEntryPoints +00007FA12D114A98 18 stub<10799> AllocateTemporaryEntryPoints +00007FA12D114AB0 18 stub<10800> AllocateTemporaryEntryPoints +00007FA12D114AC8 18 stub<10801> AllocateTemporaryEntryPoints +00007FA12D114AE0 18 stub<10802> AllocateTemporaryEntryPoints +00007FA12D114AF8 18 stub<10803> AllocateTemporaryEntryPoints +00007FA12D114B10 18 stub<10804> AllocateTemporaryEntryPoints +00007FA12D114B28 18 stub<10805> AllocateTemporaryEntryPoints +00007FA12D114B40 18 stub<10806> AllocateTemporaryEntryPoints +00007FA12D114B58 60 stub<10807> AllocateTemporaryEntryPoints +00007FA12D114BB8 138 stub<10808> AllocateTemporaryEntryPoints +00007FA12D114CF0 18 stub<10809> AllocateTemporaryEntryPoints +00007FA12D114D08 18 stub<10810> AllocateTemporaryEntryPoints +00007FA12D114D20 60 stub<10811> AllocateTemporaryEntryPoints +00007FA12B3E5A50 b2 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA128665220 60 Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.IRequestHeaders /* MT: 0x00007FA12C9A6A50 */ [Datadog.Trace] dynamicClass::CreateProxyInstance(object)[Optimized] +00007FA12D114D80 18 stub<10812> AllocateTemporaryEntryPoints +00007FA12D114D98 18 stub<10813> AllocateTemporaryEntryPoints +00007FA12D114DB0 18 stub<10814> AllocateTemporaryEntryPoints +00007FA12D114DC8 18 stub<10815> AllocateTemporaryEntryPoints +00007FA1277C1980 18 stub<10816> GenerateLookupStub +00007FA12D114DE0 48 stub<10817> AllocateTemporaryEntryPoints +00007FA12D114E28 18 stub<10818> AllocateTemporaryEntryPoints +00007FA12B3E5B20 286 bool [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMessageHandlerCommon::IsTracingEnabled(class Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.IRequestHeaders,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12B3E5DD0 34 instance bool [DuckTypeNotVisibleAssembly.HttpRequestHeaders_2] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_Headers_HttpRequestHeaders.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IRequestHeaders_2::TryGetValues(string,class [System.Private.CoreLib]System.Collections.Generic.IEnumerable`1&)[QuickJitted] +00007FA12D114E40 30 stub<10819> AllocateTemporaryEntryPoints +00007FA12B3E5E20 6b valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::GetDefault()[QuickJitted] +00007FA12B3E5EB0 76 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::.ctor(class Datadog.Trace.Scope,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState)[QuickJitted] +00007FA12D114E70 18 stub<10820> AllocateTemporaryEntryPoints +00007FA12D114E88 48 stub<10821> AllocateTemporaryEntryPoints +00007FA12D114ED0 18 stub<10822> AllocateTemporaryEntryPoints +00007FA12D114EE8 48 stub<10823> AllocateTemporaryEntryPoints +00007FA12D116000 198 stub<10824> AllocateTemporaryEntryPoints +00007FA12D116198 18 stub<10825> AllocateTemporaryEntryPoints +00007FA12D1161B0 18 stub<10826> AllocateTemporaryEntryPoints +00007FA12D1161C8 48 stub<10827> AllocateTemporaryEntryPoints +00007FA12D116210 138 stub<10828> AllocateTemporaryEntryPoints +00007FA12D116348 18 stub<10829> AllocateTemporaryEntryPoints +00007FA12D116360 78 stub<10830> AllocateTemporaryEntryPoints +00007FA12D1163D8 18 stub<10831> AllocateTemporaryEntryPoints +00007FA12D1163F0 18 stub<10832> AllocateTemporaryEntryPoints +00007FA12D116408 18 stub<10833> AllocateTemporaryEntryPoints +00007FA12B3E5F40 3da instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.SocketsHttpHandler::SendAsync(class System.Net.Http.HttpRequestMessage,valuetype [System.Runtime]System.Threading.CancellationToken)[QuickJitted] +00007FA1277FBE00 18 stub<10834> GenerateResolveStub +00007FA1277C6780 20 stub<10835> GenerateDispatchStub +00007FA1277C67A0 20 stub<10836> GenerateDispatchStub +00007FA12B3E6380 67 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Datadog.Trace.DuckTyping.TypesTuple]::Equals(!0,!0)[QuickJitted] +00007FA12D116420 30 stub<10837> AllocateTemporaryEntryPoints +00007FA12B3E6400 4c instance bool [Datadog.Trace] Datadog.Trace.DuckTyping.TypesTuple::Equals(valuetype Datadog.Trace.DuckTyping.TypesTuple)[QuickJitted] +00007FA12D116450 18 stub<10838> AllocateTemporaryEntryPoints +00007FA12D116468 18 stub<10839> AllocateTemporaryEntryPoints +00007FA1277FBE70 18 stub<10840> GenerateResolveStub +00007FA1277C67C0 20 stub<10841> GenerateDispatchStub +00007FA1277FBEE0 18 stub<10842> GenerateResolveStub +00007FA1277C67E0 20 stub<10843> GenerateDispatchStub +00007FA12D116480 18 stub<10844> AllocateTemporaryEntryPoints +00007FA12D116498 18 stub<10845> AllocateTemporaryEntryPoints +00007FA1286652E0 49 Datadog.Trace.ClrProfiler.CallTarget.CallTargetState /* MT: 0x00007FA12C287AF8 */ [Datadog.Trace] dynamicClass::SocketsHttpHandlerIntegration.OnMethodBegin(System.Net.Http.SocketsHttpHandler /* MT: 0x00007FA1299EC788 */,System.Net.Http.HttpRequestMessage /* MT: 0x00007FA12A0F3708 */&,System.Threading.CancellationToken /* MT: 0x00007FA128C15670 */&)[Optimized] +00007FA12B3E6460 9f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::IsIntegrationEnabled(valuetype Datadog.Trace.Configuration.IntegrationId,bool)[QuickJitted] +00007FA12D1164B0 18 stub<10846> AllocateTemporaryEntryPoints +00007FA12B3E6520 1c instance bool [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::ShouldAvoidAppDomain()[QuickJitted] +00007FA12D1164C8 48 stub<10847> AllocateTemporaryEntryPoints +00007FA12D116510 18 stub<10848> AllocateTemporaryEntryPoints +00007FA12B3E6550 39 instance class Datadog.Trace.Configuration.ImmutableIntegrationSettings [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettingsCollection::get_Item(valuetype Datadog.Trace.Configuration.IntegrationId)[QuickJitted] +00007FA12D116528 108 stub<10849> AllocateTemporaryEntryPoints +00007FA1277FBF50 18 stub<10850> GenerateResolveStub +00007FA1277C6800 20 stub<10851> GenerateDispatchStub +00007FA12D116630 180 stub<10852> AllocateTemporaryEntryPoints +00007FA12D1167B0 18 stub<10853> AllocateTemporaryEntryPoints +00007FA12D1167C8 78 stub<10854> AllocateTemporaryEntryPoints +00007FA12D116840 78 stub<10855> AllocateTemporaryEntryPoints +00007FA12D1168B8 78 stub<10856> AllocateTemporaryEntryPoints +00007FA12D116930 30 stub<10857> AllocateTemporaryEntryPoints +00007FA12D116960 30 stub<10858> AllocateTemporaryEntryPoints +00007FA12D116990 30 stub<10859> AllocateTemporaryEntryPoints +00007FA12B3E65A0 161 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::EndMethod(!!1,!!2,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[QuickJitted] +00007FA12D1169C0 78 stub<10860> AllocateTemporaryEntryPoints +00007FA12D116A38 78 stub<10861> AllocateTemporaryEntryPoints +00007FA12D116AB0 60 stub<10862> AllocateTemporaryEntryPoints +00007FA12D116B10 198 stub<10863> AllocateTemporaryEntryPoints +00007FA12D116CA8 60 stub<10864> AllocateTemporaryEntryPoints +00007FA12D116D08 18 stub<10865> AllocateTemporaryEntryPoints +00007FA12D116D20 18 stub<10866> AllocateTemporaryEntryPoints +00007FA12D116D38 78 stub<10867> AllocateTemporaryEntryPoints +00007FA12D116DB0 30 stub<10868> AllocateTemporaryEntryPoints +00007FA12D116DE0 18 stub<10869> AllocateTemporaryEntryPoints +00007FA12D116DF8 60 stub<10870> AllocateTemporaryEntryPoints +00007FA12D116E58 78 stub<10871> AllocateTemporaryEntryPoints +00007FA1277C19A0 18 stub<10872> GenerateLookupStub +00007FA1277C19C0 18 stub<10873> GenerateLookupStub +00007FA12B3E6720 223 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.EndMethodHandler`3[System.__Canon,System.__Canon,System.__Canon]::Invoke(!1,!2,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[QuickJitted] +00007FA12D116ED0 78 stub<10874> AllocateTemporaryEntryPoints +00007FA12D116F48 48 stub<10875> AllocateTemporaryEntryPoints +00007FA12D116F90 48 stub<10876> AllocateTemporaryEntryPoints +00007FA12D118000 60 stub<10877> AllocateTemporaryEntryPoints +00007FA12D118060 48 stub<10878> AllocateTemporaryEntryPoints +00007FA12D1180A8 78 stub<10879> AllocateTemporaryEntryPoints +00007FA12D118120 48 stub<10880> AllocateTemporaryEntryPoints +00007FA12D118168 60 stub<10881> AllocateTemporaryEntryPoints +00007FA12D1181C8 48 stub<10882> AllocateTemporaryEntryPoints +00007FA12D118210 18 stub<10883> AllocateTemporaryEntryPoints +00007FA12D118228 48 stub<10884> AllocateTemporaryEntryPoints +00007FA12D118270 18 stub<10885> AllocateTemporaryEntryPoints +00007FA12D118288 78 stub<10886> AllocateTemporaryEntryPoints +00007FA12D118300 18 stub<10887> AllocateTemporaryEntryPoints +00007FA12D118318 78 stub<10888> AllocateTemporaryEntryPoints +00007FA12D118390 18 stub<10889> AllocateTemporaryEntryPoints +00007FA12D1183A8 48 stub<10890> AllocateTemporaryEntryPoints +00007FA12D1183F0 18 stub<10891> AllocateTemporaryEntryPoints +00007FA12D118408 78 stub<10892> AllocateTemporaryEntryPoints +00007FA12D118480 18 stub<10893> AllocateTemporaryEntryPoints +00007FA12D118498 48 stub<10894> AllocateTemporaryEntryPoints +00007FA12B3E6960 84d void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.EndMethodHandler`3[System.__Canon,System.__Canon,System.__Canon]::.cctor()[QuickJitted] +00007FA12D1184E0 30 stub<10895> AllocateTemporaryEntryPoints +00007FA12D118510 18 stub<10896> AllocateTemporaryEntryPoints +00007FA12D118528 30 stub<10897> AllocateTemporaryEntryPoints +00007FA12D118558 18 stub<10898> AllocateTemporaryEntryPoints +00007FA12D118570 18 stub<10899> AllocateTemporaryEntryPoints +00007FA12D118588 48 stub<10900> AllocateTemporaryEntryPoints +00007FA12D1185D0 18 stub<10901> AllocateTemporaryEntryPoints +00007FA12D1185E8 18 stub<10902> AllocateTemporaryEntryPoints +00007FA12D118600 30 stub<10903> AllocateTemporaryEntryPoints +00007FA12D118630 18 stub<10904> AllocateTemporaryEntryPoints +00007FA12D118648 18 stub<10905> AllocateTemporaryEntryPoints +00007FA12D118660 30 stub<10906> AllocateTemporaryEntryPoints +00007FA12D118690 18 stub<10907> AllocateTemporaryEntryPoints +00007FA12D1186A8 60 stub<10908> AllocateTemporaryEntryPoints +00007FA12D118708 78 stub<10909> AllocateTemporaryEntryPoints +00007FA12D118780 18 stub<10910> AllocateTemporaryEntryPoints +00007FA12D118798 30 stub<10911> AllocateTemporaryEntryPoints +00007FA12D1187C8 48 stub<10912> AllocateTemporaryEntryPoints +00007FA12D118810 18 stub<10913> AllocateTemporaryEntryPoints +00007FA12D118828 18 stub<10914> AllocateTemporaryEntryPoints +00007FA12D118840 18 stub<10915> AllocateTemporaryEntryPoints +00007FA12D118858 18 stub<10916> AllocateTemporaryEntryPoints +00007FA12D118870 18 stub<10917> AllocateTemporaryEntryPoints +00007FA12D118888 18 stub<10918> AllocateTemporaryEntryPoints +00007FA12D1188A0 18 stub<10919> AllocateTemporaryEntryPoints +00007FA12D1188B8 18 stub<10920> AllocateTemporaryEntryPoints +00007FA12D1188D0 30 stub<10921> AllocateTemporaryEntryPoints +00007FA12D118900 18 stub<10922> AllocateTemporaryEntryPoints +00007FA12D118918 18 stub<10923> AllocateTemporaryEntryPoints +00007FA12D118930 18 stub<10924> AllocateTemporaryEntryPoints +00007FA12D118948 30 stub<10925> AllocateTemporaryEntryPoints +00007FA12D118978 60 stub<10926> AllocateTemporaryEntryPoints +00007FA12D1189D8 18 stub<10927> AllocateTemporaryEntryPoints +00007FA12D1189F0 18 stub<10928> AllocateTemporaryEntryPoints +00007FA12B3E71E0 156d class [System.Reflection.Emit.Lightweight]System.Reflection.Emit.DynamicMethod [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper::CreateEndMethodDelegate(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12D118A08 60 stub<10929> AllocateTemporaryEntryPoints +00007FA1277FBFC0 18 stub<10930> GenerateResolveStub +00007FA12D118A68 48 stub<10931> AllocateTemporaryEntryPoints +00007FA1277C6820 20 stub<10932> GenerateDispatchStub +00007FA12D118AB0 60 stub<10933> AllocateTemporaryEntryPoints +00007FA12D118B10 90 stub<10934> AllocateTemporaryEntryPoints +00007FA12D118BA0 18 stub<10935> AllocateTemporaryEntryPoints +00007FA12D118BB8 18 stub<10936> AllocateTemporaryEntryPoints +00007FA12D118BD0 18 stub<10937> AllocateTemporaryEntryPoints +00007FA12D118BE8 90 stub<10938> AllocateTemporaryEntryPoints +00007FA12D118C78 18 stub<10939> AllocateTemporaryEntryPoints +00007FA12B3E8780 172 class [System.Runtime]System.Reflection.MethodInfo [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper::GetOnMethodEndMethodInfo(class [System.Runtime]System.Type,string)[Optimized] +00007FA12D118C90 30 stub<10940> AllocateTemporaryEntryPoints +00007FA12B3E8930 148 class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationsHelper::GetResultType(class [System.Runtime]System.Type)[QuickJitted] +00007FA12D118CC0 18 stub<10941> AllocateTemporaryEntryPoints +00007FA12D118CD8 48 stub<10942> AllocateTemporaryEntryPoints +00007FA12D118D20 18 stub<10943> AllocateTemporaryEntryPoints +00007FA12D118D38 18 stub<10944> AllocateTemporaryEntryPoints +00007FA12D118D50 48 stub<10945> AllocateTemporaryEntryPoints +00007FA12D118D98 30 stub<10946> AllocateTemporaryEntryPoints +00007FA12D118DC8 d8 stub<10947> AllocateTemporaryEntryPoints +00007FA12D118EA0 18 stub<10948> AllocateTemporaryEntryPoints +00007FA12B3E8A90 39 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::.ctor()[QuickJitted] +00007FA12D118EB8 18 stub<10949> AllocateTemporaryEntryPoints +00007FA12D118ED0 18 stub<10950> AllocateTemporaryEntryPoints +00007FA12D118EE8 18 stub<10951> AllocateTemporaryEntryPoints +00007FA12D118F00 18 stub<10952> AllocateTemporaryEntryPoints +00007FA12D118F18 30 stub<10953> AllocateTemporaryEntryPoints +00007FA12D118F48 30 stub<10954> AllocateTemporaryEntryPoints +00007FA12D118F78 30 stub<10955> AllocateTemporaryEntryPoints +00007FA12D118FA8 30 stub<10956> AllocateTemporaryEntryPoints +00007FA12D11A000 30 stub<10957> AllocateTemporaryEntryPoints +00007FA12D11A030 30 stub<10958> AllocateTemporaryEntryPoints +00007FA12D11A060 30 stub<10959> AllocateTemporaryEntryPoints +00007FA12D11A090 60 stub<10960> AllocateTemporaryEntryPoints +00007FA12D11A0F0 60 stub<10961> AllocateTemporaryEntryPoints +00007FA12D11A150 60 stub<10962> AllocateTemporaryEntryPoints +00007FA12D11A1B0 30 stub<10963> AllocateTemporaryEntryPoints +00007FA12D11A1E0 48 stub<10964> AllocateTemporaryEntryPoints +00007FA12D11A228 48 stub<10965> AllocateTemporaryEntryPoints +00007FA12D11A270 48 stub<10966> AllocateTemporaryEntryPoints +00007FA12D11A2B8 60 stub<10967> AllocateTemporaryEntryPoints +00007FA12D11A318 60 stub<10968> AllocateTemporaryEntryPoints +00007FA12D11A378 60 stub<10969> AllocateTemporaryEntryPoints +00007FA12D11A3D8 30 stub<10970> AllocateTemporaryEntryPoints +00007FA12D11A408 48 stub<10971> AllocateTemporaryEntryPoints +00007FA12D11A450 48 stub<10972> AllocateTemporaryEntryPoints +00007FA12D11A498 48 stub<10973> AllocateTemporaryEntryPoints +00007FA12D11A4E0 78 stub<10974> AllocateTemporaryEntryPoints +00007FA12D11A558 18 stub<10975> AllocateTemporaryEntryPoints +00007FA12D11A570 30 stub<10976> AllocateTemporaryEntryPoints +00007FA12D11A5A0 18 stub<10977> AllocateTemporaryEntryPoints +00007FA12D11A5B8 48 stub<10978> AllocateTemporaryEntryPoints +00007FA12D11A600 18 stub<10979> AllocateTemporaryEntryPoints +00007FA12D11A618 18 stub<10980> AllocateTemporaryEntryPoints +00007FA12D11A630 18 stub<10981> AllocateTemporaryEntryPoints +00007FA12D11A648 30 stub<10982> AllocateTemporaryEntryPoints +00007FA12D11A678 30 stub<10983> AllocateTemporaryEntryPoints +00007FA12D11A6A8 a8 stub<10984> AllocateTemporaryEntryPoints +00007FA12D11A750 18 stub<10985> AllocateTemporaryEntryPoints +00007FA12B3E8AE0 943 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::.cctor()[QuickJitted] +00007FA12D11A768 18 stub<10986> AllocateTemporaryEntryPoints +00007FA12D11A780 18 stub<10987> AllocateTemporaryEntryPoints +00007FA12B3E9450 17ef valuetype Datadog.Trace.ClrProfiler.CallTarget.Handlers.CreateAsyncEndMethodResult [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper::CreateAsyncEndMethodDelegate(class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12D11A798 a8 stub<10988> AllocateTemporaryEntryPoints +00007FA1277C19E0 18 stub<10989> GenerateLookupStub +00007FA1277FC030 18 stub<10990> GenerateResolveStub +00007FA1277C6840 20 stub<10991> GenerateDispatchStub +00007FA12D11A840 30 stub<10992> AllocateTemporaryEntryPoints +00007FA12D11A870 30 stub<10993> AllocateTemporaryEntryPoints +00007FA12D11A8A0 18 stub<10994> AllocateTemporaryEntryPoints +00007FA12D11A8B8 18 stub<10995> AllocateTemporaryEntryPoints +00007FA12D11A8D0 18 stub<10996> AllocateTemporaryEntryPoints +00007FA1277C1A00 18 stub<10997> GenerateLookupStub +00007FA1277FC0A0 18 stub<10998> GenerateResolveStub +00007FA1277C6860 20 stub<10999> GenerateDispatchStub +00007FA12D11A8E8 90 stub<11000> AllocateTemporaryEntryPoints +00007FA12D11A978 18 stub<11001> AllocateTemporaryEntryPoints +00007FA12D11A990 60 stub<11002> AllocateTemporaryEntryPoints +00007FA12D11A9F0 18 stub<11003> AllocateTemporaryEntryPoints +00007FA12D11AA08 60 stub<11004> AllocateTemporaryEntryPoints +00007FA12D11AA68 18 stub<11005> AllocateTemporaryEntryPoints +00007FA12D11AA80 d8 stub<11006> AllocateTemporaryEntryPoints +00007FA12D11AB58 18 stub<11007> AllocateTemporaryEntryPoints +00007FA12D11AB70 18 stub<11008> AllocateTemporaryEntryPoints +00007FA12D11AB88 18 stub<11009> AllocateTemporaryEntryPoints +00007FA12D11ABA0 18 stub<11010> AllocateTemporaryEntryPoints +00007FA12B3EAC60 33 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.CreateAsyncEndMethodResult::.ctor(class [System.Reflection.Emit.Lightweight]System.Reflection.Emit.DynamicMethod,bool)[QuickJitted] +00007FA12D11ABB8 2d0 stub<11011> AllocateTemporaryEntryPoints +00007FA12D11AE88 18 stub<11012> AllocateTemporaryEntryPoints +00007FA12D11AEA0 48 stub<11013> AllocateTemporaryEntryPoints +00007FA12D11AEE8 18 stub<11014> AllocateTemporaryEntryPoints +00007FA12D11AF00 c0 stub<11015> AllocateTemporaryEntryPoints +00007FA12D11AFC0 18 stub<11016> AllocateTemporaryEntryPoints +00007FA12B3EACB0 41 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::.ctor(class Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`3/ContinuationMethodDelegate,bool)[QuickJitted] +00007FA12D11AFD8 18 stub<11017> AllocateTemporaryEntryPoints +00007FA12D11C000 18 stub<11018> AllocateTemporaryEntryPoints +00007FA12B3EAD10 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`2+CallbackHandler[System.__Canon,System.__Canon]::.ctor()[QuickJitted] +00007FA12D11C018 30 stub<11019> AllocateTemporaryEntryPoints +00007FA12D11C048 18 stub<11020> AllocateTemporaryEntryPoints +00007FA12D11C060 a8 stub<11021> AllocateTemporaryEntryPoints +00007FA12D11C108 18 stub<11022> AllocateTemporaryEntryPoints +00007FA12D11C120 18 stub<11023> AllocateTemporaryEntryPoints +00007FA12B3EAD50 9a void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`2[System.__Canon,System.__Canon]::.cctor()[QuickJitted] +00007FA1277FC110 18 stub<11024> GenerateResolveStub +00007FA1277C6880 20 stub<11025> GenerateDispatchStub +00007FA12B3EAE00 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`3[System.__Canon,System.__Canon,System.__Canon]::.ctor()[QuickJitted] +00007FA12B3EAE40 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`2[System.__Canon,System.__Canon]::.ctor()[QuickJitted] +00007FA12B3EAE80 b7 instance !2 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::SetContinuation(!1,!2,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute))[QuickJitted] +00007FA12D11C138 60 stub<11026> AllocateTemporaryEntryPoints +00007FA12D11C198 18 stub<11027> AllocateTemporaryEntryPoints +00007FA12D11C1B0 18 stub<11028> AllocateTemporaryEntryPoints +00007FA12D11C1C8 78 stub<11029> AllocateTemporaryEntryPoints +00007FA12D11C240 540 stub<11030> AllocateTemporaryEntryPoints +00007FA12D11C780 18 stub<11031> AllocateTemporaryEntryPoints +00007FA12D11C798 18 stub<11032> AllocateTemporaryEntryPoints +00007FA12D11C7B0 18 stub<11033> AllocateTemporaryEntryPoints +00007FA12D11C7C8 18 stub<11034> AllocateTemporaryEntryPoints +00007FA12D11C7E0 18 stub<11035> AllocateTemporaryEntryPoints +00007FA12D11C7F8 18 stub<11036> AllocateTemporaryEntryPoints +00007FA12D11C810 18 stub<11037> AllocateTemporaryEntryPoints +00007FA12D11C828 18 stub<11038> AllocateTemporaryEntryPoints +00007FA12B3EAF50 313 instance !2 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::ExecuteCallback(!1,!2,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute))[QuickJitted] +00007FA12D11C840 18 stub<11039> AllocateTemporaryEntryPoints +00007FA12D11C858 30 stub<11040> AllocateTemporaryEntryPoints +00007FA12D11C888 48 stub<11041> AllocateTemporaryEntryPoints +00007FA12D11C8D0 18 stub<11042> AllocateTemporaryEntryPoints +00007FA12D11C8E8 18 stub<11043> AllocateTemporaryEntryPoints +00007FA12D11C900 18 stub<11044> AllocateTemporaryEntryPoints +00007FA12D11C918 18 stub<11045> AllocateTemporaryEntryPoints +00007FA12B3EB280 1c !!0 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`2[System.__Canon,System.__Canon]::FromTReturn(!1)[QuickJitted] +00007FA12D11C930 1e0 stub<11046> AllocateTemporaryEntryPoints +00007FA12D11CB10 c0 stub<11047> AllocateTemporaryEntryPoints +00007FA12D11CBD0 a8 stub<11048> AllocateTemporaryEntryPoints +00007FA12D11CC78 60 stub<11049> AllocateTemporaryEntryPoints +00007FA12D11CCD8 60 stub<11050> AllocateTemporaryEntryPoints +00007FA12D11CD38 1e0 stub<11051> AllocateTemporaryEntryPoints +00007FA12D11CF18 a8 stub<11052> AllocateTemporaryEntryPoints +00007FA12D11E000 60 stub<11053> AllocateTemporaryEntryPoints +00007FA12D11E060 18 stub<11054> AllocateTemporaryEntryPoints +00007FA12D11E078 18 stub<11055> AllocateTemporaryEntryPoints +00007FA12D11E090 18 stub<11056> AllocateTemporaryEntryPoints +00007FA12B3EB2B0 230 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::ContinuationAction(class [System.Runtime]System.Threading.Tasks.Task`1,!1,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState)[QuickJitted] +00007FA12D11E0A8 18 stub<11057> AllocateTemporaryEntryPoints +00007FA12D11E0C0 18 stub<11058> AllocateTemporaryEntryPoints +00007FA12D11E0D8 18 stub<11059> AllocateTemporaryEntryPoints +00007FA12D11E0F0 18 stub<11060> AllocateTemporaryEntryPoints +00007FA12D11E108 48 stub<11061> AllocateTemporaryEntryPoints +00007FA12D11E150 18 stub<11062> AllocateTemporaryEntryPoints +00007FA12B3EB500 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12D11E168 18 stub<11063> AllocateTemporaryEntryPoints +00007FA12D11E180 528 stub<11064> AllocateTemporaryEntryPoints +00007FA12D11E6A8 18 stub<11065> AllocateTemporaryEntryPoints +00007FA12D11E6C0 150 stub<11066> AllocateTemporaryEntryPoints +00007FA12D11E810 30 stub<11067> AllocateTemporaryEntryPoints +00007FA12D11E840 18 stub<11068> AllocateTemporaryEntryPoints +00007FA12D11E858 30 stub<11069> AllocateTemporaryEntryPoints +00007FA12D11E888 18 stub<11070> AllocateTemporaryEntryPoints +00007FA12D11E8A0 a8 stub<11071> AllocateTemporaryEntryPoints +00007FA12D11E948 18 stub<11072> AllocateTemporaryEntryPoints +00007FA12B3EB580 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12D11E960 30 stub<11073> AllocateTemporaryEntryPoints +00007FA12D11E990 18 stub<11074> AllocateTemporaryEntryPoints +00007FA12D11E9A8 18 stub<11075> AllocateTemporaryEntryPoints +00007FA12D11E9C0 60 stub<11076> AllocateTemporaryEntryPoints +00007FA12D11EA20 18 stub<11077> AllocateTemporaryEntryPoints +00007FA12D11EA38 48 stub<11078> AllocateTemporaryEntryPoints +00007FA12D11EA80 60 stub<11079> AllocateTemporaryEntryPoints +00007FA12D11EAE0 18 stub<11080> AllocateTemporaryEntryPoints +00007FA12D11EAF8 18 stub<11081> AllocateTemporaryEntryPoints +00007FA12D11EB10 48 stub<11082> AllocateTemporaryEntryPoints +00007FA12D11EB58 18 stub<11083> AllocateTemporaryEntryPoints +00007FA12D11EB70 18 stub<11084> AllocateTemporaryEntryPoints +00007FA12D11EB88 30 stub<11085> AllocateTemporaryEntryPoints +00007FA12D11EBB8 78 stub<11086> AllocateTemporaryEntryPoints +00007FA12D11EC30 18 stub<11087> AllocateTemporaryEntryPoints +00007FA12D11EC48 48 stub<11088> AllocateTemporaryEntryPoints +00007FA12D11EC90 48 stub<11089> AllocateTemporaryEntryPoints +00007FA12D11ECD8 90 stub<11090> AllocateTemporaryEntryPoints +00007FA12D11ED68 18 stub<11091> AllocateTemporaryEntryPoints +00007FA12D11ED80 60 stub<11092> AllocateTemporaryEntryPoints +00007FA12D11EDE0 18 stub<11093> AllocateTemporaryEntryPoints +00007FA12D11EDF8 30 stub<11094> AllocateTemporaryEntryPoints +00007FA12D11EE28 18 stub<11095> AllocateTemporaryEntryPoints +00007FA12D11EE40 18 stub<11096> AllocateTemporaryEntryPoints +00007FA12D11EE58 30 stub<11097> AllocateTemporaryEntryPoints +00007FA12D11EE88 18 stub<11098> AllocateTemporaryEntryPoints +00007FA12D11EEA0 78 stub<11099> AllocateTemporaryEntryPoints +00007FA12D11EF18 48 stub<11100> AllocateTemporaryEntryPoints +00007FA12D11EF60 18 stub<11101> AllocateTemporaryEntryPoints +00007FA12D860000 408 stub<11102> AllocateTemporaryEntryPoints +00007FA12D860408 540 stub<11103> AllocateTemporaryEntryPoints +00007FA12D862000 6f0 stub<11104> AllocateTemporaryEntryPoints +00007FA12D8626F0 30 stub<11105> AllocateTemporaryEntryPoints +00007FA12D862720 18 stub<11106> AllocateTemporaryEntryPoints +00007FA12D862738 18 stub<11107> AllocateTemporaryEntryPoints +00007FA12D862750 18 stub<11108> AllocateTemporaryEntryPoints +00007FA12D862768 48 stub<11109> AllocateTemporaryEntryPoints +00007FA12D8627B0 18 stub<11110> AllocateTemporaryEntryPoints +00007FA12D8627C8 18 stub<11111> AllocateTemporaryEntryPoints +00007FA12D8627E0 18 stub<11112> AllocateTemporaryEntryPoints +00007FA12D8627F8 258 stub<11113> AllocateTemporaryEntryPoints +00007FA12D862A50 4c8 stub<11114> AllocateTemporaryEntryPoints +00007FA12D862F18 18 stub<11115> AllocateTemporaryEntryPoints +00007FA12D862F30 18 stub<11116> AllocateTemporaryEntryPoints +00007FA12D862F48 18 stub<11117> AllocateTemporaryEntryPoints +00007FA12D862F60 18 stub<11118> AllocateTemporaryEntryPoints +00007FA12D862F78 18 stub<11119> AllocateTemporaryEntryPoints +00007FA12D862F90 18 stub<11120> AllocateTemporaryEntryPoints +00007FA12D862FA8 18 stub<11121> AllocateTemporaryEntryPoints +00007FA12D864000 48 stub<11122> AllocateTemporaryEntryPoints +00007FA12D864048 18 stub<11123> AllocateTemporaryEntryPoints +00007FA12D864060 30 stub<11124> AllocateTemporaryEntryPoints +00007FA12D864090 78 stub<11125> AllocateTemporaryEntryPoints +00007FA12D864108 18 stub<11126> AllocateTemporaryEntryPoints +00007FA12D864120 60 stub<11127> AllocateTemporaryEntryPoints +00007FA12D864180 18 stub<11128> AllocateTemporaryEntryPoints +00007FA12D864198 18 stub<11129> AllocateTemporaryEntryPoints +00007FA12D8641B0 108 stub<11130> AllocateTemporaryEntryPoints +00007FA12D8642B8 18 stub<11131> AllocateTemporaryEntryPoints +00007FA12D8642D0 90 stub<11132> AllocateTemporaryEntryPoints +00007FA12D864360 18 stub<11133> AllocateTemporaryEntryPoints +00007FA12D864378 78 stub<11134> AllocateTemporaryEntryPoints +00007FA12D8643F0 18 stub<11135> AllocateTemporaryEntryPoints +00007FA12D864408 48 stub<11136> AllocateTemporaryEntryPoints +00007FA12D864450 30 stub<11137> AllocateTemporaryEntryPoints +00007FA12D864480 18 stub<11138> AllocateTemporaryEntryPoints +00007FA12D864498 60 stub<11139> AllocateTemporaryEntryPoints +00007FA12D8644F8 18 stub<11140> AllocateTemporaryEntryPoints +00007FA12D864510 60 stub<11141> AllocateTemporaryEntryPoints +00007FA12D864570 a8 stub<11142> AllocateTemporaryEntryPoints +00007FA12D864618 18 stub<11143> AllocateTemporaryEntryPoints +00007FA12D864630 48 stub<11144> AllocateTemporaryEntryPoints +00007FA12D864678 30 stub<11145> AllocateTemporaryEntryPoints +00007FA12D8646A8 18 stub<11146> AllocateTemporaryEntryPoints +00007FA12D8646C0 18 stub<11147> AllocateTemporaryEntryPoints +00007FA12D8646D8 f0 stub<11148> AllocateTemporaryEntryPoints +00007FA12D8647C8 30 stub<11149> AllocateTemporaryEntryPoints +00007FA12D8647F8 48 stub<11150> AllocateTemporaryEntryPoints +00007FA12D864840 18 stub<11151> AllocateTemporaryEntryPoints +00007FA12B3EB6D0 886 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::MoveNext()[QuickJitted] +00007FA12D864858 d8 stub<11152> AllocateTemporaryEntryPoints +00007FA12D864930 18 stub<11153> AllocateTemporaryEntryPoints +00007FA12D864948 18 stub<11154> AllocateTemporaryEntryPoints +00007FA12D864960 48 stub<11155> AllocateTemporaryEntryPoints +00007FA12B3EBFB0 33 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.NoThrowAwaiter::.ctor(class [System.Runtime]System.Threading.Tasks.Task,bool)[QuickJitted] +00007FA12D8649A8 78 stub<11156> AllocateTemporaryEntryPoints +00007FA12D864A20 18 stub<11157> AllocateTemporaryEntryPoints +00007FA12D864A38 30 stub<11158> AllocateTemporaryEntryPoints +00007FA12B3EC000 32 instance valuetype Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.NoThrowAwaiter [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.NoThrowAwaiter::GetAwaiter()[QuickJitted] +00007FA12D864A68 18 stub<11159> AllocateTemporaryEntryPoints +00007FA12D864A80 a8 stub<11160> AllocateTemporaryEntryPoints +00007FA12B3EC050 24 instance bool [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.NoThrowAwaiter::get_IsCompleted()[QuickJitted] +00007FA12D864B28 48 stub<11161> AllocateTemporaryEntryPoints +00007FA12D864B70 18 stub<11162> AllocateTemporaryEntryPoints +00007FA12D864B88 18 stub<11163> AllocateTemporaryEntryPoints +00007FA12D864BA0 168 stub<11164> AllocateTemporaryEntryPoints +00007FA12D864D08 18 stub<11165> AllocateTemporaryEntryPoints +00007FA12D864D20 18 stub<11166> AllocateTemporaryEntryPoints +00007FA12D864D38 120 stub<11167> AllocateTemporaryEntryPoints +00007FA12D864E58 90 stub<11168> AllocateTemporaryEntryPoints +00007FA12D864EE8 18 stub<11169> AllocateTemporaryEntryPoints +00007FA12B3EC090 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12D866000 198 stub<11170> AllocateTemporaryEntryPoints +00007FA12D866198 60 stub<11171> AllocateTemporaryEntryPoints +00007FA12D8661F8 18 stub<11172> AllocateTemporaryEntryPoints +00007FA12D866210 168 stub<11173> AllocateTemporaryEntryPoints +00007FA12D866378 90 stub<11174> AllocateTemporaryEntryPoints +00007FA12D866408 18 stub<11175> AllocateTemporaryEntryPoints +00007FA12D866420 60 stub<11176> AllocateTemporaryEntryPoints +00007FA12D866480 a8 stub<11177> AllocateTemporaryEntryPoints +00007FA12D866528 18 stub<11178> AllocateTemporaryEntryPoints +00007FA12D866540 228 stub<11179> AllocateTemporaryEntryPoints +00007FA12D866768 258 stub<11180> AllocateTemporaryEntryPoints +00007FA12D8669C0 228 stub<11181> AllocateTemporaryEntryPoints +00007FA12D866BE8 18 stub<11182> AllocateTemporaryEntryPoints +00007FA12D866C00 18 stub<11183> AllocateTemporaryEntryPoints +00007FA12D866C18 18 stub<11184> AllocateTemporaryEntryPoints +00007FA12D866C30 18 stub<11185> AllocateTemporaryEntryPoints +00007FA12D866C48 18 stub<11186> AllocateTemporaryEntryPoints +00007FA12D866C60 48 stub<11187> AllocateTemporaryEntryPoints +00007FA12B3EC130 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D866CA8 18 stub<11188> AllocateTemporaryEntryPoints +00007FA12D866CC0 18 stub<11189> AllocateTemporaryEntryPoints +00007FA12D866CD8 d8 stub<11190> AllocateTemporaryEntryPoints +00007FA12D866DB0 48 stub<11191> AllocateTemporaryEntryPoints +00007FA12D866DF8 90 stub<11192> AllocateTemporaryEntryPoints +00007FA12D866E88 18 stub<11193> AllocateTemporaryEntryPoints +00007FA12D866EA0 18 stub<11194> AllocateTemporaryEntryPoints +00007FA12D866EB8 18 stub<11195> AllocateTemporaryEntryPoints +00007FA12D866ED0 18 stub<11196> AllocateTemporaryEntryPoints +00007FA12D866EE8 30 stub<11197> AllocateTemporaryEntryPoints +00007FA12B3EC210 3c0 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3EC5F0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12D866F18 18 stub<11198> AllocateTemporaryEntryPoints +00007FA12D866F30 18 stub<11199> AllocateTemporaryEntryPoints +00007FA12D866F48 18 stub<11200> AllocateTemporaryEntryPoints +00007FA12D866F60 18 stub<11201> AllocateTemporaryEntryPoints +00007FA12D866F78 48 stub<11202> AllocateTemporaryEntryPoints +00007FA12D866FC0 18 stub<11203> AllocateTemporaryEntryPoints +00007FA12D868000 30 stub<11204> AllocateTemporaryEntryPoints +00007FA12D868030 60 stub<11205> AllocateTemporaryEntryPoints +00007FA12D868090 18 stub<11206> AllocateTemporaryEntryPoints +00007FA12D8680A8 18 stub<11207> AllocateTemporaryEntryPoints +00007FA12D8680C0 c0 stub<11208> AllocateTemporaryEntryPoints +00007FA12D868180 18 stub<11209> AllocateTemporaryEntryPoints +00007FA12D868198 18 stub<11210> AllocateTemporaryEntryPoints +00007FA12D8681B0 48 stub<11211> AllocateTemporaryEntryPoints +00007FA12D8681F8 18 stub<11212> AllocateTemporaryEntryPoints +00007FA12D868210 78 stub<11213> AllocateTemporaryEntryPoints +00007FA12D868288 48 stub<11214> AllocateTemporaryEntryPoints +00007FA12D8682D0 210 stub<11215> AllocateTemporaryEntryPoints +00007FA12D8684E0 18 stub<11216> AllocateTemporaryEntryPoints +00007FA12D8684F8 18 stub<11217> AllocateTemporaryEntryPoints +00007FA12D868510 78 stub<11218> AllocateTemporaryEntryPoints +00007FA12D868588 18 stub<11219> AllocateTemporaryEntryPoints +00007FA12D8685A0 18 stub<11220> AllocateTemporaryEntryPoints +00007FA12D8685B8 18 stub<11221> AllocateTemporaryEntryPoints +00007FA12D8685D0 168 stub<11222> AllocateTemporaryEntryPoints +00007FA12D868738 18 stub<11223> AllocateTemporaryEntryPoints +00007FA12D868750 48 stub<11224> AllocateTemporaryEntryPoints +00007FA12D868798 30 stub<11225> AllocateTemporaryEntryPoints +00007FA12D8687C8 18 stub<11226> AllocateTemporaryEntryPoints +00007FA12D8687E0 1b0 stub<11227> AllocateTemporaryEntryPoints +00007FA12B3EC630 f3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12D868990 78 stub<11228> AllocateTemporaryEntryPoints +00007FA12D868A08 18 stub<11229> AllocateTemporaryEntryPoints +00007FA12B3EC750 93 instance class System.Action [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_MoveNextAction()[QuickJitted] +00007FA12D868A38 18 stub<11230> AllocateTemporaryEntryPoints +00007FA12D868A50 18 stub<11231> AllocateTemporaryEntryPoints +00007FA12D868A68 60 stub<11232> AllocateTemporaryEntryPoints +00007FA12B3EC800 1c !1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`2[System.__Canon,System.__Canon]::ToTReturn(!!0)[QuickJitted] +00007FA12B3EC830 2a instance class Datadog.Trace.IScopeManager [Datadog.Trace] Datadog.Trace.Tracer::get_ScopeManager()[QuickJitted] +00007FA12B3EC870 1b instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::get_PreviousScope()[QuickJitted] +00007FA12D868AC8 18 stub<11233> AllocateTemporaryEntryPoints +00007FA12B3EC8A0 27 instance void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::Datadog.Trace.IScopeRawAccess.set_Active(class Datadog.Trace.Scope)[QuickJitted] +00007FA12D868AE0 18 stub<11234> AllocateTemporaryEntryPoints +00007FA12D868AF8 18 stub<11235> AllocateTemporaryEntryPoints +00007FA12B3EC8E0 2d instance void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::set_Active(class Datadog.Trace.Scope)[QuickJitted] +00007FA12D868B10 48 stub<11236> AllocateTemporaryEntryPoints +00007FA12D868B58 18 stub<11237> AllocateTemporaryEntryPoints +00007FA12D868B70 18 stub<11238> AllocateTemporaryEntryPoints +00007FA12D868B88 48 stub<11239> AllocateTemporaryEntryPoints +00007FA12B3EC930 1c instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::get_PreviousDistributedSpanContext()[QuickJitted] +00007FA12B3EC960 5f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.SetSpanContext(class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2)[QuickJitted] +00007FA12B3EC9E0 2a instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1[System.__Canon]::.ctor(!0)[QuickJitted] +00007FA12D868BD0 30 stub<11240> AllocateTemporaryEntryPoints +00007FA12B3ECA20 1f instance !0 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1[System.__Canon]::GetReturnValue()[QuickJitted] +00007FA12D868C00 78 stub<11241> AllocateTemporaryEntryPoints +00007FA12D868C78 198 stub<11242> AllocateTemporaryEntryPoints +00007FA12D868E10 18 stub<11243> AllocateTemporaryEntryPoints +00007FA12D868E28 30 stub<11244> AllocateTemporaryEntryPoints +00007FA12D868E58 48 stub<11245> AllocateTemporaryEntryPoints +00007FA12D868EA0 18 stub<11246> AllocateTemporaryEntryPoints +00007FA12D868EB8 60 stub<11247> AllocateTemporaryEntryPoints +00007FA12D868F18 a8 stub<11248> AllocateTemporaryEntryPoints +00007FA12D868FC0 18 stub<11249> AllocateTemporaryEntryPoints +00007FA12D86A000 30 stub<11250> AllocateTemporaryEntryPoints +00007FA12D86A030 60 stub<11251> AllocateTemporaryEntryPoints +00007FA12D86A090 18 stub<11252> AllocateTemporaryEntryPoints +00007FA12D86A0A8 18 stub<11253> AllocateTemporaryEntryPoints +00007FA12D86A0C0 18 stub<11254> AllocateTemporaryEntryPoints +00007FA12D86A0D8 48 stub<11255> AllocateTemporaryEntryPoints +00007FA12D86A120 60 stub<11256> AllocateTemporaryEntryPoints +00007FA12D86A180 18 stub<11257> AllocateTemporaryEntryPoints +00007FA12D86A198 18 stub<11258> AllocateTemporaryEntryPoints +00007FA12D86A1B0 60 stub<11259> AllocateTemporaryEntryPoints +00007FA12D86A210 18 stub<11260> AllocateTemporaryEntryPoints +00007FA12D86A228 18 stub<11261> AllocateTemporaryEntryPoints +00007FA12D86A240 f0 stub<11262> AllocateTemporaryEntryPoints +00007FA12D86A330 48 stub<11263> AllocateTemporaryEntryPoints +00007FA12D86A378 18 stub<11264> AllocateTemporaryEntryPoints +00007FA12D86A390 d8 stub<11265> AllocateTemporaryEntryPoints +00007FA12D86A468 18 stub<11266> AllocateTemporaryEntryPoints +00007FA12D86A480 18 stub<11267> AllocateTemporaryEntryPoints +00007FA12D86A498 18 stub<11268> AllocateTemporaryEntryPoints +00007FA12D86A4B0 18 stub<11269> AllocateTemporaryEntryPoints +00007FA12D86A4C8 18 stub<11270> AllocateTemporaryEntryPoints +00007FA12D86A4E0 48 stub<11271> AllocateTemporaryEntryPoints +00007FA12D86A528 18 stub<11272> AllocateTemporaryEntryPoints +00007FA12D86A540 18 stub<11273> AllocateTemporaryEntryPoints +00007FA12D86A558 18 stub<11274> AllocateTemporaryEntryPoints +00007FA12D86A570 18 stub<11275> AllocateTemporaryEntryPoints +00007FA12D86A588 18 stub<11276> AllocateTemporaryEntryPoints +00007FA1277FC180 18 stub<11277> GenerateResolveStub +00007FA1277C68A0 20 stub<11278> GenerateDispatchStub +00007FA12D86A5A0 18 stub<11279> AllocateTemporaryEntryPoints +00007FA1277FC1F0 18 stub<11280> GenerateResolveStub +00007FA1277C68C0 20 stub<11281> GenerateDispatchStub +00007FA1277FC260 18 stub<11282> GenerateResolveStub +00007FA1277C68E0 20 stub<11283> GenerateDispatchStub +00007FA12D86A5B8 18 stub<11284> AllocateTemporaryEntryPoints +00007FA12D86A5D0 18 stub<11285> AllocateTemporaryEntryPoints +00007FA12B3ECA60 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12D86A5E8 18 stub<11286> AllocateTemporaryEntryPoints +00007FA12D86A600 18 stub<11287> AllocateTemporaryEntryPoints +00007FA12D86A618 18 stub<11288> AllocateTemporaryEntryPoints +00007FA12D86A630 48 stub<11289> AllocateTemporaryEntryPoints +00007FA12B3ECB00 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D86A678 18 stub<11290> AllocateTemporaryEntryPoints +00007FA12D86A690 d8 stub<11291> AllocateTemporaryEntryPoints +00007FA12D86A768 18 stub<11292> AllocateTemporaryEntryPoints +00007FA12D86A780 18 stub<11293> AllocateTemporaryEntryPoints +00007FA12D86A798 1f8 stub<11294> AllocateTemporaryEntryPoints +00007FA12D86A990 60 stub<11295> AllocateTemporaryEntryPoints +00007FA12D86A9F0 18 stub<11296> AllocateTemporaryEntryPoints +00007FA12D86AA08 18 stub<11297> AllocateTemporaryEntryPoints +00007FA12D86AA20 18 stub<11298> AllocateTemporaryEntryPoints +00007FA12D86AA38 78 stub<11299> AllocateTemporaryEntryPoints +00007FA12D86AAB0 18 stub<11300> AllocateTemporaryEntryPoints +00007FA12D86AAC8 18 stub<11301> AllocateTemporaryEntryPoints +00007FA12D86AAE0 60 stub<11302> AllocateTemporaryEntryPoints +00007FA12D86AB40 18 stub<11303> AllocateTemporaryEntryPoints +00007FA12D86AB58 18 stub<11304> AllocateTemporaryEntryPoints +00007FA12D86AB70 a8 stub<11305> AllocateTemporaryEntryPoints +00007FA12D86AC18 168 stub<11306> AllocateTemporaryEntryPoints +00007FA12B3ECBE0 39c class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D86AD80 c0 stub<11307> AllocateTemporaryEntryPoints +00007FA12B3ECFA0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6]::.ctor()[QuickJitted] +00007FA12D86AE40 18 stub<11308> AllocateTemporaryEntryPoints +00007FA12D86AE58 18 stub<11309> AllocateTemporaryEntryPoints +00007FA12D86AE70 18 stub<11310> AllocateTemporaryEntryPoints +00007FA12D86AE88 30 stub<11311> AllocateTemporaryEntryPoints +00007FA12D86AEB8 30 stub<11312> AllocateTemporaryEntryPoints +00007FA12D86AEE8 18 stub<11313> AllocateTemporaryEntryPoints +00007FA12B3ED3E0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12D86AF00 18 stub<11314> AllocateTemporaryEntryPoints +00007FA12D86AF18 18 stub<11315> AllocateTemporaryEntryPoints +00007FA12D86AF30 18 stub<11316> AllocateTemporaryEntryPoints +00007FA12D86AF48 18 stub<11317> AllocateTemporaryEntryPoints +00007FA12D86AF60 18 stub<11318> AllocateTemporaryEntryPoints +00007FA12D86AF78 18 stub<11319> AllocateTemporaryEntryPoints +00007FA12D86AF90 18 stub<11320> AllocateTemporaryEntryPoints +00007FA12B3ED480 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D86C000 60 stub<11321> AllocateTemporaryEntryPoints +00007FA12D86C060 d8 stub<11322> AllocateTemporaryEntryPoints +00007FA12D86C138 18 stub<11323> AllocateTemporaryEntryPoints +00007FA12D86C150 18 stub<11324> AllocateTemporaryEntryPoints +00007FA12D86C168 18 stub<11325> AllocateTemporaryEntryPoints +00007FA12D86C180 18 stub<11326> AllocateTemporaryEntryPoints +00007FA12D86C198 18 stub<11327> AllocateTemporaryEntryPoints +00007FA12D86C1B0 18 stub<11328> AllocateTemporaryEntryPoints +00007FA12B3ED520 24e class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D86C1C8 a8 stub<11329> AllocateTemporaryEntryPoints +00007FA12B3ED790 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29]::.ctor()[QuickJitted] +00007FA12D86C270 18 stub<11330> AllocateTemporaryEntryPoints +00007FA12B3ED7D0 27 class System.Buffers.ArrayPool`1 [System.Private.CoreLib] System.Buffers.ArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::get_Shared()[QuickJitted] +00007FA12D86C288 18 stub<11331> AllocateTemporaryEntryPoints +00007FA12B3ED810 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12D86C2A0 18 stub<11332> AllocateTemporaryEntryPoints +00007FA12B3ED860 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D86C2B8 d8 stub<11333> AllocateTemporaryEntryPoints +00007FA12D86C390 18 stub<11334> AllocateTemporaryEntryPoints +00007FA12B3ED8C0 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D86C3A8 a8 stub<11335> AllocateTemporaryEntryPoints +00007FA12B3EDB30 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24]::.ctor()[QuickJitted] +00007FA12B3EDB70 47 void [System.Private.CoreLib] System.Buffers.ArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.cctor()[QuickJitted] +00007FA12D86C450 18 stub<11336> AllocateTemporaryEntryPoints +00007FA12D86C468 18 stub<11337> AllocateTemporaryEntryPoints +00007FA12D86C480 60 stub<11338> AllocateTemporaryEntryPoints +00007FA12B3EDBD0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12D86C4E0 18 stub<11339> AllocateTemporaryEntryPoints +00007FA12D86C4F8 60 stub<11340> AllocateTemporaryEntryPoints +00007FA12D86C558 18 stub<11341> AllocateTemporaryEntryPoints +00007FA12D86C570 78 stub<11342> AllocateTemporaryEntryPoints +00007FA12D86C5E8 78 stub<11343> AllocateTemporaryEntryPoints +00007FA12B3EDC20 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D86C660 d8 stub<11344> AllocateTemporaryEntryPoints +00007FA12B3EDC80 77 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.ctor()[QuickJitted] +00007FA12D86C750 60 stub<11346> AllocateTemporaryEntryPoints +00007FA12D86C738 18 stub<11345> AllocateTemporaryEntryPoints +00007FA12B3EDD10 1f instance void [System.Private.CoreLib] System.Buffers.ArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.ctor()[QuickJitted] +00007FA12D86C7B0 90 stub<11347> AllocateTemporaryEntryPoints +00007FA12B3EDD50 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3EDFC0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.Instrumentation+d__14]::.ctor()[QuickJitted] +00007FA12D86C840 48 stub<11348> AllocateTemporaryEntryPoints +00007FA1277FC2D0 18 stub<11349> GenerateResolveStub +00007FA1277C6900 20 stub<11350> GenerateDispatchStub +00007FA12D86C888 60 stub<11351> AllocateTemporaryEntryPoints +00007FA12D86C8E8 18 stub<11352> AllocateTemporaryEntryPoints +00007FA12B3EE000 5b class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation::InitializeLiveDebugger(class Datadog.Trace.Debugger.LiveDebugger)[QuickJitted] +00007FA12D86C900 18 stub<11353> AllocateTemporaryEntryPoints +00007FA12D86C918 60 stub<11354> AllocateTemporaryEntryPoints +00007FA12D86C978 30 stub<11355> AllocateTemporaryEntryPoints +00007FA12B3EE080 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12D86C9A8 18 stub<11356> AllocateTemporaryEntryPoints +00007FA12D86C9C0 18 stub<11357> AllocateTemporaryEntryPoints +00007FA12D86C9D8 48 stub<11358> AllocateTemporaryEntryPoints +00007FA12D86CA20 30 stub<11359> AllocateTemporaryEntryPoints +00007FA12D86CA50 18 stub<11360> AllocateTemporaryEntryPoints +00007FA12D86CA68 18 stub<11361> AllocateTemporaryEntryPoints +00007FA12B3EE0C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12D86CA80 18 stub<11362> AllocateTemporaryEntryPoints +00007FA12D86CA98 18 stub<11363> AllocateTemporaryEntryPoints +00007FA1277C1A20 18 stub<11364> GenerateLookupStub +00007FA1277FC340 18 stub<11365> GenerateResolveStub +00007FA1277C6920 20 stub<11366> GenerateDispatchStub +00007FA12D86CAB0 18 stub<11367> AllocateTemporaryEntryPoints +00007FA1277C1A40 18 stub<11368> GenerateLookupStub +00007FA1277FC3B0 18 stub<11369> GenerateResolveStub +00007FA1277C6940 20 stub<11370> GenerateDispatchStub +00007FA12B3EE1C0 226 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.Instrumentation+d__15::MoveNext()[QuickJitted] +00007FA12D86CAC8 60 stub<11371> AllocateTemporaryEntryPoints +00007FA12D86CB28 18 stub<11372> AllocateTemporaryEntryPoints +00007FA12D86CB40 60 stub<11373> AllocateTemporaryEntryPoints +00007FA12B3EE420 5b instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Debugger.LiveDebugger::InitializeAsync()[QuickJitted] +00007FA12D86CBA0 18 stub<11374> AllocateTemporaryEntryPoints +00007FA12B3EE4A0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B3EE4E0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12D86CBB8 318 stub<11375> AllocateTemporaryEntryPoints +00007FA1277C1A60 18 stub<11376> GenerateLookupStub +00007FA12D86CED0 18 stub<11377> AllocateTemporaryEntryPoints +00007FA12D86E000 198 stub<11378> AllocateTemporaryEntryPoints +00007FA12D86E198 18 stub<11379> AllocateTemporaryEntryPoints +00007FA12D86E1B0 78 stub<11380> AllocateTemporaryEntryPoints +00007FA12D86E228 18 stub<11381> AllocateTemporaryEntryPoints +00007FA12D86E240 18 stub<11382> AllocateTemporaryEntryPoints +00007FA12D86E258 18 stub<11383> AllocateTemporaryEntryPoints +00007FA12D86E270 78 stub<11384> AllocateTemporaryEntryPoints +00007FA12D86E2E8 18 stub<11385> AllocateTemporaryEntryPoints +00007FA12D86E300 18 stub<11386> AllocateTemporaryEntryPoints +00007FA12D86E318 48 stub<11387> AllocateTemporaryEntryPoints +00007FA12D86E360 18 stub<11388> AllocateTemporaryEntryPoints +00007FA12D86E378 48 stub<11389> AllocateTemporaryEntryPoints +00007FA12D86E3C0 1e0 stub<11390> AllocateTemporaryEntryPoints +00007FA12D86E5A0 18 stub<11391> AllocateTemporaryEntryPoints +00007FA12D86E5B8 18 stub<11392> AllocateTemporaryEntryPoints +00007FA12D86E5D0 30 stub<11393> AllocateTemporaryEntryPoints +00007FA12D86E600 18 stub<11394> AllocateTemporaryEntryPoints +00007FA12D86E618 18 stub<11395> AllocateTemporaryEntryPoints +00007FA12D86E630 90 stub<11396> AllocateTemporaryEntryPoints +00007FA12D86E6C0 18 stub<11397> AllocateTemporaryEntryPoints +00007FA12D86E6D8 30 stub<11398> AllocateTemporaryEntryPoints +00007FA12D86E708 18 stub<11399> AllocateTemporaryEntryPoints +00007FA12D86E720 18 stub<11400> AllocateTemporaryEntryPoints +00007FA12D86E738 30 stub<11401> AllocateTemporaryEntryPoints +00007FA12D86E768 18 stub<11402> AllocateTemporaryEntryPoints +00007FA12D86E780 18 stub<11403> AllocateTemporaryEntryPoints +00007FA12D86E798 90 stub<11404> AllocateTemporaryEntryPoints +00007FA12D86E828 18 stub<11405> AllocateTemporaryEntryPoints +00007FA12B3EE5E0 44e instance void [Datadog.Trace] Datadog.Trace.Debugger.LiveDebugger+d__25::MoveNext()[QuickJitted] +00007FA12D86E840 48 stub<11406> AllocateTemporaryEntryPoints +00007FA12D86E888 18 stub<11407> AllocateTemporaryEntryPoints +00007FA12D86E8A0 18 stub<11408> AllocateTemporaryEntryPoints +00007FA12D86E8B8 48 stub<11409> AllocateTemporaryEntryPoints +00007FA12D86E900 18 stub<11410> AllocateTemporaryEntryPoints +00007FA12D86E918 30 stub<11411> AllocateTemporaryEntryPoints +00007FA12D86E948 18 stub<11412> AllocateTemporaryEntryPoints +00007FA12D86E960 90 stub<11413> AllocateTemporaryEntryPoints +00007FA12B3EEA80 dc instance bool [Datadog.Trace] Datadog.Trace.Debugger.LiveDebugger::g__CanInitialize|25_3()[QuickJitted] +00007FA12D86E9F0 30 stub<11414> AllocateTemporaryEntryPoints +00007FA12D86EA20 18 stub<11415> AllocateTemporaryEntryPoints +00007FA12D86EA38 18 stub<11416> AllocateTemporaryEntryPoints +00007FA12D86EA50 18 stub<11417> AllocateTemporaryEntryPoints +00007FA12D86EA68 60 stub<11418> AllocateTemporaryEntryPoints +00007FA12D86EAC8 60 stub<11419> AllocateTemporaryEntryPoints +00007FA12D86EB28 18 stub<11420> AllocateTemporaryEntryPoints +00007FA12B3EEB70 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12D86EB40 48 stub<11421> AllocateTemporaryEntryPoints +00007FA12D86EB88 18 stub<11422> AllocateTemporaryEntryPoints +00007FA12D86EBA0 18 stub<11423> AllocateTemporaryEntryPoints +00007FA12D86EBB8 30 stub<11424> AllocateTemporaryEntryPoints +00007FA12D86EBE8 48 stub<11425> AllocateTemporaryEntryPoints +00007FA12D86EC30 18 stub<11426> AllocateTemporaryEntryPoints +00007FA12D86EC48 18 stub<11427> AllocateTemporaryEntryPoints +00007FA12B3EEBC0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12D86EC60 60 stub<11428> AllocateTemporaryEntryPoints +00007FA12D86ECC0 18 stub<11429> AllocateTemporaryEntryPoints +00007FA12D86ECD8 30 stub<11430> AllocateTemporaryEntryPoints +00007FA12D86ED08 d8 stub<11431> AllocateTemporaryEntryPoints +00007FA12D86EDE0 48 stub<11432> AllocateTemporaryEntryPoints +00007FA12D86EE28 18 stub<11433> AllocateTemporaryEntryPoints +00007FA12D86EE40 18 stub<11434> AllocateTemporaryEntryPoints +00007FA12D86EE58 60 stub<11435> AllocateTemporaryEntryPoints +00007FA12D86EEB8 c0 stub<11436> AllocateTemporaryEntryPoints +00007FA12DD50000 f0 stub<11437> AllocateTemporaryEntryPoints +00007FA12DD500F0 18 stub<11438> AllocateTemporaryEntryPoints +00007FA12DD50108 18 stub<11439> AllocateTemporaryEntryPoints +00007FA12B3EEC20 250 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B3EEE90 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.Instrumentation+<>c__DisplayClass11_0+<b__0>d]::.ctor()[QuickJitted] +00007FA12DD50120 18 stub<11440> AllocateTemporaryEntryPoints +00007FA12DD50138 18 stub<11441> AllocateTemporaryEntryPoints +00007FA12DD50150 78 stub<11442> AllocateTemporaryEntryPoints +00007FA12DD501C8 258 stub<11443> AllocateTemporaryEntryPoints +00007FA12DD50420 150 stub<11444> AllocateTemporaryEntryPoints +00007FA12DD50570 18 stub<11445> AllocateTemporaryEntryPoints +00007FA12DD50588 30 stub<11446> AllocateTemporaryEntryPoints +00007FA12DD505B8 48 stub<11447> AllocateTemporaryEntryPoints +00007FA12DD50600 18 stub<11448> AllocateTemporaryEntryPoints +00007FA1277C1A80 18 stub<11449> GenerateLookupStub +00007FA1277FC420 18 stub<11450> GenerateResolveStub +00007FA1277C6960 20 stub<11451> GenerateDispatchStub +00007FA1277C1AA0 18 stub<11452> GenerateLookupStub +00007FA1277FC490 18 stub<11453> GenerateResolveStub +00007FA1277C6980 20 stub<11454> GenerateDispatchStub +00007FA12B3EEED0 47 void [Samples.BuggyBits] BuggyBits.Startup+<>c::.cctor()[QuickJitted] +00007FA12B3EEF30 1f instance void [Samples.BuggyBits] BuggyBits.Startup+<>c::.ctor()[QuickJitted] +00007FA12DD50618 48 stub<11455> AllocateTemporaryEntryPoints +00007FA12DD50660 60 stub<11456> AllocateTemporaryEntryPoints +00007FA12DD506C0 a8 stub<11457> AllocateTemporaryEntryPoints +00007FA12DD50768 30 stub<11458> AllocateTemporaryEntryPoints +00007FA12DD50798 168 stub<11459> AllocateTemporaryEntryPoints +00007FA12DD50900 18 stub<11460> AllocateTemporaryEntryPoints +00007FA12DD50918 18 stub<11461> AllocateTemporaryEntryPoints +00007FA12DD50930 18 stub<11462> AllocateTemporaryEntryPoints +00007FA12DD50948 18 stub<11463> AllocateTemporaryEntryPoints +00007FA12DD50960 18 stub<11464> AllocateTemporaryEntryPoints +00007FA1277C1AC0 18 stub<11465> GenerateLookupStub +00007FA12DD50978 18 stub<11466> AllocateTemporaryEntryPoints +00007FA1277C1AE0 18 stub<11467> GenerateLookupStub +00007FA12DD50990 48 stub<11468> AllocateTemporaryEntryPoints +00007FA12DD509D8 1b0 stub<11469> AllocateTemporaryEntryPoints +00007FA12DD50B88 18 stub<11470> AllocateTemporaryEntryPoints +00007FA12DD50BA0 18 stub<11471> AllocateTemporaryEntryPoints +00007FA12DD50BB8 1e0 stub<11472> AllocateTemporaryEntryPoints +00007FA12DD50D98 120 stub<11473> AllocateTemporaryEntryPoints +00007FA12DD50EB8 30 stub<11474> AllocateTemporaryEntryPoints +00007FA12DD52000 120 stub<11475> AllocateTemporaryEntryPoints +00007FA12DD52120 f0 stub<11476> AllocateTemporaryEntryPoints +00007FA12DD52210 108 stub<11477> AllocateTemporaryEntryPoints +00007FA12DD52318 c0 stub<11478> AllocateTemporaryEntryPoints +00007FA12DD523D8 c0 stub<11479> AllocateTemporaryEntryPoints +00007FA12DD52498 78 stub<11480> AllocateTemporaryEntryPoints +00007FA12DD52510 60 stub<11481> AllocateTemporaryEntryPoints +00007FA12DD52570 18 stub<11482> AllocateTemporaryEntryPoints +00007FA12DD52588 150 stub<11483> AllocateTemporaryEntryPoints +00007FA12DD526D8 60 stub<11484> AllocateTemporaryEntryPoints +00007FA12DD52738 5e8 stub<11485> AllocateTemporaryEntryPoints +00007FA12DD52D20 c0 stub<11486> AllocateTemporaryEntryPoints +00007FA12DD52DE0 90 stub<11487> AllocateTemporaryEntryPoints +00007FA12DD52E70 a8 stub<11488> AllocateTemporaryEntryPoints +00007FA12DD52F18 18 stub<11489> AllocateTemporaryEntryPoints +00007FA12DD52F30 78 stub<11490> AllocateTemporaryEntryPoints +00007FA12DD52FA8 18 stub<11491> AllocateTemporaryEntryPoints +00007FA12B3EF370 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor()[QuickJitted] +00007FA12DD52FC0 30 stub<11492> AllocateTemporaryEntryPoints +00007FA12DD54000 d8 stub<11493> AllocateTemporaryEntryPoints +00007FA12B3EF3B0 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12DD540D8 30 stub<11494> AllocateTemporaryEntryPoints +00007FA12DD54108 48 stub<11495> AllocateTemporaryEntryPoints +00007FA12DD54150 48 stub<11496> AllocateTemporaryEntryPoints +00007FA12DD54198 120 stub<11497> AllocateTemporaryEntryPoints +00007FA12DD542B8 1c8 stub<11498> AllocateTemporaryEntryPoints +00007FA12DD54480 90 stub<11499> AllocateTemporaryEntryPoints +00007FA12DD54510 60 stub<11500> AllocateTemporaryEntryPoints +00007FA12DD54570 6f0 stub<11501> AllocateTemporaryEntryPoints +00007FA12DD54C60 c0 stub<11502> AllocateTemporaryEntryPoints +00007FA12DD54D20 90 stub<11503> AllocateTemporaryEntryPoints +00007FA12DD54DB0 a8 stub<11504> AllocateTemporaryEntryPoints +00007FA12DD54E58 18 stub<11505> AllocateTemporaryEntryPoints +00007FA12DD54E70 78 stub<11506> AllocateTemporaryEntryPoints +00007FA12DD54EE8 18 stub<11507> AllocateTemporaryEntryPoints +00007FA12B3EF4E0 38 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::.ctor()[QuickJitted] +00007FA12B3EF530 d int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12DD54F00 18 stub<11508> AllocateTemporaryEntryPoints +00007FA12DD54F18 48 stub<11509> AllocateTemporaryEntryPoints +00007FA12B3EF560 2b9 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B3EF840 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12B3EF8D0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey]::get_Default()[QuickJitted] +00007FA12B3EF910 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey]::.cctor()[QuickJitted] +00007FA12DD54F60 18 stub<11510> AllocateTemporaryEntryPoints +00007FA12DD56000 a8 stub<11511> AllocateTemporaryEntryPoints +00007FA12B3EF990 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey]::.ctor()[QuickJitted] +00007FA12B3EF9D0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey]::.ctor()[QuickJitted] +00007FA12DD560A8 78 stub<11512> AllocateTemporaryEntryPoints +00007FA12DD56120 5e8 stub<11513> AllocateTemporaryEntryPoints +00007FA12DD56708 c0 stub<11514> AllocateTemporaryEntryPoints +00007FA12DD567C8 90 stub<11515> AllocateTemporaryEntryPoints +00007FA12DD56858 a8 stub<11516> AllocateTemporaryEntryPoints +00007FA12DD56900 18 stub<11517> AllocateTemporaryEntryPoints +00007FA12DD56918 78 stub<11518> AllocateTemporaryEntryPoints +00007FA12DD56990 18 stub<11519> AllocateTemporaryEntryPoints +00007FA12DD58000 6f0 stub<11520> AllocateTemporaryEntryPoints +00007FA12B3EFA10 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor()[QuickJitted] +00007FA12B3EFAB0 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12DD586F0 18 stub<11521> AllocateTemporaryEntryPoints +00007FA12DD58708 48 stub<11522> AllocateTemporaryEntryPoints +00007FA12B3EFAE0 388 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B3EFE90 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12B3EFF20 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::.ctor()[QuickJitted] +00007FA12B3EFF60 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12DD58750 18 stub<11523> AllocateTemporaryEntryPoints +00007FA12B3F0140 67 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12DD58768 60 stub<11524> AllocateTemporaryEntryPoints +00007FA12DD587C8 18 stub<11525> AllocateTemporaryEntryPoints +00007FA12DD587E0 18 stub<11526> AllocateTemporaryEntryPoints +00007FA12DD587F8 18 stub<11527> AllocateTemporaryEntryPoints +00007FA12B3F01C0 5bb instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::FindValue(!0)[QuickJitted] +00007FA12B3F07A0 3f instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::set_Item(!0,!1)[QuickJitted] +00007FA12B3F0800 9ee instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12B3F1210 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::Initialize(int32)[QuickJitted] +00007FA12DD58810 60 stub<11528> AllocateTemporaryEntryPoints +00007FA12B3F1310 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::GetBucket(uint32)[QuickJitted] +00007FA12B3F1380 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::Resize()[QuickJitted] +00007FA12B3F13D0 4c5 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::Resize(int32,bool)[QuickJitted] +00007FA12B3F18C0 6a instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::set_Item(!0,!1)[QuickJitted] +00007FA12DD58870 18 stub<11529> AllocateTemporaryEntryPoints +00007FA1277C1B00 18 stub<11530> GenerateLookupStub +00007FA1277C1B20 18 stub<11531> GenerateLookupStub +00007FA12B3F1940 74b instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12B3F20C0 db instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA12B3F21B0 71 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA12DD58888 18 stub<11532> AllocateTemporaryEntryPoints +00007FA12DD588A0 1c8 stub<11533> AllocateTemporaryEntryPoints +00007FA12DD58A68 18 stub<11534> AllocateTemporaryEntryPoints +00007FA12DD58A80 30 stub<11535> AllocateTemporaryEntryPoints +00007FA12DD58AB0 c0 stub<11536> AllocateTemporaryEntryPoints +00007FA12DD58B70 18 stub<11537> AllocateTemporaryEntryPoints +00007FA12DD58B88 18 stub<11538> AllocateTemporaryEntryPoints +00007FA12DD58BA0 18 stub<11539> AllocateTemporaryEntryPoints +00007FA12DD58BB8 18 stub<11540> AllocateTemporaryEntryPoints +00007FA12DD58BD0 90 stub<11541> AllocateTemporaryEntryPoints +00007FA12DD58C60 30 stub<11542> AllocateTemporaryEntryPoints +00007FA12DD58C90 48 stub<11543> AllocateTemporaryEntryPoints +00007FA12DD5A000 5e8 stub<11544> AllocateTemporaryEntryPoints +00007FA12DD5A5E8 c0 stub<11545> AllocateTemporaryEntryPoints +00007FA12DD5A6A8 90 stub<11546> AllocateTemporaryEntryPoints +00007FA12DD5A738 a8 stub<11547> AllocateTemporaryEntryPoints +00007FA12DD5A7E0 18 stub<11548> AllocateTemporaryEntryPoints +00007FA12DD5A7F8 78 stub<11549> AllocateTemporaryEntryPoints +00007FA12DD5A870 18 stub<11550> AllocateTemporaryEntryPoints +00007FA12B3F2240 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::.ctor()[QuickJitted] +00007FA12B3F2280 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12DD5A888 18 stub<11551> AllocateTemporaryEntryPoints +00007FA12B3F2460 4b0 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12B3F2930 126 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::GetBucket(int32)[QuickJitted] +00007FA12DD5A8A0 18 stub<11552> AllocateTemporaryEntryPoints +00007FA12DD5A8B8 18 stub<11553> AllocateTemporaryEntryPoints +00007FA12DD5A8D0 18 stub<11554> AllocateTemporaryEntryPoints +00007FA12DD5A8E8 60 stub<11555> AllocateTemporaryEntryPoints +00007FA12DD5A948 18 stub<11556> AllocateTemporaryEntryPoints +00007FA12B3F2A70 2f instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::ContainsKey(!0)[QuickJitted] +00007FA12DD5A960 60 stub<11557> AllocateTemporaryEntryPoints +00007FA12DD5A9C0 18 stub<11558> AllocateTemporaryEntryPoints +00007FA12DD5A9D8 18 stub<11559> AllocateTemporaryEntryPoints +00007FA12DD5A9F0 18 stub<11560> AllocateTemporaryEntryPoints +00007FA12B3F2AC0 5bb instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::FindValue(!0)[QuickJitted] +00007FA12DD5AA08 78 stub<11561> AllocateTemporaryEntryPoints +00007FA12DD5AA80 60 stub<11562> AllocateTemporaryEntryPoints +00007FA12DD5AAE0 120 stub<11563> AllocateTemporaryEntryPoints +00007FA12DD5AC00 138 stub<11564> AllocateTemporaryEntryPoints +00007FA12DD5AD38 a8 stub<11565> AllocateTemporaryEntryPoints +00007FA12DD5ADE0 30 stub<11566> AllocateTemporaryEntryPoints +00007FA12DD5AE10 18 stub<11567> AllocateTemporaryEntryPoints +00007FA1277FC500 18 stub<11568> GenerateResolveStub +00007FA1277C69A0 20 stub<11569> GenerateDispatchStub +00007FA12DD5AE58 18 stub<11570> AllocateTemporaryEntryPoints +00007FA12DD5AE70 18 stub<11571> AllocateTemporaryEntryPoints +00007FA12DD5AE88 18 stub<11572> AllocateTemporaryEntryPoints +00007FA12DD5AEA0 18 stub<11573> AllocateTemporaryEntryPoints +00007FA12DD5AEB8 c0 stub<11574> AllocateTemporaryEntryPoints +00007FA12DD5AF78 18 stub<11575> AllocateTemporaryEntryPoints +00007FA12DD5AF90 18 stub<11576> AllocateTemporaryEntryPoints +00007FA12DD5AFA8 18 stub<11577> AllocateTemporaryEntryPoints +00007FA12DD5AFC0 18 stub<11578> AllocateTemporaryEntryPoints +00007FA12B3F30A0 22 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::get_Count()[QuickJitted] +00007FA12B3F30E0 3f instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::set_Item(!0,!1)[QuickJitted] +00007FA12B3F3140 9e2 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12B3F3B40 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::Initialize(int32)[QuickJitted] +00007FA12DD5C000 60 stub<11579> AllocateTemporaryEntryPoints +00007FA12B3F3C40 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::GetBucket(uint32)[QuickJitted] +00007FA12DD5C060 60 stub<11580> AllocateTemporaryEntryPoints +00007FA12DD5C0C0 48 stub<11581> AllocateTemporaryEntryPoints +00007FA12DD5C108 30 stub<11582> AllocateTemporaryEntryPoints +00007FA12DD5C138 90 stub<11583> AllocateTemporaryEntryPoints +00007FA12B3F40C0 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::Resize()[QuickJitted] +00007FA12B3F4110 4c5 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::Resize(int32,bool)[QuickJitted] +00007FA12DD5C1E0 d8 stub<11584> AllocateTemporaryEntryPoints +00007FA12DD5C2B8 18 stub<11585> AllocateTemporaryEntryPoints +00007FA12DD5C2D0 60 stub<11586> AllocateTemporaryEntryPoints +00007FA12DD5C330 60 stub<11587> AllocateTemporaryEntryPoints +00007FA12DD5C390 18 stub<11588> AllocateTemporaryEntryPoints +00007FA12DD5C3A8 18 stub<11589> AllocateTemporaryEntryPoints +00007FA12DD5C3C0 18 stub<11590> AllocateTemporaryEntryPoints +00007FA12DD5C3D8 30 stub<11591> AllocateTemporaryEntryPoints +00007FA12DD5C408 18 stub<11592> AllocateTemporaryEntryPoints +00007FA12DD5C420 18 stub<11593> AllocateTemporaryEntryPoints +00007FA12DD5C438 18 stub<11594> AllocateTemporaryEntryPoints +00007FA12DD5C450 18 stub<11595> AllocateTemporaryEntryPoints +00007FA12B3F4600 48e instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::Remove(!0)[QuickJitted] +00007FA12DD5C468 18 stub<11596> AllocateTemporaryEntryPoints +00007FA12B3F4AB0 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12B3F4AD0 67 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey]::Equals(!0,!0)[QuickJitted] +00007FA12DD5C480 a8 stub<11597> AllocateTemporaryEntryPoints +00007FA12B3F4B50 76e instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::GrowTable(class System.Collections.Concurrent.ConcurrentDictionary`2/Tables)[QuickJitted] +00007FA12B3F5300 d3 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::AcquireLocks(int32,int32,int32&)[QuickJitted] +00007FA12B3F5400 90 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::ReleaseLocks(int32,int32)[QuickJitted] +00007FA12DD5C528 18 stub<11598> AllocateTemporaryEntryPoints +00007FA12DD5C540 18 stub<11599> AllocateTemporaryEntryPoints +00007FA12DD5C558 30 stub<11600> AllocateTemporaryEntryPoints +00007FA12DD5C588 48 stub<11601> AllocateTemporaryEntryPoints +00007FA12DD5C600 18 stub<11602> AllocateTemporaryEntryPoints +00007FA12DD5C618 78 stub<11603> AllocateTemporaryEntryPoints +00007FA12DD5C690 30 stub<11604> AllocateTemporaryEntryPoints +00007FA12DD5C6C0 48 stub<11605> AllocateTemporaryEntryPoints +00007FA12DD5C708 90 stub<11606> AllocateTemporaryEntryPoints +00007FA12DD5C798 30 stub<11607> AllocateTemporaryEntryPoints +00007FA12DD5C7C8 60 stub<11608> AllocateTemporaryEntryPoints +00007FA12DD5C828 30 stub<11609> AllocateTemporaryEntryPoints +00007FA12DD5C858 60 stub<11610> AllocateTemporaryEntryPoints +00007FA12DD5C8D0 30 stub<11611> AllocateTemporaryEntryPoints +00007FA1277FC570 18 stub<11612> GenerateResolveStub +00007FA1277C69C0 20 stub<11613> GenerateDispatchStub +00007FA1277C1B40 18 stub<11614> GenerateLookupStub +00007FA1277C69E0 20 stub<11615> GenerateDispatchStub +00007FA1277C1B60 18 stub<11616> GenerateLookupStub +00007FA1277FC5E0 18 stub<11617> GenerateResolveStub +00007FA1277C6A00 20 stub<11618> GenerateDispatchStub +00007FA1277C6A20 20 stub<11619> GenerateDispatchStub +00007FA12DD5C900 300 stub<11620> AllocateTemporaryEntryPoints +00007FA12DD5CC00 78 stub<11621> AllocateTemporaryEntryPoints +00007FA12DD5CC78 a8 stub<11622> AllocateTemporaryEntryPoints +00007FA12DD5CD20 18 stub<11623> AllocateTemporaryEntryPoints +00007FA12DD5CD38 18 stub<11624> AllocateTemporaryEntryPoints +00007FA12DD5CD50 18 stub<11625> AllocateTemporaryEntryPoints +00007FA12DD5CD68 60 stub<11626> AllocateTemporaryEntryPoints +00007FA12DD5CDC8 18 stub<11627> AllocateTemporaryEntryPoints +00007FA12DD5CDE0 18 stub<11628> AllocateTemporaryEntryPoints +00007FA12DD5CDF8 18 stub<11629> AllocateTemporaryEntryPoints +00007FA1277C6A40 20 stub<11630> GenerateDispatchStub +00007FA1277FC650 18 stub<11631> GenerateResolveStub +00007FA1277C6A60 20 stub<11632> GenerateDispatchStub +00007FA1277C6A80 20 stub<11633> GenerateDispatchStub +00007FA1277C6AA0 20 stub<11634> GenerateDispatchStub +00007FA1277C1B80 18 stub<11635> GenerateLookupStub +00007FA12DD5CE10 30 stub<11636> AllocateTemporaryEntryPoints +00007FA12DD5CE40 30 stub<11637> AllocateTemporaryEntryPoints +00007FA1277FC6C0 18 stub<11638> GenerateResolveStub +00007FA1277C6AC0 20 stub<11639> GenerateDispatchStub +00007FA12DD5CE70 18 stub<11640> AllocateTemporaryEntryPoints +00007FA12DD5CE88 18 stub<11641> AllocateTemporaryEntryPoints +00007FA1277C1BA0 18 stub<11642> GenerateLookupStub +00007FA1277C1BC0 18 stub<11643> GenerateLookupStub +00007FA12DD5CEB8 18 stub<11644> AllocateTemporaryEntryPoints +00007FA12DD5CED0 18 stub<11645> AllocateTemporaryEntryPoints +00007FA12DD5CEE8 18 stub<11646> AllocateTemporaryEntryPoints +00007FA12DD5CF00 48 stub<11647> AllocateTemporaryEntryPoints +00007FA12DD5CF48 48 stub<11648> AllocateTemporaryEntryPoints +00007FA12DD5CF90 18 stub<11649> AllocateTemporaryEntryPoints +00007FA12DD5CFA8 18 stub<11650> AllocateTemporaryEntryPoints +00007FA12DD5E000 48 stub<11651> AllocateTemporaryEntryPoints +00007FA12DD5E048 48 stub<11652> AllocateTemporaryEntryPoints +00007FA12DD5E090 60 stub<11653> AllocateTemporaryEntryPoints +00007FA12DD5E0F0 18 stub<11654> AllocateTemporaryEntryPoints +00007FA12DD5E108 18 stub<11655> AllocateTemporaryEntryPoints +00007FA12DD5E120 60 stub<11656> AllocateTemporaryEntryPoints +00007FA12B3F5CC0 1a1 instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::GetOrAdd(!0,class [System.Private.CoreLib]System.Func`3,!!0)[QuickJitted] +00007FA1277C1BE0 18 stub<11657> GenerateLookupStub +00007FA12DD5E180 78 stub<11658> AllocateTemporaryEntryPoints +00007FA12DD5E1F8 18 stub<11659> AllocateTemporaryEntryPoints +00007FA1277C1C00 18 stub<11660> GenerateLookupStub +00007FA12DD5E210 78 stub<11661> AllocateTemporaryEntryPoints +00007FA12DD5E288 a8 stub<11662> AllocateTemporaryEntryPoints +00007FA12DD5E330 a8 stub<11663> AllocateTemporaryEntryPoints +00007FA12DD5E3D8 18 stub<11664> AllocateTemporaryEntryPoints +00007FA1277FC730 18 stub<11665> GenerateResolveStub +00007FA1277C6AE0 20 stub<11666> GenerateDispatchStub +00007FA12DD5E3F0 18 stub<11667> AllocateTemporaryEntryPoints +00007FA12DD5E408 18 stub<11668> AllocateTemporaryEntryPoints +00007FA12DD5E420 18 stub<11669> AllocateTemporaryEntryPoints +00007FA12DD5E438 18 stub<11670> AllocateTemporaryEntryPoints +00007FA12DD5E450 18 stub<11671> AllocateTemporaryEntryPoints +00007FA12DD5E468 48 stub<11672> AllocateTemporaryEntryPoints +00007FA12DD5E4B0 1b0 stub<11673> AllocateTemporaryEntryPoints +00007FA1277C1C20 18 stub<11674> GenerateLookupStub +00007FA1277C1C40 18 stub<11675> GenerateLookupStub +00007FA1277FC7A0 18 stub<11676> GenerateResolveStub +00007FA1277C6B00 20 stub<11677> GenerateDispatchStub +00007FA1277FC810 18 stub<11678> GenerateResolveStub +00007FA1277C6B20 20 stub<11679> GenerateDispatchStub +00007FA1277FC880 18 stub<11680> GenerateResolveStub +00007FA1277C6B40 20 stub<11681> GenerateDispatchStub +00007FA12DD5E660 a8 stub<11682> AllocateTemporaryEntryPoints +00007FA1277FC8F0 18 stub<11683> GenerateResolveStub +00007FA1277C6B60 20 stub<11684> GenerateDispatchStub +00007FA12DD5E720 18 stub<11685> AllocateTemporaryEntryPoints +00007FA12DD5E738 18 stub<11686> AllocateTemporaryEntryPoints +00007FA1277FC960 18 stub<11687> GenerateResolveStub +00007FA1277C6B80 20 stub<11688> GenerateDispatchStub +00007FA1277C1C60 18 stub<11689> GenerateLookupStub +00007FA1277C1C80 18 stub<11690> GenerateLookupStub +00007FA12DD5E750 30 stub<11691> AllocateTemporaryEntryPoints +00007FA12DD5E780 30 stub<11692> AllocateTemporaryEntryPoints +00007FA1277C1CA0 18 stub<11693> GenerateLookupStub +00007FA12DD5E7B0 48 stub<11694> AllocateTemporaryEntryPoints +00007FA12DD5E7F8 48 stub<11695> AllocateTemporaryEntryPoints +00007FA12DD5E840 18 stub<11696> AllocateTemporaryEntryPoints +00007FA1277C1CC0 18 stub<11697> GenerateLookupStub +00007FA1277FC9D0 18 stub<11698> GenerateResolveStub +00007FA1277C6BA0 20 stub<11699> GenerateDispatchStub +00007FA12DD5E858 18 stub<11700> AllocateTemporaryEntryPoints +00007FA1277FCA40 18 stub<11701> GenerateResolveStub +00007FA1277C6BC0 20 stub<11702> GenerateDispatchStub +00007FA12DD5E870 18 stub<11703> AllocateTemporaryEntryPoints +00007FA12DD5E888 18 stub<11704> AllocateTemporaryEntryPoints +00007FA1277C1CE0 18 stub<11705> GenerateLookupStub +00007FA1277FCAB0 18 stub<11706> GenerateResolveStub +00007FA1277C6BE0 20 stub<11707> GenerateDispatchStub +00007FA12DD5E8A0 18 stub<11708> AllocateTemporaryEntryPoints +00007FA1277C1D00 18 stub<11709> GenerateLookupStub +00007FA1277FCB20 18 stub<11710> GenerateResolveStub +00007FA1277C6C00 20 stub<11711> GenerateDispatchStub +00007FA1277FCB90 18 stub<11712> GenerateResolveStub +00007FA1277C6C20 20 stub<11713> GenerateDispatchStub +00007FA1277C1D20 18 stub<11714> GenerateLookupStub +00007FA1277FCC00 18 stub<11715> GenerateResolveStub +00007FA1277C6C40 20 stub<11716> GenerateDispatchStub +00007FA12DD5E8B8 18 stub<11717> AllocateTemporaryEntryPoints +00007FA1277C1D40 18 stub<11718> GenerateLookupStub +00007FA1277FCC70 18 stub<11719> GenerateResolveStub +00007FA1277C6C60 20 stub<11720> GenerateDispatchStub +00007FA12DD5E8D0 18 stub<11721> AllocateTemporaryEntryPoints +00007FA1277FCCE0 18 stub<11722> GenerateResolveStub +00007FA1277C6C80 20 stub<11723> GenerateDispatchStub +00007FA12DD5E8E8 18 stub<11724> AllocateTemporaryEntryPoints +00007FA12DD5E900 18 stub<11725> AllocateTemporaryEntryPoints +00007FA1277C1D60 18 stub<11726> GenerateLookupStub +00007FA1277FCD50 18 stub<11727> GenerateResolveStub +00007FA1277C6CA0 20 stub<11728> GenerateDispatchStub +00007FA12DD5E918 18 stub<11729> AllocateTemporaryEntryPoints +00007FA1277C1D80 18 stub<11730> GenerateLookupStub +00007FA1277FCDC0 18 stub<11731> GenerateResolveStub +00007FA1277C6CC0 20 stub<11732> GenerateDispatchStub +00007FA1277C1DA0 18 stub<11733> GenerateLookupStub +00007FA1277FCE30 18 stub<11734> GenerateResolveStub +00007FA1277C6CE0 20 stub<11735> GenerateDispatchStub +00007FA12DD5E930 18 stub<11736> AllocateTemporaryEntryPoints +00007FA12DD5E948 18 stub<11737> AllocateTemporaryEntryPoints +00007FA12DD5E960 18 stub<11738> AllocateTemporaryEntryPoints +00007FA12DD5E978 30 stub<11739> AllocateTemporaryEntryPoints +00007FA12DD5E9A8 a8 stub<11740> AllocateTemporaryEntryPoints +00007FA12DD5EA50 150 stub<11741> AllocateTemporaryEntryPoints +00007FA12DD5EBA0 f0 stub<11742> AllocateTemporaryEntryPoints +00007FA12DD5EC90 78 stub<11743> AllocateTemporaryEntryPoints +00007FA12DD5ED08 60 stub<11744> AllocateTemporaryEntryPoints +00007FA12DD5ED68 60 stub<11745> AllocateTemporaryEntryPoints +00007FA12DD5EDC8 48 stub<11746> AllocateTemporaryEntryPoints +00007FA12DD5EE10 18 stub<11747> AllocateTemporaryEntryPoints +00007FA1277C6D00 20 stub<11748> GenerateDispatchStub +00007FA1277FCEA0 18 stub<11749> GenerateResolveStub +00007FA1277C6D20 20 stub<11750> GenerateDispatchStub +00007FA1277C6D40 20 stub<11751> GenerateDispatchStub +00007FA12DD5EE28 90 stub<11752> AllocateTemporaryEntryPoints +00007FA1277FCF10 18 stub<11753> GenerateResolveStub +00007FA1277C6D60 20 stub<11754> GenerateDispatchStub +00007FA12DD5EEB8 18 stub<11755> AllocateTemporaryEntryPoints +00007FA12DD5EED0 18 stub<11756> AllocateTemporaryEntryPoints +00007FA1277C1DC0 18 stub<11757> GenerateLookupStub +00007FA1277FCF80 18 stub<11758> GenerateResolveStub +00007FA1277C6D80 20 stub<11759> GenerateDispatchStub +00007FA12DD5EEE8 18 stub<11760> AllocateTemporaryEntryPoints +00007FA1277C1DE0 18 stub<11761> GenerateLookupStub +00007FA12DD5EF00 18 stub<11762> AllocateTemporaryEntryPoints +00007FA12DD80000 258 stub<11763> AllocateTemporaryEntryPoints +00007FA12DD80258 18 stub<11764> AllocateTemporaryEntryPoints +00007FA12DD80270 18 stub<11765> AllocateTemporaryEntryPoints +00007FA12DD80288 18 stub<11766> AllocateTemporaryEntryPoints +00007FA12DD802A0 18 stub<11767> AllocateTemporaryEntryPoints +00007FA12DD802B8 60 stub<11768> AllocateTemporaryEntryPoints +00007FA12B3F6290 35 instance void [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::.ctor()[QuickJitted] +00007FA12DD80318 18 stub<11769> AllocateTemporaryEntryPoints +00007FA12B3F62E0 27 !!0[] [System.Private.CoreLib] System.Array::Empty()[QuickJitted] +00007FA12B3F6320 2a void [System.Private.CoreLib] System.Array+EmptyArray`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::.cctor()[QuickJitted] +00007FA12B3F6360 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::get_Count()[QuickJitted] +00007FA1277C6DA0 20 stub<11770> GenerateDispatchStub +00007FA1277C1E00 18 stub<11771> GenerateLookupStub +00007FA1277FCFF0 18 stub<11772> GenerateResolveStub +00007FA1277C6DC0 20 stub<11773> GenerateDispatchStub +00007FA12DD80330 18 stub<11774> AllocateTemporaryEntryPoints +00007FA1277C1E20 18 stub<11775> GenerateLookupStub +00007FA1277FD060 18 stub<11776> GenerateResolveStub +00007FA1277C6DE0 20 stub<11777> GenerateDispatchStub +00007FA12DD80360 18 stub<11778> AllocateTemporaryEntryPoints +00007FA12DD80378 48 stub<11779> AllocateTemporaryEntryPoints +00007FA12DD803C0 18 stub<11780> AllocateTemporaryEntryPoints +00007FA12DD803D8 18 stub<11781> AllocateTemporaryEntryPoints +00007FA12DD803F0 48 stub<11782> AllocateTemporaryEntryPoints +00007FA12DD80438 18 stub<11783> AllocateTemporaryEntryPoints +00007FA12DD80450 18 stub<11784> AllocateTemporaryEntryPoints +00007FA12DD80468 138 stub<11785> AllocateTemporaryEntryPoints +00007FA12DD805A0 6f0 stub<11786> AllocateTemporaryEntryPoints +00007FA12DD80C90 78 stub<11787> AllocateTemporaryEntryPoints +00007FA12DD80D08 a8 stub<11788> AllocateTemporaryEntryPoints +00007FA12DD80DB0 18 stub<11789> AllocateTemporaryEntryPoints +00007FA12DD80DC8 18 stub<11790> AllocateTemporaryEntryPoints +00007FA12DD80DE0 18 stub<11791> AllocateTemporaryEntryPoints +00007FA1277C1E40 18 stub<11792> GenerateLookupStub +00007FA1277C1E60 18 stub<11793> GenerateLookupStub +00007FA12DD80DF8 18 stub<11794> AllocateTemporaryEntryPoints +00007FA1277C1E80 18 stub<11795> GenerateLookupStub +00007FA12DD80E10 168 stub<11796> AllocateTemporaryEntryPoints +00007FA1277C1EA0 18 stub<11797> GenerateLookupStub +00007FA12DD80F78 18 stub<11798> AllocateTemporaryEntryPoints +00007FA12DD80F90 18 stub<11799> AllocateTemporaryEntryPoints +00007FA12DD80FA8 18 stub<11800> AllocateTemporaryEntryPoints +00007FA12B3F67A0 66b instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.LoggerFactory::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [Microsoft.Extensions.Options]Microsoft.Extensions.Options.IOptionsMonitor`1,class [Microsoft.Extensions.Options]Microsoft.Extensions.Options.IOptions`1,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12B3F6E80 2d valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn::GetDefault()[QuickJitted] +00007FA12DD82000 78 stub<11801> AllocateTemporaryEntryPoints +00007FA12DD82078 30 stub<11802> AllocateTemporaryEntryPoints +00007FA12DD820A8 30 stub<11803> AllocateTemporaryEntryPoints +00007FA12DD820D8 30 stub<11804> AllocateTemporaryEntryPoints +00007FA12B3F6ED0 12e valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::BeginMethod(!!1,!!2&,!!3&,!!4&,!!5&)[QuickJitted] +00007FA12DD82108 60 stub<11805> AllocateTemporaryEntryPoints +00007FA12DD82168 60 stub<11806> AllocateTemporaryEntryPoints +00007FA12DD821C8 60 stub<11807> AllocateTemporaryEntryPoints +00007FA12B3F7020 1f1 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.BeginMethodHandler`6[System.__Canon,System.__Canon,System.__Canon,System.__Canon,System.__Canon,System.__Canon]::Invoke(!1,!2&,!3&,!4&,!5&)[QuickJitted] +00007FA12DD82228 48 stub<11808> AllocateTemporaryEntryPoints +00007FA12DD82270 48 stub<11809> AllocateTemporaryEntryPoints +00007FA12DD822B8 48 stub<11810> AllocateTemporaryEntryPoints +00007FA12B3F7230 685 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.BeginMethodHandler`6[System.__Canon,System.__Canon,System.__Canon,System.__Canon,System.__Canon,System.__Canon]::.cctor()[QuickJitted] +00007FA12DD82300 18 stub<11811> AllocateTemporaryEntryPoints +00007FA12DD82318 18 stub<11812> AllocateTemporaryEntryPoints +00007FA128665390 79 Datadog.Trace.ClrProfiler.CallTarget.CallTargetState /* MT: 0x00007FA12C287AF8 */ [Datadog.Trace] dynamicClass::LoggerFactoryConstructorNet7Integration.OnMethodBegin(Microsoft.Extensions.Logging.LoggerFactory /* MT: 0x00007FA12C5C0458 */,System.Collections.Generic.IEnumerable`1 /* MT: 0x00007FA12847ED38 */&,Microsoft.Extensions.Options.IOptionsMonitor`1 /* MT: 0x00007FA12C44BF20 */&,Microsoft.Extensions.Options.IOptions`1 /* MT: 0x00007FA12C44BC30 */&,Microsoft.Extensions.Logging.IExternalScopeProvider /* MT: 0x00007FA12DD689C8 */&)[Optimized] +00007FA12DD82330 60 stub<11813> AllocateTemporaryEntryPoints +00007FA12B3F78F0 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::.ctor()[QuickJitted] +00007FA12B3F7960 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::.cctor()[QuickJitted] +00007FA1277C1EC0 18 stub<11814> GenerateLookupStub +00007FA1277FD0D0 18 stub<11815> GenerateResolveStub +00007FA1277C6E00 20 stub<11816> GenerateDispatchStub +00007FA12DD82390 18 stub<11817> AllocateTemporaryEntryPoints +00007FA1277C1EE0 18 stub<11818> GenerateLookupStub +00007FA1277FD140 18 stub<11819> GenerateResolveStub +00007FA1277C6E20 20 stub<11820> GenerateDispatchStub +00007FA12DD823A8 18 stub<11821> AllocateTemporaryEntryPoints +00007FA1277C6E40 20 stub<11822> GenerateDispatchStub +00007FA1277FD1B0 18 stub<11823> GenerateResolveStub +00007FA1277C6E60 20 stub<11824> GenerateDispatchStub +00007FA12DD823C0 78 stub<11825> AllocateTemporaryEntryPoints +00007FA12DD82438 78 stub<11826> AllocateTemporaryEntryPoints +00007FA12B3F79A0 98 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::Add(!0)[QuickJitted] +00007FA12B3F7A50 6d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::AddWithResize(!0)[QuickJitted] +00007FA12B3F7AE0 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::Grow(int32)[QuickJitted] +00007FA12B3F7B70 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::set_Capacity(int32)[QuickJitted] +00007FA1277C6E80 20 stub<11827> GenerateDispatchStub +00007FA1277C1F00 18 stub<11828> GenerateLookupStub +00007FA1277FD220 18 stub<11829> GenerateResolveStub +00007FA1277C6EA0 20 stub<11830> GenerateDispatchStub +00007FA12DD824B0 18 stub<11831> AllocateTemporaryEntryPoints +00007FA1277FD290 18 stub<11832> GenerateResolveStub +00007FA1277C6EC0 20 stub<11833> GenerateDispatchStub +00007FA12DD824C8 18 stub<11834> AllocateTemporaryEntryPoints +00007FA12DD824E0 18 stub<11835> AllocateTemporaryEntryPoints +00007FA1277C1F20 18 stub<11836> GenerateLookupStub +00007FA1277FD300 18 stub<11837> GenerateResolveStub +00007FA1277C6EE0 20 stub<11838> GenerateDispatchStub +00007FA12DD824F8 18 stub<11839> AllocateTemporaryEntryPoints +00007FA1277C1F40 18 stub<11840> GenerateLookupStub +00007FA12DD82510 a8 stub<11841> AllocateTemporaryEntryPoints +00007FA12DD825B8 60 stub<11842> AllocateTemporaryEntryPoints +00007FA12DD82618 60 stub<11843> AllocateTemporaryEntryPoints +00007FA12DD82678 60 stub<11844> AllocateTemporaryEntryPoints +00007FA12DD826D8 18 stub<11845> AllocateTemporaryEntryPoints +00007FA12DD826F0 78 stub<11846> AllocateTemporaryEntryPoints +00007FA12DD82768 30 stub<11847> AllocateTemporaryEntryPoints +00007FA12DD82798 30 stub<11848> AllocateTemporaryEntryPoints +00007FA12DD827C8 30 stub<11849> AllocateTemporaryEntryPoints +00007FA12B3F7C50 11e valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::EndMethod(!!1,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[QuickJitted] +00007FA12DD827F8 60 stub<11850> AllocateTemporaryEntryPoints +00007FA12DD82858 60 stub<11851> AllocateTemporaryEntryPoints +00007FA12DD828B8 60 stub<11852> AllocateTemporaryEntryPoints +00007FA12B3F7D90 6a valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.EndMethodHandler`2[System.__Canon,System.__Canon]::Invoke(!1,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[QuickJitted] +00007FA12DD82918 48 stub<11853> AllocateTemporaryEntryPoints +00007FA12DD82960 48 stub<11854> AllocateTemporaryEntryPoints +00007FA12DD829A8 48 stub<11855> AllocateTemporaryEntryPoints +00007FA12DD829F0 c0 stub<11856> AllocateTemporaryEntryPoints +00007FA12B3F7E10 393 void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.EndMethodHandler`2[System.__Canon,System.__Canon]::.cctor()[QuickJitted] +00007FA12B3F81F0 f10 class [System.Reflection.Emit.Lightweight]System.Reflection.Emit.DynamicMethod [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationMapper::CreateEndMethodDelegate(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12DD82AB0 18 stub<11857> AllocateTemporaryEntryPoints +00007FA12DD82AC8 18 stub<11858> AllocateTemporaryEntryPoints +00007FA12DD82AE0 30 stub<11859> AllocateTemporaryEntryPoints +00007FA12DD82B10 18 stub<11860> AllocateTemporaryEntryPoints +00007FA12DD82B28 60 stub<11861> AllocateTemporaryEntryPoints +00007FA12DD82B88 60 stub<11862> AllocateTemporaryEntryPoints +00007FA128665470 1c Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn /* MT: 0x00007FA12DD7D948 */ [Datadog.Trace] dynamicClass::LoggerFactoryConstructorNet7Integration.OnMethodEnd(Microsoft.Extensions.Logging.LoggerFactory /* MT: 0x00007FA12C5C0458 */,System.Exception /* MT: 0x00007FA1285328B8 */,Datadog.Trace.ClrProfiler.CallTarget.CallTargetState /* MT: 0x00007FA12C287AF8 */&)[Optimized] +00007FA12DD82BE8 60 stub<11863> AllocateTemporaryEntryPoints +00007FA12B3F9120 136 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Logging.ILogger.DirectSubmission.LoggerFactoryConstructorNet7Integration::OnMethodEnd(!!0,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[QuickJitted] +00007FA12B3F9270 1c instance class Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.DirectLogSubmissionManager::get_Settings()[QuickJitted] +00007FA12B3F92A0 4d instance bool [Datadog.Trace] Datadog.Trace.Logging.DirectSubmission.ImmutableDirectLogSubmissionSettings::IsIntegrationEnabled(valuetype Datadog.Trace.Configuration.IntegrationId)[QuickJitted] +00007FA12DD82C48 90 stub<11864> AllocateTemporaryEntryPoints +00007FA12DD82CD8 60 stub<11865> AllocateTemporaryEntryPoints +00007FA12B3F9310 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::get_Count()[QuickJitted] +00007FA12DD82D38 78 stub<11866> AllocateTemporaryEntryPoints +00007FA12DD82DB0 60 stub<11867> AllocateTemporaryEntryPoints +00007FA12B3F9340 64 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::get_Item(int32)[QuickJitted] +00007FA12DD82E28 78 stub<11868> AllocateTemporaryEntryPoints +00007FA12DD82EA0 108 stub<11869> AllocateTemporaryEntryPoints +00007FA12DD84000 6f0 stub<11870> AllocateTemporaryEntryPoints +00007FA12DD846F0 78 stub<11871> AllocateTemporaryEntryPoints +00007FA12DD84768 a8 stub<11872> AllocateTemporaryEntryPoints +00007FA12DD84810 18 stub<11873> AllocateTemporaryEntryPoints +00007FA12DD84828 18 stub<11874> AllocateTemporaryEntryPoints +00007FA12DD84840 18 stub<11875> AllocateTemporaryEntryPoints +00007FA12DD84858 6f0 stub<11876> AllocateTemporaryEntryPoints +00007FA12DD84F48 78 stub<11877> AllocateTemporaryEntryPoints +00007FA12DD86000 a8 stub<11878> AllocateTemporaryEntryPoints +00007FA12DD860A8 18 stub<11879> AllocateTemporaryEntryPoints +00007FA12DD860C0 18 stub<11880> AllocateTemporaryEntryPoints +00007FA12DD860D8 18 stub<11881> AllocateTemporaryEntryPoints +00007FA12B3F93C0 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.MessageLogger]::.ctor()[QuickJitted] +00007FA12B3F9430 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.MessageLogger]::.cctor()[QuickJitted] +00007FA12B3F9470 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.ScopeLogger]::.ctor()[QuickJitted] +00007FA12B3F94E0 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.ScopeLogger]::.cctor()[QuickJitted] +00007FA12DD860F0 30 stub<11882> AllocateTemporaryEntryPoints +00007FA12DD86120 18 stub<11883> AllocateTemporaryEntryPoints +00007FA1277FD370 18 stub<11884> GenerateResolveStub +00007FA1277C6F00 20 stub<11885> GenerateDispatchStub +00007FA1277C6F20 20 stub<11886> GenerateDispatchStub +00007FA1277FD3E0 18 stub<11887> GenerateResolveStub +00007FA1277C6F40 20 stub<11888> GenerateDispatchStub +00007FA1277C6F60 20 stub<11889> GenerateDispatchStub +00007FA12DD86138 18 stub<11890> AllocateTemporaryEntryPoints +00007FA12B3F9520 e4 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.MessageLogger]::Add(!0)[QuickJitted] +00007FA12B3F9620 74 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.MessageLogger]::AddWithResize(!0)[QuickJitted] +00007FA12B3F96B0 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.MessageLogger]::Grow(int32)[QuickJitted] +00007FA12B3F9740 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.MessageLogger]::set_Capacity(int32)[QuickJitted] +00007FA12B3F9820 9c instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.ScopeLogger]::Add(!0)[QuickJitted] +00007FA12B3F98D0 71 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.ScopeLogger]::AddWithResize(!0)[QuickJitted] +00007FA12B3F9960 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.ScopeLogger]::Grow(int32)[QuickJitted] +00007FA12B3F99F0 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.ScopeLogger]::set_Capacity(int32)[QuickJitted] +00007FA12B3F9AD0 71 instance !0[] [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.MessageLogger]::ToArray()[QuickJitted] +00007FA12B3F9B60 71 instance !0[] [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.ScopeLogger]::ToArray()[QuickJitted] +00007FA12DD86168 60 stub<11891> AllocateTemporaryEntryPoints +00007FA1277FD450 18 stub<11892> GenerateResolveStub +00007FA1277C6F80 20 stub<11893> GenerateDispatchStub +00007FA1277FD4C0 18 stub<11894> GenerateResolveStub +00007FA1277C6FA0 20 stub<11895> GenerateDispatchStub +00007FA12DD861C8 48 stub<11896> AllocateTemporaryEntryPoints +00007FA1277FD530 18 stub<11897> GenerateResolveStub +00007FA1277C6FC0 20 stub<11898> GenerateDispatchStub +00007FA1277C1F60 18 stub<11899> GenerateLookupStub +00007FA1277FD5A0 18 stub<11900> GenerateResolveStub +00007FA1277C6FE0 20 stub<11901> GenerateDispatchStub +00007FA12DD86210 18 stub<11902> AllocateTemporaryEntryPoints +00007FA1277FD610 18 stub<11903> GenerateResolveStub +00007FA1277C7000 20 stub<11904> GenerateDispatchStub +00007FA1277C1F80 18 stub<11905> GenerateLookupStub +00007FA1277FD680 18 stub<11906> GenerateResolveStub +00007FA1277C7020 20 stub<11907> GenerateDispatchStub +00007FA12DD86228 18 stub<11908> AllocateTemporaryEntryPoints +00007FA1277C1FA0 18 stub<11909> GenerateLookupStub +00007FA1277FD6F0 18 stub<11910> GenerateResolveStub +00007FA1277C7040 20 stub<11911> GenerateDispatchStub +00007FA12DD86240 48 stub<11912> AllocateTemporaryEntryPoints +00007FA12DD86288 18 stub<11913> AllocateTemporaryEntryPoints +00007FA12B3F9BF0 81 instance void [Samples.BuggyBits] BuggyBits.SelfInvoker::.ctor(valuetype [System.Runtime]System.Threading.CancellationToken,valuetype BuggyBits.Scenario,int32)[QuickJitted] +00007FA12DD862A0 60 stub<11914> AllocateTemporaryEntryPoints +00007FA12DD86300 18 stub<11915> AllocateTemporaryEntryPoints +00007FA12DD86318 18 stub<11916> AllocateTemporaryEntryPoints +00007FA12B3F9C90 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B3F9CD0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12DD86330 18 stub<11917> AllocateTemporaryEntryPoints +00007FA12DD86348 c0 stub<11918> AllocateTemporaryEntryPoints +00007FA12DD86408 150 stub<11919> AllocateTemporaryEntryPoints +00007FA12DD86558 60 stub<11920> AllocateTemporaryEntryPoints +00007FA12DD865B8 30 stub<11921> AllocateTemporaryEntryPoints +00007FA12DD865E8 18 stub<11922> AllocateTemporaryEntryPoints +00007FA12DD86600 1e0 stub<11923> AllocateTemporaryEntryPoints +00007FA12DD867E0 30 stub<11924> AllocateTemporaryEntryPoints +00007FA12DD86810 30 stub<11925> AllocateTemporaryEntryPoints +00007FA12DD86840 a8 stub<11926> AllocateTemporaryEntryPoints +00007FA12DD868E8 18 stub<11927> AllocateTemporaryEntryPoints +00007FA12DD86900 18 stub<11928> AllocateTemporaryEntryPoints +00007FA12DD86918 18 stub<11929> AllocateTemporaryEntryPoints +00007FA12DD86930 18 stub<11930> AllocateTemporaryEntryPoints +00007FA12DD86948 30 stub<11931> AllocateTemporaryEntryPoints +00007FA12DD86978 30 stub<11932> AllocateTemporaryEntryPoints +00007FA12DD869A8 18 stub<11933> AllocateTemporaryEntryPoints +00007FA1277FD760 18 stub<11934> GenerateResolveStub +00007FA1277C7060 20 stub<11935> GenerateDispatchStub +00007FA1277C1FC0 18 stub<11936> GenerateLookupStub +00007FA1277FD7D0 18 stub<11937> GenerateResolveStub +00007FA1277C7080 20 stub<11938> GenerateDispatchStub +00007FA12DD869C0 18 stub<11939> AllocateTemporaryEntryPoints +00007FA12DD869D8 18 stub<11940> AllocateTemporaryEntryPoints +00007FA1277C1FE0 18 stub<11941> GenerateLookupStub +00007FA12DD869F0 78 stub<11942> AllocateTemporaryEntryPoints +00007FA12DD86A68 18 stub<11943> AllocateTemporaryEntryPoints +00007FA12DD86A80 60 stub<11944> AllocateTemporaryEntryPoints +00007FA12DD86AE0 18 stub<11945> AllocateTemporaryEntryPoints +00007FA12DD86AF8 78 stub<11946> AllocateTemporaryEntryPoints +00007FA12DD86B70 18 stub<11947> AllocateTemporaryEntryPoints +00007FA12DD86B88 d8 stub<11948> AllocateTemporaryEntryPoints +00007FA12DD86C60 30 stub<11949> AllocateTemporaryEntryPoints +00007FA12DD86C90 30 stub<11950> AllocateTemporaryEntryPoints +00007FA12DD86CC0 c0 stub<11951> AllocateTemporaryEntryPoints +00007FA1277FD840 18 stub<11952> GenerateResolveStub +00007FA1277C70A0 20 stub<11953> GenerateDispatchStub +00007FA12DD86D80 30 stub<11954> AllocateTemporaryEntryPoints +00007FA12DD86DB0 60 stub<11955> AllocateTemporaryEntryPoints +00007FA12DD86E10 d8 stub<11956> AllocateTemporaryEntryPoints +00007FA12DD86EE8 108 stub<11957> AllocateTemporaryEntryPoints +00007FA1277FD8B0 18 stub<11958> GenerateResolveStub +00007FA1277C70C0 20 stub<11959> GenerateDispatchStub +00007FA1277FD920 18 stub<11960> GenerateResolveStub +00007FA1277C70E0 20 stub<11961> GenerateDispatchStub +00007FA12DD88018 30 stub<11962> AllocateTemporaryEntryPoints +00007FA12DD88048 60 stub<11963> AllocateTemporaryEntryPoints +00007FA12DD880A8 78 stub<11964> AllocateTemporaryEntryPoints +00007FA12DD88120 18 stub<11965> AllocateTemporaryEntryPoints +00007FA12DD88138 18 stub<11966> AllocateTemporaryEntryPoints +00007FA12DD88150 90 stub<11967> AllocateTemporaryEntryPoints +00007FA12DD881E0 18 stub<11968> AllocateTemporaryEntryPoints +00007FA12DD881F8 18 stub<11969> AllocateTemporaryEntryPoints +00007FA12DD88228 690 stub<11970> AllocateTemporaryEntryPoints +00007FA1277FD990 18 stub<11971> GenerateResolveStub +00007FA1277C7100 20 stub<11972> GenerateDispatchStub +00007FA1277C7120 20 stub<11973> GenerateDispatchStub +00007FA12DD888B8 210 stub<11974> AllocateTemporaryEntryPoints +00007FA12DD88AC8 48 stub<11975> AllocateTemporaryEntryPoints +00007FA12DD88B10 2a0 stub<11976> AllocateTemporaryEntryPoints +00007FA12DD8A000 408 stub<11977> AllocateTemporaryEntryPoints +00007FA12DD8A408 4b0 stub<11978> AllocateTemporaryEntryPoints +00007FA12DD8C000 810 stub<11979> AllocateTemporaryEntryPoints +00007FA12DD8C810 288 stub<11980> AllocateTemporaryEntryPoints +00007FA12DD8CA98 18 stub<11981> AllocateTemporaryEntryPoints +00007FA12DD8CAB0 18 stub<11982> AllocateTemporaryEntryPoints +00007FA12DD8CAC8 150 stub<11983> AllocateTemporaryEntryPoints +00007FA12DD8CC18 18 stub<11984> AllocateTemporaryEntryPoints +00007FA12DD8E000 7b0 stub<11985> AllocateTemporaryEntryPoints +00007FA12DD8E7B0 18 stub<11986> AllocateTemporaryEntryPoints +00007FA12DD8E7C8 18 stub<11987> AllocateTemporaryEntryPoints +00007FA12DD8E7E0 18 stub<11988> AllocateTemporaryEntryPoints +00007FA12DD8E7F8 18 stub<11989> AllocateTemporaryEntryPoints +00007FA12DD8E810 18 stub<11990> AllocateTemporaryEntryPoints +00007FA12DD8E828 18 stub<11991> AllocateTemporaryEntryPoints +00007FA12DD8E840 18 stub<11992> AllocateTemporaryEntryPoints +00007FA12DD8E858 18 stub<11993> AllocateTemporaryEntryPoints +00007FA12DD8E870 18 stub<11994> AllocateTemporaryEntryPoints +00007FA12DD8E888 18 stub<11995> AllocateTemporaryEntryPoints +00007FA12DD8E8A0 48 stub<11996> AllocateTemporaryEntryPoints +00007FA12DD8E8E8 18 stub<11997> AllocateTemporaryEntryPoints +00007FA12DD8E900 60 stub<11998> AllocateTemporaryEntryPoints +00007FA12DD8E960 60 stub<11999> AllocateTemporaryEntryPoints +00007FA12DD8E9C0 48 stub<12000> AllocateTemporaryEntryPoints +00007FA12DD8EA08 48 stub<12001> AllocateTemporaryEntryPoints +00007FA12DD8EA50 48 stub<12002> AllocateTemporaryEntryPoints +00007FA12DD8EA98 180 stub<12003> AllocateTemporaryEntryPoints +00007FA12DD8EC18 60 stub<12004> AllocateTemporaryEntryPoints +00007FA12B3FA1E0 113 class [System.Runtime]System.Action`4 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12B3FA310 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.Guid,System.DateTimeOffset]::.ctor()[QuickJitted] +00007FA12DD8EC78 2b8 stub<12005> AllocateTemporaryEntryPoints +00007FA12DD8EF30 18 stub<12006> AllocateTemporaryEntryPoints +00007FA12DD8EF48 60 stub<12007> AllocateTemporaryEntryPoints +00007FA12DD8EFA8 48 stub<12008> AllocateTemporaryEntryPoints +00007FA12DEF0000 48 stub<12009> AllocateTemporaryEntryPoints +00007FA12DEF0048 48 stub<12010> AllocateTemporaryEntryPoints +00007FA12DEF0090 60 stub<12011> AllocateTemporaryEntryPoints +00007FA12B3FA350 113 class [System.Runtime]System.Action`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12B3FA480 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass10_0`1[System.Guid]::.ctor()[QuickJitted] +00007FA12DEF00F0 48 stub<12012> AllocateTemporaryEntryPoints +00007FA12DEF0138 60 stub<12013> AllocateTemporaryEntryPoints +00007FA12DEF0198 60 stub<12014> AllocateTemporaryEntryPoints +00007FA12DEF01F8 48 stub<12015> AllocateTemporaryEntryPoints +00007FA12B3FA4C0 1b6 class [System.Runtime]System.Action`4 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12B3FA690 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.Guid,System.__Canon]::.ctor()[QuickJitted] +00007FA12DEF0240 48 stub<12016> AllocateTemporaryEntryPoints +00007FA12DEF0288 60 stub<12017> AllocateTemporaryEntryPoints +00007FA12DEF02E8 18 stub<12018> AllocateTemporaryEntryPoints +00007FA12DEF0300 60 stub<12019> AllocateTemporaryEntryPoints +00007FA12DEF0360 48 stub<12020> AllocateTemporaryEntryPoints +00007FA12B3FA6D0 113 class [System.Runtime]System.Action`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12B3FA800 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass10_0`1[System.DateTimeOffset]::.ctor()[QuickJitted] +00007FA12DEF03A8 60 stub<12021> AllocateTemporaryEntryPoints +00007FA12DEF0408 48 stub<12022> AllocateTemporaryEntryPoints +00007FA12B3FA840 1b6 class [System.Runtime]System.Action`4 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12B3FAA10 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.DateTimeOffset,System.__Canon]::.ctor()[QuickJitted] +00007FA12DEF0450 60 stub<12023> AllocateTemporaryEntryPoints +00007FA12DEF04B0 48 stub<12024> AllocateTemporaryEntryPoints +00007FA12DEF04F8 48 stub<12025> AllocateTemporaryEntryPoints +00007FA12DEF0540 48 stub<12026> AllocateTemporaryEntryPoints +00007FA12DEF0588 60 stub<12027> AllocateTemporaryEntryPoints +00007FA12B3FAA50 1b6 class [System.Runtime]System.Action`5 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12B3FAC20 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass14_0`3[System.Guid,System.DateTimeOffset,System.__Canon]::.ctor()[QuickJitted] +00007FA12DEF05E8 48 stub<12028> AllocateTemporaryEntryPoints +00007FA12DEF0630 18 stub<12029> AllocateTemporaryEntryPoints +00007FA12DEF0648 60 stub<12030> AllocateTemporaryEntryPoints +00007FA12DEF06A8 60 stub<12031> AllocateTemporaryEntryPoints +00007FA12DEF0708 48 stub<12032> AllocateTemporaryEntryPoints +00007FA12DEF0750 48 stub<12033> AllocateTemporaryEntryPoints +00007FA12DEF0798 48 stub<12034> AllocateTemporaryEntryPoints +00007FA12DEF07E0 60 stub<12035> AllocateTemporaryEntryPoints +00007FA12B3FAC60 113 class [System.Runtime]System.Action`6 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12B3FAD90 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass16_0`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::.ctor()[QuickJitted] +00007FA12DEF0840 120 stub<12036> AllocateTemporaryEntryPoints +00007FA12DEF0960 120 stub<12037> AllocateTemporaryEntryPoints +00007FA12DEF0A80 18 stub<12038> AllocateTemporaryEntryPoints +00007FA12DEF0A98 18 stub<12039> AllocateTemporaryEntryPoints +00007FA12DEF0AB0 18 stub<12040> AllocateTemporaryEntryPoints +00007FA12DEF0AC8 18 stub<12041> AllocateTemporaryEntryPoints +00007FA12DEF0AE0 48 stub<12042> AllocateTemporaryEntryPoints +00007FA12DEF0B28 48 stub<12043> AllocateTemporaryEntryPoints +00007FA12DEF0B70 60 stub<12044> AllocateTemporaryEntryPoints +00007FA12DEF0BD0 18 stub<12045> AllocateTemporaryEntryPoints +00007FA12B3FADD0 47 instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12DDBAC88 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12DEF0BE8 18 stub<12046> AllocateTemporaryEntryPoints +00007FA12DEF0C00 18 stub<12047> AllocateTemporaryEntryPoints +00007FA12B3FAE30 bf instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DEF0C18 18 stub<12048> AllocateTemporaryEntryPoints +00007FA12DEF0C30 18 stub<12049> AllocateTemporaryEntryPoints +00007FA12DEF0C48 18 stub<12050> AllocateTemporaryEntryPoints +00007FA12B3FAF10 47 instance void [Microsoft.Extensions.Logging] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12DDBAC88 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12DEF0C60 18 stub<12051> AllocateTemporaryEntryPoints +00007FA12DEF0C78 18 stub<12052> AllocateTemporaryEntryPoints +00007FA12DEF0C90 18 stub<12053> AllocateTemporaryEntryPoints +00007FA12B3FAF70 1ac instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DEF0CA8 18 stub<12054> AllocateTemporaryEntryPoints +00007FA12DEF0CC0 18 stub<12055> AllocateTemporaryEntryPoints +00007FA12B3FB140 14c void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12DEF0CD8 18 stub<12056> AllocateTemporaryEntryPoints +00007FA12DEF0CF0 18 stub<12057> AllocateTemporaryEntryPoints +00007FA12DEF0D08 18 stub<12058> AllocateTemporaryEntryPoints +00007FA12B3FB2B0 47 instance void [Microsoft.Extensions.Logging.Console] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12DDBAC88 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12DEF0D20 a8 stub<12059> AllocateTemporaryEntryPoints +00007FA12DEF0DC8 a8 stub<12060> AllocateTemporaryEntryPoints +00007FA12DEF0E70 30 stub<12061> AllocateTemporaryEntryPoints +00007FA12DEF0EA0 a8 stub<12062> AllocateTemporaryEntryPoints +00007FA12DEF0F48 18 stub<12063> AllocateTemporaryEntryPoints +00007FA12DEF0F60 18 stub<12064> AllocateTemporaryEntryPoints +00007FA12DEF0F78 18 stub<12065> AllocateTemporaryEntryPoints +00007FA12B3FB310 378 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12B3FB6B0 8a instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DEF0F90 18 stub<12066> AllocateTemporaryEntryPoints +00007FA12DEF0FA8 18 stub<12067> AllocateTemporaryEntryPoints +00007FA12DEF0FC0 18 stub<12068> AllocateTemporaryEntryPoints +00007FA12DEF2000 138 stub<12069> AllocateTemporaryEntryPoints +00007FA12DEF2138 48 stub<12070> AllocateTemporaryEntryPoints +00007FA12DEF2180 a8 stub<12071> AllocateTemporaryEntryPoints +00007FA12DEF2228 60 stub<12072> AllocateTemporaryEntryPoints +00007FA12DEF2288 18 stub<12073> AllocateTemporaryEntryPoints +00007FA12DEF22A0 18 stub<12074> AllocateTemporaryEntryPoints +00007FA12DEF22B8 18 stub<12075> AllocateTemporaryEntryPoints +00007FA12DEF22D0 18 stub<12076> AllocateTemporaryEntryPoints +00007FA12B3FB750 399 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12B3FBB10 20 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_Formatter()[QuickJitted] +00007FA12B3FBB50 3b instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_State()[QuickJitted] +00007FA12B3FBBB0 20 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_Exception()[QuickJitted] +00007FA12DEF22E8 18 stub<12077> AllocateTemporaryEntryPoints +00007FA12B3FBFF0 1f instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_LogLevel()[QuickJitted] +00007FA12DEF2300 60 stub<12078> AllocateTemporaryEntryPoints +00007FA12DEF2360 18 stub<12079> AllocateTemporaryEntryPoints +00007FA12DEF2378 a8 stub<12080> AllocateTemporaryEntryPoints +00007FA12B3FC030 3fd instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12B3FC460 37 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_EventId()[QuickJitted] +00007FA12B3FC4B0 1f instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_Category()[QuickJitted] +00007FA12DEF2420 30 stub<12081> AllocateTemporaryEntryPoints +00007FA12DEF2450 18 stub<12082> AllocateTemporaryEntryPoints +00007FA12DEF2468 18 stub<12083> AllocateTemporaryEntryPoints +00007FA12DEF2480 18 stub<12084> AllocateTemporaryEntryPoints +00007FA12DEF2498 18 stub<12085> AllocateTemporaryEntryPoints +00007FA12DEF24B0 18 stub<12086> AllocateTemporaryEntryPoints +00007FA12DEF24C8 18 stub<12087> AllocateTemporaryEntryPoints +00007FA12DEF24E0 18 stub<12088> AllocateTemporaryEntryPoints +00007FA12DEF24F8 18 stub<12089> AllocateTemporaryEntryPoints +00007FA12DEF2510 18 stub<12090> AllocateTemporaryEntryPoints +00007FA12DEF2528 18 stub<12091> AllocateTemporaryEntryPoints +00007FA12DEF2540 18 stub<12092> AllocateTemporaryEntryPoints +00007FA12DEF2558 18 stub<12093> AllocateTemporaryEntryPoints +00007FA12DEF2570 540 stub<12094> AllocateTemporaryEntryPoints +00007FA12DEF2AB0 18 stub<12095> AllocateTemporaryEntryPoints +00007FA12DEF2AC8 18 stub<12096> AllocateTemporaryEntryPoints +00007FA12DEF4000 540 stub<12097> AllocateTemporaryEntryPoints +00007FA12DEF4540 540 stub<12098> AllocateTemporaryEntryPoints +00007FA12DEF4A80 18 stub<12099> AllocateTemporaryEntryPoints +00007FA12DEF4A98 18 stub<12100> AllocateTemporaryEntryPoints +00007FA12DEF4AB0 540 stub<12101> AllocateTemporaryEntryPoints +00007FA12DEF6000 18 stub<12102> AllocateTemporaryEntryPoints +00007FA12B3FC4F0 796 void [System.Private.CoreLib] System.SpanHelpers::Fill(!!0&,native uint,!!0)[QuickJitted] +00007FA12B3FCCE0 9a instance void [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::Enqueue(!0)[QuickJitted] +00007FA12B3FCD90 76 instance void [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::Grow(int32)[QuickJitted] +00007FA12B3FCE20 141 instance void [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::SetCapacity(int32)[QuickJitted] +00007FA12B3FCF80 41 instance void [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::MoveNext(int32&)[QuickJitted] +00007FA12DEF6018 18 stub<12103> AllocateTemporaryEntryPoints +00007FA12DEF6030 18 stub<12104> AllocateTemporaryEntryPoints +00007FA12DEF6048 18 stub<12105> AllocateTemporaryEntryPoints +00007FA12B3FCFE0 47 instance void [Microsoft.Extensions.Logging.Debug] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12DDBAC88 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12DEF6060 30 stub<12106> AllocateTemporaryEntryPoints +00007FA12DEF6090 18 stub<12107> AllocateTemporaryEntryPoints +00007FA12DEF60A8 60 stub<12108> AllocateTemporaryEntryPoints +00007FA12DEF6108 18 stub<12109> AllocateTemporaryEntryPoints +00007FA12DEF6120 18 stub<12110> AllocateTemporaryEntryPoints +00007FA12B3FD040 209 instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12B3FD270 e4 instance !0 [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::Dequeue()[QuickJitted] +00007FA12DEF6138 18 stub<12111> AllocateTemporaryEntryPoints +00007FA12DEF6150 18 stub<12112> AllocateTemporaryEntryPoints +00007FA12B3FD370 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12DEF6168 18 stub<12113> AllocateTemporaryEntryPoints +00007FA12B3FD390 47 instance void [Microsoft.Extensions.Logging.EventSource] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12DDBAC88 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12DEF6180 c0 stub<12114> AllocateTemporaryEntryPoints +00007FA12DEF6240 60 stub<12115> AllocateTemporaryEntryPoints +00007FA12B3FD3F0 560 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA1277C7140 20 stub<12116> GenerateDispatchStub +00007FA12DEF62A0 18 stub<12117> AllocateTemporaryEntryPoints +00007FA12DEF62B8 18 stub<12118> AllocateTemporaryEntryPoints +00007FA12B3FD970 47 instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12DDBAC88 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA1277FDA00 18 stub<12119> GenerateResolveStub +00007FA1277FDA70 18 stub<12120> GenerateResolveStub +00007FA1277C7160 20 stub<12121> GenerateDispatchStub +00007FA1277C7180 20 stub<12122> GenerateDispatchStub +00007FA12DEF62D0 18 stub<12123> AllocateTemporaryEntryPoints +00007FA12DEF62E8 18 stub<12124> AllocateTemporaryEntryPoints +00007FA1277FDAE0 18 stub<12125> GenerateResolveStub +00007FA1277C71A0 20 stub<12126> GenerateDispatchStub +00007FA1277FDB50 18 stub<12127> GenerateResolveStub +00007FA1277C71C0 20 stub<12128> GenerateDispatchStub +00007FA1277FDBC0 18 stub<12129> GenerateResolveStub +00007FA1277C71E0 20 stub<12130> GenerateDispatchStub +00007FA12DEF6300 18 stub<12131> AllocateTemporaryEntryPoints +00007FA1277FDC30 18 stub<12132> GenerateResolveStub +00007FA1277C7200 20 stub<12133> GenerateDispatchStub +00007FA1277C2000 18 stub<12134> GenerateLookupStub +00007FA1277FDCA0 18 stub<12135> GenerateResolveStub +00007FA1277C7220 20 stub<12136> GenerateDispatchStub +00007FA12DEF6318 18 stub<12137> AllocateTemporaryEntryPoints +00007FA12DEF6330 a8 stub<12138> AllocateTemporaryEntryPoints +00007FA12DEF63D8 a8 stub<12139> AllocateTemporaryEntryPoints +00007FA12DEF6480 30 stub<12140> AllocateTemporaryEntryPoints +00007FA12DEF64B0 18 stub<12141> AllocateTemporaryEntryPoints +00007FA12DEF64E0 30 stub<12142> AllocateTemporaryEntryPoints +00007FA12DEF6510 60 stub<12143> AllocateTemporaryEntryPoints +00007FA12DEF6570 18 stub<12144> AllocateTemporaryEntryPoints +00007FA12DEF6588 1c8 stub<12145> AllocateTemporaryEntryPoints +00007FA12DEF6750 c0 stub<12146> AllocateTemporaryEntryPoints +00007FA12DEF6810 90 stub<12147> AllocateTemporaryEntryPoints +00007FA12DEF68A0 18 stub<12148> AllocateTemporaryEntryPoints +00007FA12DEF68B8 48 stub<12149> AllocateTemporaryEntryPoints +00007FA12DEF6900 90 stub<12150> AllocateTemporaryEntryPoints +00007FA12DEF6990 4f8 stub<12151> AllocateTemporaryEntryPoints +00007FA12DEF6E88 60 stub<12152> AllocateTemporaryEntryPoints +00007FA12DEF6EE8 78 stub<12153> AllocateTemporaryEntryPoints +00007FA12DEF6F60 30 stub<12154> AllocateTemporaryEntryPoints +00007FA12DEF8000 168 stub<12155> AllocateTemporaryEntryPoints +00007FA12DEF8168 18 stub<12156> AllocateTemporaryEntryPoints +00007FA12DEF8180 60 stub<12157> AllocateTemporaryEntryPoints +00007FA12DEF81E0 120 stub<12158> AllocateTemporaryEntryPoints +00007FA12DEF8300 168 stub<12159> AllocateTemporaryEntryPoints +00007FA12DEF8468 30 stub<12160> AllocateTemporaryEntryPoints +00007FA12DEF8498 30 stub<12161> AllocateTemporaryEntryPoints +00007FA12DEF84C8 60 stub<12162> AllocateTemporaryEntryPoints +00007FA12DEF8528 6f0 stub<12163> AllocateTemporaryEntryPoints +00007FA12DEF8C18 2a0 stub<12164> AllocateTemporaryEntryPoints +00007FA1277FDD10 18 stub<12165> GenerateResolveStub +00007FA1277C7240 20 stub<12166> GenerateDispatchStub +00007FA1277C2020 18 stub<12167> GenerateLookupStub +00007FA1277FDD80 18 stub<12168> GenerateResolveStub +00007FA1277C7260 20 stub<12169> GenerateDispatchStub +00007FA12DEF8EB8 18 stub<12170> AllocateTemporaryEntryPoints +00007FA12DEFA000 228 stub<12171> AllocateTemporaryEntryPoints +00007FA12DEFA228 48 stub<12172> AllocateTemporaryEntryPoints +00007FA12DEFA270 48 stub<12173> AllocateTemporaryEntryPoints +00007FA12DEFA2B8 300 stub<12174> AllocateTemporaryEntryPoints +00007FA12DEFA5B8 108 stub<12175> AllocateTemporaryEntryPoints +00007FA12DEFA6C0 1b0 stub<12176> AllocateTemporaryEntryPoints +00007FA12DEFA870 90 stub<12177> AllocateTemporaryEntryPoints +00007FA12DEFA900 60 stub<12178> AllocateTemporaryEntryPoints +00007FA1277C2040 18 stub<12179> GenerateLookupStub +00007FA1277C2060 18 stub<12180> GenerateLookupStub +00007FA1277FDDF0 18 stub<12181> GenerateResolveStub +00007FA1277C7280 20 stub<12182> GenerateDispatchStub +00007FA12DEFA960 18 stub<12183> AllocateTemporaryEntryPoints +00007FA12DEFA978 1b0 stub<12184> AllocateTemporaryEntryPoints +00007FA12DEFAB28 18 stub<12185> AllocateTemporaryEntryPoints +00007FA12DEFAB40 90 stub<12186> AllocateTemporaryEntryPoints +00007FA12DEFABD0 18 stub<12187> AllocateTemporaryEntryPoints +00007FA12DEFABE8 360 stub<12188> AllocateTemporaryEntryPoints +00007FA12DEFAF48 48 stub<12189> AllocateTemporaryEntryPoints +00007FA12DEFAF90 60 stub<12190> AllocateTemporaryEntryPoints +00007FA12DEFC000 120 stub<12191> AllocateTemporaryEntryPoints +00007FA12DEFC120 30 stub<12192> AllocateTemporaryEntryPoints +00007FA12DEFC150 108 stub<12193> AllocateTemporaryEntryPoints +00007FA12DEFC258 78 stub<12194> AllocateTemporaryEntryPoints +00007FA12DEFC2D0 90 stub<12195> AllocateTemporaryEntryPoints +00007FA12DEFC360 78 stub<12196> AllocateTemporaryEntryPoints +00007FA12DEFC3D8 48 stub<12197> AllocateTemporaryEntryPoints +00007FA12DEFC420 18 stub<12198> AllocateTemporaryEntryPoints +00007FA12DEFC438 48 stub<12199> AllocateTemporaryEntryPoints +00007FA12DEFC480 d8 stub<12200> AllocateTemporaryEntryPoints +00007FA12DEFC558 30 stub<12201> AllocateTemporaryEntryPoints +00007FA12DEFC588 a8 stub<12202> AllocateTemporaryEntryPoints +00007FA12DEFC630 18 stub<12203> AllocateTemporaryEntryPoints +00007FA12DEFC648 18 stub<12204> AllocateTemporaryEntryPoints +00007FA12DEFC660 48 stub<12205> AllocateTemporaryEntryPoints +00007FA12DEFC6A8 168 stub<12206> AllocateTemporaryEntryPoints +00007FA12DEFC810 18 stub<12207> AllocateTemporaryEntryPoints +00007FA12DEFC828 60 stub<12208> AllocateTemporaryEntryPoints +00007FA12DEFC888 48 stub<12209> AllocateTemporaryEntryPoints +00007FA12DEFC8D0 90 stub<12210> AllocateTemporaryEntryPoints +00007FA12DEFC960 48 stub<12211> AllocateTemporaryEntryPoints +00007FA12DEFC9A8 48 stub<12212> AllocateTemporaryEntryPoints +00007FA12DEFC9F0 18 stub<12213> AllocateTemporaryEntryPoints +00007FA12DEFCA08 18 stub<12214> AllocateTemporaryEntryPoints +00007FA12DEFCA20 18 stub<12215> AllocateTemporaryEntryPoints +00007FA12DEFCA38 120 stub<12216> AllocateTemporaryEntryPoints +00007FA12DEFCB58 48 stub<12217> AllocateTemporaryEntryPoints +00007FA12DEFCBA0 78 stub<12218> AllocateTemporaryEntryPoints +00007FA12DEFCC18 d8 stub<12219> AllocateTemporaryEntryPoints +00007FA12DEFCCF0 168 stub<12220> AllocateTemporaryEntryPoints +00007FA12DEFCE58 90 stub<12221> AllocateTemporaryEntryPoints +00007FA12DEFE000 120 stub<12222> AllocateTemporaryEntryPoints +00007FA12DEFE120 288 stub<12223> AllocateTemporaryEntryPoints +00007FA12DEFE3A8 168 stub<12224> AllocateTemporaryEntryPoints +00007FA12DEFE510 a8 stub<12225> AllocateTemporaryEntryPoints +00007FA12DEFE5B8 18 stub<12226> AllocateTemporaryEntryPoints +00007FA12DEFE5D0 18 stub<12227> AllocateTemporaryEntryPoints +00007FA1277C2080 18 stub<12228> GenerateLookupStub +00007FA1277FDE60 18 stub<12229> GenerateResolveStub +00007FA1277C72A0 20 stub<12230> GenerateDispatchStub +00007FA1277C20A0 18 stub<12231> GenerateLookupStub +00007FA1277FDED0 18 stub<12232> GenerateResolveStub +00007FA1277C72C0 20 stub<12233> GenerateDispatchStub +00007FA12DEFE5E8 18 stub<12234> AllocateTemporaryEntryPoints +00007FA1277C20C0 18 stub<12235> GenerateLookupStub +00007FA1277FDF40 18 stub<12236> GenerateResolveStub +00007FA1277C72E0 20 stub<12237> GenerateDispatchStub +00007FA12DEFE600 120 stub<12238> AllocateTemporaryEntryPoints +00007FA12DEFE720 18 stub<12239> AllocateTemporaryEntryPoints +00007FA12DEFE738 18 stub<12240> AllocateTemporaryEntryPoints +00007FA12DEFE750 18 stub<12241> AllocateTemporaryEntryPoints +00007FA12DEFE768 18 stub<12242> AllocateTemporaryEntryPoints +00007FA1277FDFB0 18 stub<12243> GenerateResolveStub +00007FA1277C7300 20 stub<12244> GenerateDispatchStub +00007FA12DEFE780 138 stub<12245> AllocateTemporaryEntryPoints +00007FA12DEFE8B8 18 stub<12246> AllocateTemporaryEntryPoints +00007FA12DEFE8D0 30 stub<12247> AllocateTemporaryEntryPoints +00007FA12DEFE900 18 stub<12248> AllocateTemporaryEntryPoints +00007FA12DEFE918 210 stub<12249> AllocateTemporaryEntryPoints +00007FA12DEFEB28 18 stub<12250> AllocateTemporaryEntryPoints +00007FA12DEFEB40 48 stub<12251> AllocateTemporaryEntryPoints +00007FA1277FE020 18 stub<12252> GenerateResolveStub +00007FA1277C7320 20 stub<12253> GenerateDispatchStub +00007FA1277C20E0 18 stub<12254> GenerateLookupStub +00007FA1277FE090 18 stub<12255> GenerateResolveStub +00007FA1277C7340 20 stub<12256> GenerateDispatchStub +00007FA12DEFEB88 18 stub<12257> AllocateTemporaryEntryPoints +00007FA1277FE100 18 stub<12258> GenerateResolveStub +00007FA1277C7360 20 stub<12259> GenerateDispatchStub +00007FA1277C2100 18 stub<12260> GenerateLookupStub +00007FA1277FE170 18 stub<12261> GenerateResolveStub +00007FA1277C7380 20 stub<12262> GenerateDispatchStub +00007FA12DEFEBB8 18 stub<12263> AllocateTemporaryEntryPoints +00007FA1277C2120 18 stub<12264> GenerateLookupStub +00007FA1277FE1E0 18 stub<12265> GenerateResolveStub +00007FA1277C73A0 20 stub<12266> GenerateDispatchStub +00007FA12DEFEBD0 18 stub<12267> AllocateTemporaryEntryPoints +00007FA1277C73C0 20 stub<12268> GenerateDispatchStub +00007FA1277FE250 18 stub<12269> GenerateResolveStub +00007FA1277C73E0 20 stub<12270> GenerateDispatchStub +00007FA12DEFEBE8 90 stub<12271> AllocateTemporaryEntryPoints +00007FA12DEFEC78 18 stub<12272> AllocateTemporaryEntryPoints +00007FA12DEFEC90 18 stub<12273> AllocateTemporaryEntryPoints +00007FA12DEFECA8 a8 stub<12274> AllocateTemporaryEntryPoints +00007FA12DEFED50 f0 stub<12275> AllocateTemporaryEntryPoints +00007FA12DEFEE40 18 stub<12276> AllocateTemporaryEntryPoints +00007FA12DFA0000 4f8 stub<12277> AllocateTemporaryEntryPoints +00007FA12DFA04F8 a8 stub<12278> AllocateTemporaryEntryPoints +00007FA12DFA05A0 18 stub<12279> AllocateTemporaryEntryPoints +00007FA12DFA05B8 108 stub<12280> AllocateTemporaryEntryPoints +00007FA12DFA06C0 18 stub<12281> AllocateTemporaryEntryPoints +00007FA12DFA06D8 a8 stub<12282> AllocateTemporaryEntryPoints +00007FA12DFA0780 108 stub<12283> AllocateTemporaryEntryPoints +00007FA12DFA0888 18 stub<12284> AllocateTemporaryEntryPoints +00007FA12DFA08A0 5e8 stub<12285> AllocateTemporaryEntryPoints +00007FA12DFA0E88 c0 stub<12286> AllocateTemporaryEntryPoints +00007FA12DFA0F48 90 stub<12287> AllocateTemporaryEntryPoints +00007FA12DFA2000 a8 stub<12288> AllocateTemporaryEntryPoints +00007FA12DFA20A8 18 stub<12289> AllocateTemporaryEntryPoints +00007FA12DFA20C0 78 stub<12290> AllocateTemporaryEntryPoints +00007FA12DFA2138 18 stub<12291> AllocateTemporaryEntryPoints +00007FA12DFA2150 108 stub<12292> AllocateTemporaryEntryPoints +00007FA12DFA2258 18 stub<12293> AllocateTemporaryEntryPoints +00007FA12DFA2270 d8 stub<12294> AllocateTemporaryEntryPoints +00007FA1277C2140 18 stub<12295> GenerateLookupStub +00007FA12DFA2348 30 stub<12296> AllocateTemporaryEntryPoints +00007FA1277FE2C0 18 stub<12297> GenerateResolveStub +00007FA1277C7400 20 stub<12298> GenerateDispatchStub +00007FA1277FE330 18 stub<12299> GenerateResolveStub +00007FA1277C7420 20 stub<12300> GenerateDispatchStub +00007FA1277C7440 20 stub<12301> GenerateDispatchStub +00007FA12DFA2378 150 stub<12302> AllocateTemporaryEntryPoints +00007FA12DFA24C8 150 stub<12303> AllocateTemporaryEntryPoints +00007FA12DFA2618 a8 stub<12304> AllocateTemporaryEntryPoints +00007FA12DFA26C0 18 stub<12305> AllocateTemporaryEntryPoints +00007FA12DFA26D8 18 stub<12306> AllocateTemporaryEntryPoints +00007FA12B3FE1E0 cf instance class System.Collections.Generic.Dictionary`2/ValueCollection [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Guid,System.__Canon]::get_Values()[QuickJitted] +00007FA1277C2160 18 stub<12307> GenerateLookupStub +00007FA12DFA26F0 18 stub<12308> AllocateTemporaryEntryPoints +00007FA12DFA2708 18 stub<12309> AllocateTemporaryEntryPoints +00007FA12DFA2720 18 stub<12310> AllocateTemporaryEntryPoints +00007FA12DFA2738 18 stub<12311> AllocateTemporaryEntryPoints +00007FA12DFA2750 18 stub<12312> AllocateTemporaryEntryPoints +00007FA12DFA2768 18 stub<12313> AllocateTemporaryEntryPoints +00007FA12DFA2780 18 stub<12314> AllocateTemporaryEntryPoints +00007FA12DFA2798 18 stub<12315> AllocateTemporaryEntryPoints +00007FA12DFA27B0 18 stub<12316> AllocateTemporaryEntryPoints +00007FA12DFA27C8 18 stub<12317> AllocateTemporaryEntryPoints +00007FA12DFA27E0 78 stub<12318> AllocateTemporaryEntryPoints +00007FA12DFA2858 60 stub<12319> AllocateTemporaryEntryPoints +00007FA12DFA28B8 60 stub<12320> AllocateTemporaryEntryPoints +00007FA12DFA2918 90 stub<12321> AllocateTemporaryEntryPoints +00007FA12DFA29A8 48 stub<12322> AllocateTemporaryEntryPoints +00007FA12B3FE2D0 8c class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.Enumerable::OrderByDescending(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12DFA29F0 18 stub<12323> AllocateTemporaryEntryPoints +00007FA12DFA2A08 90 stub<12324> AllocateTemporaryEntryPoints +00007FA12B3FE370 c3 instance void [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.DateTimeOffset]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.OrderedEnumerable`1)[QuickJitted] +00007FA12DFA2A98 18 stub<12325> AllocateTemporaryEntryPoints +00007FA12DFA2AB0 60 stub<12326> AllocateTemporaryEntryPoints +00007FA12DFA2B10 18 stub<12327> AllocateTemporaryEntryPoints +00007FA12DFA2B28 18 stub<12328> AllocateTemporaryEntryPoints +00007FA12DFA2B40 18 stub<12329> AllocateTemporaryEntryPoints +00007FA12DFA2B58 18 stub<12330> AllocateTemporaryEntryPoints +00007FA12DFA2B70 18 stub<12331> AllocateTemporaryEntryPoints +00007FA12B3FE450 ca class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.Enumerable::ThenBy(class System.Linq.IOrderedEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12DFA2B88 18 stub<12332> AllocateTemporaryEntryPoints +00007FA12DFA2BA0 18 stub<12333> AllocateTemporaryEntryPoints +00007FA12DFA2BB8 18 stub<12334> AllocateTemporaryEntryPoints +00007FA12DFA2BD0 18 stub<12335> AllocateTemporaryEntryPoints +00007FA12DFA2BE8 48 stub<12336> AllocateTemporaryEntryPoints +00007FA12B3FE530 a9 instance class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.OrderedEnumerable`1[System.__Canon]::System.Linq.IOrderedEnumerable.CreateOrderedEnumerable(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool)[QuickJitted] +00007FA12DFA2C30 90 stub<12337> AllocateTemporaryEntryPoints +00007FA12B3FE5F0 c3 instance void [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.Guid]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.OrderedEnumerable`1)[QuickJitted] +00007FA12DFA2CC0 18 stub<12338> AllocateTemporaryEntryPoints +00007FA12DFA2CD8 60 stub<12339> AllocateTemporaryEntryPoints +00007FA12DFA2D38 18 stub<12340> AllocateTemporaryEntryPoints +00007FA1277C2180 18 stub<12341> GenerateLookupStub +00007FA12DFA2D50 48 stub<12342> AllocateTemporaryEntryPoints +00007FA12DFA2D98 48 stub<12343> AllocateTemporaryEntryPoints +00007FA12B3FE6D0 1f2 instance class System.Linq.CachingComparer`1 [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.Guid]::GetComparer(class System.Linq.CachingComparer`1)[QuickJitted] +00007FA12B3FE8E0 56 instance void [System.Linq] System.Linq.CachingComparer`2[System.__Canon,System.Guid]::.ctor(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool)[QuickJitted] +00007FA12DFA2DE0 48 stub<12344> AllocateTemporaryEntryPoints +00007FA12DFA2E28 48 stub<12345> AllocateTemporaryEntryPoints +00007FA12B3FE950 1f2 instance class System.Linq.CachingComparer`1 [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.DateTimeOffset]::GetComparer(class System.Linq.CachingComparer`1)[QuickJitted] +00007FA12B3FEB60 4d instance void [System.Linq] System.Linq.CachingComparerWithChild`2[System.__Canon,System.DateTimeOffset]::.ctor(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.CachingComparer`1)[QuickJitted] +00007FA12B3FEBD0 56 instance void [System.Linq] System.Linq.CachingComparer`2[System.__Canon,System.DateTimeOffset]::.ctor(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool)[QuickJitted] +00007FA1277C21A0 18 stub<12346> GenerateLookupStub +00007FA1277FE3A0 18 stub<12347> GenerateResolveStub +00007FA1277C7460 20 stub<12348> GenerateDispatchStub +00007FA1277C7480 20 stub<12349> GenerateDispatchStub +00007FA1277C21C0 18 stub<12350> GenerateLookupStub +00007FA1277FE410 18 stub<12351> GenerateResolveStub +00007FA1277C74A0 20 stub<12352> GenerateDispatchStub +00007FA12DFA4000 258 stub<12353> AllocateTemporaryEntryPoints +00007FA12DFA4258 48 stub<12354> AllocateTemporaryEntryPoints +00007FA12DFA42A0 78 stub<12355> AllocateTemporaryEntryPoints +00007FA12DFA4318 48 stub<12356> AllocateTemporaryEntryPoints +00007FA12DFA4360 18 stub<12357> AllocateTemporaryEntryPoints +00007FA12DFA4378 18 stub<12358> AllocateTemporaryEntryPoints +00007FA12B3FEC40 89 class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.Enumerable::OrderBy(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA1277C21E0 18 stub<12359> GenerateLookupStub +00007FA1277FE480 18 stub<12360> GenerateResolveStub +00007FA1277C74C0 20 stub<12361> GenerateDispatchStub +00007FA12DFA4390 18 stub<12362> AllocateTemporaryEntryPoints +00007FA1277C74E0 20 stub<12363> GenerateDispatchStub +00007FA12DFA43A8 18 stub<12364> AllocateTemporaryEntryPoints +00007FA12DFA43C0 c0 stub<12365> AllocateTemporaryEntryPoints +00007FA12DFA4480 18 stub<12366> AllocateTemporaryEntryPoints +00007FA12DFA4498 18 stub<12367> AllocateTemporaryEntryPoints +00007FA12DFA44B0 18 stub<12368> AllocateTemporaryEntryPoints +00007FA12DFA44C8 3d8 stub<12369> AllocateTemporaryEntryPoints +00007FA12DFA48A0 18 stub<12370> AllocateTemporaryEntryPoints +00007FA12DFA48B8 30 stub<12371> AllocateTemporaryEntryPoints +00007FA12DFA48E8 138 stub<12372> AllocateTemporaryEntryPoints +00007FA12DFA4A20 138 stub<12373> AllocateTemporaryEntryPoints +00007FA12DFA4B58 138 stub<12374> AllocateTemporaryEntryPoints +00007FA12DFA4C90 60 stub<12375> AllocateTemporaryEntryPoints +00007FA12DFA4CF0 18 stub<12376> AllocateTemporaryEntryPoints +00007FA12DFA4D08 18 stub<12377> AllocateTemporaryEntryPoints +00007FA12B3FECE0 171 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass16_0`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,!1,!2,!3,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12B3FEE80 70 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::.ctor(class Microsoft.Extensions.Logging.LogValuesFormatter,!0,!1,!2,!3)[QuickJitted] +00007FA12DFA4D20 18 stub<12378> AllocateTemporaryEntryPoints +00007FA12DFA4D38 18 stub<12379> AllocateTemporaryEntryPoints +00007FA12DFA4D50 48 stub<12380> AllocateTemporaryEntryPoints +00007FA12DFA4D98 48 stub<12381> AllocateTemporaryEntryPoints +00007FA12DFA4DE0 48 stub<12382> AllocateTemporaryEntryPoints +00007FA12DFA4E28 60 stub<12383> AllocateTemporaryEntryPoints +00007FA12B3FEF10 7e void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::.cctor()[QuickJitted] +00007FA12B3FEFB0 47 void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4+<>c[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::.cctor()[QuickJitted] +00007FA12B3FF010 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4+<>c[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::.ctor()[QuickJitted] +00007FA12DFA4E88 18 stub<12384> AllocateTemporaryEntryPoints +00007FA12B3FF050 65 instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`4 /* MT: 0x00007FA12DF9B228 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12B3FF0D0 a0 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DFA4EA0 18 stub<12385> AllocateTemporaryEntryPoints +00007FA12DFA4EB8 18 stub<12386> AllocateTemporaryEntryPoints +00007FA12B3FF190 14c instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12B3FF300 11a void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12DFA4ED0 18 stub<12387> AllocateTemporaryEntryPoints +00007FA12DFA4EE8 a8 stub<12388> AllocateTemporaryEntryPoints +00007FA12DFA4F90 18 stub<12389> AllocateTemporaryEntryPoints +00007FA12B3FF440 2ef instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12B3FF750 8d instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DFA4FA8 18 stub<12390> AllocateTemporaryEntryPoints +00007FA12DFA4FC0 18 stub<12391> AllocateTemporaryEntryPoints +00007FA12B3FF800 215 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12B3FFA40 1c instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]]::get_Formatter()[QuickJitted] +00007FA12B3FFA70 35 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]]::get_State()[QuickJitted] +00007FA12B3FFAC0 1c instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]]::get_Exception()[QuickJitted] +00007FA12B3FFAF0 23 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4+<>c[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::<.cctor>b__16_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`4,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12B3FFB30 48 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::ToString()[QuickJitted] +00007FA12B3FFB90 112 instance object[] [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]::ToArray()[QuickJitted] +00007FA12B3FFCC0 1b instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]]::get_LogLevel()[QuickJitted] +00007FA12B3FFCF0 30c instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12B400030 33 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]]::get_EventId()[QuickJitted] +00007FA12B400080 1b instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.Guid,System.DateTimeOffset,System.DateTimeOffset,System.DateTimeOffset]]::get_Category()[QuickJitted] +00007FA12DFA4FD8 18 stub<12392> AllocateTemporaryEntryPoints +00007FA12B4000B0 220 instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DFA6000 18 stub<12393> AllocateTemporaryEntryPoints +00007FA12B4002F0 587 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DFA6018 60 stub<12394> AllocateTemporaryEntryPoints +00007FA12DFA6078 30 stub<12395> AllocateTemporaryEntryPoints +00007FA12DFA60A8 120 stub<12396> AllocateTemporaryEntryPoints +00007FA12DFA61C8 18 stub<12397> AllocateTemporaryEntryPoints +00007FA12DFA61E0 48 stub<12398> AllocateTemporaryEntryPoints +00007FA12DFA6228 168 stub<12399> AllocateTemporaryEntryPoints +00007FA12DFA6390 d8 stub<12400> AllocateTemporaryEntryPoints +00007FA12842E000 630 stub<12401> AllocateTemporaryEntryPoints +00007FA12DFA6468 600 stub<12402> AllocateTemporaryEntryPoints +00007FA12842E630 618 stub<12403> AllocateTemporaryEntryPoints +00007FA12DFA8000 6a8 stub<12404> AllocateTemporaryEntryPoints +00007FA12DFA86A8 5d0 stub<12405> AllocateTemporaryEntryPoints +00007FA12842EC48 300 stub<12406> AllocateTemporaryEntryPoints +00007FA12DFD0000 300 stub<12407> AllocateTemporaryEntryPoints +00007FA12DFD0300 300 stub<12408> AllocateTemporaryEntryPoints +00007FA12DFD0600 300 stub<12409> AllocateTemporaryEntryPoints +00007FA12DFD0900 300 stub<12410> AllocateTemporaryEntryPoints +00007FA12DFD0C00 258 stub<12411> AllocateTemporaryEntryPoints +00007FA12DFAA6A8 6f0 stub<12412> AllocateTemporaryEntryPoints +00007FA12DFAAD98 18 stub<12413> AllocateTemporaryEntryPoints +00007FA12DFAADB0 48 stub<12414> AllocateTemporaryEntryPoints +00007FA12DFAADF8 48 stub<12415> AllocateTemporaryEntryPoints +00007FA12DFAAE40 30 stub<12416> AllocateTemporaryEntryPoints +00007FA12DFAAE70 18 stub<12417> AllocateTemporaryEntryPoints +00007FA12DFAAE88 30 stub<12418> AllocateTemporaryEntryPoints +00007FA12DFAAEB8 90 stub<12419> AllocateTemporaryEntryPoints +00007FA12DFAC000 108 stub<12420> AllocateTemporaryEntryPoints +00007FA12DFAC108 108 stub<12421> AllocateTemporaryEntryPoints +00007FA12DFAC210 18 stub<12422> AllocateTemporaryEntryPoints +00007FA12DFAC228 30 stub<12423> AllocateTemporaryEntryPoints +00007FA12DFAC258 48 stub<12424> AllocateTemporaryEntryPoints +00007FA12DFAC2A0 1c8 stub<12425> AllocateTemporaryEntryPoints +00007FA12DFAC468 18 stub<12426> AllocateTemporaryEntryPoints +00007FA12DFAC480 48 stub<12427> AllocateTemporaryEntryPoints +00007FA12DFAC4C8 48 stub<12428> AllocateTemporaryEntryPoints +00007FA12DFAC510 30 stub<12429> AllocateTemporaryEntryPoints +00007FA12DFAC540 30 stub<12430> AllocateTemporaryEntryPoints +00007FA12DFAC570 90 stub<12431> AllocateTemporaryEntryPoints +00007FA12DFAC600 90 stub<12432> AllocateTemporaryEntryPoints +00007FA12DFAC690 60 stub<12433> AllocateTemporaryEntryPoints +00007FA12DFAC6F0 7f8 stub<12434> AllocateTemporaryEntryPoints +00007FA12DFAE000 438 stub<12435> AllocateTemporaryEntryPoints +00007FA12DFAE438 210 stub<12436> AllocateTemporaryEntryPoints +00007FA12DFAE660 30 stub<12437> AllocateTemporaryEntryPoints +00007FA12DFAE690 2a0 stub<12438> AllocateTemporaryEntryPoints +00007FA12DFAE930 1b0 stub<12439> AllocateTemporaryEntryPoints +00007FA12DFAEAE0 120 stub<12440> AllocateTemporaryEntryPoints +00007FA12DFAEC00 1b0 stub<12441> AllocateTemporaryEntryPoints +00007FA12DFE0000 450 stub<12442> AllocateTemporaryEntryPoints +00007FA12DFE0450 198 stub<12443> AllocateTemporaryEntryPoints +00007FA12DFE0600 30 stub<12444> AllocateTemporaryEntryPoints +00007FA12DFE0630 18 stub<12445> AllocateTemporaryEntryPoints +00007FA12DFE0648 18 stub<12446> AllocateTemporaryEntryPoints +00007FA12DFE0660 60 stub<12447> AllocateTemporaryEntryPoints +00007FA12DFE06C0 48 stub<12448> AllocateTemporaryEntryPoints +00007FA12DFE0708 18 stub<12449> AllocateTemporaryEntryPoints +00007FA12DFE0720 18 stub<12450> AllocateTemporaryEntryPoints +00007FA12DFE0738 18 stub<12451> AllocateTemporaryEntryPoints +00007FA12DFE0750 2e8 stub<12452> AllocateTemporaryEntryPoints +00007FA12DFE0A38 60 stub<12453> AllocateTemporaryEntryPoints +00007FA12DFE0A98 18 stub<12454> AllocateTemporaryEntryPoints +00007FA12DFE0AB0 60 stub<12455> AllocateTemporaryEntryPoints +00007FA12DFE0B10 168 stub<12456> AllocateTemporaryEntryPoints +00007FA12DFE0C78 120 stub<12457> AllocateTemporaryEntryPoints +00007FA12DFE0D98 120 stub<12458> AllocateTemporaryEntryPoints +00007FA12DFE0EB8 60 stub<12459> AllocateTemporaryEntryPoints +00007FA12DFE0F18 18 stub<12460> AllocateTemporaryEntryPoints +00007FA12DFE0F30 18 stub<12461> AllocateTemporaryEntryPoints +00007FA12B4010B0 117 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass10_0`1[System.Guid]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12B4011F0 3e instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]::.ctor(class Microsoft.Extensions.Logging.LogValuesFormatter,!0)[QuickJitted] +00007FA12DFE0F48 18 stub<12462> AllocateTemporaryEntryPoints +00007FA12DFE0F60 18 stub<12463> AllocateTemporaryEntryPoints +00007FA12DFE0F78 48 stub<12464> AllocateTemporaryEntryPoints +00007FA12DFE2000 48 stub<12465> AllocateTemporaryEntryPoints +00007FA12DFE2048 60 stub<12466> AllocateTemporaryEntryPoints +00007FA12B401250 7e void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]::.cctor()[QuickJitted] +00007FA12B4012F0 47 void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`1+<>c[System.Guid]::.cctor()[QuickJitted] +00007FA12B401350 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`1+<>c[System.Guid]::.ctor()[QuickJitted] +00007FA12DFE20A8 18 stub<12467> AllocateTemporaryEntryPoints +00007FA12B401390 61 instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12DFCBCC0 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12B401410 93 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DFE20C0 18 stub<12468> AllocateTemporaryEntryPoints +00007FA12DFE20D8 18 stub<12469> AllocateTemporaryEntryPoints +00007FA12B4014C0 14c instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12B401630 10a void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12DFE20F0 18 stub<12470> AllocateTemporaryEntryPoints +00007FA12DFE2108 a8 stub<12471> AllocateTemporaryEntryPoints +00007FA12DFE21B0 18 stub<12472> AllocateTemporaryEntryPoints +00007FA12B401760 2d0 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12B401A50 89 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DFE21C8 18 stub<12473> AllocateTemporaryEntryPoints +00007FA12DFE21E0 18 stub<12474> AllocateTemporaryEntryPoints +00007FA12B401AF0 211 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12B401D30 1c instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]]::get_Formatter()[QuickJitted] +00007FA12B401D60 31 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]]::get_State()[QuickJitted] +00007FA12B401DB0 1c instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]]::get_Exception()[QuickJitted] +00007FA12B401DE0 23 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`1+<>c[System.Guid]::<.cctor>b__12_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`1,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12B401E20 5c instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]::ToString()[QuickJitted] +00007FA12B401E90 1b instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]]::get_LogLevel()[QuickJitted] +00007FA12B401EC0 30c instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12B402200 33 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]]::get_EventId()[QuickJitted] +00007FA12B402250 1b instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.Guid]]::get_Category()[QuickJitted] +00007FA12DFE21F8 18 stub<12475> AllocateTemporaryEntryPoints +00007FA12B402280 21c instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DFE2210 18 stub<12476> AllocateTemporaryEntryPoints +00007FA12B4024C0 57f instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12DFE2228 48 stub<12477> AllocateTemporaryEntryPoints +00007FA12DFE2270 18 stub<12478> AllocateTemporaryEntryPoints +00007FA1277C7500 20 stub<12479> GenerateDispatchStub +00007FA12DFE2288 5e8 stub<12480> AllocateTemporaryEntryPoints +00007FA12DFE2870 210 stub<12481> AllocateTemporaryEntryPoints +00007FA12DFE2A80 2e8 stub<12482> AllocateTemporaryEntryPoints +00007FA12DFE4000 a20 stub<12483> AllocateTemporaryEntryPoints +00007FA12DFE6000 6c0 stub<12484> AllocateTemporaryEntryPoints +00007FA12DFE8000 9a8 stub<12485> AllocateTemporaryEntryPoints +00007FA12DFE89A8 f0 stub<12486> AllocateTemporaryEntryPoints +00007FA12DFE8A98 240 stub<12487> AllocateTemporaryEntryPoints +00007FA12DFE8CD8 f0 stub<12488> AllocateTemporaryEntryPoints +00007FA12DFEA000 9a8 stub<12489> AllocateTemporaryEntryPoints +00007FA12DFEA9A8 90 stub<12490> AllocateTemporaryEntryPoints +00007FA12DFEAA38 228 stub<12491> AllocateTemporaryEntryPoints +00007FA12DFEAC60 d8 stub<12492> AllocateTemporaryEntryPoints +00007FA12DFEAD38 240 stub<12493> AllocateTemporaryEntryPoints +00007FA12DFEC000 228 stub<12494> AllocateTemporaryEntryPoints +00007FA12DFEC228 498 stub<12495> AllocateTemporaryEntryPoints +00007FA12DFEC6C0 480 stub<12496> AllocateTemporaryEntryPoints +00007FA12DFECB40 2e8 stub<12497> AllocateTemporaryEntryPoints +00007FA12DFEE000 768 stub<12498> AllocateTemporaryEntryPoints +00007FA12DFEE768 30 stub<12499> AllocateTemporaryEntryPoints +00007FA12DFEE798 498 stub<12500> AllocateTemporaryEntryPoints +00007FA12E000000 9c0 stub<12501> AllocateTemporaryEntryPoints +00007FA12E0009C0 168 stub<12502> AllocateTemporaryEntryPoints +00007FA12E000B28 c0 stub<12503> AllocateTemporaryEntryPoints +00007FA12E000BE8 a8 stub<12504> AllocateTemporaryEntryPoints +00007FA12E000C90 240 stub<12505> AllocateTemporaryEntryPoints +00007FA12E000ED0 60 stub<12506> AllocateTemporaryEntryPoints +00007FA12E000F30 30 stub<12507> AllocateTemporaryEntryPoints +00007FA12E002000 360 stub<12508> AllocateTemporaryEntryPoints +00007FA12E002360 1e0 stub<12509> AllocateTemporaryEntryPoints +00007FA12E002540 120 stub<12510> AllocateTemporaryEntryPoints +00007FA12E002660 378 stub<12511> AllocateTemporaryEntryPoints +00007FA12E0029D8 18 stub<12512> AllocateTemporaryEntryPoints +00007FA12E0029F0 150 stub<12513> AllocateTemporaryEntryPoints +00007FA12E002B40 18 stub<12514> AllocateTemporaryEntryPoints +00007FA12E002B58 168 stub<12515> AllocateTemporaryEntryPoints +00007FA12E002CC0 18 stub<12516> AllocateTemporaryEntryPoints +00007FA12E002CD8 180 stub<12517> AllocateTemporaryEntryPoints +00007FA12E002E58 18 stub<12518> AllocateTemporaryEntryPoints +00007FA12E002E70 78 stub<12519> AllocateTemporaryEntryPoints +00007FA12E004000 7f8 stub<12520> AllocateTemporaryEntryPoints +00007FA12E0047F8 7f8 stub<12521> AllocateTemporaryEntryPoints +00007FA12E006000 6f0 stub<12522> AllocateTemporaryEntryPoints +00007FA12E0066F0 7f8 stub<12523> AllocateTemporaryEntryPoints +00007FA12E008000 7f8 stub<12524> AllocateTemporaryEntryPoints +00007FA12E0087F8 7f8 stub<12525> AllocateTemporaryEntryPoints +00007FA12E00A000 7f8 stub<12526> AllocateTemporaryEntryPoints +00007FA12E00A7F8 510 stub<12527> AllocateTemporaryEntryPoints +00007FA12E00AD08 18 stub<12528> AllocateTemporaryEntryPoints +00007FA12E00AD20 18 stub<12529> AllocateTemporaryEntryPoints +00007FA12E00AD38 18 stub<12530> AllocateTemporaryEntryPoints +00007FA12B402A60 148 int32 [System.Private.CoreLib] System.SpanHelpers::SequenceCompareTo(uint8&,int32,uint8&,int32)[OptimizedTier1] +00007FA12E00AD50 60 stub<12531> AllocateTemporaryEntryPoints +00007FA12E00ADB0 48 stub<12532> AllocateTemporaryEntryPoints +00007FA12E00ADF8 90 stub<12533> AllocateTemporaryEntryPoints +00007FA12E00C000 360 stub<12534> AllocateTemporaryEntryPoints +00007FA12E00C360 30 stub<12535> AllocateTemporaryEntryPoints +00007FA12E00C3A8 60 stub<12536> AllocateTemporaryEntryPoints +00007FA12E00C408 5e8 stub<12537> AllocateTemporaryEntryPoints +00007FA12E00C9F0 c0 stub<12538> AllocateTemporaryEntryPoints +00007FA12E00CAB0 90 stub<12539> AllocateTemporaryEntryPoints +00007FA12E00CB40 a8 stub<12540> AllocateTemporaryEntryPoints +00007FA12E00CBE8 18 stub<12541> AllocateTemporaryEntryPoints +00007FA12E00CC00 78 stub<12542> AllocateTemporaryEntryPoints +00007FA12E00CC78 18 stub<12543> AllocateTemporaryEntryPoints +00007FA12E00CC90 120 stub<12544> AllocateTemporaryEntryPoints +00007FA12E00CDB0 60 stub<12545> AllocateTemporaryEntryPoints +00007FA12E00CE10 60 stub<12546> AllocateTemporaryEntryPoints +00007FA12E00CE70 c0 stub<12547> AllocateTemporaryEntryPoints +00007FA12E00CF30 60 stub<12548> AllocateTemporaryEntryPoints +00007FA12E00E000 90 stub<12549> AllocateTemporaryEntryPoints +00007FA12E00E090 48 stub<12550> AllocateTemporaryEntryPoints +00007FA12E00E0D8 60 stub<12551> AllocateTemporaryEntryPoints +00007FA12E00E138 60 stub<12552> AllocateTemporaryEntryPoints +00007FA12E00E198 60 stub<12553> AllocateTemporaryEntryPoints +00007FA12E00E1F8 48 stub<12554> AllocateTemporaryEntryPoints +00007FA12E00E240 60 stub<12555> AllocateTemporaryEntryPoints +00007FA12E00E2A0 78 stub<12556> AllocateTemporaryEntryPoints +00007FA12E00E318 60 stub<12557> AllocateTemporaryEntryPoints +00007FA12E00E378 30 stub<12558> AllocateTemporaryEntryPoints +00007FA12E00E3A8 60 stub<12559> AllocateTemporaryEntryPoints +00007FA12E00E408 78 stub<12560> AllocateTemporaryEntryPoints +00007FA12E00E480 120 stub<12561> AllocateTemporaryEntryPoints +00007FA12E00E5A0 18 stub<12562> AllocateTemporaryEntryPoints +00007FA12784B5A0 11 stub<12563> GenerateVTableCallStub +00007FA12784B5C0 11 stub<12564> GenerateVTableCallStub +00007FA12E00E678 18 stub<12565> AllocateTemporaryEntryPoints +00007FA12784B5E0 11 stub<12566> GenerateVTableCallStub +00007FA12784B600 11 stub<12567> GenerateVTableCallStub +00007FA1277FE4F0 18 stub<12568> GenerateResolveStub +00007FA1277C7520 20 stub<12569> GenerateDispatchStub +00007FA1277FE560 18 stub<12570> GenerateResolveStub +00007FA1277C7540 20 stub<12571> GenerateDispatchStub +00007FA1277FE5D0 18 stub<12572> GenerateResolveStub +00007FA1277C7560 20 stub<12573> GenerateDispatchStub +00007FA1277C7580 20 stub<12574> GenerateDispatchStub +00007FA1277FE640 18 stub<12575> GenerateResolveStub +00007FA1277C75A0 20 stub<12576> GenerateDispatchStub +00007FA12E00E690 5b8 stub<12577> AllocateTemporaryEntryPoints +00007FA12E020000 b28 stub<12578> AllocateTemporaryEntryPoints +00007FA12E020B28 450 stub<12579> AllocateTemporaryEntryPoints +00007FA12E020F78 60 stub<12580> AllocateTemporaryEntryPoints +00007FA12E022000 30 stub<12581> AllocateTemporaryEntryPoints +00007FA12E022030 18 stub<12582> AllocateTemporaryEntryPoints +00007FA12E022048 948 stub<12583> AllocateTemporaryEntryPoints +00007FA12E024000 7f8 stub<12584> AllocateTemporaryEntryPoints +00007FA12E0247F8 7f8 stub<12585> AllocateTemporaryEntryPoints +00007FA12E026000 840 stub<12586> AllocateTemporaryEntryPoints +00007FA12E026840 600 stub<12587> AllocateTemporaryEntryPoints +00007FA12E026E40 18 stub<12588> AllocateTemporaryEntryPoints +00007FA12E026E58 78 stub<12589> AllocateTemporaryEntryPoints +00007FA12E026ED0 d8 stub<12590> AllocateTemporaryEntryPoints +00007FA12E028000 168 stub<12591> AllocateTemporaryEntryPoints +00007FA12E028168 30 stub<12592> AllocateTemporaryEntryPoints +00007FA12E028198 2b8 stub<12593> AllocateTemporaryEntryPoints +00007FA12E028450 2a0 stub<12594> AllocateTemporaryEntryPoints +00007FA12E0286F0 18 stub<12595> AllocateTemporaryEntryPoints +00007FA12E028708 540 stub<12596> AllocateTemporaryEntryPoints +00007FA12E028C48 18 stub<12597> AllocateTemporaryEntryPoints +00007FA12E028C60 18 stub<12598> AllocateTemporaryEntryPoints +00007FA12E028C78 60 stub<12599> AllocateTemporaryEntryPoints +00007FA12E028CD8 18 stub<12600> AllocateTemporaryEntryPoints +00007FA12E028CF0 1b0 stub<12601> AllocateTemporaryEntryPoints +00007FA12E028EA0 60 stub<12602> AllocateTemporaryEntryPoints +00007FA12E028F00 60 stub<12603> AllocateTemporaryEntryPoints +00007FA12E028F60 60 stub<12604> AllocateTemporaryEntryPoints +00007FA12E02A000 60 stub<12605> AllocateTemporaryEntryPoints +00007FA12E02A060 90 stub<12606> AllocateTemporaryEntryPoints +00007FA12E02A0F0 78 stub<12607> AllocateTemporaryEntryPoints +00007FA12E02A168 60 stub<12608> AllocateTemporaryEntryPoints +00007FA12E02A1C8 18 stub<12609> AllocateTemporaryEntryPoints +00007FA12E02A1E0 18 stub<12610> AllocateTemporaryEntryPoints +00007FA12E02A1F8 18 stub<12611> AllocateTemporaryEntryPoints +00007FA12E02A210 198 stub<12612> AllocateTemporaryEntryPoints +00007FA12E02A3A8 a8 stub<12613> AllocateTemporaryEntryPoints +00007FA12E02A450 90 stub<12614> AllocateTemporaryEntryPoints +00007FA12784B620 e stub<12615> GenerateVTableCallStub +00007FA12E02A4E0 18 stub<12616> AllocateTemporaryEntryPoints +00007FA12E02A4F8 18 stub<12617> AllocateTemporaryEntryPoints +00007FA12784B630 11 stub<12618> GenerateVTableCallStub +00007FA12E02A510 18 stub<12619> AllocateTemporaryEntryPoints +00007FA12E02A528 18 stub<12620> AllocateTemporaryEntryPoints +00007FA12B402FE0 c4 int32 [System.Private.CoreLib] System.SpanHelpers::SequenceCompareTo(char&,int32,char&,int32)[OptimizedTier1] +00007FA12784B650 e stub<12621> GenerateVTableCallStub +00007FA12784B660 e stub<12622> GenerateVTableCallStub +00007FA12E02A540 18 stub<12623> AllocateTemporaryEntryPoints +00007FA12E02A558 90 stub<12624> AllocateTemporaryEntryPoints +00007FA12E02A5E8 a8 stub<12625> AllocateTemporaryEntryPoints +00007FA12E02A690 150 stub<12626> AllocateTemporaryEntryPoints +00007FA12784B670 11 stub<12627> GenerateVTableCallStub +00007FA12E02A7F8 7f8 stub<12628> AllocateTemporaryEntryPoints +00007FA12784B690 11 stub<12629> GenerateVTableCallStub +00007FA1277C2200 18 stub<12630> GenerateLookupStub +00007FA1277FE6B0 18 stub<12631> GenerateResolveStub +00007FA1277C75C0 20 stub<12632> GenerateDispatchStub +00007FA12E02C000 30 stub<12633> AllocateTemporaryEntryPoints +00007FA12E02C030 108 stub<12634> AllocateTemporaryEntryPoints +00007FA12E02C138 30 stub<12635> AllocateTemporaryEntryPoints +00007FA12E02C168 c0 stub<12636> AllocateTemporaryEntryPoints +00007FA12E02C228 198 stub<12637> AllocateTemporaryEntryPoints +00007FA1277C75E0 20 stub<12638> GenerateDispatchStub +00007FA12E02C3D8 60 stub<12639> AllocateTemporaryEntryPoints +00007FA1277FE720 18 stub<12640> GenerateResolveStub +00007FA1277C7600 20 stub<12641> GenerateDispatchStub +00007FA1277C2220 18 stub<12642> GenerateLookupStub +00007FA1277FE790 18 stub<12643> GenerateResolveStub +00007FA1277C7620 20 stub<12644> GenerateDispatchStub +00007FA1277FE800 18 stub<12645> GenerateResolveStub +00007FA1277C7640 20 stub<12646> GenerateDispatchStub +00007FA1277C2240 18 stub<12647> GenerateLookupStub +00007FA1277FE870 18 stub<12648> GenerateResolveStub +00007FA1277C7660 20 stub<12649> GenerateDispatchStub +00007FA12B4030C0 4f instance void [System.Linq] System.Linq.CachingComparerWithChild`2[System.__Canon,System.DateTimeOffset]::SetElement(!0)[QuickJitted] +00007FA12E02C438 60 stub<12650> AllocateTemporaryEntryPoints +00007FA12B403130 56 instance void [System.Linq] System.Linq.CachingComparer`2[System.__Canon,System.DateTimeOffset]::SetElement(!0)[QuickJitted] +00007FA1277FE8E0 18 stub<12651> GenerateResolveStub +00007FA1277C7680 20 stub<12652> GenerateDispatchStub +00007FA12B4031A0 56 instance void [System.Linq] System.Linq.CachingComparer`2[System.__Canon,System.Guid]::SetElement(!0)[QuickJitted] +00007FA1277FE950 18 stub<12653> GenerateResolveStub +00007FA1277C76A0 20 stub<12654> GenerateDispatchStub +00007FA1277FE9C0 18 stub<12655> GenerateResolveStub +00007FA1277C76C0 20 stub<12656> GenerateDispatchStub +00007FA12E02C498 30 stub<12657> AllocateTemporaryEntryPoints +00007FA12E02C4C8 18 stub<12658> AllocateTemporaryEntryPoints +00007FA12E02C510 18 stub<12659> AllocateTemporaryEntryPoints +00007FA12E02C528 18 stub<12660> AllocateTemporaryEntryPoints +00007FA12E02C540 c0 stub<12661> AllocateTemporaryEntryPoints +00007FA12E02C600 18 stub<12662> AllocateTemporaryEntryPoints +00007FA12E02C618 18 stub<12663> AllocateTemporaryEntryPoints +00007FA12E02C630 18 stub<12664> AllocateTemporaryEntryPoints +00007FA12E02C648 18 stub<12665> AllocateTemporaryEntryPoints +00007FA12E02C660 18 stub<12666> AllocateTemporaryEntryPoints +00007FA12E02C678 c0 stub<12667> AllocateTemporaryEntryPoints +00007FA12E02C738 30 stub<12668> AllocateTemporaryEntryPoints +00007FA12E02C768 18 stub<12669> AllocateTemporaryEntryPoints +00007FA12E02C780 18 stub<12670> AllocateTemporaryEntryPoints +00007FA12E02C798 30 stub<12671> AllocateTemporaryEntryPoints +00007FA12E02C7C8 18 stub<12672> AllocateTemporaryEntryPoints +00007FA12E02C7E0 30 stub<12673> AllocateTemporaryEntryPoints +00007FA12E02C810 18 stub<12674> AllocateTemporaryEntryPoints +00007FA12E02C828 18 stub<12675> AllocateTemporaryEntryPoints +00007FA12E02C840 30 stub<12676> AllocateTemporaryEntryPoints +00007FA12E02C870 18 stub<12677> AllocateTemporaryEntryPoints +00007FA12E02C888 2e8 stub<12678> AllocateTemporaryEntryPoints +00007FA12E02CB70 138 stub<12679> AllocateTemporaryEntryPoints +00007FA12E02CCA8 48 stub<12680> AllocateTemporaryEntryPoints +00007FA12E02CCF0 18 stub<12681> AllocateTemporaryEntryPoints +00007FA12E02CD08 18 stub<12682> AllocateTemporaryEntryPoints +00007FA12E02CD20 60 stub<12683> AllocateTemporaryEntryPoints +00007FA12E02CD80 18 stub<12684> AllocateTemporaryEntryPoints +00007FA12B403620 14c instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E02CD98 30 stub<12685> AllocateTemporaryEntryPoints +00007FA1277C76E0 20 stub<12686> GenerateDispatchStub +00007FA1277C7700 20 stub<12687> GenerateDispatchStub +00007FA12E02CDC8 48 stub<12688> AllocateTemporaryEntryPoints +00007FA12E02E000 270 stub<12689> AllocateTemporaryEntryPoints +00007FA12E02E270 60 stub<12690> AllocateTemporaryEntryPoints +00007FA1277FEA30 18 stub<12691> GenerateResolveStub +00007FA1277C7720 20 stub<12692> GenerateDispatchStub +00007FA12E02E2D0 60 stub<12693> AllocateTemporaryEntryPoints +00007FA12E02E330 60 stub<12694> AllocateTemporaryEntryPoints +00007FA12E02E390 18 stub<12695> AllocateTemporaryEntryPoints +00007FA12E02E3A8 90 stub<12696> AllocateTemporaryEntryPoints +00007FA12E02E438 150 stub<12697> AllocateTemporaryEntryPoints +00007FA12E02E588 108 stub<12698> AllocateTemporaryEntryPoints +00007FA12E02E690 630 stub<12699> AllocateTemporaryEntryPoints +00007FA12E02ECC0 60 stub<12700> AllocateTemporaryEntryPoints +00007FA12E02ED20 90 stub<12701> AllocateTemporaryEntryPoints +00007FA12E040000 288 stub<12702> AllocateTemporaryEntryPoints +00007FA12E040288 90 stub<12703> AllocateTemporaryEntryPoints +00007FA12E040318 168 stub<12704> AllocateTemporaryEntryPoints +00007FA12E040480 1e0 stub<12705> AllocateTemporaryEntryPoints +00007FA12E040660 210 stub<12706> AllocateTemporaryEntryPoints +00007FA12E040870 c0 stub<12707> AllocateTemporaryEntryPoints +00007FA12E040930 18 stub<12708> AllocateTemporaryEntryPoints +00007FA12E040948 18 stub<12709> AllocateTemporaryEntryPoints +00007FA12E040960 18 stub<12710> AllocateTemporaryEntryPoints +00007FA12E040978 18 stub<12711> AllocateTemporaryEntryPoints +00007FA12E040990 60 stub<12712> AllocateTemporaryEntryPoints +00007FA12E0409F0 1c8 stub<12713> AllocateTemporaryEntryPoints +00007FA12E040BB8 a8 stub<12714> AllocateTemporaryEntryPoints +00007FA12E040C60 18 stub<12715> AllocateTemporaryEntryPoints +00007FA12E040C78 180 stub<12716> AllocateTemporaryEntryPoints +00007FA12E040DF8 108 stub<12717> AllocateTemporaryEntryPoints +00007FA12E040F00 48 stub<12718> AllocateTemporaryEntryPoints +00007FA12E042000 120 stub<12719> AllocateTemporaryEntryPoints +00007FA12E042120 a8 stub<12720> AllocateTemporaryEntryPoints +00007FA12E0421C8 48 stub<12721> AllocateTemporaryEntryPoints +00007FA12E042210 240 stub<12722> AllocateTemporaryEntryPoints +00007FA12E042450 18 stub<12723> AllocateTemporaryEntryPoints +00007FA12E042468 108 stub<12724> AllocateTemporaryEntryPoints +00007FA12E042570 a8 stub<12725> AllocateTemporaryEntryPoints +00007FA12E042618 120 stub<12726> AllocateTemporaryEntryPoints +00007FA12E042738 a8 stub<12727> AllocateTemporaryEntryPoints +00007FA12E0427E0 60 stub<12728> AllocateTemporaryEntryPoints +00007FA12E042840 48 stub<12729> AllocateTemporaryEntryPoints +00007FA12E042888 30 stub<12730> AllocateTemporaryEntryPoints +00007FA12E0428B8 270 stub<12731> AllocateTemporaryEntryPoints +00007FA12E042B28 2b8 stub<12732> AllocateTemporaryEntryPoints +00007FA12E042DE0 d8 stub<12733> AllocateTemporaryEntryPoints +00007FA12E042EB8 d8 stub<12734> AllocateTemporaryEntryPoints +00007FA12E042F90 18 stub<12735> AllocateTemporaryEntryPoints +00007FA12B403B90 27 !0& [System.Private.CoreLib] System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2+ManagedToUnmanagedIn[System.Byte,System.Byte]::GetPinnableReference(valuetype System.ReadOnlySpan`1)[QuickJitted] +00007FA12E044000 108 stub<12736> AllocateTemporaryEntryPoints +00007FA12E044108 60 stub<12737> AllocateTemporaryEntryPoints +00007FA12E044168 78 stub<12738> AllocateTemporaryEntryPoints +00007FA12E0441E0 d8 stub<12739> AllocateTemporaryEntryPoints +00007FA12E0442B8 78 stub<12740> AllocateTemporaryEntryPoints +00007FA12E044330 48 stub<12741> AllocateTemporaryEntryPoints +00007FA12E044378 1c8 stub<12742> AllocateTemporaryEntryPoints +00007FA12E044540 60 stub<12743> AllocateTemporaryEntryPoints +00007FA12E0445A0 90 stub<12744> AllocateTemporaryEntryPoints +00007FA12E044630 60 stub<12745> AllocateTemporaryEntryPoints +00007FA12E044690 18 stub<12746> AllocateTemporaryEntryPoints +00007FA12E0446A8 18 stub<12747> AllocateTemporaryEntryPoints +00007FA1277FEAA0 18 stub<12748> GenerateResolveStub +00007FA1277C7740 20 stub<12749> GenerateDispatchStub +00007FA12E0446D8 48 stub<12750> AllocateTemporaryEntryPoints +00007FA12E044720 60 stub<12751> AllocateTemporaryEntryPoints +00007FA12E044780 150 stub<12752> AllocateTemporaryEntryPoints +00007FA12E0448D0 30 stub<12753> AllocateTemporaryEntryPoints +00007FA12E044900 60 stub<12754> AllocateTemporaryEntryPoints +00007FA12E044960 d8 stub<12755> AllocateTemporaryEntryPoints +00007FA12E044A38 30 stub<12756> AllocateTemporaryEntryPoints +00007FA12E044A68 18 stub<12757> AllocateTemporaryEntryPoints +00007FA12E044A80 a8 stub<12758> AllocateTemporaryEntryPoints +00007FA12E044B28 90 stub<12759> AllocateTemporaryEntryPoints +00007FA12E044BB8 60 stub<12760> AllocateTemporaryEntryPoints +00007FA12E044C18 18 stub<12761> AllocateTemporaryEntryPoints +00007FA12E044C30 18 stub<12762> AllocateTemporaryEntryPoints +00007FA12B403BD0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B403C10 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E044C48 18 stub<12763> AllocateTemporaryEntryPoints +00007FA12E044C60 48 stub<12764> AllocateTemporaryEntryPoints +00007FA12E044CA8 60 stub<12765> AllocateTemporaryEntryPoints +00007FA12E044D08 180 stub<12766> AllocateTemporaryEntryPoints +00007FA12E044E88 48 stub<12767> AllocateTemporaryEntryPoints +00007FA12E046000 180 stub<12768> AllocateTemporaryEntryPoints +00007FA12E046180 168 stub<12769> AllocateTemporaryEntryPoints +00007FA12E0462E8 300 stub<12770> AllocateTemporaryEntryPoints +00007FA12E0465E8 18 stub<12771> AllocateTemporaryEntryPoints +00007FA12E046600 18 stub<12772> AllocateTemporaryEntryPoints +00007FA12E046618 18 stub<12773> AllocateTemporaryEntryPoints +00007FA12E046630 18 stub<12774> AllocateTemporaryEntryPoints +00007FA1277FEB10 18 stub<12775> GenerateResolveStub +00007FA1277C7760 20 stub<12776> GenerateDispatchStub +00007FA1277FEB80 18 stub<12777> GenerateResolveStub +00007FA1277C7780 20 stub<12778> GenerateDispatchStub +00007FA12E046648 120 stub<12779> AllocateTemporaryEntryPoints +00007FA12E046768 18 stub<12780> AllocateTemporaryEntryPoints +00007FA12E046780 18 stub<12781> AllocateTemporaryEntryPoints +00007FA12E046798 18 stub<12782> AllocateTemporaryEntryPoints +00007FA12E0467B0 60 stub<12783> AllocateTemporaryEntryPoints +00007FA12E046810 108 stub<12784> AllocateTemporaryEntryPoints +00007FA12E046918 a8 stub<12785> AllocateTemporaryEntryPoints +00007FA12E0469C0 a8 stub<12786> AllocateTemporaryEntryPoints +00007FA12E046A68 18 stub<12787> AllocateTemporaryEntryPoints +00007FA12E046A80 18 stub<12788> AllocateTemporaryEntryPoints +00007FA12E046A98 48 stub<12789> AllocateTemporaryEntryPoints +00007FA12E046AE0 18 stub<12790> AllocateTemporaryEntryPoints +00007FA1277C2260 18 stub<12791> GenerateLookupStub +00007FA1277FEBF0 18 stub<12792> GenerateResolveStub +00007FA1277C77A0 20 stub<12793> GenerateDispatchStub +00007FA1277C2280 18 stub<12794> GenerateLookupStub +00007FA1277FEC60 18 stub<12795> GenerateResolveStub +00007FA1277C77C0 20 stub<12796> GenerateDispatchStub +00007FA12E046AF8 30 stub<12797> AllocateTemporaryEntryPoints +00007FA1277FECD0 18 stub<12798> GenerateResolveStub +00007FA1277C77E0 20 stub<12799> GenerateDispatchStub +00007FA12E046B28 30 stub<12800> AllocateTemporaryEntryPoints +00007FA12E046B58 30 stub<12801> AllocateTemporaryEntryPoints +00007FA12E046B88 18 stub<12802> AllocateTemporaryEntryPoints +00007FA12E046BA0 90 stub<12803> AllocateTemporaryEntryPoints +00007FA12E046C30 120 stub<12804> AllocateTemporaryEntryPoints +00007FA12E046D50 18 stub<12805> AllocateTemporaryEntryPoints +00007FA12E046D68 18 stub<12806> AllocateTemporaryEntryPoints +00007FA12E046D80 1c8 stub<12807> AllocateTemporaryEntryPoints +00007FA12E046F48 18 stub<12808> AllocateTemporaryEntryPoints +00007FA12E046F60 30 stub<12809> AllocateTemporaryEntryPoints +00007FA12E046F90 30 stub<12810> AllocateTemporaryEntryPoints +00007FA12E046FC0 18 stub<12811> AllocateTemporaryEntryPoints +00007FA12E046FD8 18 stub<12812> AllocateTemporaryEntryPoints +00007FA12E048000 18 stub<12813> AllocateTemporaryEntryPoints +00007FA1277FED40 18 stub<12814> GenerateResolveStub +00007FA1277C7800 20 stub<12815> GenerateDispatchStub +00007FA12E048018 1e0 stub<12816> AllocateTemporaryEntryPoints +00007FA12E0481F8 1e0 stub<12817> AllocateTemporaryEntryPoints +00007FA12E0483D8 c0 stub<12818> AllocateTemporaryEntryPoints +00007FA12E048498 90 stub<12819> AllocateTemporaryEntryPoints +00007FA12E048528 a8 stub<12820> AllocateTemporaryEntryPoints +00007FA12E0485D0 18 stub<12821> AllocateTemporaryEntryPoints +00007FA12E0485E8 30 stub<12822> AllocateTemporaryEntryPoints +00007FA12E048618 30 stub<12823> AllocateTemporaryEntryPoints +00007FA12E048648 18 stub<12824> AllocateTemporaryEntryPoints +00007FA12E048660 78 stub<12825> AllocateTemporaryEntryPoints +00007FA12E0486D8 18 stub<12826> AllocateTemporaryEntryPoints +00007FA12E0486F0 18 stub<12827> AllocateTemporaryEntryPoints +00007FA12E048708 48 stub<12828> AllocateTemporaryEntryPoints +00007FA12E048750 60 stub<12829> AllocateTemporaryEntryPoints +00007FA12E0487B0 30 stub<12830> AllocateTemporaryEntryPoints +00007FA12E0487E0 48 stub<12831> AllocateTemporaryEntryPoints +00007FA12E048828 30 stub<12832> AllocateTemporaryEntryPoints +00007FA12B403D10 119 instance void [Samples.BuggyBits] BuggyBits.Startup::Configure(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Builder.IApplicationBuilder,class [Microsoft.AspNetCore.Hosting.Abstractions]Microsoft.AspNetCore.Hosting.IWebHostEnvironment)[QuickJitted] +00007FA12E048858 330 stub<12833> AllocateTemporaryEntryPoints +00007FA12E048B88 a8 stub<12834> AllocateTemporaryEntryPoints +00007FA12E048C30 18 stub<12835> AllocateTemporaryEntryPoints +00007FA12E048C48 18 stub<12836> AllocateTemporaryEntryPoints +00007FA12E048C60 30 stub<12837> AllocateTemporaryEntryPoints +00007FA12E048C90 30 stub<12838> AllocateTemporaryEntryPoints +00007FA12E048CC0 18 stub<12839> AllocateTemporaryEntryPoints +00007FA12E048CD8 a8 stub<12840> AllocateTemporaryEntryPoints +00007FA12E048D80 18 stub<12841> AllocateTemporaryEntryPoints +00007FA12E048D98 18 stub<12842> AllocateTemporaryEntryPoints +00007FA12E048DB0 18 stub<12843> AllocateTemporaryEntryPoints +00007FA12E048DC8 30 stub<12844> AllocateTemporaryEntryPoints +00007FA1277FEDB0 18 stub<12845> GenerateResolveStub +00007FA1277C7820 20 stub<12846> GenerateDispatchStub +00007FA1277FEE20 18 stub<12847> GenerateResolveStub +00007FA1277C7840 20 stub<12848> GenerateDispatchStub +00007FA12E04A000 6f0 stub<12849> AllocateTemporaryEntryPoints +00007FA12E04A6F0 a8 stub<12850> AllocateTemporaryEntryPoints +00007FA12E04A798 60 stub<12851> AllocateTemporaryEntryPoints +00007FA12E04A7F8 18 stub<12852> AllocateTemporaryEntryPoints +00007FA12E04A810 18 stub<12853> AllocateTemporaryEntryPoints +00007FA12E04A828 78 stub<12854> AllocateTemporaryEntryPoints +00007FA12E04A8A0 18 stub<12855> AllocateTemporaryEntryPoints +00007FA12E04A8B8 18 stub<12856> AllocateTemporaryEntryPoints +00007FA12E04A8E8 a8 stub<12857> AllocateTemporaryEntryPoints +00007FA12E04A990 18 stub<12858> AllocateTemporaryEntryPoints +00007FA12E04A9A8 c0 stub<12859> AllocateTemporaryEntryPoints +00007FA12E04AA68 18 stub<12860> AllocateTemporaryEntryPoints +00007FA12E04AA80 90 stub<12861> AllocateTemporaryEntryPoints +00007FA12E04AB10 18 stub<12862> AllocateTemporaryEntryPoints +00007FA12E04AB28 18 stub<12863> AllocateTemporaryEntryPoints +00007FA12E04AB40 78 stub<12864> AllocateTemporaryEntryPoints +00007FA1277C7860 20 stub<12865> GenerateDispatchStub +00007FA1277C22A0 18 stub<12866> GenerateLookupStub +00007FA1277FEE90 18 stub<12867> GenerateResolveStub +00007FA1277C7880 20 stub<12868> GenerateDispatchStub +00007FA1277C22C0 18 stub<12869> GenerateLookupStub +00007FA1277FEF00 18 stub<12870> GenerateResolveStub +00007FA1277C78A0 20 stub<12871> GenerateDispatchStub +00007FA12E04ABB8 60 stub<12872> AllocateTemporaryEntryPoints +00007FA12E04AC18 18 stub<12873> AllocateTemporaryEntryPoints +00007FA12E04AC30 78 stub<12874> AllocateTemporaryEntryPoints +00007FA12E04ACA8 18 stub<12875> AllocateTemporaryEntryPoints +00007FA12E04ACC0 18 stub<12876> AllocateTemporaryEntryPoints +00007FA12E04ACD8 168 stub<12877> AllocateTemporaryEntryPoints +00007FA12E04AE40 78 stub<12878> AllocateTemporaryEntryPoints +00007FA12E04AEB8 30 stub<12879> AllocateTemporaryEntryPoints +00007FA12E04AEE8 48 stub<12880> AllocateTemporaryEntryPoints +00007FA12B404250 45 instance void [Samples.BuggyBits] BuggyBits.Startup+<>c::b__5_0(class [Microsoft.AspNetCore.Routing]Microsoft.AspNetCore.Routing.IEndpointRouteBuilder)[QuickJitted] +00007FA12E04C000 3f0 stub<12881> AllocateTemporaryEntryPoints +00007FA12E04C3F0 18 stub<12882> AllocateTemporaryEntryPoints +00007FA12E04C408 d8 stub<12883> AllocateTemporaryEntryPoints +00007FA12E04C4E0 c0 stub<12884> AllocateTemporaryEntryPoints +00007FA12E04C5A0 18 stub<12885> AllocateTemporaryEntryPoints +00007FA12E04C5B8 18 stub<12886> AllocateTemporaryEntryPoints +00007FA12E04C5D0 18 stub<12887> AllocateTemporaryEntryPoints +00007FA12E04C5E8 18 stub<12888> AllocateTemporaryEntryPoints +00007FA12E04C600 30 stub<12889> AllocateTemporaryEntryPoints +00007FA12E04C630 18 stub<12890> AllocateTemporaryEntryPoints +00007FA12E04C648 18 stub<12891> AllocateTemporaryEntryPoints +00007FA1277C22E0 18 stub<12892> GenerateLookupStub +00007FA1277FEF70 18 stub<12893> GenerateResolveStub +00007FA1277C78C0 20 stub<12894> GenerateDispatchStub +00007FA1277FEFE0 18 stub<12895> GenerateResolveStub +00007FA1277C78E0 20 stub<12896> GenerateDispatchStub +00007FA12E04C660 48 stub<12897> AllocateTemporaryEntryPoints +00007FA12E04C6A8 30 stub<12898> AllocateTemporaryEntryPoints +00007FA12E04C6D8 360 stub<12899> AllocateTemporaryEntryPoints +00007FA12E04CA38 60 stub<12900> AllocateTemporaryEntryPoints +00007FA12E04CA98 108 stub<12901> AllocateTemporaryEntryPoints +00007FA12E04CBA0 30 stub<12902> AllocateTemporaryEntryPoints +00007FA12E04CBD0 30 stub<12903> AllocateTemporaryEntryPoints +00007FA1286654F0 41 object [System.Private.CoreLib] dynamicClass::InvokeStub_MvcCoreMvcOptionsSetup..ctor(object,object,native int*)[Optimized] +00007FA12E04CC00 18 stub<12904> AllocateTemporaryEntryPoints +00007FA12E04CC18 60 stub<12905> AllocateTemporaryEntryPoints +00007FA1277FF050 18 stub<12906> GenerateResolveStub +00007FA1277C7900 20 stub<12907> GenerateDispatchStub +00007FA1277C2300 18 stub<12908> GenerateLookupStub +00007FA1277FF0C0 18 stub<12909> GenerateResolveStub +00007FA1277C7920 20 stub<12910> GenerateDispatchStub +00007FA12E04CC78 18 stub<12911> AllocateTemporaryEntryPoints +00007FA12E04CC90 18 stub<12912> AllocateTemporaryEntryPoints +00007FA12E04CCA8 120 stub<12913> AllocateTemporaryEntryPoints +00007FA12E04E000 240 stub<12914> AllocateTemporaryEntryPoints +00007FA12E04E240 a8 stub<12915> AllocateTemporaryEntryPoints +00007FA12E04E2E8 d8 stub<12916> AllocateTemporaryEntryPoints +00007FA12E04E3C0 18 stub<12917> AllocateTemporaryEntryPoints +00007FA12E04E3D8 18 stub<12918> AllocateTemporaryEntryPoints +00007FA12E04E3F0 18 stub<12919> AllocateTemporaryEntryPoints +00007FA12E04E408 18 stub<12920> AllocateTemporaryEntryPoints +00007FA12E04E420 330 stub<12921> AllocateTemporaryEntryPoints +00007FA12E04E750 60 stub<12922> AllocateTemporaryEntryPoints +00007FA12E04E7B0 30 stub<12923> AllocateTemporaryEntryPoints +00007FA12E04E7E0 60 stub<12924> AllocateTemporaryEntryPoints +00007FA12E04E840 78 stub<12925> AllocateTemporaryEntryPoints +00007FA12E04E8B8 a8 stub<12926> AllocateTemporaryEntryPoints +00007FA12E04E960 18 stub<12927> AllocateTemporaryEntryPoints +00007FA12E04E978 18 stub<12928> AllocateTemporaryEntryPoints +00007FA12E04E990 18 stub<12929> AllocateTemporaryEntryPoints +00007FA12E04E9A8 30 stub<12930> AllocateTemporaryEntryPoints +00007FA12E04E9D8 138 stub<12931> AllocateTemporaryEntryPoints +00007FA12E04EB10 108 stub<12932> AllocateTemporaryEntryPoints +00007FA12E280000 510 stub<12933> AllocateTemporaryEntryPoints +00007FA12E280510 108 stub<12934> AllocateTemporaryEntryPoints +00007FA12E280618 7f8 stub<12935> AllocateTemporaryEntryPoints +00007FA12E282000 7f8 stub<12936> AllocateTemporaryEntryPoints +00007FA12E2827F8 6f0 stub<12937> AllocateTemporaryEntryPoints +00007FA12E282EE8 90 stub<12938> AllocateTemporaryEntryPoints +00007FA1277C2320 18 stub<12939> GenerateLookupStub +00007FA12E282F78 18 stub<12940> AllocateTemporaryEntryPoints +00007FA12E284000 d8 stub<12941> AllocateTemporaryEntryPoints +00007FA12E2840D8 90 stub<12942> AllocateTemporaryEntryPoints +00007FA12E284168 18 stub<12943> AllocateTemporaryEntryPoints +00007FA12E284180 90 stub<12944> AllocateTemporaryEntryPoints +00007FA12E284210 18 stub<12945> AllocateTemporaryEntryPoints +00007FA12E284228 48 stub<12946> AllocateTemporaryEntryPoints +00007FA12E284270 48 stub<12947> AllocateTemporaryEntryPoints +00007FA12E2842B8 48 stub<12948> AllocateTemporaryEntryPoints +00007FA12E284300 30 stub<12949> AllocateTemporaryEntryPoints +00007FA12E284330 30 stub<12950> AllocateTemporaryEntryPoints +00007FA12E284360 90 stub<12951> AllocateTemporaryEntryPoints +00007FA12E2843F0 18 stub<12952> AllocateTemporaryEntryPoints +00007FA12E284408 48 stub<12953> AllocateTemporaryEntryPoints +00007FA12E284450 30 stub<12954> AllocateTemporaryEntryPoints +00007FA12E284480 30 stub<12955> AllocateTemporaryEntryPoints +00007FA12E2844B0 78 stub<12956> AllocateTemporaryEntryPoints +00007FA12E284528 30 stub<12957> AllocateTemporaryEntryPoints +00007FA12E284558 18 stub<12958> AllocateTemporaryEntryPoints +00007FA12E284570 30 stub<12959> AllocateTemporaryEntryPoints +00007FA12E2845A0 30 stub<12960> AllocateTemporaryEntryPoints +00007FA12E2845D0 48 stub<12961> AllocateTemporaryEntryPoints +00007FA12E284618 48 stub<12962> AllocateTemporaryEntryPoints +00007FA12E284660 30 stub<12963> AllocateTemporaryEntryPoints +00007FA12E284690 30 stub<12964> AllocateTemporaryEntryPoints +00007FA12E2846C0 30 stub<12965> AllocateTemporaryEntryPoints +00007FA12E2846F0 30 stub<12966> AllocateTemporaryEntryPoints +00007FA12E284720 30 stub<12967> AllocateTemporaryEntryPoints +00007FA12E284750 30 stub<12968> AllocateTemporaryEntryPoints +00007FA12E284780 48 stub<12969> AllocateTemporaryEntryPoints +00007FA12E2847C8 30 stub<12970> AllocateTemporaryEntryPoints +00007FA12E2847F8 30 stub<12971> AllocateTemporaryEntryPoints +00007FA12E284828 30 stub<12972> AllocateTemporaryEntryPoints +00007FA12E284858 30 stub<12973> AllocateTemporaryEntryPoints +00007FA12E284888 78 stub<12974> AllocateTemporaryEntryPoints +00007FA12E284900 48 stub<12975> AllocateTemporaryEntryPoints +00007FA12E284948 18 stub<12976> AllocateTemporaryEntryPoints +00007FA12E284960 c0 stub<12977> AllocateTemporaryEntryPoints +00007FA12E284A20 108 stub<12978> AllocateTemporaryEntryPoints +00007FA12E284B28 48 stub<12979> AllocateTemporaryEntryPoints +00007FA1277FF130 18 stub<12980> GenerateResolveStub +00007FA1277C7940 20 stub<12981> GenerateDispatchStub +00007FA12E284B70 60 stub<12982> AllocateTemporaryEntryPoints +00007FA1277C2340 18 stub<12983> GenerateLookupStub +00007FA1277FF1A0 18 stub<12984> GenerateResolveStub +00007FA1277C7960 20 stub<12985> GenerateDispatchStub +00007FA1277C2360 18 stub<12986> GenerateLookupStub +00007FA1277FF210 18 stub<12987> GenerateResolveStub +00007FA1277C7980 20 stub<12988> GenerateDispatchStub +00007FA1277C2380 18 stub<12989> GenerateLookupStub +00007FA1277FF280 18 stub<12990> GenerateResolveStub +00007FA1277C79A0 20 stub<12991> GenerateDispatchStub +00007FA1277FF2F0 18 stub<12992> GenerateResolveStub +00007FA1277C79C0 20 stub<12993> GenerateDispatchStub +00007FA1277C23A0 18 stub<12994> GenerateLookupStub +00007FA1277FF360 18 stub<12995> GenerateResolveStub +00007FA1277C79E0 20 stub<12996> GenerateDispatchStub +00007FA12E284BD0 18 stub<12997> AllocateTemporaryEntryPoints +00007FA12E286000 6c0 stub<12998> AllocateTemporaryEntryPoints +00007FA12E2866C0 18 stub<12999> AllocateTemporaryEntryPoints +00007FA12E2866D8 a8 stub<13000> AllocateTemporaryEntryPoints +00007FA12E286780 1b0 stub<13001> AllocateTemporaryEntryPoints +00007FA12E286930 1b0 stub<13002> AllocateTemporaryEntryPoints +00007FA12E286AE0 48 stub<13003> AllocateTemporaryEntryPoints +00007FA12E286B28 3c0 stub<13004> AllocateTemporaryEntryPoints +00007FA12E286EE8 78 stub<13005> AllocateTemporaryEntryPoints +00007FA12E288000 a8 stub<13006> AllocateTemporaryEntryPoints +00007FA12E2880A8 18 stub<13007> AllocateTemporaryEntryPoints +00007FA12E2880C0 30 stub<13008> AllocateTemporaryEntryPoints +00007FA12E2880F0 60 stub<13009> AllocateTemporaryEntryPoints +00007FA12E288150 60 stub<13010> AllocateTemporaryEntryPoints +00007FA12E2881B0 48 stub<13011> AllocateTemporaryEntryPoints +00007FA12E2881F8 60 stub<13012> AllocateTemporaryEntryPoints +00007FA1277FF3D0 18 stub<13013> GenerateResolveStub +00007FA1277C7A00 20 stub<13014> GenerateDispatchStub +00007FA12E288270 18 stub<13015> AllocateTemporaryEntryPoints +00007FA12E288288 4c8 stub<13016> AllocateTemporaryEntryPoints +00007FA12E288750 108 stub<13017> AllocateTemporaryEntryPoints +00007FA12E288858 108 stub<13018> AllocateTemporaryEntryPoints +00007FA12E288960 48 stub<13019> AllocateTemporaryEntryPoints +00007FA12E2889A8 108 stub<13020> AllocateTemporaryEntryPoints +00007FA12E288AB0 48 stub<13021> AllocateTemporaryEntryPoints +00007FA12E288AF8 30 stub<13022> AllocateTemporaryEntryPoints +00007FA12E288B28 108 stub<13023> AllocateTemporaryEntryPoints +00007FA12E288C30 48 stub<13024> AllocateTemporaryEntryPoints +00007FA12E288C78 30 stub<13025> AllocateTemporaryEntryPoints +00007FA12E288CA8 60 stub<13026> AllocateTemporaryEntryPoints +00007FA12E288D08 60 stub<13027> AllocateTemporaryEntryPoints +00007FA12E288D68 240 stub<13028> AllocateTemporaryEntryPoints +00007FA12E28A000 f0 stub<13029> AllocateTemporaryEntryPoints +00007FA12E28A0F0 18 stub<13030> AllocateTemporaryEntryPoints +00007FA12E28A108 18 stub<13031> AllocateTemporaryEntryPoints +00007FA12E28A120 108 stub<13032> AllocateTemporaryEntryPoints +00007FA12E28A228 108 stub<13033> AllocateTemporaryEntryPoints +00007FA12E28A330 18 stub<13034> AllocateTemporaryEntryPoints +00007FA12E28A348 60 stub<13035> AllocateTemporaryEntryPoints +00007FA12E28A3A8 120 stub<13036> AllocateTemporaryEntryPoints +00007FA12B404AC0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::MoveNext()[QuickJitted] +00007FA12B404B00 252 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E28A4C8 18 stub<13037> AllocateTemporaryEntryPoints +00007FA12E28A4E0 2d0 stub<13038> AllocateTemporaryEntryPoints +00007FA12E28A7B0 18 stub<13039> AllocateTemporaryEntryPoints +00007FA12B404D70 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::.cctor()[QuickJitted] +00007FA12E28A7C8 18 stub<13040> AllocateTemporaryEntryPoints +00007FA12E28A7E0 18 stub<13041> AllocateTemporaryEntryPoints +00007FA12E28A7F8 330 stub<13042> AllocateTemporaryEntryPoints +00007FA12E28AB28 d8 stub<13043> AllocateTemporaryEntryPoints +00007FA12B404E20 88 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E28AC00 d8 stub<13044> AllocateTemporaryEntryPoints +00007FA12B404EC0 14 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.NoThrowAwaiter::GetResult()[QuickJitted] +00007FA12E28ACD8 78 stub<13045> AllocateTemporaryEntryPoints +00007FA12E28AD50 18 stub<13046> AllocateTemporaryEntryPoints +00007FA12E28AD68 18 stub<13047> AllocateTemporaryEntryPoints +00007FA12E28AD80 a8 stub<13048> AllocateTemporaryEntryPoints +00007FA12E28AE28 18 stub<13049> AllocateTemporaryEntryPoints +00007FA12E28AE40 18 stub<13050> AllocateTemporaryEntryPoints +00007FA12E28AE58 18 stub<13051> AllocateTemporaryEntryPoints +00007FA12E28AE70 18 stub<13052> AllocateTemporaryEntryPoints +00007FA1286655A0 69 System.Net.Http.HttpResponseMessage /* MT: 0x00007FA12A0F6070 */ [Datadog.Trace] dynamicClass::SocketsHttpHandlerIntegration.OnAsyncMethodEnd.SocketsHttpHandler.HttpResponseMessage(System.Net.Http.SocketsHttpHandler /* MT: 0x00007FA1299EC788 */,System.Net.Http.HttpResponseMessage /* MT: 0x00007FA12A0F6070 */,System.Exception /* MT: 0x00007FA1285328B8 */,Datadog.Trace.ClrProfiler.CallTarget.CallTargetState /* MT: 0x00007FA12C287AF8 */&)[Optimized] +00007FA12E28AE88 90 stub<13053> AllocateTemporaryEntryPoints +00007FA1277C23C0 18 stub<13054> GenerateLookupStub +00007FA1277FF440 18 stub<13055> GenerateResolveStub +00007FA1277C7A20 20 stub<13056> GenerateDispatchStub +00007FA12B404EF0 109 !!1 [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMessageHandlerCommon::OnMethodEnd(!!0,!!1,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[QuickJitted] +00007FA12B405020 1c instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::get_Scope()[QuickJitted] +00007FA12B405050 1b instance object [DuckTypeNotVisibleAssembly.HttpResponseMessage_3] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpResponseMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpResponseMessage_3::get_Instance()[QuickJitted] +00007FA12E28AF30 18 stub<13057> AllocateTemporaryEntryPoints +00007FA12E28AF48 18 stub<13058> AllocateTemporaryEntryPoints +00007FA12E28AF60 18 stub<13059> AllocateTemporaryEntryPoints +00007FA1277C23E0 18 stub<13060> GenerateLookupStub +00007FA1277FF4B0 18 stub<13061> GenerateResolveStub +00007FA1277C7A40 20 stub<13062> GenerateDispatchStub +00007FA128665670 69 System.Net.Http.HttpResponseMessage /* MT: 0x00007FA12A0F6070 */ [Datadog.Trace] dynamicClass::HttpClientHandlerIntegration.OnAsyncMethodEnd.HttpClientHandler.HttpResponseMessage(System.Net.Http.HttpClientHandler /* MT: 0x00007FA1299EAB90 */,System.Net.Http.HttpResponseMessage /* MT: 0x00007FA12A0F6070 */,System.Exception /* MT: 0x00007FA1285328B8 */,Datadog.Trace.ClrProfiler.CallTarget.CallTargetState /* MT: 0x00007FA12C287AF8 */&)[Optimized] +00007FA12E28AF78 60 stub<13063> AllocateTemporaryEntryPoints +00007FA12E28AFD8 18 stub<13064> AllocateTemporaryEntryPoints +00007FA12E28C000 18 stub<13065> AllocateTemporaryEntryPoints +00007FA12B405080 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B4050C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E28C018 138 stub<13066> AllocateTemporaryEntryPoints +00007FA12E28C150 18 stub<13067> AllocateTemporaryEntryPoints +00007FA12E28C168 528 stub<13068> AllocateTemporaryEntryPoints +00007FA12E28C690 60 stub<13069> AllocateTemporaryEntryPoints +00007FA12E28C6F0 18 stub<13070> AllocateTemporaryEntryPoints +00007FA12E28C708 18 stub<13071> AllocateTemporaryEntryPoints +00007FA12B4051C0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12B405200 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA1277C2400 18 stub<13072> GenerateLookupStub +00007FA1277FF520 18 stub<13073> GenerateResolveStub +00007FA1277C7A60 20 stub<13074> GenerateDispatchStub +00007FA1277C2420 18 stub<13075> GenerateLookupStub +00007FA1277FF590 18 stub<13076> GenerateResolveStub +00007FA1277C7A80 20 stub<13077> GenerateDispatchStub +00007FA1277C2440 18 stub<13078> GenerateLookupStub +00007FA1277FF600 18 stub<13079> GenerateResolveStub +00007FA1277C7AA0 20 stub<13080> GenerateDispatchStub +00007FA1277C2460 18 stub<13081> GenerateLookupStub +00007FA12B405300 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6]::MoveNext()[QuickJitted] +00007FA1277FF670 18 stub<13082> GenerateResolveStub +00007FA1277C7AC0 20 stub<13083> GenerateDispatchStub +00007FA1277C2480 18 stub<13084> GenerateLookupStub +00007FA1277FF6E0 18 stub<13085> GenerateResolveStub +00007FA1277C7AE0 20 stub<13086> GenerateDispatchStub +00007FA1277C24A0 18 stub<13087> GenerateLookupStub +00007FA1277FF750 18 stub<13088> GenerateResolveStub +00007FA1277C7B00 20 stub<13089> GenerateDispatchStub +00007FA12E28C720 60 stub<13090> AllocateTemporaryEntryPoints +00007FA12B405340 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E28C780 18 stub<13091> AllocateTemporaryEntryPoints +00007FA1277C24C0 18 stub<13092> GenerateLookupStub +00007FA12B405530 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6]::.cctor()[QuickJitted] +00007FA12E28C798 18 stub<13093> AllocateTemporaryEntryPoints +00007FA12E28C7B0 108 stub<13094> AllocateTemporaryEntryPoints +00007FA12E28C8B8 18 stub<13095> AllocateTemporaryEntryPoints +00007FA12E28C8D0 90 stub<13096> AllocateTemporaryEntryPoints +00007FA12B4055E0 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E28C960 18 stub<13097> AllocateTemporaryEntryPoints +00007FA12E28E000 7f8 stub<13098> AllocateTemporaryEntryPoints +00007FA12E28E7F8 18 stub<13099> AllocateTemporaryEntryPoints +00007FA12E28E810 768 stub<13100> AllocateTemporaryEntryPoints +00007FA12E28EF78 18 stub<13101> AllocateTemporaryEntryPoints +00007FA12E28EF90 30 stub<13102> AllocateTemporaryEntryPoints +00007FA12E28EFC0 30 stub<13103> AllocateTemporaryEntryPoints +00007FA12E340138 30 stub<13104> AllocateTemporaryEntryPoints +00007FA12E340000 138 stub<13105> AllocateTemporaryEntryPoints +00007FA12E340168 48 stub<13106> AllocateTemporaryEntryPoints +00007FA12E3401B0 18 stub<13107> AllocateTemporaryEntryPoints +00007FA12E3401E0 90 stub<13108> AllocateTemporaryEntryPoints +00007FA12E340270 a8 stub<13109> AllocateTemporaryEntryPoints +00007FA12E340318 a8 stub<13110> AllocateTemporaryEntryPoints +00007FA12E3403C0 18 stub<13111> AllocateTemporaryEntryPoints +00007FA12E3403D8 48 stub<13112> AllocateTemporaryEntryPoints +00007FA128665740 21 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method95(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E340420 78 stub<13113> AllocateTemporaryEntryPoints +00007FA12E3404B0 30 stub<13114> AllocateTemporaryEntryPoints +00007FA12E3404E0 90 stub<13115> AllocateTemporaryEntryPoints +00007FA12E340570 90 stub<13116> AllocateTemporaryEntryPoints +00007FA12E340600 90 stub<13117> AllocateTemporaryEntryPoints +00007FA12E340690 48 stub<13118> AllocateTemporaryEntryPoints +00007FA12E3406D8 60 stub<13119> AllocateTemporaryEntryPoints +00007FA12E340738 60 stub<13120> AllocateTemporaryEntryPoints +00007FA12B405630 90 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverterAttribute::.ctor(class [System.Runtime]System.Type)[QuickJitted] +00007FA1277C24E0 18 stub<13121> GenerateLookupStub +00007FA1277FF7C0 18 stub<13122> GenerateResolveStub +00007FA1277C7B20 20 stub<13123> GenerateDispatchStub +00007FA12E340798 7f8 stub<13124> AllocateTemporaryEntryPoints +00007FA12B4056E0 1c instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverterAttribute::get_ConverterType()[QuickJitted] +00007FA12E340F90 30 stub<13125> AllocateTemporaryEntryPoints +00007FA12B405710 11d class [System.Runtime]System.Func`2 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCreator(class [System.Runtime]System.Type)[QuickJitted] +00007FA12B405850 296 instance void [System.Text.Encodings.Web] System.Text.Encodings.Web.AllowedBmpCodePointsBitmap::ForbidUndefinedCharacters()[QuickJitted] +00007FA12B405B10 1f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector+<>c__DisplayClass20_0::.ctor()[QuickJitted] +00007FA12E340FC0 18 stub<13126> AllocateTemporaryEntryPoints +00007FA12E340FD8 18 stub<13127> AllocateTemporaryEntryPoints +00007FA12E342000 18 stub<13128> AllocateTemporaryEntryPoints +00007FA12E342018 18 stub<13129> AllocateTemporaryEntryPoints +00007FA1286657C0 16 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method96(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B405B50 63 instance void [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::.ctor(valuetype System.ReadOnlySpan`1)[QuickJitted] +00007FA12B405BD0 1c instance object[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverterAttribute::get_ConverterParameters()[QuickJitted] +00007FA12E342030 540 stub<13130> AllocateTemporaryEntryPoints +00007FA12E342570 18 stub<13131> AllocateTemporaryEntryPoints +00007FA12E342588 48 stub<13132> AllocateTemporaryEntryPoints +00007FA12B405C00 1c void [System.Private.CoreLib] System.ThrowHelper::ThrowForUnsupportedNumericsVectorBaseType()[QuickJitted] +00007FA12E3425D0 18 stub<13133> AllocateTemporaryEntryPoints +00007FA12B405C30 391 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector+<>c__DisplayClass20_0::b__0(object[])[QuickJitted] +00007FA12B405FF0 522 bool [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::get_IsSupported()[QuickJitted] +00007FA12B406530 32 !!0 [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::ReadUnaligned(uint8&)[QuickJitted] +00007FA12E3425E8 2b8 stub<13134> AllocateTemporaryEntryPoints +00007FA12E3428A0 270 stub<13135> AllocateTemporaryEntryPoints +00007FA12B406580 4b instance void [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::.ctor(valuetype System.Span`1)[QuickJitted] +00007FA12E342B10 270 stub<13136> AllocateTemporaryEntryPoints +00007FA12B4065E0 85 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmResponse::.ctor()[QuickJitted] +00007FA12E342D80 18 stub<13137> AllocateTemporaryEntryPoints +00007FA12E342D98 18 stub<13138> AllocateTemporaryEntryPoints +00007FA12E342DB0 18 stub<13139> AllocateTemporaryEntryPoints +00007FA12E342DC8 18 stub<13140> AllocateTemporaryEntryPoints +00007FA12B406680 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_MissingMemberHandling()[QuickJitted] +00007FA12B4066C0 63 instance void [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::.ctor(valuetype System.ReadOnlySpan`1)[QuickJitted] +00007FA12E342DE0 60 stub<13141> AllocateTemporaryEntryPoints +00007FA12E342E40 18 stub<13142> AllocateTemporaryEntryPoints +00007FA12B406740 135 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetExtensionData(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,string,object)[QuickJitted] +00007FA12B4068A0 1f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExtensionDataSetter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_ExtensionDataSetter()[QuickJitted] +00007FA12B4068E0 c3 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Skip()[QuickJitted] +00007FA12E342E58 18 stub<13143> AllocateTemporaryEntryPoints +00007FA12E342E70 18 stub<13144> AllocateTemporaryEntryPoints +00007FA12E342E88 18 stub<13145> AllocateTemporaryEntryPoints +00007FA12B4069C0 6d instance void [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::CopyTo(valuetype System.Span`1)[QuickJitted] +00007FA12B406A50 27 void [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::WriteUnaligned(uint8&,!!0)[QuickJitted] +00007FA1277FF830 18 stub<13146> GenerateResolveStub +00007FA1277C7B40 20 stub<13147> GenerateDispatchStub +00007FA12E342EB8 90 stub<13148> AllocateTemporaryEntryPoints +00007FA12E342F48 60 stub<13149> AllocateTemporaryEntryPoints +00007FA12E344000 90 stub<13150> AllocateTemporaryEntryPoints +00007FA12E344090 30 stub<13151> AllocateTemporaryEntryPoints +00007FA12E3440C0 30 stub<13152> AllocateTemporaryEntryPoints +00007FA12E3440F0 90 stub<13153> AllocateTemporaryEntryPoints +00007FA12E344180 90 stub<13154> AllocateTemporaryEntryPoints +00007FA12E344210 18 stub<13155> AllocateTemporaryEntryPoints +00007FA12E344228 d8 stub<13156> AllocateTemporaryEntryPoints +00007FA12E344300 48 stub<13157> AllocateTemporaryEntryPoints +00007FA1277FF8A0 18 stub<13158> GenerateResolveStub +00007FA1277C7B60 20 stub<13159> GenerateDispatchStub +00007FA12E344348 120 stub<13160> AllocateTemporaryEntryPoints +00007FA12E344468 330 stub<13161> AllocateTemporaryEntryPoints +00007FA12E344798 60 stub<13162> AllocateTemporaryEntryPoints +00007FA1277FF910 18 stub<13163> GenerateResolveStub +00007FA1277C7B80 20 stub<13164> GenerateDispatchStub +00007FA1277C7BA0 20 stub<13165> GenerateDispatchStub +00007FA12B406AA0 a35 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadStringIntoBuffer(char)[OptimizedTier1OSR] +00007FA1277FF980 18 stub<13166> GenerateResolveStub +00007FA1277C7BC0 20 stub<13167> GenerateDispatchStub +00007FA12E344888 a8 stub<13168> AllocateTemporaryEntryPoints +00007FA12E344930 48 stub<13169> AllocateTemporaryEntryPoints +00007FA1277FF9F0 18 stub<13170> GenerateResolveStub +00007FA1277C7BE0 20 stub<13171> GenerateDispatchStub +00007FA1277C2500 18 stub<13172> GenerateLookupStub +00007FA1277FFA60 18 stub<13173> GenerateResolveStub +00007FA1277C7C00 20 stub<13174> GenerateDispatchStub +00007FA12E344978 18 stub<13175> AllocateTemporaryEntryPoints +00007FA128665840 16 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method97(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E344990 30 stub<13176> AllocateTemporaryEntryPoints +00007FA12E3449C0 78 stub<13177> AllocateTemporaryEntryPoints +00007FA1277C2520 18 stub<13178> GenerateLookupStub +00007FA12E344A38 30 stub<13179> AllocateTemporaryEntryPoints +00007FA12E344A68 18 stub<13180> AllocateTemporaryEntryPoints +00007FA12E344A80 18 stub<13181> AllocateTemporaryEntryPoints +00007FA12E344A98 18 stub<13182> AllocateTemporaryEntryPoints +00007FA12E344AB0 18 stub<13183> AllocateTemporaryEntryPoints +00007FA1277FFAD0 18 stub<13184> GenerateResolveStub +00007FA1277C7C20 20 stub<13185> GenerateDispatchStub +00007FA1286658C0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method98(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12E344AC8 48 stub<13186> AllocateTemporaryEntryPoints +00007FA12B407930 19 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter::get_CanRead()[QuickJitted] +00007FA1277C2540 18 stub<13187> GenerateLookupStub +00007FA1277FFB40 18 stub<13188> GenerateResolveStub +00007FA1277C7C40 20 stub<13189> GenerateDispatchStub +00007FA12E346000 648 stub<13190> AllocateTemporaryEntryPoints +00007FA1277C2560 18 stub<13191> GenerateLookupStub +00007FA1277FFBB0 18 stub<13192> GenerateResolveStub +00007FA1277C7C60 20 stub<13193> GenerateDispatchStub +00007FA12E346648 18 stub<13194> AllocateTemporaryEntryPoints +00007FA12E346660 18 stub<13195> AllocateTemporaryEntryPoints +00007FA12B407960 276 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::DeserializeConvertable(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,object)[QuickJitted] +00007FA12E346678 18 stub<13196> AllocateTemporaryEntryPoints +00007FA1277C2580 18 stub<13197> GenerateLookupStub +00007FA12B407C00 5f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerProxy [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetInternalSerializer()[QuickJitted] +00007FA1277FFC20 18 stub<13198> GenerateResolveStub +00007FA1277C7C80 20 stub<13199> GenerateDispatchStub +00007FA1277C25A0 18 stub<13200> GenerateLookupStub +00007FA12B407C80 66 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerProxy::.ctor(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader)[QuickJitted] +00007FA1277FFC90 18 stub<13201> GenerateResolveStub +00007FA1277C7CA0 20 stub<13202> GenerateDispatchStub +00007FA12B407D00 1fc instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter`1[System.__Canon]::ReadJson(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,object,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[QuickJitted] +00007FA12E346690 1f8 stub<13203> AllocateTemporaryEntryPoints +00007FA12E346888 18 stub<13204> AllocateTemporaryEntryPoints +00007FA12E3468A0 6f0 stub<13205> AllocateTemporaryEntryPoints +00007FA12B407F20 25b instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TufRoot [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Json.TufRootBase64Converter::ReadJson(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,class Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TufRoot,bool,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[QuickJitted] +00007FA12E348000 c0 stub<13206> AllocateTemporaryEntryPoints +00007FA12E3480C0 90 stub<13207> AllocateTemporaryEntryPoints +00007FA12E348150 a8 stub<13208> AllocateTemporaryEntryPoints +00007FA12E3481F8 18 stub<13209> AllocateTemporaryEntryPoints +00007FA12B4081C0 4b instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_ValueType()[QuickJitted] +00007FA12E348210 78 stub<13210> AllocateTemporaryEntryPoints +00007FA12E348288 18 stub<13211> AllocateTemporaryEntryPoints +00007FA12E3482A0 60 stub<13212> AllocateTemporaryEntryPoints +00007FA12B408270 6a instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerProxy::DeserializeInternal(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type)[QuickJitted] +00007FA12B408220 38 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::.ctor()[QuickJitted] +00007FA12B4082F0 d int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12E348300 30 stub<13213> AllocateTemporaryEntryPoints +00007FA12E348330 18 stub<13214> AllocateTemporaryEntryPoints +00007FA12E348348 48 stub<13215> AllocateTemporaryEntryPoints +00007FA12E348390 a8 stub<13216> AllocateTemporaryEntryPoints +00007FA12E348438 d8 stub<13217> AllocateTemporaryEntryPoints +00007FA12B408320 2b9 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B408600 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA128665950 5a object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method99(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12B408690 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity]::get_Default()[QuickJitted] +00007FA12B4086D0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity]::.cctor()[QuickJitted] +00007FA12E348510 18 stub<13218> AllocateTemporaryEntryPoints +00007FA12E348528 a8 stub<13219> AllocateTemporaryEntryPoints +00007FA12B408750 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity]::.ctor()[QuickJitted] +00007FA12B408790 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity]::.ctor()[QuickJitted] +00007FA128665A10 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method100(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12E3485D0 1f8 stub<13220> AllocateTemporaryEntryPoints +00007FA128665AA0 16 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method101(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E3487C8 138 stub<13221> AllocateTemporaryEntryPoints +00007FA12E348900 30 stub<13222> AllocateTemporaryEntryPoints +00007FA12E348930 18 stub<13223> AllocateTemporaryEntryPoints +00007FA12E348948 18 stub<13224> AllocateTemporaryEntryPoints +00007FA12E348960 18 stub<13225> AllocateTemporaryEntryPoints +00007FA12E348978 18 stub<13226> AllocateTemporaryEntryPoints +00007FA12E348990 18 stub<13227> AllocateTemporaryEntryPoints +00007FA1277C25C0 18 stub<13228> GenerateLookupStub +00007FA1277FFD00 18 stub<13229> GenerateResolveStub +00007FA1277C7CC0 20 stub<13230> GenerateDispatchStub +00007FA1277C25E0 18 stub<13231> GenerateLookupStub +00007FA1277FFD70 18 stub<13232> GenerateResolveStub +00007FA1277C7CE0 20 stub<13233> GenerateDispatchStub +00007FA128665B20 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method102(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12B4087D0 42 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadAsString()[QuickJitted] +00007FA12E34A000 840 stub<13234> AllocateTemporaryEntryPoints +00007FA12E34A840 510 stub<13235> AllocateTemporaryEntryPoints +00007FA12B408830 531 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadStringValue(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[QuickJitted] +00007FA12E34C000 2d0 stub<13236> AllocateTemporaryEntryPoints +00007FA12B408E30 282 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::FinishReadQuotedStringValue(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[QuickJitted] +00007FA12E34C2D0 150 stub<13237> AllocateTemporaryEntryPoints +00007FA12B4090F0 cf bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CoerceEmptyStringToNull(class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,string)[QuickJitted] +00007FA12E34C420 90 stub<13238> AllocateTemporaryEntryPoints +00007FA1277FFDE0 18 stub<13239> GenerateResolveStub +00007FA1277C7D00 20 stub<13240> GenerateDispatchStub +00007FA12E34C4B0 2a0 stub<13241> AllocateTemporaryEntryPoints +00007FA12E34C750 18 stub<13242> AllocateTemporaryEntryPoints +00007FA12E34C768 18 stub<13243> AllocateTemporaryEntryPoints +00007FA12E34C780 18 stub<13244> AllocateTemporaryEntryPoints +00007FA12E34C798 120 stub<13245> AllocateTemporaryEntryPoints +00007FA12E34C8B8 90 stub<13246> AllocateTemporaryEntryPoints +00007FA12E34C948 48 stub<13247> AllocateTemporaryEntryPoints +00007FA12E34C990 90 stub<13248> AllocateTemporaryEntryPoints +00007FA12E34CA20 18 stub<13249> AllocateTemporaryEntryPoints +00007FA12E34E000 6f0 stub<13250> AllocateTemporaryEntryPoints +00007FA12E34E6F0 18 stub<13251> AllocateTemporaryEntryPoints +00007FA12E34E708 c0 stub<13252> AllocateTemporaryEntryPoints +00007FA12E34E7C8 18 stub<13253> AllocateTemporaryEntryPoints +00007FA12E34E7E0 90 stub<13254> AllocateTemporaryEntryPoints +00007FA12E34E870 a8 stub<13255> AllocateTemporaryEntryPoints +00007FA12E34E918 18 stub<13256> AllocateTemporaryEntryPoints +00007FA12E34E930 78 stub<13257> AllocateTemporaryEntryPoints +00007FA12E34E9A8 18 stub<13258> AllocateTemporaryEntryPoints +00007FA12E3C0000 6f0 stub<13259> AllocateTemporaryEntryPoints +00007FA12E3C06F0 c0 stub<13260> AllocateTemporaryEntryPoints +00007FA128665BB0 5a void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method103(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA12E3C07B0 90 stub<13261> AllocateTemporaryEntryPoints +00007FA12E3C0840 a8 stub<13262> AllocateTemporaryEntryPoints +00007FA12E3C08E8 18 stub<13263> AllocateTemporaryEntryPoints +00007FA12E3C0900 78 stub<13264> AllocateTemporaryEntryPoints +00007FA12E3C0978 18 stub<13265> AllocateTemporaryEntryPoints +00007FA128665C70 5e void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method104(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA12E3C0990 d8 stub<13266> AllocateTemporaryEntryPoints +00007FA12B4091E0 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor()[QuickJitted] +00007FA12B409280 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.ValueTuple`2[System.__Canon,System.Int32]]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12E3C0A68 18 stub<13267> AllocateTemporaryEntryPoints +00007FA12E3C0A80 48 stub<13268> AllocateTemporaryEntryPoints +00007FA12B4092B0 398 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeIso(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling,valuetype [System.Runtime]System.DateTime&)[QuickJitted] +00007FA12B409680 3da instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B409A80 d1 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::Parse(char[],int32,int32)[QuickJitted] +00007FA12B409B70 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12B409C00 1aa void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::.cctor()[QuickJitted] +00007FA12B409DC0 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.ValueTuple`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12B409E60 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.ValueTuple`2[System.__Canon,System.__Canon]]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12B409E90 117 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::ParseDate(int32)[QuickJitted] +00007FA12E3C0AC8 18 stub<13269> AllocateTemporaryEntryPoints +00007FA12E3C0AE0 48 stub<13270> AllocateTemporaryEntryPoints +00007FA12B409FC0 13a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::Parse4Digit(int32,int32&)[QuickJitted] +00007FA12B40A110 5b instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::ParseChar(int32,char)[QuickJitted] +00007FA12B40A580 b5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::Parse2Digit(int32,int32&)[QuickJitted] +00007FA12B40A180 3da instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.ValueTuple`2[System.__Canon,System.__Canon]]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B40A650 3f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::ParseTimeAndZoneAndWhitespace(int32)[QuickJitted] +00007FA12B40A6B0 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,System.ValueTuple`2[System.__Canon,System.__Canon]]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12784B6B0 11 stub<13271> GenerateVTableCallStub +00007FA12B40A740 253 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::ParseTime(int32&)[QuickJitted] +00007FA12E3C0B28 258 stub<13272> AllocateTemporaryEntryPoints +00007FA12E3C0D80 c0 stub<13273> AllocateTemporaryEntryPoints +00007FA12B40A9B0 1a6 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser::ParseZone(int32)[QuickJitted] +00007FA12B40AB70 8a valuetype [System.Runtime]System.DateTime [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::CreateDateTime(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeParser)[QuickJitted] +00007FA12784B6D0 11 stub<13274> GenerateVTableCallStub +00007FA12E3C0E40 138 stub<13275> AllocateTemporaryEntryPoints +00007FA12E3C2000 90 stub<13276> AllocateTemporaryEntryPoints +00007FA12E3C2090 30 stub<13277> AllocateTemporaryEntryPoints +00007FA128665D30 33 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method105(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E3C20C0 18 stub<13278> AllocateTemporaryEntryPoints +00007FA12E3C20D8 60 stub<13279> AllocateTemporaryEntryPoints +00007FA12E3C2138 18 stub<13280> AllocateTemporaryEntryPoints +00007FA12E3C2150 48 stub<13281> AllocateTemporaryEntryPoints +00007FA12E3C2198 60 stub<13282> AllocateTemporaryEntryPoints +00007FA12E3C21F8 5e8 stub<13283> AllocateTemporaryEntryPoints +00007FA12E3C27E0 c0 stub<13284> AllocateTemporaryEntryPoints +00007FA12E3C28A0 90 stub<13285> AllocateTemporaryEntryPoints +00007FA12E3C2930 a8 stub<13286> AllocateTemporaryEntryPoints +00007FA12E3C29D8 18 stub<13287> AllocateTemporaryEntryPoints +00007FA12E3C29F0 78 stub<13288> AllocateTemporaryEntryPoints +00007FA12E3C2A68 18 stub<13289> AllocateTemporaryEntryPoints +00007FA128665DC0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method106(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12E3C4000 5e8 stub<13290> AllocateTemporaryEntryPoints +00007FA128665E50 21 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method107(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E3C45E8 c0 stub<13291> AllocateTemporaryEntryPoints +00007FA12E3C46A8 48 stub<13292> AllocateTemporaryEntryPoints +00007FA12E3C46F0 90 stub<13293> AllocateTemporaryEntryPoints +00007FA12E3C4780 a8 stub<13294> AllocateTemporaryEntryPoints +00007FA12E3C4828 18 stub<13295> AllocateTemporaryEntryPoints +00007FA12E3C4840 78 stub<13296> AllocateTemporaryEntryPoints +00007FA12E3C48B8 18 stub<13297> AllocateTemporaryEntryPoints +00007FA12B40AC20 85 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.Target::.ctor()[QuickJitted] +00007FA12E3C48D0 108 stub<13298> AllocateTemporaryEntryPoints +00007FA12B40ACC0 1f instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TargetCustom::.ctor()[QuickJitted] +00007FA12E3C49D8 78 stub<13299> AllocateTemporaryEntryPoints +00007FA128665ED0 16 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method108(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E3C4A50 18 stub<13300> AllocateTemporaryEntryPoints +00007FA12E3C4A68 30 stub<13301> AllocateTemporaryEntryPoints +00007FA12E3C4A98 60 stub<13302> AllocateTemporaryEntryPoints +00007FA12E3C4AF8 60 stub<13303> AllocateTemporaryEntryPoints +00007FA12E3C4B58 18 stub<13304> AllocateTemporaryEntryPoints +00007FA12E3C4B70 90 stub<13305> AllocateTemporaryEntryPoints +00007FA12E3C4C00 48 stub<13306> AllocateTemporaryEntryPoints +00007FA12E3C4C48 48 stub<13307> AllocateTemporaryEntryPoints +00007FA12E3C4C90 60 stub<13308> AllocateTemporaryEntryPoints +00007FA12E3C4CF0 108 stub<13309> AllocateTemporaryEntryPoints +00007FA12E3C6000 360 stub<13310> AllocateTemporaryEntryPoints +00007FA12E3C6360 48 stub<13311> AllocateTemporaryEntryPoints +00007FA12E3C63A8 120 stub<13312> AllocateTemporaryEntryPoints +00007FA1277FFE50 18 stub<13313> GenerateResolveStub +00007FA128665F50 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method109(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1277C7D20 20 stub<13314> GenerateDispatchStub +00007FA1277C2600 18 stub<13315> GenerateLookupStub +00007FA1277FFEC0 18 stub<13316> GenerateResolveStub +00007FA1277C7D40 20 stub<13317> GenerateDispatchStub +00007FA12E3C64C8 18 stub<13318> AllocateTemporaryEntryPoints +00007FA12B40AD00 48 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadAsInt32()[QuickJitted] +00007FA12E3C64E0 78 stub<13319> AllocateTemporaryEntryPoints +00007FA12B40AD60 264 valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ParseResult [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ConvertUtils::Int32TryParse(char[],int32,int32,int32&)[QuickJitted] +00007FA1277C2620 18 stub<13320> GenerateLookupStub +00007FA12B40AFE0 141 object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BoxedPrimitives::Get(int32)[QuickJitted] +00007FA12E3C6558 90 stub<13321> AllocateTemporaryEntryPoints +00007FA12E3C65E8 198 stub<13322> AllocateTemporaryEntryPoints +00007FA12E3C6780 18 stub<13323> AllocateTemporaryEntryPoints +00007FA12E3C6798 30 stub<13324> AllocateTemporaryEntryPoints +00007FA128665FE0 6e void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method110(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA12E3C67C8 5e8 stub<13325> AllocateTemporaryEntryPoints +00007FA12E3C6DB0 c0 stub<13326> AllocateTemporaryEntryPoints +00007FA12E3C6E70 a8 stub<13327> AllocateTemporaryEntryPoints +00007FA12E3C6F18 18 stub<13328> AllocateTemporaryEntryPoints +00007FA12E3C6F30 78 stub<13329> AllocateTemporaryEntryPoints +00007FA12E3C6FA8 18 stub<13330> AllocateTemporaryEntryPoints +00007FA1286660C0 33 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method111(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E3C6FC0 18 stub<13331> AllocateTemporaryEntryPoints +00007FA12E3C8000 60 stub<13332> AllocateTemporaryEntryPoints +00007FA12E3C8060 60 stub<13333> AllocateTemporaryEntryPoints +00007FA1277FFF30 18 stub<13334> GenerateResolveStub +00007FA1277C7D60 20 stub<13335> GenerateDispatchStub +00007FA12E3C80C0 18 stub<13336> AllocateTemporaryEntryPoints +00007FA1277FFFA0 18 stub<13337> GenerateResolveStub +00007FA1277C7D80 20 stub<13338> GenerateDispatchStub +00007FA1277C2640 18 stub<13339> GenerateLookupStub +00007FA127800010 18 stub<13340> GenerateResolveStub +00007FA1277C7DA0 20 stub<13341> GenerateDispatchStub +00007FA12E3C80D8 18 stub<13342> AllocateTemporaryEntryPoints +00007FA12E3C80F0 1c8 stub<13343> AllocateTemporaryEntryPoints +00007FA12E3C82B8 a8 stub<13344> AllocateTemporaryEntryPoints +00007FA12E3C8360 48 stub<13345> AllocateTemporaryEntryPoints +00007FA12E3C83A8 48 stub<13346> AllocateTemporaryEntryPoints +00007FA12E3C83F0 48 stub<13347> AllocateTemporaryEntryPoints +00007FA127800080 18 stub<13348> GenerateResolveStub +00007FA1277C7DC0 20 stub<13349> GenerateDispatchStub +00007FA12E3C8438 18 stub<13350> AllocateTemporaryEntryPoints +00007FA12E3C8450 18 stub<13351> AllocateTemporaryEntryPoints +00007FA12E3C8468 18 stub<13352> AllocateTemporaryEntryPoints +00007FA1277C2660 18 stub<13353> GenerateLookupStub +00007FA1278000F0 18 stub<13354> GenerateResolveStub +00007FA1277C7DE0 20 stub<13355> GenerateDispatchStub +00007FA1277C2680 18 stub<13356> GenerateLookupStub +00007FA127800160 18 stub<13357> GenerateResolveStub +00007FA1277C7E00 20 stub<13358> GenerateDispatchStub +00007FA12E3C8480 18 stub<13359> AllocateTemporaryEntryPoints +00007FA12E3C8498 18 stub<13360> AllocateTemporaryEntryPoints +00007FA12E3C84B0 90 stub<13361> AllocateTemporaryEntryPoints +00007FA1277C26A0 18 stub<13362> GenerateLookupStub +00007FA12E3C8540 18 stub<13363> AllocateTemporaryEntryPoints +00007FA1277C26C0 18 stub<13364> GenerateLookupStub +00007FA1278001D0 18 stub<13365> GenerateResolveStub +00007FA1277C7E20 20 stub<13366> GenerateDispatchStub +00007FA1277C26E0 18 stub<13367> GenerateLookupStub +00007FA127800240 18 stub<13368> GenerateResolveStub +00007FA1277C7E40 20 stub<13369> GenerateDispatchStub +00007FA12E3C8558 18 stub<13370> AllocateTemporaryEntryPoints +00007FA12E3C8570 18 stub<13371> AllocateTemporaryEntryPoints +00007FA12E3C8588 18 stub<13372> AllocateTemporaryEntryPoints +00007FA12E3C85A0 48 stub<13373> AllocateTemporaryEntryPoints +00007FA1277C2700 18 stub<13374> GenerateLookupStub +00007FA1278002B0 18 stub<13375> GenerateResolveStub +00007FA1277C7E60 20 stub<13376> GenerateDispatchStub +00007FA12E3C85E8 18 stub<13377> AllocateTemporaryEntryPoints +00007FA1277C2720 18 stub<13378> GenerateLookupStub +00007FA127800320 18 stub<13379> GenerateResolveStub +00007FA1277C7E80 20 stub<13380> GenerateDispatchStub +00007FA1277C2740 18 stub<13381> GenerateLookupStub +00007FA127800390 18 stub<13382> GenerateResolveStub +00007FA1277C7EA0 20 stub<13383> GenerateDispatchStub +00007FA12E3C8600 18 stub<13384> AllocateTemporaryEntryPoints +00007FA1277C2760 18 stub<13385> GenerateLookupStub +00007FA127800400 18 stub<13386> GenerateResolveStub +00007FA1277C7EC0 20 stub<13387> GenerateDispatchStub +00007FA12E3C8618 18 stub<13388> AllocateTemporaryEntryPoints +00007FA128666150 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method112(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA127800470 18 stub<13389> GenerateResolveStub +00007FA1277C7EE0 20 stub<13390> GenerateDispatchStub +00007FA1277C2780 18 stub<13391> GenerateLookupStub +00007FA1278004E0 18 stub<13392> GenerateResolveStub +00007FA1286661E0 6e void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method113(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA1277C7F00 20 stub<13393> GenerateDispatchStub +00007FA12E3C8630 18 stub<13394> AllocateTemporaryEntryPoints +00007FA12E3C8648 18 stub<13395> AllocateTemporaryEntryPoints +00007FA12E3C8660 a8 stub<13396> AllocateTemporaryEntryPoints +00007FA12E3C8708 18 stub<13397> AllocateTemporaryEntryPoints +00007FA12E3C8720 60 stub<13398> AllocateTemporaryEntryPoints +00007FA12E3C8780 60 stub<13399> AllocateTemporaryEntryPoints +00007FA12E3C87E0 60 stub<13400> AllocateTemporaryEntryPoints +00007FA12E3C8840 60 stub<13401> AllocateTemporaryEntryPoints +00007FA12E3C88A0 60 stub<13402> AllocateTemporaryEntryPoints +00007FA1286662C0 6e void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method114(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA12E3C8900 60 stub<13403> AllocateTemporaryEntryPoints +00007FA12E3C8960 60 stub<13404> AllocateTemporaryEntryPoints +00007FA12E3C89C0 60 stub<13405> AllocateTemporaryEntryPoints +00007FA12E3C8A20 a8 stub<13406> AllocateTemporaryEntryPoints +00007FA12E3C8AC8 60 stub<13407> AllocateTemporaryEntryPoints +00007FA12E3C8B28 78 stub<13408> AllocateTemporaryEntryPoints +00007FA12E3C8BA0 90 stub<13409> AllocateTemporaryEntryPoints +00007FA1286663A0 5e void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method115(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA12E3C8C30 90 stub<13410> AllocateTemporaryEntryPoints +00007FA12E3C8CC0 78 stub<13411> AllocateTemporaryEntryPoints +00007FA12E3C8D38 48 stub<13412> AllocateTemporaryEntryPoints +00007FA12E3C8D80 c0 stub<13413> AllocateTemporaryEntryPoints +00007FA12E3C8E40 18 stub<13414> AllocateTemporaryEntryPoints +00007FA12E3C8E58 30 stub<13415> AllocateTemporaryEntryPoints +00007FA128666460 5e void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method116(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA1277C27A0 18 stub<13416> GenerateLookupStub +00007FA12E3C8E88 18 stub<13417> AllocateTemporaryEntryPoints +00007FA12E3C8EA0 60 stub<13418> AllocateTemporaryEntryPoints +00007FA127800550 18 stub<13419> GenerateResolveStub +00007FA1277C7F20 20 stub<13420> GenerateDispatchStub +00007FA128666520 2e object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method117(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E3C8F00 18 stub<13421> AllocateTemporaryEntryPoints +00007FA12E3C8F18 18 stub<13422> AllocateTemporaryEntryPoints +00007FA12E3C8F30 18 stub<13423> AllocateTemporaryEntryPoints +00007FA12E3C8F48 18 stub<13424> AllocateTemporaryEntryPoints +00007FA12E3CA000 d8 stub<13425> AllocateTemporaryEntryPoints +00007FA12E3CA0D8 6f0 stub<13426> AllocateTemporaryEntryPoints +00007FA12E3CA7C8 c0 stub<13427> AllocateTemporaryEntryPoints +00007FA12E3CA888 90 stub<13428> AllocateTemporaryEntryPoints +00007FA12E3CA918 a8 stub<13429> AllocateTemporaryEntryPoints +00007FA12E3CA9C0 18 stub<13430> AllocateTemporaryEntryPoints +00007FA12E3CA9D8 78 stub<13431> AllocateTemporaryEntryPoints +00007FA12E3CAA50 18 stub<13432> AllocateTemporaryEntryPoints +00007FA12E3CAA68 18 stub<13433> AllocateTemporaryEntryPoints +00007FA1277C27C0 18 stub<13434> GenerateLookupStub +00007FA1278005C0 18 stub<13435> GenerateResolveStub +00007FA1277C7F40 20 stub<13436> GenerateDispatchStub +00007FA1277C27E0 18 stub<13437> GenerateLookupStub +00007FA127800630 18 stub<13438> GenerateResolveStub +00007FA1277C7F60 20 stub<13439> GenerateDispatchStub +00007FA1286665B0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method118(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1277C2800 18 stub<13440> GenerateLookupStub +00007FA12B40B570 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory+Key,System.__Canon]::.ctor()[QuickJitted] +00007FA12B40B610 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory+Key,System.__Canon]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12E3CAA80 30 stub<13441> AllocateTemporaryEntryPoints +00007FA12E3CAAB0 18 stub<13442> AllocateTemporaryEntryPoints +00007FA12E3CAAC8 48 stub<13443> AllocateTemporaryEntryPoints +00007FA12E3CAB10 d8 stub<13444> AllocateTemporaryEntryPoints +00007FA12B40B640 67c instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateList(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object,string)[QuickJitted] +00007FA12B40C090 17d instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureArrayContract(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[QuickJitted] +00007FA12B40BCE0 388 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory+Key,System.__Canon]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12B40C230 1f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::get_CanDeserialize()[QuickJitted] +00007FA12B40C270 1f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract::get_ShouldCreateWrapper()[QuickJitted] +00007FA12B40C2B0 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory+Key,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA1277C2820 18 stub<13445> GenerateLookupStub +00007FA12B40C340 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory+Key]::get_Default()[QuickJitted] +00007FA1277C2840 18 stub<13446> GenerateLookupStub +00007FA12B40C380 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory+Key]::.cctor()[QuickJitted] +00007FA12E3CABE8 18 stub<13447> AllocateTemporaryEntryPoints +00007FA12E3CAC00 a8 stub<13448> AllocateTemporaryEntryPoints +00007FA12B40C400 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory+Key]::.ctor()[QuickJitted] +00007FA12B40C9B0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderFactory+Key]::.ctor()[QuickJitted] +00007FA12B40C440 53b instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateList(class [System.Runtime]System.Collections.IList,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,string)[QuickJitted] +00007FA12E3CACA8 30 stub<13449> AllocateTemporaryEntryPoints +00007FA1277C7F80 20 stub<13450> GenerateDispatchStub +00007FA12E3CACD8 18 stub<13451> AllocateTemporaryEntryPoints +00007FA12E3CACF0 78 stub<13452> AllocateTemporaryEntryPoints +00007FA12E3CAD68 30 stub<13453> AllocateTemporaryEntryPoints +00007FA12E3CAD98 48 stub<13454> AllocateTemporaryEntryPoints +00007FA12E3CADE0 78 stub<13455> AllocateTemporaryEntryPoints +00007FA128666640 44 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method119(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E3CAE58 60 stub<13456> AllocateTemporaryEntryPoints +00007FA12E3CC000 6f0 stub<13457> AllocateTemporaryEntryPoints +00007FA12E3CC6F0 c0 stub<13458> AllocateTemporaryEntryPoints +00007FA12E3CC7B0 90 stub<13459> AllocateTemporaryEntryPoints +00007FA12E3CC840 a8 stub<13460> AllocateTemporaryEntryPoints +00007FA12E3CC8E8 18 stub<13461> AllocateTemporaryEntryPoints +00007FA12E3CC900 78 stub<13462> AllocateTemporaryEntryPoints +00007FA12E3CC978 18 stub<13463> AllocateTemporaryEntryPoints +00007FA1286666E0 5a void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method120(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA12B40C9F0 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorCache+CacheEntry]::.ctor()[QuickJitted] +00007FA12B40CA90 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorCache+CacheEntry]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12E3CC990 18 stub<13464> AllocateTemporaryEntryPoints +00007FA12E3CC9A8 48 stub<13465> AllocateTemporaryEntryPoints +00007FA12B40CAC0 4b7 instance uint8[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadAsBytes()[QuickJitted] +00007FA12B40CFE0 3da instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorCache+CacheEntry]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA1286667A0 51 void [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method121(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object)[Optimized] +00007FA12B40D3E0 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorCache+CacheEntry]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA1278006A0 18 stub<13466> GenerateResolveStub +00007FA1277C7FA0 20 stub<13467> GenerateDispatchStub +00007FA12E3CC9F0 60 stub<13468> AllocateTemporaryEntryPoints +00007FA12E3CCA50 48 stub<13469> AllocateTemporaryEntryPoints +00007FA12E3CCA98 a8 stub<13470> AllocateTemporaryEntryPoints +00007FA12E3CCB40 60 stub<13471> AllocateTemporaryEntryPoints +00007FA128666860 33 object [System.Private.CoreLib] dynamicClass::InvokeStub_DefaultControllerActivator..ctor(object,object,native int*)[Optimized] +00007FA12E3CCBA0 90 stub<13472> AllocateTemporaryEntryPoints +00007FA12E3CCC30 90 stub<13473> AllocateTemporaryEntryPoints +00007FA12E3CCCC0 18 stub<13474> AllocateTemporaryEntryPoints +00007FA12E3CCCD8 18 stub<13475> AllocateTemporaryEntryPoints +00007FA1277C2860 18 stub<13476> GenerateLookupStub +00007FA127800710 18 stub<13477> GenerateResolveStub +00007FA1277C7FC0 20 stub<13478> GenerateDispatchStub +00007FA1277C2880 18 stub<13479> GenerateLookupStub +00007FA127800780 18 stub<13480> GenerateResolveStub +00007FA1277C7FE0 20 stub<13481> GenerateDispatchStub +00007FA128666900 21 object [System.Private.CoreLib] dynamicClass::InvokeStub_DefaultControllerPropertyActivator..ctor(object,object,native int*)[Optimized] +00007FA128666980 33 object [System.Private.CoreLib] dynamicClass::InvokeStub_ViewDataDictionaryControllerPropertyActivator..ctor(object,object,native int*)[Optimized] +00007FA12E3CCCF0 18 stub<13482> AllocateTemporaryEntryPoints +00007FA12E3CCD08 18 stub<13483> AllocateTemporaryEntryPoints +00007FA12E3CCD20 48 stub<13484> AllocateTemporaryEntryPoints +00007FA1277C28A0 18 stub<13485> GenerateLookupStub +00007FA1278007F0 18 stub<13486> GenerateResolveStub +00007FA1277C8000 20 stub<13487> GenerateDispatchStub +00007FA12E3CCD68 18 stub<13488> AllocateTemporaryEntryPoints +00007FA1277C28C0 18 stub<13489> GenerateLookupStub +00007FA127800860 18 stub<13490> GenerateResolveStub +00007FA1277C8020 20 stub<13491> GenerateDispatchStub +00007FA1277C28E0 18 stub<13492> GenerateLookupStub +00007FA1278008D0 18 stub<13493> GenerateResolveStub +00007FA1277C8040 20 stub<13494> GenerateDispatchStub +00007FA12E3CCD80 48 stub<13495> AllocateTemporaryEntryPoints +00007FA128666A20 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method122(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12E3CE000 330 stub<13496> AllocateTemporaryEntryPoints +00007FA127800940 18 stub<13497> GenerateResolveStub +00007FA12E3CE330 18 stub<13498> AllocateTemporaryEntryPoints +00007FA1277C8060 20 stub<13499> GenerateDispatchStub +00007FA12E3CE348 198 stub<13500> AllocateTemporaryEntryPoints +00007FA12E3CE4E0 18 stub<13501> AllocateTemporaryEntryPoints +00007FA12E3CE4F8 18 stub<13502> AllocateTemporaryEntryPoints +00007FA12E3CE510 18 stub<13503> AllocateTemporaryEntryPoints +00007FA12E3CE528 18 stub<13504> AllocateTemporaryEntryPoints +00007FA12B40D870 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29]::MoveNext()[QuickJitted] +00007FA12E3CE540 18 stub<13505> AllocateTemporaryEntryPoints +00007FA1277C2900 18 stub<13506> GenerateLookupStub +00007FA1278009B0 18 stub<13507> GenerateResolveStub +00007FA1277C8080 20 stub<13508> GenerateDispatchStub +00007FA12B40D8B0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA1277C2920 18 stub<13509> GenerateLookupStub +00007FA127800A20 18 stub<13510> GenerateResolveStub +00007FA1277C80A0 20 stub<13511> GenerateDispatchStub +00007FA12B40DA30 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29]::.cctor()[QuickJitted] +00007FA12E3CE558 18 stub<13512> AllocateTemporaryEntryPoints +00007FA12E3CE570 60 stub<13513> AllocateTemporaryEntryPoints +00007FA12B40DAB0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29]::ExecutionContextCallback(object)[QuickJitted] +00007FA12B40DAF0 1c instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TufRoot [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmResponse::get_Targets()[QuickJitted] +00007FA12E3CE5D0 48 stub<13514> AllocateTemporaryEntryPoints +00007FA12B40DB20 1c instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.Signed [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TufRoot::get_Signed()[QuickJitted] +00007FA12E3CE618 48 stub<13515> AllocateTemporaryEntryPoints +00007FA12E3CE660 108 stub<13516> AllocateTemporaryEntryPoints +00007FA12E3CE768 18 stub<13517> AllocateTemporaryEntryPoints +00007FA12E3CE780 30 stub<13518> AllocateTemporaryEntryPoints +00007FA12E3CE7B0 18 stub<13519> AllocateTemporaryEntryPoints +00007FA1277C2940 18 stub<13520> GenerateLookupStub +00007FA12E3CE7C8 18 stub<13521> AllocateTemporaryEntryPoints +00007FA127800A90 18 stub<13522> GenerateResolveStub +00007FA1277C80C0 20 stub<13523> GenerateDispatchStub +00007FA12E3CE7E0 18 stub<13524> AllocateTemporaryEntryPoints +00007FA12E3CE7F8 18 stub<13525> AllocateTemporaryEntryPoints +00007FA1277C2960 18 stub<13526> GenerateLookupStub +00007FA127800B00 18 stub<13527> GenerateResolveStub +00007FA1277C80E0 20 stub<13528> GenerateDispatchStub +00007FA12E3CE810 18 stub<13529> AllocateTemporaryEntryPoints +00007FA1277C2980 18 stub<13530> GenerateLookupStub +00007FA1277C29A0 18 stub<13531> GenerateLookupStub +00007FA1277C29C0 18 stub<13532> GenerateLookupStub +00007FA1277C29E0 18 stub<13533> GenerateLookupStub +00007FA12E3CE828 18 stub<13534> AllocateTemporaryEntryPoints +00007FA12E3CE840 18 stub<13535> AllocateTemporaryEntryPoints +00007FA12E3CE858 18 stub<13536> AllocateTemporaryEntryPoints +00007FA12E3CE870 6f0 stub<13537> AllocateTemporaryEntryPoints +00007FA12E3CEF60 78 stub<13538> AllocateTemporaryEntryPoints +00007FA12E3CEFD8 18 stub<13539> AllocateTemporaryEntryPoints +00007FA12E400000 a8 stub<13540> AllocateTemporaryEntryPoints +00007FA12E4000A8 18 stub<13541> AllocateTemporaryEntryPoints +00007FA12E4000C0 18 stub<13542> AllocateTemporaryEntryPoints +00007FA12E4000D8 18 stub<13543> AllocateTemporaryEntryPoints +00007FA12E4000F0 f0 stub<13544> AllocateTemporaryEntryPoints +00007FA12E4001E0 60 stub<13545> AllocateTemporaryEntryPoints +00007FA12B40DB50 9ce instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::ProcessResponse(class Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmResponse,class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA12B40E580 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::.ctor()[QuickJitted] +00007FA12B40E5F0 1f instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0::.ctor()[QuickJitted] +00007FA12B40E630 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::.cctor()[QuickJitted] +00007FA12B40E670 1c instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmResponse::get_ClientConfigs()[QuickJitted] +00007FA12E400240 30 stub<13546> AllocateTemporaryEntryPoints +00007FA12E400270 18 stub<13547> AllocateTemporaryEntryPoints +00007FA12E400288 18 stub<13548> AllocateTemporaryEntryPoints +00007FA1277C2A00 18 stub<13549> GenerateLookupStub +00007FA12E4002A0 48 stub<13550> AllocateTemporaryEntryPoints +00007FA127800B70 18 stub<13551> GenerateResolveStub +00007FA12E4002E8 30 stub<13552> AllocateTemporaryEntryPoints +00007FA1277C8100 20 stub<13553> GenerateDispatchStub +00007FA12E400318 210 stub<13554> AllocateTemporaryEntryPoints +00007FA12B40E6A0 13c class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::FromPath(string)[QuickJitted] +00007FA12B40E800 59 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::.cctor()[QuickJitted] +00007FA12E400528 18 stub<13555> AllocateTemporaryEntryPoints +00007FA12E400540 18 stub<13556> AllocateTemporaryEntryPoints +00007FA12E400558 48 stub<13557> AllocateTemporaryEntryPoints +00007FA12E4005A0 30 stub<13558> AllocateTemporaryEntryPoints +00007FA12E4005D0 60 stub<13559> AllocateTemporaryEntryPoints +00007FA1277C2A20 18 stub<13560> GenerateLookupStub +00007FA12E400630 18 stub<13561> AllocateTemporaryEntryPoints +00007FA12E400648 18 stub<13562> AllocateTemporaryEntryPoints +00007FA127800BE0 18 stub<13563> GenerateResolveStub +00007FA1277C8120 20 stub<13564> GenerateDispatchStub +00007FA1277C2A40 18 stub<13565> GenerateLookupStub +00007FA1277C2A60 18 stub<13566> GenerateLookupStub +00007FA127800C50 18 stub<13567> GenerateResolveStub +00007FA1277C8140 20 stub<13568> GenerateDispatchStub +00007FA12E400660 18 stub<13569> AllocateTemporaryEntryPoints +00007FA12E400678 18 stub<13570> AllocateTemporaryEntryPoints +00007FA128666AB0 48 void [System.Text.RegularExpressions] dynamicClass::Regex2_Scan(System.Text.RegularExpressions.RegexRunner /* MT: 0x00007FA1295AE1E8 */,System.ReadOnlySpan`1 /* MT: 0x00007FA128531658 */)[Optimized] +00007FA127800CC0 18 stub<13571> GenerateResolveStub +00007FA1277C8160 20 stub<13572> GenerateDispatchStub +00007FA127800D30 18 stub<13573> GenerateResolveStub +00007FA128666B60 20 bool [System.Text.RegularExpressions] dynamicClass::Regex2_TryFindNextPossibleStartingPosition(System.Text.RegularExpressions.RegexRunner /* MT: 0x00007FA1295AE1E8 */,System.ReadOnlySpan`1 /* MT: 0x00007FA128531658 */)[Optimized] +00007FA1277C8180 20 stub<13574> GenerateDispatchStub +00007FA12E400690 18 stub<13575> AllocateTemporaryEntryPoints +00007FA12E4006A8 30 stub<13576> AllocateTemporaryEntryPoints +00007FA12E4006D8 18 stub<13577> AllocateTemporaryEntryPoints +00007FA12E4006F0 18 stub<13578> AllocateTemporaryEntryPoints +00007FA12E400708 168 stub<13579> AllocateTemporaryEntryPoints +00007FA12E400870 d8 stub<13580> AllocateTemporaryEntryPoints +00007FA12E400948 a8 stub<13581> AllocateTemporaryEntryPoints +00007FA12E4009F0 540 stub<13582> AllocateTemporaryEntryPoints +00007FA12E400F30 18 stub<13583> AllocateTemporaryEntryPoints +00007FA12E400F48 18 stub<13584> AllocateTemporaryEntryPoints +00007FA12E402000 180 stub<13585> AllocateTemporaryEntryPoints +00007FA12E402180 a8 stub<13586> AllocateTemporaryEntryPoints +00007FA12E402228 60 stub<13587> AllocateTemporaryEntryPoints +00007FA12E402288 18 stub<13588> AllocateTemporaryEntryPoints +00007FA12E4022A0 60 stub<13589> AllocateTemporaryEntryPoints +00007FA12E402300 60 stub<13590> AllocateTemporaryEntryPoints +00007FA12E402360 30 stub<13591> AllocateTemporaryEntryPoints +00007FA12E402390 120 stub<13592> AllocateTemporaryEntryPoints +00007FA12E4024B0 18 stub<13593> AllocateTemporaryEntryPoints +00007FA12E4024C8 48 stub<13594> AllocateTemporaryEntryPoints +00007FA12E402510 390 stub<13595> AllocateTemporaryEntryPoints +00007FA12E4028A0 30 stub<13596> AllocateTemporaryEntryPoints +00007FA12E4028D0 18 stub<13597> AllocateTemporaryEntryPoints +00007FA12E4028E8 30 stub<13598> AllocateTemporaryEntryPoints +00007FA12E402918 120 stub<13599> AllocateTemporaryEntryPoints +00007FA12E402A38 30 stub<13600> AllocateTemporaryEntryPoints +00007FA12E402A68 18 stub<13601> AllocateTemporaryEntryPoints +00007FA12E402A80 30 stub<13602> AllocateTemporaryEntryPoints +00007FA12E402AB0 18 stub<13603> AllocateTemporaryEntryPoints +00007FA12E402AC8 120 stub<13604> AllocateTemporaryEntryPoints +00007FA12E402BE8 30 stub<13605> AllocateTemporaryEntryPoints +00007FA12E402C18 30 stub<13606> AllocateTemporaryEntryPoints +00007FA12E402C48 30 stub<13607> AllocateTemporaryEntryPoints +00007FA12E402C78 120 stub<13608> AllocateTemporaryEntryPoints +00007FA12E402D98 30 stub<13609> AllocateTemporaryEntryPoints +00007FA12E402DC8 18 stub<13610> AllocateTemporaryEntryPoints +00007FA12E402E70 30 stub<13611> AllocateTemporaryEntryPoints +00007FA12E402DE0 90 stub<13611> AllocateTemporaryEntryPoints +00007FA12E402EA0 18 stub<13612> AllocateTemporaryEntryPoints +00007FA12E402EB8 120 stub<13613> AllocateTemporaryEntryPoints +00007FA12E402FD8 18 stub<13614> AllocateTemporaryEntryPoints +00007FA12E404000 48 stub<13615> AllocateTemporaryEntryPoints +00007FA12E404048 18 stub<13616> AllocateTemporaryEntryPoints +00007FA12E404060 18 stub<13617> AllocateTemporaryEntryPoints +00007FA12E404078 18 stub<13618> AllocateTemporaryEntryPoints +00007FA12E404090 18 stub<13619> AllocateTemporaryEntryPoints +00007FA12E4040A8 120 stub<13620> AllocateTemporaryEntryPoints +00007FA12E4041C8 18 stub<13621> AllocateTemporaryEntryPoints +00007FA12E4041E0 18 stub<13622> AllocateTemporaryEntryPoints +00007FA12E4041F8 78 stub<13623> AllocateTemporaryEntryPoints +00007FA12E404270 120 stub<13624> AllocateTemporaryEntryPoints +00007FA12E404390 18 stub<13625> AllocateTemporaryEntryPoints +00007FA12E4043A8 18 stub<13626> AllocateTemporaryEntryPoints +00007FA12E4043C0 c0 stub<13627> AllocateTemporaryEntryPoints +00007FA12E404480 18 stub<13628> AllocateTemporaryEntryPoints +00007FA12E404498 18 stub<13629> AllocateTemporaryEntryPoints +00007FA12E4044B0 120 stub<13630> AllocateTemporaryEntryPoints +00007FA12E4045D0 18 stub<13631> AllocateTemporaryEntryPoints +00007FA12E4045E8 120 stub<13632> AllocateTemporaryEntryPoints +00007FA12E404708 270 stub<13633> AllocateTemporaryEntryPoints +00007FA12E404978 120 stub<13634> AllocateTemporaryEntryPoints +00007FA12E404A98 60 stub<13635> AllocateTemporaryEntryPoints +00007FA12E404AF8 48 stub<13636> AllocateTemporaryEntryPoints +00007FA12E404B40 48 stub<13637> AllocateTemporaryEntryPoints +00007FA12E404B88 18 stub<13638> AllocateTemporaryEntryPoints +00007FA12E404BA0 240 stub<13639> AllocateTemporaryEntryPoints +00007FA12E404DE0 150 stub<13640> AllocateTemporaryEntryPoints +00007FA12E406000 120 stub<13641> AllocateTemporaryEntryPoints +00007FA12E406120 120 stub<13642> AllocateTemporaryEntryPoints +00007FA12E406240 48 stub<13643> AllocateTemporaryEntryPoints +00007FA12E406288 30 stub<13644> AllocateTemporaryEntryPoints +00007FA12E4062B8 a8 stub<13645> AllocateTemporaryEntryPoints +00007FA12E406360 78 stub<13646> AllocateTemporaryEntryPoints +00007FA12E4063D8 18 stub<13647> AllocateTemporaryEntryPoints +00007FA12E4063F0 b10 stub<13648> AllocateTemporaryEntryPoints +00007FA12E408000 5d0 stub<13649> AllocateTemporaryEntryPoints +00007FA12E4085D0 18 stub<13650> AllocateTemporaryEntryPoints +00007FA12E4085E8 288 stub<13651> AllocateTemporaryEntryPoints +00007FA12E408870 48 stub<13652> AllocateTemporaryEntryPoints +00007FA12E4088B8 60 stub<13653> AllocateTemporaryEntryPoints +00007FA12E408918 30 stub<13654> AllocateTemporaryEntryPoints +00007FA12E408948 60 stub<13655> AllocateTemporaryEntryPoints +00007FA12E4089A8 108 stub<13656> AllocateTemporaryEntryPoints +00007FA12E408AB0 30 stub<13657> AllocateTemporaryEntryPoints +00007FA12E408AE0 30 stub<13658> AllocateTemporaryEntryPoints +00007FA12E408B10 60 stub<13659> AllocateTemporaryEntryPoints +00007FA12E408B70 60 stub<13660> AllocateTemporaryEntryPoints +00007FA12E408BD0 60 stub<13661> AllocateTemporaryEntryPoints +00007FA12E408C30 60 stub<13662> AllocateTemporaryEntryPoints +00007FA12E408C90 60 stub<13663> AllocateTemporaryEntryPoints +00007FA12E408CF0 60 stub<13664> AllocateTemporaryEntryPoints +00007FA12E408D50 60 stub<13665> AllocateTemporaryEntryPoints +00007FA12E408DB0 60 stub<13666> AllocateTemporaryEntryPoints +00007FA12E408E10 60 stub<13667> AllocateTemporaryEntryPoints +00007FA12E408E70 60 stub<13668> AllocateTemporaryEntryPoints +00007FA12E408ED0 60 stub<13669> AllocateTemporaryEntryPoints +00007FA12E408F30 60 stub<13670> AllocateTemporaryEntryPoints +00007FA12E408F90 60 stub<13671> AllocateTemporaryEntryPoints +00007FA12E40A000 60 stub<13672> AllocateTemporaryEntryPoints +00007FA12E40A060 60 stub<13673> AllocateTemporaryEntryPoints +00007FA12E40A0C0 60 stub<13674> AllocateTemporaryEntryPoints +00007FA12E40A120 60 stub<13675> AllocateTemporaryEntryPoints +00007FA12E40A180 60 stub<13676> AllocateTemporaryEntryPoints +00007FA12E40A1E0 60 stub<13677> AllocateTemporaryEntryPoints +00007FA12E40A240 60 stub<13678> AllocateTemporaryEntryPoints +00007FA12E40A2A0 a8 stub<13679> AllocateTemporaryEntryPoints +00007FA12E40A348 60 stub<13680> AllocateTemporaryEntryPoints +00007FA12E40A3A8 60 stub<13681> AllocateTemporaryEntryPoints +00007FA12E40A408 60 stub<13682> AllocateTemporaryEntryPoints +00007FA12E40A468 60 stub<13683> AllocateTemporaryEntryPoints +00007FA12E40A4C8 60 stub<13684> AllocateTemporaryEntryPoints +00007FA12E40A528 a8 stub<13685> AllocateTemporaryEntryPoints +00007FA12E40A5D0 a8 stub<13686> AllocateTemporaryEntryPoints +00007FA12E40A678 60 stub<13687> AllocateTemporaryEntryPoints +00007FA12E40A6D8 60 stub<13688> AllocateTemporaryEntryPoints +00007FA12E40A738 78 stub<13689> AllocateTemporaryEntryPoints +00007FA12E40A7B0 78 stub<13690> AllocateTemporaryEntryPoints +00007FA12E40A828 48 stub<13691> AllocateTemporaryEntryPoints +00007FA12E40A870 30 stub<13692> AllocateTemporaryEntryPoints +00007FA12E40A8A0 60 stub<13693> AllocateTemporaryEntryPoints +00007FA128666BE0 760 bool [System.Text.RegularExpressions] dynamicClass::Regex2_TryMatchAtCurrentPosition(System.Text.RegularExpressions.RegexRunner /* MT: 0x00007FA1295AE1E8 */,System.ReadOnlySpan`1 /* MT: 0x00007FA128531658 */)[Optimized] +00007FA12B40E870 5e instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::.ctor(string,string,string)[QuickJitted] +00007FA1277C2A80 18 stub<13694> GenerateLookupStub +00007FA127800DA0 18 stub<13696> GenerateResolveStub +00007FA12E40A900 c0 stub<13695> AllocateTemporaryEntryPoints +00007FA1277C81A0 20 stub<13697> GenerateDispatchStub +00007FA12B40E8F0 25 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__31_0(class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath)[QuickJitted] +00007FA12E40A9C0 60 stub<13698> AllocateTemporaryEntryPoints +00007FA12B40E930 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::get_Path()[QuickJitted] +00007FA12E40AA20 60 stub<13699> AllocateTemporaryEntryPoints +00007FA12E40AA80 60 stub<13700> AllocateTemporaryEntryPoints +00007FA12E40AAE0 60 stub<13701> AllocateTemporaryEntryPoints +00007FA12E40AB40 60 stub<13702> AllocateTemporaryEntryPoints +00007FA12E40ABA0 60 stub<13703> AllocateTemporaryEntryPoints +00007FA12E40AC00 60 stub<13704> AllocateTemporaryEntryPoints +00007FA12E40AC60 60 stub<13705> AllocateTemporaryEntryPoints +00007FA12E40ACC0 60 stub<13706> AllocateTemporaryEntryPoints +00007FA12E40AD20 60 stub<13707> AllocateTemporaryEntryPoints +00007FA12E40AD80 60 stub<13708> AllocateTemporaryEntryPoints +00007FA12E40ADE0 18 stub<13709> AllocateTemporaryEntryPoints +00007FA12E40ADF8 d8 stub<13710> AllocateTemporaryEntryPoints +00007FA127800E10 18 stub<13711> GenerateResolveStub +00007FA1277C81C0 20 stub<13712> GenerateDispatchStub +00007FA12E40AED0 18 stub<13713> AllocateTemporaryEntryPoints +00007FA12E40AEE8 18 stub<13714> AllocateTemporaryEntryPoints +00007FA12B40E960 51 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0::g__GetChangedConfigurations|2()[QuickJitted] +00007FA12B40E9D0 37 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0+<g__GetChangedConfigurations|2>d::.ctor(int32)[QuickJitted] +00007FA12E40AF00 18 stub<13715> AllocateTemporaryEntryPoints +00007FA127800E80 18 stub<13716> GenerateResolveStub +00007FA12E40AF18 30 stub<13717> AllocateTemporaryEntryPoints +00007FA1277C81E0 20 stub<13718> GenerateDispatchStub +00007FA12E40AF48 18 stub<13719> AllocateTemporaryEntryPoints +00007FA1277C2AA0 18 stub<13720> GenerateLookupStub +00007FA127800EF0 18 stub<13721> GenerateResolveStub +00007FA1277C8200 20 stub<13722> GenerateDispatchStub +00007FA127800F60 18 stub<13723> GenerateResolveStub +00007FA1277C8220 20 stub<13724> GenerateDispatchStub +00007FA12E40AF60 18 stub<13725> AllocateTemporaryEntryPoints +00007FA12B40EA20 8f instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0+<g__GetChangedConfigurations|2>d::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12E40AF78 18 stub<13726> AllocateTemporaryEntryPoints +00007FA12E40AF90 18 stub<13727> AllocateTemporaryEntryPoints +00007FA12E40AFA8 18 stub<13728> AllocateTemporaryEntryPoints +00007FA12E40AFC0 18 stub<13729> AllocateTemporaryEntryPoints +00007FA1277C2AC0 18 stub<13730> GenerateLookupStub +00007FA12E40C000 270 stub<13731> AllocateTemporaryEntryPoints +00007FA12E40C270 30 stub<13732> AllocateTemporaryEntryPoints +00007FA12E40C2A0 18 stub<13733> AllocateTemporaryEntryPoints +00007FA12E40C2B8 18 stub<13734> AllocateTemporaryEntryPoints +00007FA12E40C2D0 2a0 stub<13735> AllocateTemporaryEntryPoints +00007FA12E40C570 18 stub<13736> AllocateTemporaryEntryPoints +00007FA12E40C588 138 stub<13737> AllocateTemporaryEntryPoints +00007FA12E40C6C0 f0 stub<13738> AllocateTemporaryEntryPoints +00007FA12E40C7B0 48 stub<13739> AllocateTemporaryEntryPoints +00007FA12E40C7F8 138 stub<13740> AllocateTemporaryEntryPoints +00007FA12E40C930 f0 stub<13741> AllocateTemporaryEntryPoints +00007FA12E40CA20 60 stub<13742> AllocateTemporaryEntryPoints +00007FA12E40CA80 a8 stub<13743> AllocateTemporaryEntryPoints +00007FA12E40CB28 108 stub<13744> AllocateTemporaryEntryPoints +00007FA12B40EAD0 6ac instance bool [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0+<g__GetChangedConfigurations|2>d::MoveNext()[QuickJitted] +00007FA12B40F1B0 1c instance class [System.Collections]System.Collections.Generic.Dictionary`2 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.Signed::get_Targets()[QuickJitted] +00007FA12B40F1E0 1c instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmResponse::get_TargetFiles()[QuickJitted] +00007FA12E40CC30 18 stub<13745> AllocateTemporaryEntryPoints +00007FA12E40CC48 18 stub<13746> AllocateTemporaryEntryPoints +00007FA1277C2AE0 18 stub<13747> GenerateLookupStub +00007FA127800FD0 18 stub<13748> GenerateResolveStub +00007FA1277C8240 20 stub<13749> GenerateDispatchStub +00007FA12E40CC60 18 stub<13750> AllocateTemporaryEntryPoints +00007FA12E40CC78 18 stub<13751> AllocateTemporaryEntryPoints +00007FA12E40CC90 60 stub<13752> AllocateTemporaryEntryPoints +00007FA12B40F620 25 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__31_5(class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmFile)[QuickJitted] +00007FA12E40CCF0 60 stub<13753> AllocateTemporaryEntryPoints +00007FA12B40F660 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmFile::get_Path()[QuickJitted] +00007FA12E40CD50 60 stub<13754> AllocateTemporaryEntryPoints +00007FA12B40F690 1c instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmFile [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__31_6(class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmFile)[QuickJitted] +00007FA12E40CDB0 d8 stub<13755> AllocateTemporaryEntryPoints +00007FA12E40CE88 18 stub<13756> AllocateTemporaryEntryPoints +00007FA12E40CEA0 18 stub<13757> AllocateTemporaryEntryPoints +00007FA12E40CEB8 60 stub<13758> AllocateTemporaryEntryPoints +00007FA12B40F6C0 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::get_Product()[QuickJitted] +00007FA12E40E000 210 stub<13759> AllocateTemporaryEntryPoints +00007FA127801040 18 stub<13760> GenerateResolveStub +00007FA1277C8260 20 stub<13761> GenerateDispatchStub +00007FA12E40E210 270 stub<13762> AllocateTemporaryEntryPoints +00007FA12E40E480 138 stub<13763> AllocateTemporaryEntryPoints +00007FA12B40F6F0 1c instance uint8[] [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmFile::get_Raw()[QuickJitted] +00007FA12E40E5B8 138 stub<13764> AllocateTemporaryEntryPoints +00007FA12B40F720 1b instance int32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.Target::get_Length()[QuickJitted] +00007FA12E40E6F0 60 stub<13765> AllocateTemporaryEntryPoints +00007FA12B40F750 1c instance class [System.Collections]System.Collections.Generic.Dictionary`2 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.Target::get_Hashes()[QuickJitted] +00007FA12B40F780 1c instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TargetCustom [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.Target::get_Custom()[QuickJitted] +00007FA12E40E750 c0 stub<13766> AllocateTemporaryEntryPoints +00007FA12B40F7B0 1b instance int32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TargetCustom::get_V()[QuickJitted] +00007FA12E40E810 3f0 stub<13767> AllocateTemporaryEntryPoints +00007FA12B40F7E0 78 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfiguration::.ctor(class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath,uint8[],int32,class [System.Collections]System.Collections.Generic.Dictionary`2,int32)[QuickJitted] +00007FA12E40EC00 48 stub<13768> AllocateTemporaryEntryPoints +00007FA1277C2B00 18 stub<13769> GenerateLookupStub +00007FA12E40EC48 c0 stub<13770> AllocateTemporaryEntryPoints +00007FA12E40ED08 1c8 stub<13771> AllocateTemporaryEntryPoints +00007FA12B40F870 1c instance class Datadog.Trace.RemoteConfigurationManagement.RemoteConfiguration [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0+<g__GetChangedConfigurations|2>d::System.Collections.Generic.IEnumerator.get_Current()[QuickJitted] +00007FA12B40F8A0 30 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__31_1(class Datadog.Trace.RemoteConfigurationManagement.RemoteConfiguration)[QuickJitted] +00007FA12E4A0000 138 stub<13772> AllocateTemporaryEntryPoints +00007FA12E4A0138 90 stub<13773> AllocateTemporaryEntryPoints +00007FA12B40F8F0 1c instance class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfiguration::get_Path()[QuickJitted] +00007FA12E4A01C8 90 stub<13774> AllocateTemporaryEntryPoints +00007FA1278010B0 18 stub<13775> GenerateResolveStub +00007FA1277C8280 20 stub<13776> GenerateDispatchStub +00007FA12E4A0258 3a8 stub<13777> AllocateTemporaryEntryPoints +00007FA12E4A0600 18 stub<13778> AllocateTemporaryEntryPoints +00007FA12E4A0618 138 stub<13779> AllocateTemporaryEntryPoints +00007FA12B40F920 3f instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0+<g__GetChangedConfigurations|2>d::<>m__Finally1()[QuickJitted] +00007FA12E4A0750 d8 stub<13780> AllocateTemporaryEntryPoints +00007FA12E4A0828 f0 stub<13781> AllocateTemporaryEntryPoints +00007FA12B40F980 5d instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0+<g__GetChangedConfigurations|2>d::System.IDisposable.Dispose()[QuickJitted] +00007FA12E4A0918 c0 stub<13782> AllocateTemporaryEntryPoints +00007FA1277C82A0 20 stub<13783> GenerateDispatchStub +00007FA12E4A09D8 c0 stub<13784> AllocateTemporaryEntryPoints +00007FA127801120 18 stub<13785> GenerateResolveStub +00007FA1277C82C0 20 stub<13786> GenerateDispatchStub +00007FA12E4A0A98 390 stub<13787> AllocateTemporaryEntryPoints +00007FA127801190 18 stub<13788> GenerateResolveStub +00007FA1277C82E0 20 stub<13789> GenerateDispatchStub +00007FA12E4A0E28 168 stub<13790> AllocateTemporaryEntryPoints +00007FA1277C2B20 18 stub<13791> GenerateLookupStub +00007FA127801200 18 stub<13792> GenerateResolveStub +00007FA12E4A0F90 48 stub<13793> AllocateTemporaryEntryPoints +00007FA1277C8300 20 stub<13794> GenerateDispatchStub +00007FA1277C2B40 18 stub<13795> GenerateLookupStub +00007FA12E4A2000 90 stub<13796> AllocateTemporaryEntryPoints +00007FA12E4A2090 60 stub<13797> AllocateTemporaryEntryPoints +00007FA12E4A20F0 6f0 stub<13798> AllocateTemporaryEntryPoints +00007FA12E4A27E0 78 stub<13799> AllocateTemporaryEntryPoints +00007FA12E4A2858 a8 stub<13800> AllocateTemporaryEntryPoints +00007FA12E4A2900 18 stub<13801> AllocateTemporaryEntryPoints +00007FA12E4A2918 18 stub<13802> AllocateTemporaryEntryPoints +00007FA12E4A2930 18 stub<13803> AllocateTemporaryEntryPoints +00007FA12E4A2948 120 stub<13804> AllocateTemporaryEntryPoints +00007FA12E4A2A68 18 stub<13805> AllocateTemporaryEntryPoints +00007FA12E4A2A80 d8 stub<13806> AllocateTemporaryEntryPoints +00007FA12E4A2B58 18 stub<13807> AllocateTemporaryEntryPoints +00007FA12E4A2B70 18 stub<13808> AllocateTemporaryEntryPoints +00007FA12E4A2B88 18 stub<13809> AllocateTemporaryEntryPoints +00007FA12E4A2BA0 18 stub<13810> AllocateTemporaryEntryPoints +00007FA1277C2B60 18 stub<13811> GenerateLookupStub +00007FA1277C2B80 18 stub<13812> GenerateLookupStub +00007FA12E4A2BB8 18 stub<13813> AllocateTemporaryEntryPoints +00007FA12E4A2BD0 18 stub<13814> AllocateTemporaryEntryPoints +00007FA12E4A2BE8 18 stub<13815> AllocateTemporaryEntryPoints +00007FA12E4A2C00 18 stub<13816> AllocateTemporaryEntryPoints +00007FA12E4A2C18 60 stub<13817> AllocateTemporaryEntryPoints +00007FA12E4A2C78 18 stub<13818> AllocateTemporaryEntryPoints +00007FA12E4A2C90 48 stub<13819> AllocateTemporaryEntryPoints +00007FA12E4A2CD8 60 stub<13820> AllocateTemporaryEntryPoints +00007FA12E4A2D38 60 stub<13821> AllocateTemporaryEntryPoints +00007FA12E4A2D98 30 stub<13822> AllocateTemporaryEntryPoints +00007FA12E4A2DC8 60 stub<13823> AllocateTemporaryEntryPoints +00007FA12E4A4000 210 stub<13824> AllocateTemporaryEntryPoints +00007FA12E4A4210 5e8 stub<13825> AllocateTemporaryEntryPoints +00007FA12E4A47F8 60 stub<13826> AllocateTemporaryEntryPoints +00007FA12E4A4858 c0 stub<13827> AllocateTemporaryEntryPoints +00007FA12E4A4918 90 stub<13828> AllocateTemporaryEntryPoints +00007FA12E4A49A8 240 stub<13829> AllocateTemporaryEntryPoints +00007FA12E4A4BE8 a8 stub<13830> AllocateTemporaryEntryPoints +00007FA12E4A4C90 d8 stub<13831> AllocateTemporaryEntryPoints +00007FA12E4A4D68 18 stub<13832> AllocateTemporaryEntryPoints +00007FA12E4A4D80 d8 stub<13833> AllocateTemporaryEntryPoints +00007FA12E4A4E58 78 stub<13834> AllocateTemporaryEntryPoints +00007FA12E4A4ED0 60 stub<13835> AllocateTemporaryEntryPoints +00007FA12E4A4F30 18 stub<13836> AllocateTemporaryEntryPoints +00007FA12E4A4F48 60 stub<13837> AllocateTemporaryEntryPoints +00007FA12E4A6000 d8 stub<13838> AllocateTemporaryEntryPoints +00007FA12E4A60D8 150 stub<13839> AllocateTemporaryEntryPoints +00007FA12E4A6228 48 stub<13840> AllocateTemporaryEntryPoints +00007FA12E4A6270 a8 stub<13841> AllocateTemporaryEntryPoints +00007FA12E4A6318 a8 stub<13842> AllocateTemporaryEntryPoints +00007FA12E4A63C0 18 stub<13843> AllocateTemporaryEntryPoints +00007FA12E4A63D8 d8 stub<13844> AllocateTemporaryEntryPoints +00007FA12E4A64B0 30 stub<13845> AllocateTemporaryEntryPoints +00007FA12E4A64E0 60 stub<13846> AllocateTemporaryEntryPoints +00007FA12E4A6540 48 stub<13847> AllocateTemporaryEntryPoints +00007FA12E4A6588 18 stub<13848> AllocateTemporaryEntryPoints +00007FA12E4A65A0 18 stub<13849> AllocateTemporaryEntryPoints +00007FA12E4A65B8 60 stub<13850> AllocateTemporaryEntryPoints +00007FA12E4A6618 60 stub<13851> AllocateTemporaryEntryPoints +00007FA12E4A6678 60 stub<13852> AllocateTemporaryEntryPoints +00007FA12E4A66D8 30 stub<13853> AllocateTemporaryEntryPoints +00007FA12E4A6708 60 stub<13854> AllocateTemporaryEntryPoints +00007FA12E4A6768 60 stub<13855> AllocateTemporaryEntryPoints +00007FA12E4A67C8 48 stub<13856> AllocateTemporaryEntryPoints +00007FA12E4A6810 30 stub<13857> AllocateTemporaryEntryPoints +00007FA12E4A6840 60 stub<13858> AllocateTemporaryEntryPoints +00007FA12E4A68A0 60 stub<13859> AllocateTemporaryEntryPoints +00007FA12E4A6900 78 stub<13860> AllocateTemporaryEntryPoints +00007FA12E4A6978 60 stub<13861> AllocateTemporaryEntryPoints +00007FA12E4A69D8 90 stub<13862> AllocateTemporaryEntryPoints +00007FA12E4A6A68 30 stub<13863> AllocateTemporaryEntryPoints +00007FA12E4A6A98 60 stub<13864> AllocateTemporaryEntryPoints +00007FA12E4A6AF8 78 stub<13865> AllocateTemporaryEntryPoints +00007FA127801270 18 stub<13866> GenerateResolveStub +00007FA1277C8320 20 stub<13867> GenerateDispatchStub +00007FA12E4A6B70 d8 stub<13868> AllocateTemporaryEntryPoints +00007FA12E4A6C48 18 stub<13869> AllocateTemporaryEntryPoints +00007FA12E4A6C60 30 stub<13870> AllocateTemporaryEntryPoints +00007FA1278012E0 18 stub<13871> GenerateResolveStub +00007FA1277C8340 20 stub<13872> GenerateDispatchStub +00007FA12E4A6C90 18 stub<13873> AllocateTemporaryEntryPoints +00007FA12E4A6CA8 18 stub<13874> AllocateTemporaryEntryPoints +00007FA12E4A6CC0 18 stub<13875> AllocateTemporaryEntryPoints +00007FA12E4A6CD8 48 stub<13876> AllocateTemporaryEntryPoints +00007FA12E4A6D20 18 stub<13877> AllocateTemporaryEntryPoints +00007FA12E4A6D38 c0 stub<13878> AllocateTemporaryEntryPoints +00007FA12E4A6DF8 a8 stub<13879> AllocateTemporaryEntryPoints +00007FA12E4A6EA0 a8 stub<13880> AllocateTemporaryEntryPoints +00007FA12E4A6F48 48 stub<13881> AllocateTemporaryEntryPoints +00007FA12E4A6F90 18 stub<13882> AllocateTemporaryEntryPoints +00007FA12E4A6FA8 18 stub<13883> AllocateTemporaryEntryPoints +00007FA12E4A6FC0 30 stub<13884> AllocateTemporaryEntryPoints +00007FA12E4A8000 78 stub<13885> AllocateTemporaryEntryPoints +00007FA12E4A8078 60 stub<13886> AllocateTemporaryEntryPoints +00007FA12E4A80D8 18 stub<13887> AllocateTemporaryEntryPoints +00007FA12E4A80F0 60 stub<13888> AllocateTemporaryEntryPoints +00007FA12E4A8150 60 stub<13889> AllocateTemporaryEntryPoints +00007FA12E4A81B0 78 stub<13890> AllocateTemporaryEntryPoints +00007FA12E4A8228 30 stub<13891> AllocateTemporaryEntryPoints +00007FA12E4A8258 120 stub<13892> AllocateTemporaryEntryPoints +00007FA12E4A8378 60 stub<13893> AllocateTemporaryEntryPoints +00007FA12E4A83D8 30 stub<13894> AllocateTemporaryEntryPoints +00007FA12E4A8408 30 stub<13895> AllocateTemporaryEntryPoints +00007FA12E4A8438 18 stub<13896> AllocateTemporaryEntryPoints +00007FA12E4A8450 48 stub<13897> AllocateTemporaryEntryPoints +00007FA12E4A8498 150 stub<13898> AllocateTemporaryEntryPoints +00007FA12B40FA00 6b7 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Product::AssignConfigs(class [System.Collections]System.Collections.Generic.List`1)[Optimized] +00007FA12E4A85E8 90 stub<13899> AllocateTemporaryEntryPoints +00007FA12E4A8678 60 stub<13900> AllocateTemporaryEntryPoints +00007FA12B410120 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::.cctor()[QuickJitted] +00007FA12B410160 71 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::AddWithResize(!0)[QuickJitted] +00007FA12E4A86D8 d8 stub<13901> AllocateTemporaryEntryPoints +00007FA12E4A87B0 18 stub<13902> AllocateTemporaryEntryPoints +00007FA12E4A87C8 510 stub<13903> AllocateTemporaryEntryPoints +00007FA12B4101F0 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::Grow(int32)[QuickJitted] +00007FA12E4A8CD8 a8 stub<13904> AllocateTemporaryEntryPoints +00007FA12B410280 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::set_Capacity(int32)[QuickJitted] +00007FA12E4A8D80 18 stub<13905> AllocateTemporaryEntryPoints +00007FA12E4A8D98 18 stub<13906> AllocateTemporaryEntryPoints +00007FA12E4A8DB0 18 stub<13907> AllocateTemporaryEntryPoints +00007FA12E4A8DC8 18 stub<13908> AllocateTemporaryEntryPoints +00007FA12E4A8DE0 120 stub<13909> AllocateTemporaryEntryPoints +00007FA12B410360 29 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Product::.cctor()[QuickJitted] +00007FA12E4A8F00 18 stub<13910> AllocateTemporaryEntryPoints +00007FA12E4A8F18 18 stub<13911> AllocateTemporaryEntryPoints +00007FA12E4A8F30 18 stub<13912> AllocateTemporaryEntryPoints +00007FA12E4A8F48 18 stub<13913> AllocateTemporaryEntryPoints +00007FA12E4A8F60 90 stub<13914> AllocateTemporaryEntryPoints +00007FA12B4103A0 45 instance void [Datadog.Trace] dynamicClass::IL_STUB_InstantiatingStub(string,System.Int32 /* MT: 0x00007FA12840E378 */,System.String /* MT: 0x00007FA128531038 */,System.Int32 /* MT: 0x00007FA12840E378 */,int32,string)[Optimized] +00007FA12E4AA000 18 stub<13915> AllocateTemporaryEntryPoints +00007FA12E4AA018 48 stub<13916> AllocateTemporaryEntryPoints +00007FA12E4AA060 18 stub<13917> AllocateTemporaryEntryPoints +00007FA12E4AA090 48 stub<13919> AllocateTemporaryEntryPoints +00007FA12E4AA078 18 stub<13918> AllocateTemporaryEntryPoints +00007FA12E4AA0D8 48 stub<13920> AllocateTemporaryEntryPoints +00007FA12E4AA120 60 stub<13921> AllocateTemporaryEntryPoints +00007FA12B410400 a0 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,!!1,!!2,int32,string)[QuickJitted] +00007FA12E4AA180 18 stub<13922> AllocateTemporaryEntryPoints +00007FA12E4AA198 d8 stub<13923> AllocateTemporaryEntryPoints +00007FA12E4AA270 c0 stub<13924> AllocateTemporaryEntryPoints +00007FA12E4AA330 60 stub<13925> AllocateTemporaryEntryPoints +00007FA12E4AA390 a8 stub<13926> AllocateTemporaryEntryPoints +00007FA12E4AA438 90 stub<13927> AllocateTemporaryEntryPoints +00007FA12E4AA4C8 60 stub<13928> AllocateTemporaryEntryPoints +00007FA12E4AA528 30 stub<13929> AllocateTemporaryEntryPoints +00007FA12E4AA558 60 stub<13930> AllocateTemporaryEntryPoints +00007FA12E4AA5B8 108 stub<13931> AllocateTemporaryEntryPoints +00007FA12E4AA6C0 48 stub<13932> AllocateTemporaryEntryPoints +00007FA12E4AA708 30 stub<13933> AllocateTemporaryEntryPoints +00007FA12E4AA738 30 stub<13934> AllocateTemporaryEntryPoints +00007FA12E4AA768 30 stub<13935> AllocateTemporaryEntryPoints +00007FA12B4104C0 102 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,!!1,!!2,int32,string)[QuickJitted] +00007FA12E4AA798 60 stub<13936> AllocateTemporaryEntryPoints +00007FA12E4AA7F8 108 stub<13937> AllocateTemporaryEntryPoints +00007FA12E4AA900 108 stub<13938> AllocateTemporaryEntryPoints +00007FA12E4AAA08 18 stub<13939> AllocateTemporaryEntryPoints +00007FA12E4AAA20 240 stub<13940> AllocateTemporaryEntryPoints +00007FA12B4105E0 f0 instance class System.Collections.Generic.IEnumerator`1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12E4AAC60 f0 stub<13941> AllocateTemporaryEntryPoints +00007FA12E4AAD50 60 stub<13942> AllocateTemporaryEntryPoints +00007FA12E4AC000 5e8 stub<13943> AllocateTemporaryEntryPoints +00007FA12E4AC5E8 c0 stub<13944> AllocateTemporaryEntryPoints +00007FA12E4AC6A8 90 stub<13945> AllocateTemporaryEntryPoints +00007FA12E4AC738 a8 stub<13946> AllocateTemporaryEntryPoints +00007FA12E4AC7E0 18 stub<13947> AllocateTemporaryEntryPoints +00007FA12E4AC7F8 78 stub<13948> AllocateTemporaryEntryPoints +00007FA12E4AC870 18 stub<13949> AllocateTemporaryEntryPoints +00007FA12E4AC888 60 stub<13950> AllocateTemporaryEntryPoints +00007FA12B4106F0 52 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection+Enumerator[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::.ctor(class System.Collections.Generic.Dictionary`2)[QuickJitted] +00007FA12E4AC8E8 60 stub<13951> AllocateTemporaryEntryPoints +00007FA12E4AC948 60 stub<13952> AllocateTemporaryEntryPoints +00007FA12E4AC9A8 48 stub<13953> AllocateTemporaryEntryPoints +00007FA12E4AC9F0 60 stub<13954> AllocateTemporaryEntryPoints +00007FA12E4ACA50 48 stub<13955> AllocateTemporaryEntryPoints +00007FA12E4ACA98 48 stub<13956> AllocateTemporaryEntryPoints +00007FA12E4ACAE0 48 stub<13957> AllocateTemporaryEntryPoints +00007FA12E4ACB28 48 stub<13958> AllocateTemporaryEntryPoints +00007FA12E4ACB70 60 stub<13959> AllocateTemporaryEntryPoints +00007FA12E4ACBD0 30 stub<13960> AllocateTemporaryEntryPoints +00007FA12E4ACC00 30 stub<13961> AllocateTemporaryEntryPoints +00007FA12E4ACC30 78 stub<13962> AllocateTemporaryEntryPoints +00007FA12E4ACCA8 78 stub<13963> AllocateTemporaryEntryPoints +00007FA12B410760 121 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection+Enumerator[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::MoveNext()[QuickJitted] +00007FA12E4ACD20 78 stub<13964> AllocateTemporaryEntryPoints +00007FA12E4ACD98 90 stub<13965> AllocateTemporaryEntryPoints +00007FA12B4108A0 18 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection+Enumerator[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::Dispose()[QuickJitted] +00007FA127801350 18 stub<13966> GenerateResolveStub +00007FA1277C8360 20 stub<13967> GenerateDispatchStub +00007FA1278013C0 18 stub<13968> GenerateResolveStub +00007FA1277C8380 20 stub<13969> GenerateDispatchStub +00007FA1277C83A0 20 stub<13970> GenerateDispatchStub +00007FA1277C83C0 20 stub<13971> GenerateDispatchStub +00007FA12E4ACE28 d8 stub<13972> AllocateTemporaryEntryPoints +00007FA12E4ACF00 48 stub<13973> AllocateTemporaryEntryPoints +00007FA12E4ACF48 48 stub<13974> AllocateTemporaryEntryPoints +00007FA12E4ACF90 18 stub<13975> AllocateTemporaryEntryPoints +00007FA12E4ACFA8 48 stub<13976> AllocateTemporaryEntryPoints +00007FA12E4AE000 18 stub<13977> AllocateTemporaryEntryPoints +00007FA12E4AE018 18 stub<13978> AllocateTemporaryEntryPoints +00007FA12E4AE030 18 stub<13979> AllocateTemporaryEntryPoints +00007FA12E4AE048 18 stub<13980> AllocateTemporaryEntryPoints +00007FA12E4AE060 30 stub<13981> AllocateTemporaryEntryPoints +00007FA12E4AE090 90 stub<13982> AllocateTemporaryEntryPoints +00007FA12B4108D0 eb instance void [Datadog.Trace] Datadog.Trace.AppSec.Security::AsmDDProductConfigChanged(object,class Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs)[QuickJitted] +00007FA12E4AE120 90 stub<13983> AllocateTemporaryEntryPoints +00007FA12E4AE1B0 108 stub<13984> AllocateTemporaryEntryPoints +00007FA12E4AE2B8 48 stub<13985> AllocateTemporaryEntryPoints +00007FA12E4AE300 18 stub<13986> AllocateTemporaryEntryPoints +00007FA12E4AE318 1f8 stub<13987> AllocateTemporaryEntryPoints +00007FA12B4109E0 51 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1> [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs::GetConfigurationAsString()[QuickJitted] +00007FA12B410A50 37 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+d__6::.ctor(int32)[QuickJitted] +00007FA1277C2BA0 18 stub<13988> GenerateLookupStub +00007FA12E4AE510 18 stub<13989> AllocateTemporaryEntryPoints +00007FA127801430 18 stub<13990> GenerateResolveStub +00007FA12E4AE528 18 stub<13991> AllocateTemporaryEntryPoints +00007FA12E4AE540 18 stub<13992> AllocateTemporaryEntryPoints +00007FA1277C83E0 20 stub<13993> GenerateDispatchStub +00007FA1278014A0 18 stub<13994> GenerateResolveStub +00007FA1277C8400 20 stub<13995> GenerateDispatchStub +00007FA127801510 18 stub<13996> GenerateResolveStub +00007FA1277C8420 20 stub<13997> GenerateDispatchStub +00007FA12B410AA0 80 !!0 [System.Linq] System.Linq.Enumerable::FirstOrDefault(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12E4AE558 18 stub<13998> AllocateTemporaryEntryPoints +00007FA12E4AE570 78 stub<13999> AllocateTemporaryEntryPoints +00007FA12E4AE5E8 48 stub<14000> AllocateTemporaryEntryPoints +00007FA12E4AE630 48 stub<14001> AllocateTemporaryEntryPoints +00007FA12E4AE678 18 stub<14002> AllocateTemporaryEntryPoints +00007FA12E4AE690 18 stub<14003> AllocateTemporaryEntryPoints +00007FA12E4AE6A8 78 stub<14004> AllocateTemporaryEntryPoints +00007FA12E4AE720 30 stub<14005> AllocateTemporaryEntryPoints +00007FA12E4AE750 18 stub<14006> AllocateTemporaryEntryPoints +00007FA12E4AE768 a8 stub<14007> AllocateTemporaryEntryPoints +00007FA12E4AE810 90 stub<14008> AllocateTemporaryEntryPoints +00007FA12E4AE8A0 18 stub<14009> AllocateTemporaryEntryPoints +00007FA12E4AE8B8 18 stub<14010> AllocateTemporaryEntryPoints +00007FA12E4AE8D0 78 stub<14011> AllocateTemporaryEntryPoints +00007FA12E4AE948 18 stub<14012> AllocateTemporaryEntryPoints +00007FA12E4AE9A8 18 stub<14014> AllocateTemporaryEntryPoints +00007FA12E4AE960 48 stub<14013> AllocateTemporaryEntryPoints +00007FA12E4AE9C0 18 stub<14015> AllocateTemporaryEntryPoints +00007FA12E4AE9D8 18 stub<14016> AllocateTemporaryEntryPoints +00007FA12E4AE9F0 18 stub<14017> AllocateTemporaryEntryPoints +00007FA12E4AEA08 18 stub<14018> AllocateTemporaryEntryPoints +00007FA12E4AEA20 18 stub<14019> AllocateTemporaryEntryPoints +00007FA12E4AEA38 78 stub<14020> AllocateTemporaryEntryPoints +00007FA12E4AEAB0 18 stub<14021> AllocateTemporaryEntryPoints +00007FA12E4AEAC8 a8 stub<14022> AllocateTemporaryEntryPoints +00007FA12E4AEB70 18 stub<14023> AllocateTemporaryEntryPoints +00007FA12E4AEB88 78 stub<14024> AllocateTemporaryEntryPoints +00007FA12E4AEC00 18 stub<14025> AllocateTemporaryEntryPoints +00007FA12E4AEC18 78 stub<14026> AllocateTemporaryEntryPoints +00007FA12E4AEC90 18 stub<14027> AllocateTemporaryEntryPoints +00007FA12E4AECA8 18 stub<14028> AllocateTemporaryEntryPoints +00007FA12E4AECC0 18 stub<14029> AllocateTemporaryEntryPoints +00007FA1277C2BC0 18 stub<14030> GenerateLookupStub +00007FA127801580 18 stub<14031> GenerateResolveStub +00007FA1277C8440 20 stub<14032> GenerateDispatchStub +00007FA12B410B40 44e !!0 [System.Linq] System.Linq.Enumerable::TryGetFirst(class [System.Runtime]System.Collections.Generic.IEnumerable`1,bool&)[QuickJitted] +00007FA1277C2BE0 18 stub<14033> GenerateLookupStub +00007FA12E4AECD8 18 stub<14034> AllocateTemporaryEntryPoints +00007FA12B410FC0 8f instance class [System.Runtime]System.Collections.Generic.IEnumerator`1> [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+d__6::System.Collections.Generic.IEnumerable>.GetEnumerator()[QuickJitted] +00007FA12E4AECF0 18 stub<14035> AllocateTemporaryEntryPoints +00007FA1277C2C00 18 stub<14036> GenerateLookupStub +00007FA1277C2C20 18 stub<14037> GenerateLookupStub +00007FA1277C8460 20 stub<14038> GenerateDispatchStub +00007FA12E4AED08 1f8 stub<14039> AllocateTemporaryEntryPoints +00007FA12E4AEF00 30 stub<14040> AllocateTemporaryEntryPoints +00007FA128523EF0 301 instance bool [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+d__6::MoveNext()[QuickJitted] +00007FA12E530000 d8 stub<14041> AllocateTemporaryEntryPoints +00007FA12E5300D8 f0 stub<14042> AllocateTemporaryEntryPoints +00007FA128524220 1c instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs::get_ConfigContents()[QuickJitted] +00007FA128524250 4a instance class System.Collections.Generic.IEnumerator`1 [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA1277C8480 20 stub<14043> GenerateDispatchStub +00007FA1285242B0 4a instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::.ctor(class System.Collections.Generic.List`1)[QuickJitted] +00007FA12B411070 99 instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::MoveNext()[QuickJitted] +00007FA12E5301C8 18 stub<14044> AllocateTemporaryEntryPoints +00007FA1278015F0 18 stub<14045> GenerateResolveStub +00007FA1277C84A0 20 stub<14046> GenerateDispatchStub +00007FA12B411120 37 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::get_Current()[QuickJitted] +00007FA12E5301E0 18 stub<14047> AllocateTemporaryEntryPoints +00007FA12B411170 1c instance uint8[] [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.NamedRawFile::get_RawFile()[QuickJitted] +00007FA12E5301F8 18 stub<14048> AllocateTemporaryEntryPoints +00007FA12E530210 18 stub<14049> AllocateTemporaryEntryPoints +00007FA12E530228 18 stub<14050> AllocateTemporaryEntryPoints +00007FA12E530240 18 stub<14051> AllocateTemporaryEntryPoints +00007FA12E530258 18 stub<14052> AllocateTemporaryEntryPoints +00007FA12E530270 18 stub<14053> AllocateTemporaryEntryPoints +00007FA12E530288 258 stub<14054> AllocateTemporaryEntryPoints +00007FA12E5304E0 30 stub<14055> AllocateTemporaryEntryPoints +00007FA12E530510 78 stub<14056> AllocateTemporaryEntryPoints +00007FA12E530588 48 stub<14057> AllocateTemporaryEntryPoints +00007FA12E5305D0 90 stub<14058> AllocateTemporaryEntryPoints +00007FA12E530660 18 stub<14059> AllocateTemporaryEntryPoints +00007FA1277C2C40 18 stub<14060> GenerateLookupStub +00007FA127801660 18 stub<14061> GenerateResolveStub +00007FA1277C84C0 20 stub<14062> GenerateDispatchStub +00007FA1277C2C60 18 stub<14063> GenerateLookupStub +00007FA1278016D0 18 stub<14064> GenerateResolveStub +00007FA1277C84E0 20 stub<14065> GenerateDispatchStub +00007FA1277C2C80 18 stub<14066> GenerateLookupStub +00007FA1277C2CA0 18 stub<14067> GenerateLookupStub +00007FA127801740 18 stub<14068> GenerateResolveStub +00007FA1277C8500 20 stub<14069> GenerateDispatchStub +00007FA12E530678 18 stub<14070> AllocateTemporaryEntryPoints +00007FA1277C2CC0 18 stub<14071> GenerateLookupStub +00007FA1278017B0 18 stub<14072> GenerateResolveStub +00007FA1277C8520 20 stub<14073> GenerateDispatchStub +00007FA12E530690 18 stub<14074> AllocateTemporaryEntryPoints +00007FA12E5306A8 18 stub<14075> AllocateTemporaryEntryPoints +00007FA12E550420 1b instance class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.NamedRawFile::get_Path()[QuickJitted] +00007FA1277C2CE0 18 stub<14076> GenerateLookupStub +00007FA12E550450 3f instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.NamedTypedFile`1[System.__Canon]::.ctor(string,!0)[QuickJitted] +00007FA127801820 18 stub<14077> GenerateResolveStub +00007FA1277C8540 20 stub<14078> GenerateDispatchStub +00007FA1277C2D00 18 stub<14079> GenerateLookupStub +00007FA1277C2D20 18 stub<14080> GenerateLookupStub +00007FA1277C2D40 18 stub<14081> GenerateLookupStub +00007FA127801890 18 stub<14082> GenerateResolveStub +00007FA1277C8560 20 stub<14083> GenerateDispatchStub +00007FA127801900 18 stub<14084> GenerateResolveStub +00007FA1277C8580 20 stub<14085> GenerateDispatchStub +00007FA12E5504B0 37 instance valuetype Datadog.Trace.RemoteConfigurationManagement.NamedTypedFile`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+d__6::System.Collections.Generic.IEnumerator>.get_Current()[QuickJitted] +00007FA12E5306C0 18 stub<14086> AllocateTemporaryEntryPoints +00007FA1277C85A0 20 stub<14087> GenerateDispatchStub +00007FA12E5306D8 18 stub<14088> AllocateTemporaryEntryPoints +00007FA12E550500 f7 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+d__6::System.IDisposable.Dispose()[QuickJitted] +00007FA127801970 18 stub<14089> GenerateResolveStub +00007FA1277C85C0 20 stub<14090> GenerateDispatchStub +00007FA12E5306F0 18 stub<14091> AllocateTemporaryEntryPoints +00007FA12E550630 40 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+d__6::<>m__Finally3()[QuickJitted] +00007FA12E530708 18 stub<14092> AllocateTemporaryEntryPoints +00007FA12E550690 40 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+d__6::<>m__Finally2()[QuickJitted] +00007FA1277C2D60 18 stub<14093> GenerateLookupStub +00007FA1277C85E0 20 stub<14094> GenerateDispatchStub +00007FA1278019E0 18 stub<14095> GenerateResolveStub +00007FA1277C8600 20 stub<14096> GenerateDispatchStub +00007FA12E530720 18 stub<14097> AllocateTemporaryEntryPoints +00007FA12E530738 18 stub<14098> AllocateTemporaryEntryPoints +00007FA12E5506F0 40 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+d__6::<>m__Finally1()[QuickJitted] +00007FA1277C2D80 18 stub<14099> GenerateLookupStub +00007FA12E550750 14 instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Datadog.Trace.RemoteConfigurationManagement.NamedRawFile]::Dispose()[QuickJitted] +00007FA12E550780 20 instance !0 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.NamedTypedFile`1[System.__Canon]::get_TypedFile()[QuickJitted] +00007FA12E5507C0 1f instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.NamedTypedFile`1[System.__Canon]::get_Name()[QuickJitted] +00007FA127801A50 18 stub<14100> GenerateResolveStub +00007FA12E530750 48 stub<14101> AllocateTemporaryEntryPoints +00007FA1277C8620 20 stub<14102> GenerateDispatchStub +00007FA12E530798 60 stub<14103> AllocateTemporaryEntryPoints +00007FA12784B6F0 11 stub<14104> GenerateVTableCallStub +00007FA127801AC0 18 stub<14105> GenerateResolveStub +00007FA1277C8640 20 stub<14106> GenerateDispatchStub +00007FA12784B710 11 stub<14107> GenerateVTableCallStub +00007FA12E5307F8 270 stub<14108> AllocateTemporaryEntryPoints +00007FA12E550800 106 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs::Acknowledge(string)[QuickJitted] +00007FA12E530A68 18 stub<14109> AllocateTemporaryEntryPoints +00007FA12E550920 47 void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+<>c::.cctor()[QuickJitted] +00007FA12E550980 1f instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+<>c::.ctor()[QuickJitted] +00007FA12E5509C0 107 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs::GetOrCreateApplyDetails(string,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E530A80 18 stub<14110> AllocateTemporaryEntryPoints +00007FA12E550AF0 6d instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12E530A98 18 stub<14111> AllocateTemporaryEntryPoints +00007FA12E530AB0 18 stub<14112> AllocateTemporaryEntryPoints +00007FA12E530AC8 18 stub<14113> AllocateTemporaryEntryPoints +00007FA12784B730 11 stub<14114> GenerateVTableCallStub +00007FA12E530AE0 3d8 stub<14115> AllocateTemporaryEntryPoints +00007FA12E550B80 5bb instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::FindValue(!0)[QuickJitted] +00007FA12E530EB8 78 stub<14116> AllocateTemporaryEntryPoints +00007FA12E551160 3c instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ApplyDetails::.ctor()[QuickJitted] +00007FA12E5511B0 26 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ApplyDetails::set_Filename(string)[QuickJitted] +00007FA12E532000 360 stub<14117> AllocateTemporaryEntryPoints +00007FA12E5511F0 21 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ApplyDetails::set_ApplyState(uint32)[QuickJitted] +00007FA12E532360 258 stub<14118> AllocateTemporaryEntryPoints +00007FA12E551230 2a instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ApplyDetails::set_Error(string)[QuickJitted] +00007FA12E5325B8 a8 stub<14119> AllocateTemporaryEntryPoints +00007FA12E532660 90 stub<14120> AllocateTemporaryEntryPoints +00007FA12E551270 4e instance valuetype Datadog.Trace.RemoteConfigurationManagement.ApplyDetails [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ProductConfigChangedEventArgs+<>c::b__7_0(valuetype Datadog.Trace.RemoteConfigurationManagement.ApplyDetails)[QuickJitted] +00007FA12E5326F0 30 stub<14121> AllocateTemporaryEntryPoints +00007FA12E5512E0 1b instance uint32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.ApplyDetails::get_ApplyState()[QuickJitted] +00007FA12E532720 348 stub<14122> AllocateTemporaryEntryPoints +00007FA12E551310 57 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::set_Item(!0,!1)[QuickJitted] +00007FA12E532A68 48 stub<14123> AllocateTemporaryEntryPoints +00007FA12E532AB0 18 stub<14124> AllocateTemporaryEntryPoints +00007FA12E532AC8 198 stub<14125> AllocateTemporaryEntryPoints +00007FA12E532C60 18 stub<14126> AllocateTemporaryEntryPoints +00007FA12E532C78 18 stub<14127> AllocateTemporaryEntryPoints +00007FA1277C2DA0 18 stub<14128> GenerateLookupStub +00007FA12E551380 9d5 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E551D80 274 instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::GetOrAdd(!0,class [System.Private.CoreLib]System.Func`2)[QuickJitted] +00007FA12E552020 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::Initialize(int32)[QuickJitted] +00007FA12E532C90 60 stub<14129> AllocateTemporaryEntryPoints +00007FA12E532CF0 18 stub<14130> AllocateTemporaryEntryPoints +00007FA12E532D08 18 stub<14131> AllocateTemporaryEntryPoints +00007FA12E532D20 18 stub<14132> AllocateTemporaryEntryPoints +00007FA12E532D38 18 stub<14133> AllocateTemporaryEntryPoints +00007FA12E552120 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::GetBucket(uint32)[QuickJitted] +00007FA12E532D50 18 stub<14134> AllocateTemporaryEntryPoints +00007FA12E532D68 18 stub<14135> AllocateTemporaryEntryPoints +00007FA12E532D80 18 stub<14136> AllocateTemporaryEntryPoints +00007FA12E552190 38 instance !1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection+Enumerator[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.ApplyDetails]::get_Current()[QuickJitted] +00007FA1277C8660 20 stub<14137> GenerateDispatchStub +00007FA127801B30 18 stub<14138> GenerateResolveStub +00007FA1277C8680 20 stub<14139> GenerateDispatchStub +00007FA127801BA0 18 stub<14140> GenerateResolveStub +00007FA1277C86A0 20 stub<14141> GenerateDispatchStub +00007FA1277C86C0 20 stub<14142> GenerateDispatchStub +00007FA12E532D98 18 stub<14143> AllocateTemporaryEntryPoints +00007FA1277C2DC0 18 stub<14144> GenerateLookupStub +00007FA12E532DB0 18 stub<14145> AllocateTemporaryEntryPoints +00007FA12E5521E0 1f7 instance class [System.Collections]System.Collections.Generic.List`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c__DisplayClass31_0::g__GetRemovedConfigurations|3(class Datadog.Trace.RemoteConfigurationManagement.Product)[QuickJitted] +00007FA1277C86E0 20 stub<14146> GenerateDispatchStub +00007FA12E552920 1b instance int32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.Signed::get_Version()[QuickJitted] +00007FA12E552950 1c instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TargetsCustom [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.Signed::get_Custom()[QuickJitted] +00007FA12E552410 4eb instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::TryGetValueInternal(!0,int32,!1&)[QuickJitted] +00007FA12E552980 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.Tuf.TargetsCustom::get_OpaqueBackendState()[QuickJitted] +00007FA12E5529B0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24]::MoveNext()[QuickJitted] +00007FA12E5529F0 94 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::GetBucket(int32)[QuickJitted] +00007FA12E532DF8 18 stub<14147> AllocateTemporaryEntryPoints +00007FA12E552AA0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E552C20 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24]::.cctor()[QuickJitted] +00007FA12E532E10 18 stub<14148> AllocateTemporaryEntryPoints +00007FA12E552CA0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E532E28 18 stub<14149> AllocateTemporaryEntryPoints +00007FA12E552CE0 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29]::ClearStateUponCompletion()[QuickJitted] +00007FA12E552D60 8a instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6]::ClearStateUponCompletion()[QuickJitted] +00007FA12E552E00 5d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::ClearStateUponCompletion()[QuickJitted] +00007FA12E552E80 756 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12E553600 94 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA12E5536B0 83 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity,Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider+ModelMetadataCacheEntry]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA12E532E40 18 stub<14150> AllocateTemporaryEntryPoints +00007FA12E532E58 30 stub<14151> AllocateTemporaryEntryPoints +00007FA12E553750 9e instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity]::Equals(!0,!0)[QuickJitted] +00007FA12784B750 11 stub<14152> GenerateVTableCallStub +00007FA1277C2DE0 18 stub<14153> GenerateLookupStub +00007FA127801C10 18 stub<14154> GenerateResolveStub +00007FA1277C8700 20 stub<14155> GenerateDispatchStub +00007FA12E532E88 18 stub<14156> AllocateTemporaryEntryPoints +00007FA1277C8720 20 stub<14157> GenerateDispatchStub +00007FA12E532EA0 18 stub<14158> AllocateTemporaryEntryPoints +00007FA12E532EB8 60 stub<14159> AllocateTemporaryEntryPoints +00007FA12E532F18 18 stub<14160> AllocateTemporaryEntryPoints +00007FA12E532F30 18 stub<14161> AllocateTemporaryEntryPoints +00007FA12E532F48 18 stub<14162> AllocateTemporaryEntryPoints +00007FA12E532F60 18 stub<14163> AllocateTemporaryEntryPoints +00007FA12E532F78 18 stub<14164> AllocateTemporaryEntryPoints +00007FA12E532F90 18 stub<14165> AllocateTemporaryEntryPoints +00007FA12E532FA8 48 stub<14166> AllocateTemporaryEntryPoints +00007FA12E534000 18 stub<14167> AllocateTemporaryEntryPoints +00007FA12E534018 18 stub<14168> AllocateTemporaryEntryPoints +00007FA12E534030 30 stub<14169> AllocateTemporaryEntryPoints +00007FA12E534060 18 stub<14170> AllocateTemporaryEntryPoints +00007FA12E534078 18 stub<14171> AllocateTemporaryEntryPoints +00007FA12E534090 18 stub<14172> AllocateTemporaryEntryPoints +00007FA12E5340A8 18 stub<14173> AllocateTemporaryEntryPoints +00007FA12E5340C0 30 stub<14174> AllocateTemporaryEntryPoints +00007FA12E5340F0 18 stub<14175> AllocateTemporaryEntryPoints +00007FA12E534108 30 stub<14176> AllocateTemporaryEntryPoints +00007FA12E534138 18 stub<14177> AllocateTemporaryEntryPoints +00007FA12E534150 18 stub<14178> AllocateTemporaryEntryPoints +00007FA12E534168 18 stub<14179> AllocateTemporaryEntryPoints +00007FA12E534180 18 stub<14180> AllocateTemporaryEntryPoints +00007FA12E534198 18 stub<14181> AllocateTemporaryEntryPoints +00007FA12E5341B0 18 stub<14182> AllocateTemporaryEntryPoints +00007FA12E5341C8 18 stub<14183> AllocateTemporaryEntryPoints +00007FA12E5341E0 18 stub<14184> AllocateTemporaryEntryPoints +00007FA12E5341F8 18 stub<14185> AllocateTemporaryEntryPoints +00007FA12E534210 18 stub<14186> AllocateTemporaryEntryPoints +00007FA12E534228 18 stub<14187> AllocateTemporaryEntryPoints +00007FA12E534240 18 stub<14188> AllocateTemporaryEntryPoints +00007FA12E534258 18 stub<14189> AllocateTemporaryEntryPoints +00007FA12E534270 18 stub<14190> AllocateTemporaryEntryPoints +00007FA12E534288 18 stub<14191> AllocateTemporaryEntryPoints +00007FA12E5342A0 18 stub<14192> AllocateTemporaryEntryPoints +00007FA12E5342B8 30 stub<14193> AllocateTemporaryEntryPoints +00007FA12E5342E8 18 stub<14194> AllocateTemporaryEntryPoints +00007FA12E534300 60 stub<14195> AllocateTemporaryEntryPoints +00007FA127801C80 18 stub<14196> GenerateResolveStub +00007FA1277C8740 20 stub<14197> GenerateDispatchStub +00007FA1277C2E00 18 stub<14198> GenerateLookupStub +00007FA12E534360 18 stub<14199> AllocateTemporaryEntryPoints +00007FA12E534378 c0 stub<14200> AllocateTemporaryEntryPoints +00007FA12E534438 138 stub<14201> AllocateTemporaryEntryPoints +00007FA1277C8760 20 stub<14202> GenerateDispatchStub +00007FA12E5345A0 60 stub<14203> AllocateTemporaryEntryPoints +00007FA12E534600 48 stub<14204> AllocateTemporaryEntryPoints +00007FA12E534648 18 stub<14205> AllocateTemporaryEntryPoints +00007FA1277C2E20 18 stub<14206> GenerateLookupStub +00007FA127801CF0 18 stub<14207> GenerateResolveStub +00007FA1277C8780 20 stub<14208> GenerateDispatchStub +00007FA12E534660 18 stub<14209> AllocateTemporaryEntryPoints +00007FA1277C2E40 18 stub<14210> GenerateLookupStub +00007FA127801D60 18 stub<14211> GenerateResolveStub +00007FA1277C87A0 20 stub<14212> GenerateDispatchStub +00007FA1277C2E60 18 stub<14213> GenerateLookupStub +00007FA127801DD0 18 stub<14214> GenerateResolveStub +00007FA1277C87C0 20 stub<14215> GenerateDispatchStub +00007FA12E534678 90 stub<14216> AllocateTemporaryEntryPoints +00007FA12E534708 480 stub<14217> AllocateTemporaryEntryPoints +00007FA12E534B88 78 stub<14218> AllocateTemporaryEntryPoints +00007FA12E534C00 18 stub<14219> AllocateTemporaryEntryPoints +00007FA12E534C18 18 stub<14220> AllocateTemporaryEntryPoints +00007FA127801E40 18 stub<14221> GenerateResolveStub +00007FA1277C87E0 20 stub<14222> GenerateDispatchStub +00007FA127801EB0 18 stub<14223> GenerateResolveStub +00007FA1277C8800 20 stub<14224> GenerateDispatchStub +00007FA12E534C30 d8 stub<14225> AllocateTemporaryEntryPoints +00007FA12E534D08 18 stub<14226> AllocateTemporaryEntryPoints +00007FA12E534D20 18 stub<14227> AllocateTemporaryEntryPoints +00007FA12E534D38 210 stub<14228> AllocateTemporaryEntryPoints +00007FA12E536000 f0 stub<14229> AllocateTemporaryEntryPoints +00007FA12E5360F0 18 stub<14230> AllocateTemporaryEntryPoints +00007FA12E536108 18 stub<14231> AllocateTemporaryEntryPoints +00007FA12E536120 288 stub<14232> AllocateTemporaryEntryPoints +00007FA12E5363A8 18 stub<14233> AllocateTemporaryEntryPoints +00007FA12E5363C0 18 stub<14234> AllocateTemporaryEntryPoints +00007FA12E5363D8 90 stub<14235> AllocateTemporaryEntryPoints +00007FA12E536468 18 stub<14236> AllocateTemporaryEntryPoints +00007FA12E536480 18 stub<14237> AllocateTemporaryEntryPoints +00007FA12E536498 150 stub<14238> AllocateTemporaryEntryPoints +00007FA12E5365E8 18 stub<14239> AllocateTemporaryEntryPoints +00007FA12E536600 18 stub<14240> AllocateTemporaryEntryPoints +00007FA12E536618 30 stub<14241> AllocateTemporaryEntryPoints +00007FA12E536648 18 stub<14242> AllocateTemporaryEntryPoints +00007FA12E536660 18 stub<14243> AllocateTemporaryEntryPoints +00007FA12E536678 c0 stub<14244> AllocateTemporaryEntryPoints +00007FA12E536738 18 stub<14245> AllocateTemporaryEntryPoints +00007FA12E536750 18 stub<14246> AllocateTemporaryEntryPoints +00007FA12E536768 18 stub<14247> AllocateTemporaryEntryPoints +00007FA12E536780 18 stub<14248> AllocateTemporaryEntryPoints +00007FA12E536798 48 stub<14249> AllocateTemporaryEntryPoints +00007FA12E5367E0 18 stub<14250> AllocateTemporaryEntryPoints +00007FA12E5367F8 18 stub<14251> AllocateTemporaryEntryPoints +00007FA12E536810 60 stub<14252> AllocateTemporaryEntryPoints +00007FA12E536870 f0 stub<14253> AllocateTemporaryEntryPoints +00007FA12E536960 18 stub<14254> AllocateTemporaryEntryPoints +00007FA12E536978 30 stub<14255> AllocateTemporaryEntryPoints +00007FA12E5369A8 90 stub<14256> AllocateTemporaryEntryPoints +00007FA12E538000 6f0 stub<14257> AllocateTemporaryEntryPoints +00007FA12E5386F0 78 stub<14258> AllocateTemporaryEntryPoints +00007FA12E538768 a8 stub<14259> AllocateTemporaryEntryPoints +00007FA12E538810 18 stub<14260> AllocateTemporaryEntryPoints +00007FA12E538828 18 stub<14261> AllocateTemporaryEntryPoints +00007FA12E538840 18 stub<14262> AllocateTemporaryEntryPoints +00007FA12E538858 18 stub<14263> AllocateTemporaryEntryPoints +00007FA12E538870 18 stub<14264> AllocateTemporaryEntryPoints +00007FA1277C2E80 18 stub<14265> GenerateLookupStub +00007FA127801F20 18 stub<14266> GenerateResolveStub +00007FA1277C8820 20 stub<14267> GenerateDispatchStub +00007FA12E538888 18 stub<14268> AllocateTemporaryEntryPoints +00007FA12E5388A0 18 stub<14269> AllocateTemporaryEntryPoints +00007FA1277C2EA0 18 stub<14270> GenerateLookupStub +00007FA127801F90 18 stub<14271> GenerateResolveStub +00007FA1277C8840 20 stub<14272> GenerateDispatchStub +00007FA12E5388B8 18 stub<14273> AllocateTemporaryEntryPoints +00007FA12E5388D0 18 stub<14274> AllocateTemporaryEntryPoints +00007FA1277C2EC0 18 stub<14275> GenerateLookupStub +00007FA127802000 18 stub<14276> GenerateResolveStub +00007FA1277C8860 20 stub<14277> GenerateDispatchStub +00007FA12E5388E8 18 stub<14278> AllocateTemporaryEntryPoints +00007FA12E538900 18 stub<14279> AllocateTemporaryEntryPoints +00007FA1277C2EE0 18 stub<14280> GenerateLookupStub +00007FA127802070 18 stub<14281> GenerateResolveStub +00007FA1277C8880 20 stub<14282> GenerateDispatchStub +00007FA12E538918 18 stub<14283> AllocateTemporaryEntryPoints +00007FA12E538930 18 stub<14284> AllocateTemporaryEntryPoints +00007FA1277C2F00 18 stub<14285> GenerateLookupStub +00007FA1278020E0 18 stub<14286> GenerateResolveStub +00007FA1277C88A0 20 stub<14287> GenerateDispatchStub +00007FA12E538948 18 stub<14288> AllocateTemporaryEntryPoints +00007FA12E538960 18 stub<14289> AllocateTemporaryEntryPoints +00007FA1277C2F20 18 stub<14290> GenerateLookupStub +00007FA127802150 18 stub<14291> GenerateResolveStub +00007FA1277C88C0 20 stub<14292> GenerateDispatchStub +00007FA12E538978 18 stub<14293> AllocateTemporaryEntryPoints +00007FA12E538990 18 stub<14294> AllocateTemporaryEntryPoints +00007FA1277C2F40 18 stub<14295> GenerateLookupStub +00007FA1278021C0 18 stub<14296> GenerateResolveStub +00007FA1277C88E0 20 stub<14297> GenerateDispatchStub +00007FA12E5389A8 18 stub<14298> AllocateTemporaryEntryPoints +00007FA12E5389C0 18 stub<14299> AllocateTemporaryEntryPoints +00007FA1277C2F60 18 stub<14300> GenerateLookupStub +00007FA127802230 18 stub<14301> GenerateResolveStub +00007FA1277C8900 20 stub<14302> GenerateDispatchStub +00007FA1278022A0 18 stub<14303> GenerateResolveStub +00007FA1277C8920 20 stub<14304> GenerateDispatchStub +00007FA1277C8940 20 stub<14305> GenerateDispatchStub +00007FA127802310 18 stub<14306> GenerateResolveStub +00007FA1277C8960 20 stub<14307> GenerateDispatchStub +00007FA12E5389D8 18 stub<14308> AllocateTemporaryEntryPoints +00007FA12E5389F0 18 stub<14309> AllocateTemporaryEntryPoints +00007FA12E538A08 18 stub<14310> AllocateTemporaryEntryPoints +00007FA12E538A20 18 stub<14311> AllocateTemporaryEntryPoints +00007FA12E538A38 18 stub<14312> AllocateTemporaryEntryPoints +00007FA12E538A50 18 stub<14313> AllocateTemporaryEntryPoints +00007FA12E538A68 18 stub<14314> AllocateTemporaryEntryPoints +00007FA12E538A80 18 stub<14315> AllocateTemporaryEntryPoints +00007FA12E538A98 18 stub<14316> AllocateTemporaryEntryPoints +00007FA12E538AB0 18 stub<14317> AllocateTemporaryEntryPoints +00007FA12E538AC8 18 stub<14318> AllocateTemporaryEntryPoints +00007FA12E538AE0 18 stub<14319> AllocateTemporaryEntryPoints +00007FA12E538AF8 18 stub<14320> AllocateTemporaryEntryPoints +00007FA12E538B10 48 stub<14321> AllocateTemporaryEntryPoints +00007FA12E538B58 18 stub<14322> AllocateTemporaryEntryPoints +00007FA127802380 18 stub<14323> GenerateResolveStub +00007FA1277C8980 20 stub<14324> GenerateDispatchStub +00007FA1277C89A0 20 stub<14325> GenerateDispatchStub +00007FA1277C89C0 20 stub<14326> GenerateDispatchStub +00007FA12E538B70 18 stub<14327> AllocateTemporaryEntryPoints +00007FA1278023F0 18 stub<14328> GenerateResolveStub +00007FA1277C89E0 20 stub<14329> GenerateDispatchStub +00007FA12E538B88 18 stub<14330> AllocateTemporaryEntryPoints +00007FA127802460 18 stub<14331> GenerateResolveStub +00007FA1277C8A00 20 stub<14332> GenerateDispatchStub +00007FA12E538BA0 18 stub<14333> AllocateTemporaryEntryPoints +00007FA12E538BB8 18 stub<14334> AllocateTemporaryEntryPoints +00007FA12E538BD0 18 stub<14335> AllocateTemporaryEntryPoints +00007FA1277C2F80 18 stub<14336> GenerateLookupStub +00007FA1278024D0 18 stub<14337> GenerateResolveStub +00007FA1277C8A20 20 stub<14338> GenerateDispatchStub +00007FA12E538BE8 18 stub<14339> AllocateTemporaryEntryPoints +00007FA127802540 18 stub<14340> GenerateResolveStub +00007FA1277C8A40 20 stub<14341> GenerateDispatchStub +00007FA12E538C00 18 stub<14342> AllocateTemporaryEntryPoints +00007FA1278025B0 18 stub<14343> GenerateResolveStub +00007FA1277C8A60 20 stub<14344> GenerateDispatchStub +00007FA12E538C18 a8 stub<14345> AllocateTemporaryEntryPoints +00007FA12E538CC0 1c8 stub<14346> AllocateTemporaryEntryPoints +00007FA12E538E88 18 stub<14347> AllocateTemporaryEntryPoints +00007FA12E538EA0 18 stub<14348> AllocateTemporaryEntryPoints +00007FA127802620 18 stub<14349> GenerateResolveStub +00007FA1277C8A80 20 stub<14350> GenerateDispatchStub +00007FA127802690 18 stub<14351> GenerateResolveStub +00007FA1277C8AA0 20 stub<14352> GenerateDispatchStub +00007FA12E538EB8 48 stub<14353> AllocateTemporaryEntryPoints +00007FA12E538F00 30 stub<14354> AllocateTemporaryEntryPoints +00007FA12E538F30 18 stub<14355> AllocateTemporaryEntryPoints +00007FA12E538F48 18 stub<14356> AllocateTemporaryEntryPoints +00007FA12E538F60 18 stub<14357> AllocateTemporaryEntryPoints +00007FA12E538F78 18 stub<14358> AllocateTemporaryEntryPoints +00007FA1277C2FA0 18 stub<14359> GenerateLookupStub +00007FA127802700 18 stub<14360> GenerateResolveStub +00007FA1277C8AC0 20 stub<14361> GenerateDispatchStub +00007FA12E538F90 18 stub<14362> AllocateTemporaryEntryPoints +00007FA12E538FA8 30 stub<14363> AllocateTemporaryEntryPoints +00007FA12E53A000 60 stub<14364> AllocateTemporaryEntryPoints +00007FA12E53A060 18 stub<14365> AllocateTemporaryEntryPoints +00007FA12E53A078 18 stub<14366> AllocateTemporaryEntryPoints +00007FA12E53A090 18 stub<14367> AllocateTemporaryEntryPoints +00007FA12E53A0A8 18 stub<14368> AllocateTemporaryEntryPoints +00007FA1277C2FC0 18 stub<14369> GenerateLookupStub +00007FA127802770 18 stub<14370> GenerateResolveStub +00007FA1277C8AE0 20 stub<14371> GenerateDispatchStub +00007FA1278027E0 18 stub<14372> GenerateResolveStub +00007FA1277C8B00 20 stub<14373> GenerateDispatchStub +00007FA127802850 18 stub<14374> GenerateResolveStub +00007FA1277C8B20 20 stub<14375> GenerateDispatchStub +00007FA1278028C0 18 stub<14376> GenerateResolveStub +00007FA1277C8B40 20 stub<14377> GenerateDispatchStub +00007FA127802930 18 stub<14378> GenerateResolveStub +00007FA1277C8B60 20 stub<14379> GenerateDispatchStub +00007FA12E53A0D8 30 stub<14380> AllocateTemporaryEntryPoints +00007FA12E53A108 18 stub<14381> AllocateTemporaryEntryPoints +00007FA12E53A120 18 stub<14382> AllocateTemporaryEntryPoints +00007FA12E53A138 18 stub<14383> AllocateTemporaryEntryPoints +00007FA12784B770 11 stub<14384> GenerateVTableCallStub +00007FA12E53A150 108 stub<14385> AllocateTemporaryEntryPoints +00007FA12E53A258 18 stub<14386> AllocateTemporaryEntryPoints +00007FA12E53A270 18 stub<14387> AllocateTemporaryEntryPoints +00007FA1277C2FE0 18 stub<14388> GenerateLookupStub +00007FA1278029A0 18 stub<14389> GenerateResolveStub +00007FA1277C8B80 20 stub<14390> GenerateDispatchStub +00007FA1277C8BA0 20 stub<14391> GenerateDispatchStub +00007FA127802A10 18 stub<14392> GenerateResolveStub +00007FA1277C8BC0 20 stub<14393> GenerateDispatchStub +00007FA12E53A288 d8 stub<14394> AllocateTemporaryEntryPoints +00007FA12E53A360 48 stub<14395> AllocateTemporaryEntryPoints +00007FA12E670000 18 stub<14396> GenerateLookupStub +00007FA127802A80 18 stub<14397> GenerateResolveStub +00007FA1277C8BE0 20 stub<14398> GenerateDispatchStub +00007FA12E670020 18 stub<14399> GenerateLookupStub +00007FA127802AF0 18 stub<14400> GenerateResolveStub +00007FA1277C8C00 20 stub<14401> GenerateDispatchStub +00007FA12E670040 18 stub<14402> GenerateLookupStub +00007FA127802B60 18 stub<14403> GenerateResolveStub +00007FA1277C8C20 20 stub<14404> GenerateDispatchStub +00007FA1277C8C40 20 stub<14405> GenerateDispatchStub +00007FA1277C8C60 20 stub<14406> GenerateDispatchStub +00007FA1277C8C80 20 stub<14407> GenerateDispatchStub +00007FA127802BD0 18 stub<14408> GenerateResolveStub +00007FA1277C8CA0 20 stub<14409> GenerateDispatchStub +00007FA12E53A3A8 120 stub<14410> AllocateTemporaryEntryPoints +00007FA12E53A4C8 18 stub<14411> AllocateTemporaryEntryPoints +00007FA127802C40 18 stub<14412> GenerateResolveStub +00007FA1277C8CC0 20 stub<14413> GenerateDispatchStub +00007FA12E53A4E0 1b0 stub<14414> AllocateTemporaryEntryPoints +00007FA12E670060 18 stub<14415> GenerateLookupStub +00007FA12E670080 18 stub<14416> GenerateLookupStub +00007FA1277C8CE0 20 stub<14417> GenerateDispatchStub +00007FA1286673F0 18 object [System.Private.CoreLib] dynamicClass::InvokeStub_ResponseCacheAttribute.set_Duration(object,object,native int*)[Optimized] +00007FA128667470 18 object [System.Private.CoreLib] dynamicClass::InvokeStub_ResponseCacheAttribute.set_Location(object,object,native int*)[Optimized] +00007FA1286674F0 1a object [System.Private.CoreLib] dynamicClass::InvokeStub_ResponseCacheAttribute.set_NoStore(object,object,native int*)[Optimized] +00007FA12E53A690 a8 stub<14418> AllocateTemporaryEntryPoints +00007FA127802CB0 18 stub<14419> GenerateResolveStub +00007FA1277C8D00 20 stub<14420> GenerateDispatchStub +00007FA12E53A738 48 stub<14421> AllocateTemporaryEntryPoints +00007FA12E53A780 138 stub<14422> AllocateTemporaryEntryPoints +00007FA12E53A8B8 f0 stub<14423> AllocateTemporaryEntryPoints +00007FA12E53A9A8 2d0 stub<14424> AllocateTemporaryEntryPoints +00007FA12E53AC78 228 stub<14425> AllocateTemporaryEntryPoints +00007FA12E53AEA0 d8 stub<14426> AllocateTemporaryEntryPoints +00007FA12E53C000 c0 stub<14427> AllocateTemporaryEntryPoints +00007FA1277C8D20 20 stub<14428> GenerateDispatchStub +00007FA12E53C0D8 f0 stub<14429> AllocateTemporaryEntryPoints +00007FA12E53C1C8 78 stub<14430> AllocateTemporaryEntryPoints +00007FA12E53C240 48 stub<14431> AllocateTemporaryEntryPoints +00007FA12E53C288 198 stub<14432> AllocateTemporaryEntryPoints +00007FA12E53C420 18 stub<14433> AllocateTemporaryEntryPoints +00007FA12E53C438 90 stub<14434> AllocateTemporaryEntryPoints +00007FA12E53C4C8 18 stub<14435> AllocateTemporaryEntryPoints +00007FA12E53C4E0 18 stub<14436> AllocateTemporaryEntryPoints +00007FA12E53C4F8 18 stub<14437> AllocateTemporaryEntryPoints +00007FA12E53C510 60 stub<14438> AllocateTemporaryEntryPoints +00007FA127802D20 18 stub<14439> GenerateResolveStub +00007FA1277C8D40 20 stub<14440> GenerateDispatchStub +00007FA1277C8D60 20 stub<14441> GenerateDispatchStub +00007FA127802D90 18 stub<14442> GenerateResolveStub +00007FA1277C8D80 20 stub<14443> GenerateDispatchStub +00007FA12E53C570 48 stub<14444> AllocateTemporaryEntryPoints +00007FA12E53C5B8 18 stub<14445> AllocateTemporaryEntryPoints +00007FA12E53C5D0 78 stub<14446> AllocateTemporaryEntryPoints +00007FA12E53C648 6f0 stub<14447> AllocateTemporaryEntryPoints +00007FA12E53CD38 78 stub<14448> AllocateTemporaryEntryPoints +00007FA12E53CDB0 a8 stub<14449> AllocateTemporaryEntryPoints +00007FA12E53CE58 18 stub<14450> AllocateTemporaryEntryPoints +00007FA12E53CE70 18 stub<14451> AllocateTemporaryEntryPoints +00007FA12E53CE88 18 stub<14452> AllocateTemporaryEntryPoints +00007FA1277C8DA0 20 stub<14453> GenerateDispatchStub +00007FA12E53CEA0 60 stub<14454> AllocateTemporaryEntryPoints +00007FA12E53CF00 18 stub<14455> AllocateTemporaryEntryPoints +00007FA12E53CF18 48 stub<14456> AllocateTemporaryEntryPoints +00007FA12E53CF60 18 stub<14457> AllocateTemporaryEntryPoints +00007FA12E53CF78 18 stub<14458> AllocateTemporaryEntryPoints +00007FA12E53CF90 18 stub<14459> AllocateTemporaryEntryPoints +00007FA12E53CFA8 18 stub<14460> AllocateTemporaryEntryPoints +00007FA12E6700A0 18 stub<14461> GenerateLookupStub +00007FA127802E00 18 stub<14462> GenerateResolveStub +00007FA1277C8DC0 20 stub<14463> GenerateDispatchStub +00007FA128667570 1a object [System.Private.CoreLib] dynamicClass::InvokeStub_RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(object,object,native int*)[Optimized] +00007FA1286675F0 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_TargetFrameworkAttribute.set_FrameworkDisplayName(object,object,native int*)[Optimized] +00007FA12E53CFC0 30 stub<14464> AllocateTemporaryEntryPoints +00007FA12E53E000 18 stub<14465> AllocateTemporaryEntryPoints +00007FA12E53E018 18 stub<14466> AllocateTemporaryEntryPoints +00007FA12E53E030 18 stub<14467> AllocateTemporaryEntryPoints +00007FA12E53E048 18 stub<14468> AllocateTemporaryEntryPoints +00007FA12E53E060 18 stub<14469> AllocateTemporaryEntryPoints +00007FA12E53E078 18 stub<14470> AllocateTemporaryEntryPoints +00007FA12E53E090 18 stub<14471> AllocateTemporaryEntryPoints +00007FA12E53E0A8 18 stub<14472> AllocateTemporaryEntryPoints +00007FA12E53E0C0 18 stub<14473> AllocateTemporaryEntryPoints +00007FA12E53E0D8 18 stub<14474> AllocateTemporaryEntryPoints +00007FA12E53E0F0 18 stub<14475> AllocateTemporaryEntryPoints +00007FA12E53E108 18 stub<14476> AllocateTemporaryEntryPoints +00007FA12E53E120 18 stub<14477> AllocateTemporaryEntryPoints +00007FA12E53E138 18 stub<14478> AllocateTemporaryEntryPoints +00007FA12E53E150 18 stub<14479> AllocateTemporaryEntryPoints +00007FA127802E70 18 stub<14480> GenerateResolveStub +00007FA1277C8DE0 20 stub<14481> GenerateDispatchStub +00007FA12E53E168 18 stub<14482> AllocateTemporaryEntryPoints +00007FA12E6700C0 18 stub<14483> GenerateLookupStub +00007FA127802EE0 18 stub<14484> GenerateResolveStub +00007FA1277C8E00 20 stub<14485> GenerateDispatchStub +00007FA12E6700E0 18 stub<14486> GenerateLookupStub +00007FA127802F50 18 stub<14487> GenerateResolveStub +00007FA1277C8E20 20 stub<14488> GenerateDispatchStub +00007FA12E53E180 18 stub<14489> AllocateTemporaryEntryPoints +00007FA12E53E198 18 stub<14490> AllocateTemporaryEntryPoints +00007FA12E53E1B0 18 stub<14491> AllocateTemporaryEntryPoints +00007FA12E670100 18 stub<14492> GenerateLookupStub +00007FA127802FC0 18 stub<14493> GenerateResolveStub +00007FA1277C8E40 20 stub<14494> GenerateDispatchStub +00007FA12E53E1C8 18 stub<14495> AllocateTemporaryEntryPoints +00007FA12E670120 18 stub<14496> GenerateLookupStub +00007FA127803030 18 stub<14497> GenerateResolveStub +00007FA1277C8E60 20 stub<14498> GenerateDispatchStub +00007FA12E670140 18 stub<14499> GenerateLookupStub +00007FA1278030A0 18 stub<14500> GenerateResolveStub +00007FA1277C8E80 20 stub<14501> GenerateDispatchStub +00007FA12E53E1E0 18 stub<14502> AllocateTemporaryEntryPoints +00007FA12E53E1F8 18 stub<14503> AllocateTemporaryEntryPoints +00007FA12E53E210 18 stub<14504> AllocateTemporaryEntryPoints +00007FA12E670160 18 stub<14505> GenerateLookupStub +00007FA127803110 18 stub<14506> GenerateResolveStub +00007FA1277C8EA0 20 stub<14507> GenerateDispatchStub +00007FA12E53E228 18 stub<14508> AllocateTemporaryEntryPoints +00007FA12E670180 18 stub<14509> GenerateLookupStub +00007FA127803180 18 stub<14510> GenerateResolveStub +00007FA1277C8EC0 20 stub<14511> GenerateDispatchStub +00007FA12E53E240 18 stub<14512> AllocateTemporaryEntryPoints +00007FA12E6701A0 18 stub<14513> GenerateLookupStub +00007FA1278031F0 18 stub<14514> GenerateResolveStub +00007FA1277C8EE0 20 stub<14515> GenerateDispatchStub +00007FA12E53E258 18 stub<14516> AllocateTemporaryEntryPoints +00007FA12E53E270 18 stub<14517> AllocateTemporaryEntryPoints +00007FA12E53E288 18 stub<14518> AllocateTemporaryEntryPoints +00007FA12E6701C0 18 stub<14519> GenerateLookupStub +00007FA127803260 18 stub<14520> GenerateResolveStub +00007FA1277C8F00 20 stub<14521> GenerateDispatchStub +00007FA12E53E2A0 18 stub<14522> AllocateTemporaryEntryPoints +00007FA1278032D0 18 stub<14523> GenerateResolveStub +00007FA1277C8F20 20 stub<14524> GenerateDispatchStub +00007FA12E6701E0 18 stub<14525> GenerateLookupStub +00007FA1277C8F40 20 stub<14526> GenerateDispatchStub +00007FA12E53E2B8 18 stub<14527> AllocateTemporaryEntryPoints +00007FA12E670200 18 stub<14528> GenerateLookupStub +00007FA127803340 18 stub<14529> GenerateResolveStub +00007FA1277C8F60 20 stub<14530> GenerateDispatchStub +00007FA12E670220 18 stub<14531> GenerateLookupStub +00007FA1278033B0 18 stub<14532> GenerateResolveStub +00007FA1277C8F80 20 stub<14533> GenerateDispatchStub +00007FA12E53E2D0 150 stub<14534> AllocateTemporaryEntryPoints +00007FA12E53E420 168 stub<14535> AllocateTemporaryEntryPoints +00007FA12E53E588 18 stub<14536> AllocateTemporaryEntryPoints +00007FA12E53E5A0 18 stub<14537> AllocateTemporaryEntryPoints +00007FA12E53E5B8 60 stub<14538> AllocateTemporaryEntryPoints +00007FA12E53E618 d8 stub<14539> AllocateTemporaryEntryPoints +00007FA12E53E6F0 6f0 stub<14540> AllocateTemporaryEntryPoints +00007FA12E53EDE0 78 stub<14541> AllocateTemporaryEntryPoints +00007FA12E53EE58 a8 stub<14542> AllocateTemporaryEntryPoints +00007FA12E53EF00 18 stub<14543> AllocateTemporaryEntryPoints +00007FA12E53EF18 18 stub<14544> AllocateTemporaryEntryPoints +00007FA12E53EF30 18 stub<14545> AllocateTemporaryEntryPoints +00007FA12E553C10 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21]::MoveNext()[QuickJitted] +00007FA12E553C50 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E553DD0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21]::.cctor()[QuickJitted] +00007FA12E53EF48 18 stub<14546> AllocateTemporaryEntryPoints +00007FA12E553E50 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E553E90 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__44]::MoveNext()[QuickJitted] +00007FA127803420 18 stub<14547> GenerateResolveStub +00007FA1277C8FA0 20 stub<14548> GenerateDispatchStub +00007FA127803490 18 stub<14549> GenerateResolveStub +00007FA1277C8FC0 20 stub<14550> GenerateDispatchStub +00007FA12E553ED0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__44]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E53EF60 18 stub<14551> AllocateTemporaryEntryPoints +00007FA12E53EF78 18 stub<14552> AllocateTemporaryEntryPoints +00007FA12E53EF90 18 stub<14553> AllocateTemporaryEntryPoints +00007FA12E554050 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__44]::.cctor()[QuickJitted] +00007FA12E53EFA8 18 stub<14554> AllocateTemporaryEntryPoints +00007FA12E6F0000 78 stub<14555> AllocateTemporaryEntryPoints +00007FA12E5540D0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__44]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E670240 18 stub<14556> GenerateLookupStub +00007FA127803500 18 stub<14557> GenerateResolveStub +00007FA1277C8FE0 20 stub<14558> GenerateDispatchStub +00007FA12E6F0078 60 stub<14559> AllocateTemporaryEntryPoints +00007FA127803570 18 stub<14560> GenerateResolveStub +00007FA1277C9000 20 stub<14561> GenerateDispatchStub +00007FA12E6F00D8 18 stub<14562> AllocateTemporaryEntryPoints +00007FA12E6F00F0 18 stub<14563> AllocateTemporaryEntryPoints +00007FA12E670260 18 stub<14564> GenerateLookupStub +00007FA12E554110 68 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::FlushBuffers(bool)[QuickJitted] +00007FA12E670280 18 stub<14565> GenerateLookupStub +00007FA12E6F0108 18 stub<14566> AllocateTemporaryEntryPoints +00007FA1278035E0 18 stub<14567> GenerateResolveStub +00007FA1277C9020 20 stub<14568> GenerateDispatchStub +00007FA12E554190 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5541D0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6F0120 18 stub<14569> AllocateTemporaryEntryPoints +00007FA12E6F0138 18 stub<14570> AllocateTemporaryEntryPoints +00007FA12E5542D0 3f8 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+d__45::MoveNext()[QuickJitted] +00007FA12E554710 1c instance bool [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::get_IsFull()[QuickJitted] +00007FA12E6F0150 60 stub<14571> AllocateTemporaryEntryPoints +00007FA12E6F01B0 18 stub<14572> AllocateTemporaryEntryPoints +00007FA12E554740 6c instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::FlushBuffer(class Datadog.Trace.Agent.SpanBuffer)[QuickJitted] +00007FA12E6F01C8 18 stub<14573> AllocateTemporaryEntryPoints +00007FA12E5547D0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E554810 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6F01E0 30 stub<14574> AllocateTemporaryEntryPoints +00007FA12E6F0210 18 stub<14575> AllocateTemporaryEntryPoints +00007FA12E554910 5d8 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+d__46::MoveNext()[QuickJitted] +00007FA12E554F40 1f instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0::.ctor()[QuickJitted] +00007FA12E6F0228 60 stub<14576> AllocateTemporaryEntryPoints +00007FA12E6F0288 18 stub<14577> AllocateTemporaryEntryPoints +00007FA12E554F80 5b instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0::g__InternalBufferFlush|0()[QuickJitted] +00007FA12E6F02A0 18 stub<14578> AllocateTemporaryEntryPoints +00007FA12E555000 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E555040 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6702A0 18 stub<14579> GenerateLookupStub +00007FA12E6702C0 18 stub<14580> GenerateLookupStub +00007FA12E6F02B8 18 stub<14581> AllocateTemporaryEntryPoints +00007FA12E6F02D0 18 stub<14582> AllocateTemporaryEntryPoints +00007FA12E6F02E8 18 stub<14583> AllocateTemporaryEntryPoints +00007FA12E6F0300 18 stub<14584> AllocateTemporaryEntryPoints +00007FA12E555140 7a4 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d::MoveNext()[QuickJitted] +00007FA12E555940 e0 instance bool [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::Lock()[QuickJitted] +00007FA12E555A50 1b instance int32 [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::get_TraceCount()[QuickJitted] +00007FA12E555A80 dc int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteArrayHeaderForceArray32Block(uint8[]&,int32,uint32)[QuickJitted] +00007FA12E555B70 ac instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::Clear()[QuickJitted] +00007FA12E555C40 21 instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::set_TraceCount(int32)[QuickJitted] +00007FA12E555C80 21 instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::set_SpanCount(int32)[QuickJitted] +00007FA12E555CC0 22 instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::set_IsFull(bool)[QuickJitted] +00007FA12E6702E0 18 stub<14585> GenerateLookupStub +00007FA127803650 18 stub<14586> GenerateResolveStub +00007FA1277C9040 20 stub<14587> GenerateDispatchStub +00007FA1277C9060 20 stub<14588> GenerateDispatchStub +00007FA1278036C0 18 stub<14589> GenerateResolveStub +00007FA1277C9080 20 stub<14590> GenerateDispatchStub +00007FA12E6F0318 60 stub<14591> AllocateTemporaryEntryPoints +00007FA127803730 18 stub<14592> GenerateResolveStub +00007FA1277C90A0 20 stub<14593> GenerateDispatchStub +00007FA12E6F0378 60 stub<14594> AllocateTemporaryEntryPoints +00007FA12E6F03D8 60 stub<14595> AllocateTemporaryEntryPoints +00007FA12E6F0438 78 stub<14596> AllocateTemporaryEntryPoints +00007FA12E6F04B0 18 stub<14597> AllocateTemporaryEntryPoints +00007FA12E6F04C8 a8 stub<14598> AllocateTemporaryEntryPoints +00007FA12E6F0570 18 stub<14599> AllocateTemporaryEntryPoints +00007FA12E6F0588 18 stub<14600> AllocateTemporaryEntryPoints +00007FA12E6F05A0 18 stub<14601> AllocateTemporaryEntryPoints +00007FA12E6F05B8 18 stub<14602> AllocateTemporaryEntryPoints +00007FA12E6F05D0 a8 stub<14603> AllocateTemporaryEntryPoints +00007FA12E6F0678 18 stub<14604> AllocateTemporaryEntryPoints +00007FA12E6F0690 18 stub<14605> AllocateTemporaryEntryPoints +00007FA12E6F06A8 18 stub<14606> AllocateTemporaryEntryPoints +00007FA12E6F06C0 108 stub<14607> AllocateTemporaryEntryPoints +00007FA12E6F07C8 120 stub<14608> AllocateTemporaryEntryPoints +00007FA12E6F08E8 a8 stub<14609> AllocateTemporaryEntryPoints +00007FA12E6F0990 a8 stub<14610> AllocateTemporaryEntryPoints +00007FA12E6F0A38 18 stub<14611> AllocateTemporaryEntryPoints +00007FA12E6F0A50 18 stub<14612> AllocateTemporaryEntryPoints +00007FA12E6F0A68 48 stub<14613> AllocateTemporaryEntryPoints +00007FA12E6F0AB0 18 stub<14614> AllocateTemporaryEntryPoints +00007FA12E670300 18 stub<14615> GenerateLookupStub +00007FA12E6F0AC8 108 stub<14616> AllocateTemporaryEntryPoints +00007FA1278037A0 18 stub<14617> GenerateResolveStub +00007FA1277C90C0 20 stub<14618> GenerateDispatchStub +00007FA12E6F0BD0 18 stub<14619> AllocateTemporaryEntryPoints +00007FA12E6F0BE8 18 stub<14620> AllocateTemporaryEntryPoints +00007FA12E6F0C00 18 stub<14621> AllocateTemporaryEntryPoints +00007FA12E6F0C18 18 stub<14622> AllocateTemporaryEntryPoints +00007FA12E6F0C30 d8 stub<14623> AllocateTemporaryEntryPoints +00007FA12E6F0D08 60 stub<14624> AllocateTemporaryEntryPoints +00007FA12E670320 18 stub<14625> GenerateLookupStub +00007FA12E670340 18 stub<14626> GenerateLookupStub +00007FA12E6F0D68 18 stub<14627> AllocateTemporaryEntryPoints +00007FA12E670360 18 stub<14628> GenerateLookupStub +00007FA127803810 18 stub<14629> GenerateResolveStub +00007FA1277C90E0 20 stub<14630> GenerateDispatchStub +00007FA12E6F0D98 c0 stub<14631> AllocateTemporaryEntryPoints +00007FA12E6F0E58 18 stub<14632> AllocateTemporaryEntryPoints +00007FA12E6F0E70 18 stub<14633> AllocateTemporaryEntryPoints +00007FA12E6F0E88 18 stub<14634> AllocateTemporaryEntryPoints +00007FA12E670380 18 stub<14635> GenerateLookupStub +00007FA127803880 18 stub<14636> GenerateResolveStub +00007FA1277C9100 20 stub<14637> GenerateDispatchStub +00007FA12E6F0EA0 18 stub<14638> AllocateTemporaryEntryPoints +00007FA12E6703A0 18 stub<14639> GenerateLookupStub +00007FA1278038F0 18 stub<14640> GenerateResolveStub +00007FA1277C9120 20 stub<14641> GenerateDispatchStub +00007FA12E6F0EB8 c0 stub<14642> AllocateTemporaryEntryPoints +00007FA12E6703C0 18 stub<14643> GenerateLookupStub +00007FA127803960 18 stub<14644> GenerateResolveStub +00007FA1277C9140 20 stub<14645> GenerateDispatchStub +00007FA12E6F0F90 30 stub<14646> AllocateTemporaryEntryPoints +00007FA12E6F2000 48 stub<14647> AllocateTemporaryEntryPoints +00007FA12E6F2048 18 stub<14648> AllocateTemporaryEntryPoints +00007FA12E6F2060 18 stub<14649> AllocateTemporaryEntryPoints +00007FA1278039D0 18 stub<14650> GenerateResolveStub +00007FA1277C9160 20 stub<14651> GenerateDispatchStub +00007FA127803A40 18 stub<14652> GenerateResolveStub +00007FA1277C9180 20 stub<14653> GenerateDispatchStub +00007FA12E6703E0 18 stub<14654> GenerateLookupStub +00007FA127803AB0 18 stub<14655> GenerateResolveStub +00007FA1277C91A0 20 stub<14656> GenerateDispatchStub +00007FA127803B20 18 stub<14657> GenerateResolveStub +00007FA1277C91C0 20 stub<14658> GenerateDispatchStub +00007FA127803B90 18 stub<14659> GenerateResolveStub +00007FA1277C91E0 20 stub<14660> GenerateDispatchStub +00007FA12E6F2078 18 stub<14661> AllocateTemporaryEntryPoints +00007FA12E6F2090 48 stub<14662> AllocateTemporaryEntryPoints +00007FA127803C00 18 stub<14663> GenerateResolveStub +00007FA1277C9200 20 stub<14664> GenerateDispatchStub +00007FA127803C70 18 stub<14665> GenerateResolveStub +00007FA1277C9220 20 stub<14666> GenerateDispatchStub +00007FA127803CE0 18 stub<14667> GenerateResolveStub +00007FA1277C9240 20 stub<14668> GenerateDispatchStub +00007FA12E6F20D8 18 stub<14669> AllocateTemporaryEntryPoints +00007FA12E6F20F0 18 stub<14670> AllocateTemporaryEntryPoints +00007FA12E6F2108 18 stub<14671> AllocateTemporaryEntryPoints +00007FA12E6F2120 18 stub<14672> AllocateTemporaryEntryPoints +00007FA12E6F2138 60 stub<14673> AllocateTemporaryEntryPoints +00007FA12E6F2198 18 stub<14674> AllocateTemporaryEntryPoints +00007FA127803D50 18 stub<14675> GenerateResolveStub +00007FA1277C9260 20 stub<14676> GenerateDispatchStub +00007FA127803DC0 18 stub<14677> GenerateResolveStub +00007FA1277C9280 20 stub<14678> GenerateDispatchStub +00007FA127803E30 18 stub<14679> GenerateResolveStub +00007FA1277C92A0 20 stub<14680> GenerateDispatchStub +00007FA127803EA0 18 stub<14681> GenerateResolveStub +00007FA1277C92C0 20 stub<14682> GenerateDispatchStub +00007FA127803F10 18 stub<14683> GenerateResolveStub +00007FA1277C92E0 20 stub<14684> GenerateDispatchStub +00007FA127803F80 18 stub<14685> GenerateResolveStub +00007FA1277C9300 20 stub<14686> GenerateDispatchStub +00007FA12E6F21B0 18 stub<14687> AllocateTemporaryEntryPoints +00007FA127803FF0 18 stub<14688> GenerateResolveStub +00007FA1277C9320 20 stub<14689> GenerateDispatchStub +00007FA127804060 18 stub<14690> GenerateResolveStub +00007FA1277C9340 20 stub<14691> GenerateDispatchStub +00007FA12E6F21C8 18 stub<14692> AllocateTemporaryEntryPoints +00007FA12E6F21E0 18 stub<14693> AllocateTemporaryEntryPoints +00007FA12E6F21F8 30 stub<14694> AllocateTemporaryEntryPoints +00007FA12E6F2228 18 stub<14695> AllocateTemporaryEntryPoints +00007FA12E6F2240 30 stub<14696> AllocateTemporaryEntryPoints +00007FA12E6F2270 468 stub<14697> AllocateTemporaryEntryPoints +00007FA12E6F26D8 f0 stub<14698> AllocateTemporaryEntryPoints +00007FA12E6F27C8 60 stub<14699> AllocateTemporaryEntryPoints +00007FA12E6F2828 120 stub<14700> AllocateTemporaryEntryPoints +00007FA12E6F2948 78 stub<14701> AllocateTemporaryEntryPoints +00007FA12E6F29C0 90 stub<14702> AllocateTemporaryEntryPoints +00007FA12E6F2A50 30 stub<14703> AllocateTemporaryEntryPoints +00007FA12E6F2A80 78 stub<14704> AllocateTemporaryEntryPoints +00007FA12E6F2AF8 18 stub<14705> AllocateTemporaryEntryPoints +00007FA12E6F2B10 f0 stub<14706> AllocateTemporaryEntryPoints +00007FA12E6F2C00 18 stub<14707> AllocateTemporaryEntryPoints +00007FA12E6F2C18 108 stub<14708> AllocateTemporaryEntryPoints +00007FA12E6F2D20 108 stub<14709> AllocateTemporaryEntryPoints +00007FA1278040D0 18 stub<14710> GenerateResolveStub +00007FA1277C9360 20 stub<14711> GenerateDispatchStub +00007FA127804140 18 stub<14712> GenerateResolveStub +00007FA1277C9380 20 stub<14713> GenerateDispatchStub +00007FA12E6F2E28 18 stub<14714> AllocateTemporaryEntryPoints +00007FA12E6F2E40 18 stub<14715> AllocateTemporaryEntryPoints +00007FA12E6F2E58 18 stub<14716> AllocateTemporaryEntryPoints +00007FA12E6F2E70 18 stub<14717> AllocateTemporaryEntryPoints +00007FA12E6F2E88 138 stub<14718> AllocateTemporaryEntryPoints +00007FA12E6F4000 138 stub<14719> AllocateTemporaryEntryPoints +00007FA12E6F4138 18 stub<14720> AllocateTemporaryEntryPoints +00007FA12E670400 18 stub<14721> GenerateLookupStub +00007FA1278041B0 18 stub<14722> GenerateResolveStub +00007FA1277C93A0 20 stub<14723> GenerateDispatchStub +00007FA12E670420 18 stub<14724> GenerateLookupStub +00007FA127804220 18 stub<14725> GenerateResolveStub +00007FA1277C93C0 20 stub<14726> GenerateDispatchStub +00007FA12E6F4150 18 stub<14727> AllocateTemporaryEntryPoints +00007FA127804290 18 stub<14728> GenerateResolveStub +00007FA1277C93E0 20 stub<14729> GenerateDispatchStub +00007FA12E6F4168 d8 stub<14730> AllocateTemporaryEntryPoints +00007FA127804300 18 stub<14731> GenerateResolveStub +00007FA1277C9400 20 stub<14732> GenerateDispatchStub +00007FA127804370 18 stub<14733> GenerateResolveStub +00007FA1277C9420 20 stub<14734> GenerateDispatchStub +00007FA12E670440 18 stub<14735> GenerateLookupStub +00007FA12E6F4240 3f0 stub<14736> AllocateTemporaryEntryPoints +00007FA12E6F4630 18 stub<14737> AllocateTemporaryEntryPoints +00007FA12E6F4648 60 stub<14738> AllocateTemporaryEntryPoints +00007FA12E6F46A8 60 stub<14739> AllocateTemporaryEntryPoints +00007FA1278043E0 18 stub<14740> GenerateResolveStub +00007FA1277C9440 20 stub<14741> GenerateDispatchStub +00007FA12E556910 f9 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::Add(!0)[QuickJitted] +00007FA12E556A20 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::AddWithResize(!0)[QuickJitted] +00007FA12E556AB0 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::Grow(int32)[QuickJitted] +00007FA12E556B40 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::set_Capacity(int32)[QuickJitted] +00007FA127804450 18 stub<14742> GenerateResolveStub +00007FA1277C9460 20 stub<14743> GenerateDispatchStub +00007FA1277C9480 20 stub<14744> GenerateDispatchStub +00007FA1278044C0 18 stub<14745> GenerateResolveStub +00007FA1277C94A0 20 stub<14746> GenerateDispatchStub +00007FA12E670460 18 stub<14747> GenerateLookupStub +00007FA127804530 18 stub<14748> GenerateResolveStub +00007FA1277C94C0 20 stub<14749> GenerateDispatchStub +00007FA12E670480 18 stub<14750> GenerateLookupStub +00007FA1278045A0 18 stub<14751> GenerateResolveStub +00007FA1277C94E0 20 stub<14752> GenerateDispatchStub +00007FA12E6704A0 18 stub<14753> GenerateLookupStub +00007FA127804610 18 stub<14754> GenerateResolveStub +00007FA1277C9500 20 stub<14755> GenerateDispatchStub +00007FA12E6704C0 18 stub<14756> GenerateLookupStub +00007FA127804680 18 stub<14757> GenerateResolveStub +00007FA1277C9520 20 stub<14758> GenerateDispatchStub +00007FA12E6F4708 18 stub<14759> AllocateTemporaryEntryPoints +00007FA12E6F4720 30 stub<14760> AllocateTemporaryEntryPoints +00007FA12E6F4750 198 stub<14761> AllocateTemporaryEntryPoints +00007FA1277C9540 20 stub<14762> GenerateDispatchStub +00007FA12E556C20 22 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::get_Count()[QuickJitted] +00007FA12E6F4900 18 stub<14763> AllocateTemporaryEntryPoints +00007FA12E6F4918 18 stub<14764> AllocateTemporaryEntryPoints +00007FA12E6F4930 18 stub<14765> AllocateTemporaryEntryPoints +00007FA12E6F4948 18 stub<14766> AllocateTemporaryEntryPoints +00007FA12E6F4960 18 stub<14767> AllocateTemporaryEntryPoints +00007FA12E6F4978 48 stub<14768> AllocateTemporaryEntryPoints +00007FA12E6F49C0 18 stub<14769> AllocateTemporaryEntryPoints +00007FA12E6F49D8 18 stub<14770> AllocateTemporaryEntryPoints +00007FA12E556C60 449 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.RequestDelegate [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Builder.ApplicationBuilder::Build()[QuickJitted] +00007FA12E6F49F0 78 stub<14771> AllocateTemporaryEntryPoints +00007FA12E6F4A68 30 stub<14772> AllocateTemporaryEntryPoints +00007FA12E6F4A98 30 stub<14773> AllocateTemporaryEntryPoints +00007FA12E6F4AC8 30 stub<14774> AllocateTemporaryEntryPoints +00007FA12E557110 10e valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::BeginMethod(!!1)[QuickJitted] +00007FA12E6F4AF8 60 stub<14775> AllocateTemporaryEntryPoints +00007FA12E6F4B58 60 stub<14776> AllocateTemporaryEntryPoints +00007FA12E6F4BB8 60 stub<14777> AllocateTemporaryEntryPoints +00007FA12E557240 1c5 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.BeginMethodHandler`2[System.__Canon,System.__Canon]::Invoke(!1)[QuickJitted] +00007FA12E6F4C18 48 stub<14778> AllocateTemporaryEntryPoints +00007FA12E6F4C60 48 stub<14779> AllocateTemporaryEntryPoints +00007FA12E6F4CA8 48 stub<14780> AllocateTemporaryEntryPoints +00007FA12E557430 30a void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.BeginMethodHandler`2[System.__Canon,System.__Canon]::.cctor()[QuickJitted] +00007FA12E6F4CF0 18 stub<14781> AllocateTemporaryEntryPoints +00007FA12E557770 2e instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckFieldAttribute::.ctor()[QuickJitted] +00007FA12E5577C0 21 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttribute::set_Kind(valuetype Datadog.Trace.DuckTyping.DuckKind)[QuickJitted] +00007FA12E557800 107 class [System.Runtime]System.Reflection.FieldInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetTargetField(class [System.Runtime]System.Type,string,valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA12E557920 9bc class [System.Reflection.Emit]System.Reflection.Emit.MethodBuilder [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetFieldGetMethod(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.MemberInfo,class [System.Runtime]System.Reflection.FieldInfo,class [System.Runtime]System.Reflection.FieldInfo)[QuickJitted] +00007FA12E558300 1ca void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::CheckTypeConversion(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12E6F4D08 48 stub<14782> AllocateTemporaryEntryPoints +00007FA12E5584F0 13f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::Emit(valuetype [System.Reflection.Primitives]System.Reflection.Emit.OpCode,class [System.Runtime]System.Type)[QuickJitted] +00007FA12E558650 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass28_0::.ctor()[QuickJitted] +00007FA12E6F4D50 60 stub<14783> AllocateTemporaryEntryPoints +00007FA128667670 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_DuckAttributeBase.set_Name(object,object,native int*)[Optimized] +00007FA12E558690 3a instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass28_0::b__0(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12E6F4DB0 30 stub<14784> AllocateTemporaryEntryPoints +00007FA12E5586E0 2e3 void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::WriteDynamicMethodCall(class Datadog.Trace.DuckTyping.LazyILGenerator,class [System.Reflection.Emit.Lightweight]System.Reflection.Emit.DynamicMethod,class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder)[QuickJitted] +00007FA12E5589F0 51a void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::CreateDelegateTypeFor(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Reflection.Emit.Lightweight]System.Reflection.Emit.DynamicMethod,class [System.Runtime]System.Type&,class [System.Runtime]System.Reflection.MethodInfo&)[QuickJitted] +00007FA12E6F4DE0 30 stub<14785> AllocateTemporaryEntryPoints +00007FA12E558F30 47 void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::.cctor()[QuickJitted] +00007FA12E6F4E10 30 stub<14786> AllocateTemporaryEntryPoints +00007FA12E6F4E40 18 stub<14787> AllocateTemporaryEntryPoints +00007FA12E558F90 ae void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+DelegateCache`1[System.__Canon]::FillDelegate(int32)[QuickJitted] +00007FA12E559060 9f class [System.Reflection.Emit.Lightweight]System.Reflection.Emit.DynamicMethod [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::GetDynamicMethodForIndex(int32)[QuickJitted] +00007FA12E6F6000 360 stub<14788> AllocateTemporaryEntryPoints +00007FA12E559120 53 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::SetOffset(int32)[QuickJitted] +00007FA12E6F6360 18 stub<14789> AllocateTemporaryEntryPoints +00007FA12E559190 2b instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::ResetOffset()[QuickJitted] +00007FA12E5591D0 43 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass31_0::b__1(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12E6F6378 d8 stub<14790> AllocateTemporaryEntryPoints +00007FA12E6F6450 18 stub<14791> AllocateTemporaryEntryPoints +00007FA1286676F0 6 Datadog.Trace.ClrProfiler.CallTarget.CallTargetState /* MT: 0x00007FA12C287AF8 */ [Datadog.Trace] dynamicClass::AspNetCoreBlockMiddlewareIntegrationEnd.OnMethodBegin(Microsoft.AspNetCore.Builder.ApplicationBuilder /* MT: 0x00007FA12E03ABE8 */)[Optimized] +00007FA12E6F6468 60 stub<14792> AllocateTemporaryEntryPoints +00007FA12E6F64C8 60 stub<14793> AllocateTemporaryEntryPoints +00007FA12E6F6528 60 stub<14794> AllocateTemporaryEntryPoints +00007FA12E6704E0 18 stub<14795> GenerateLookupStub +00007FA12E670500 18 stub<14796> GenerateLookupStub +00007FA12E559230 28b valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.AspNetCoreBlockMiddlewareIntegrationEnd::OnMethodBegin(!!0)[QuickJitted] +00007FA12E5594E0 61 instance class [System.Private.CoreLib]System.Collections.Generic.IList`1> [DuckTypeAssembly.Microsoft.AspNetCore.Http_4] Microsoft_AspNetCore_Http__ADB9793829DDAE60.Microsoft_AspNetCore_Builder_ApplicationBuilder.Datadog_Trace_ClrProfiler_AutoInstrumentation_AspNetCore_IApplicationBuilder_4::get_Components()[QuickJitted] +00007FA12E559560 46 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+DelegateCache`1[System.__Canon]::GetDelegate()[QuickJitted] +00007FA128667750 3c System.Collections.Generic.List`1 /* MT: 0x00007FA128583428 */> [DuckTypeAssembly.Microsoft.AspNetCore.Http_4] dynamicClass::_getNonPublicField_ApplicationBuilder__components(object)[Optimized] +00007FA12E5595C0 47 void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.AspNetCoreBlockMiddlewareIntegrationEnd+<>c__6`1[Microsoft_AspNetCore_Http__ADB9793829DDAE60.Microsoft_AspNetCore_Builder_ApplicationBuilder.Datadog_Trace_ClrProfiler_AutoInstrumentation_AspNetCore_IApplicationBuilder_4]::.cctor()[QuickJitted] +00007FA12E559620 1f instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.AspNetCoreBlockMiddlewareIntegrationEnd+<>c__6`1[Microsoft_AspNetCore_Http__ADB9793829DDAE60.Microsoft_AspNetCore_Builder_ApplicationBuilder.Datadog_Trace_ClrProfiler_AutoInstrumentation_AspNetCore_IApplicationBuilder_4]::.ctor()[QuickJitted] +00007FA1278046F0 18 stub<14797> GenerateResolveStub +00007FA1277C9560 20 stub<14798> GenerateDispatchStub +00007FA127804760 18 stub<14799> GenerateResolveStub +00007FA1277C9580 20 stub<14800> GenerateDispatchStub +00007FA12E6F6588 48 stub<14801> AllocateTemporaryEntryPoints +00007FA12E559660 77 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.RequestDelegate [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.AspNetCoreBlockMiddlewareIntegrationEnd+<>c__6`1[Microsoft_AspNetCore_Http__ADB9793829DDAE60.Microsoft_AspNetCore_Builder_ApplicationBuilder.Datadog_Trace_ClrProfiler_AutoInstrumentation_AspNetCore_IApplicationBuilder_4]::b__6_1(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.RequestDelegate)[QuickJitted] +00007FA12E5596F0 41 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware::.ctor(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.RequestDelegate,bool)[QuickJitted] +00007FA12E6F65D0 18 stub<14802> AllocateTemporaryEntryPoints +00007FA12E6F65E8 18 stub<14803> AllocateTemporaryEntryPoints +00007FA12E6F6600 30 stub<14804> AllocateTemporaryEntryPoints +00007FA12E6F6630 60 stub<14805> AllocateTemporaryEntryPoints +00007FA12E6F6690 48 stub<14806> AllocateTemporaryEntryPoints +00007FA1286677F0 33 object [System.Private.CoreLib] dynamicClass::InvokeStub_DefaultAuthorizationPolicyProvider..ctor(object,object,native int*)[Optimized] +00007FA12E6F66D8 168 stub<14807> AllocateTemporaryEntryPoints +00007FA12E6F6840 18 stub<14808> AllocateTemporaryEntryPoints +00007FA12E6F6858 d8 stub<14809> AllocateTemporaryEntryPoints +00007FA12E6F6930 138 stub<14810> AllocateTemporaryEntryPoints +00007FA12E6F6A98 18 stub<14811> AllocateTemporaryEntryPoints +00007FA12E6F6AB0 18 stub<14812> AllocateTemporaryEntryPoints +00007FA12E6F6AC8 90 stub<14813> AllocateTemporaryEntryPoints +00007FA12E6F6B58 a8 stub<14814> AllocateTemporaryEntryPoints +00007FA1278047D0 18 stub<14815> GenerateResolveStub +00007FA1277C95A0 20 stub<14816> GenerateDispatchStub +00007FA12E670520 18 stub<14817> GenerateLookupStub +00007FA127804840 18 stub<14818> GenerateResolveStub +00007FA1277C95C0 20 stub<14819> GenerateDispatchStub +00007FA12E6F6C00 18 stub<14820> AllocateTemporaryEntryPoints +00007FA12E6F6C18 48 stub<14821> AllocateTemporaryEntryPoints +00007FA12E6F6C60 48 stub<14822> AllocateTemporaryEntryPoints +00007FA12E6F6CA8 90 stub<14823> AllocateTemporaryEntryPoints +00007FA1278048B0 18 stub<14824> GenerateResolveStub +00007FA1277C95E0 20 stub<14825> GenerateDispatchStub +00007FA12E6F6D38 78 stub<14826> AllocateTemporaryEntryPoints +00007FA12E6F6DB0 18 stub<14827> AllocateTemporaryEntryPoints +00007FA12E6F6DC8 228 stub<14828> AllocateTemporaryEntryPoints +00007FA127804920 18 stub<14829> GenerateResolveStub +00007FA1277C9600 20 stub<14830> GenerateDispatchStub +00007FA12E670540 18 stub<14831> GenerateLookupStub +00007FA127804990 18 stub<14832> GenerateResolveStub +00007FA1277C9620 20 stub<14833> GenerateDispatchStub +00007FA12E6F8000 18 stub<14834> AllocateTemporaryEntryPoints +00007FA12E6F8018 c0 stub<14835> AllocateTemporaryEntryPoints +00007FA12E6F80D8 18 stub<14836> AllocateTemporaryEntryPoints +00007FA127804A00 18 stub<14837> GenerateResolveStub +00007FA1277C9640 20 stub<14838> GenerateDispatchStub +00007FA12E670560 18 stub<14839> GenerateLookupStub +00007FA127804A70 18 stub<14840> GenerateResolveStub +00007FA1277C9660 20 stub<14841> GenerateDispatchStub +00007FA12E6F80F0 18 stub<14842> AllocateTemporaryEntryPoints +00007FA12E6F8108 18 stub<14843> AllocateTemporaryEntryPoints +00007FA12E6F8120 18 stub<14844> AllocateTemporaryEntryPoints +00007FA12E559750 20f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::AppendFormatted(!!0)[QuickJitted] +00007FA12E6F8138 48 stub<14845> AllocateTemporaryEntryPoints +00007FA12E6F8180 30 stub<14846> AllocateTemporaryEntryPoints +00007FA12E6F81B0 18 stub<14847> AllocateTemporaryEntryPoints +00007FA12E670580 18 stub<14848> GenerateLookupStub +00007FA127804AE0 18 stub<14849> GenerateResolveStub +00007FA1277C9680 20 stub<14850> GenerateDispatchStub +00007FA12E6F81C8 18 stub<14851> AllocateTemporaryEntryPoints +00007FA127804B50 18 stub<14852> GenerateResolveStub +00007FA1277C96A0 20 stub<14853> GenerateDispatchStub +00007FA12E6F81E0 18 stub<14854> AllocateTemporaryEntryPoints +00007FA12E6F81F8 18 stub<14855> AllocateTemporaryEntryPoints +00007FA12E6705A0 18 stub<14856> GenerateLookupStub +00007FA127804BC0 18 stub<14857> GenerateResolveStub +00007FA1277C96C0 20 stub<14858> GenerateDispatchStub +00007FA12E6F8210 18 stub<14859> AllocateTemporaryEntryPoints +00007FA12E6705C0 18 stub<14860> GenerateLookupStub +00007FA12E6705E0 18 stub<14861> GenerateLookupStub +00007FA127804C30 18 stub<14862> GenerateResolveStub +00007FA1277C96E0 20 stub<14863> GenerateDispatchStub +00007FA12E6F8228 18 stub<14864> AllocateTemporaryEntryPoints +00007FA12E559980 74 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.RequestDelegate [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.AspNetCoreBlockMiddlewareIntegrationEnd+<>c__6`1[Microsoft_AspNetCore_Http__ADB9793829DDAE60.Microsoft_AspNetCore_Builder_ApplicationBuilder.Datadog_Trace_ClrProfiler_AutoInstrumentation_AspNetCore_IApplicationBuilder_4]::b__6_0(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.RequestDelegate)[QuickJitted] +00007FA12E6F8240 18 stub<14865> AllocateTemporaryEntryPoints +00007FA12E6F8258 18 stub<14866> AllocateTemporaryEntryPoints +00007FA12E6F8270 18 stub<14867> AllocateTemporaryEntryPoints +00007FA12E6F8288 18 stub<14868> AllocateTemporaryEntryPoints +00007FA12E6F82A0 60 stub<14869> AllocateTemporaryEntryPoints +00007FA12E6F8300 60 stub<14870> AllocateTemporaryEntryPoints +00007FA12E6F8360 18 stub<14871> AllocateTemporaryEntryPoints +00007FA12E6F8378 18 stub<14872> AllocateTemporaryEntryPoints +00007FA12E6F8390 18 stub<14873> AllocateTemporaryEntryPoints +00007FA12E6F83A8 18 stub<14874> AllocateTemporaryEntryPoints +00007FA12E559E10 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E6F83C0 18 stub<14875> AllocateTemporaryEntryPoints +00007FA12E6F83D8 18 stub<14876> AllocateTemporaryEntryPoints +00007FA12E559E90 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6F83F0 18 stub<14877> AllocateTemporaryEntryPoints +00007FA12E6F8408 90 stub<14878> AllocateTemporaryEntryPoints +00007FA12E6F8498 60 stub<14879> AllocateTemporaryEntryPoints +00007FA12E6F84F8 30 stub<14880> AllocateTemporaryEntryPoints +00007FA12E6F8528 30 stub<14881> AllocateTemporaryEntryPoints +00007FA12E6F8558 18 stub<14882> AllocateTemporaryEntryPoints +00007FA12E6F8570 60 stub<14883> AllocateTemporaryEntryPoints +00007FA12E6F85D0 a8 stub<14884> AllocateTemporaryEntryPoints +00007FA12E6F8678 18 stub<14885> AllocateTemporaryEntryPoints +00007FA12E6F8690 60 stub<14886> AllocateTemporaryEntryPoints +00007FA12E6F86F0 18 stub<14887> AllocateTemporaryEntryPoints +00007FA12E6F8708 18 stub<14888> AllocateTemporaryEntryPoints +00007FA12E559FE0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E55A020 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA1277C9700 20 stub<14889> GenerateDispatchStub +00007FA12E6F8720 18 stub<14890> AllocateTemporaryEntryPoints +00007FA12E6F8738 18 stub<14891> AllocateTemporaryEntryPoints +00007FA12E6F8750 d8 stub<14892> AllocateTemporaryEntryPoints +00007FA12E6F8828 60 stub<14893> AllocateTemporaryEntryPoints +00007FA12E6F8888 48 stub<14894> AllocateTemporaryEntryPoints +00007FA12E6F88D0 138 stub<14895> AllocateTemporaryEntryPoints +00007FA12E6F8A08 48 stub<14896> AllocateTemporaryEntryPoints +00007FA12E6F8A50 138 stub<14897> AllocateTemporaryEntryPoints +00007FA12E6F8B88 258 stub<14898> AllocateTemporaryEntryPoints +00007FA12E6F8DE0 60 stub<14899> AllocateTemporaryEntryPoints +00007FA12E6F8E40 138 stub<14900> AllocateTemporaryEntryPoints +00007FA12E6FA000 6f0 stub<14901> AllocateTemporaryEntryPoints +00007FA12E6FA6F0 6a8 stub<14902> AllocateTemporaryEntryPoints +00007FA12E6FC000 3c0 stub<14903> AllocateTemporaryEntryPoints +00007FA12E6FC3C0 2e8 stub<14904> AllocateTemporaryEntryPoints +00007FA12E6FC6A8 180 stub<14905> AllocateTemporaryEntryPoints +00007FA12E6FC828 330 stub<14906> AllocateTemporaryEntryPoints +00007FA12E6FCB58 138 stub<14907> AllocateTemporaryEntryPoints +00007FA12E670600 18 stub<14908> GenerateLookupStub +00007FA127804CA0 18 stub<14909> GenerateResolveStub +00007FA1277C9720 20 stub<14910> GenerateDispatchStub +00007FA12E6FCC90 228 stub<14911> AllocateTemporaryEntryPoints +00007FA1277C9740 20 stub<14912> GenerateDispatchStub +00007FA1277C9760 20 stub<14913> GenerateDispatchStub +00007FA127804D10 18 stub<14914> GenerateResolveStub +00007FA1277C9780 20 stub<14915> GenerateDispatchStub +00007FA12E6FCEB8 a8 stub<14916> AllocateTemporaryEntryPoints +00007FA12E6FE000 1b0 stub<14917> AllocateTemporaryEntryPoints +00007FA127804D80 18 stub<14918> GenerateResolveStub +00007FA1277C97A0 20 stub<14919> GenerateDispatchStub +00007FA127804DF0 18 stub<14920> GenerateResolveStub +00007FA1277C97C0 20 stub<14921> GenerateDispatchStub +00007FA12E6FE1B0 18 stub<14922> AllocateTemporaryEntryPoints +00007FA12E6FE1C8 90 stub<14923> AllocateTemporaryEntryPoints +00007FA12E6FE258 60 stub<14924> AllocateTemporaryEntryPoints +00007FA12E6FE2B8 18 stub<14925> AllocateTemporaryEntryPoints +00007FA12E6FE2D0 18 stub<14926> AllocateTemporaryEntryPoints +00007FA12E55A120 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E55A160 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6FE2E8 18 stub<14927> AllocateTemporaryEntryPoints +00007FA12E670620 18 stub<14928> GenerateLookupStub +00007FA127804E60 18 stub<14929> GenerateResolveStub +00007FA1277C97E0 20 stub<14930> GenerateDispatchStub +00007FA12E6FE300 18 stub<14931> AllocateTemporaryEntryPoints +00007FA12E6FE318 18 stub<14932> AllocateTemporaryEntryPoints +00007FA1277C9800 20 stub<14933> GenerateDispatchStub +00007FA12E6FE330 18 stub<14934> AllocateTemporaryEntryPoints +00007FA12E6FE348 30 stub<14935> AllocateTemporaryEntryPoints +00007FA12E6FE378 30 stub<14936> AllocateTemporaryEntryPoints +00007FA12E6FE3A8 30 stub<14937> AllocateTemporaryEntryPoints +00007FA12E6FE3D8 30 stub<14938> AllocateTemporaryEntryPoints +00007FA12E6FE408 30 stub<14939> AllocateTemporaryEntryPoints +00007FA12E6FE438 60 stub<14940> AllocateTemporaryEntryPoints +00007FA12E6FE498 18 stub<14941> AllocateTemporaryEntryPoints +00007FA12E6FE4B0 18 stub<14942> AllocateTemporaryEntryPoints +00007FA12E55A260 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E55A2A0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6FE4C8 48 stub<14943> AllocateTemporaryEntryPoints +00007FA12E6FE510 60 stub<14944> AllocateTemporaryEntryPoints +00007FA12E6FE570 138 stub<14945> AllocateTemporaryEntryPoints +00007FA12E6FE6A8 60 stub<14946> AllocateTemporaryEntryPoints +00007FA12E6FE708 60 stub<14947> AllocateTemporaryEntryPoints +00007FA12E6FE768 a8 stub<14948> AllocateTemporaryEntryPoints +00007FA1277C9820 20 stub<14949> GenerateDispatchStub +00007FA12E6FE810 18 stub<14950> AllocateTemporaryEntryPoints +00007FA12E6FE828 18 stub<14951> AllocateTemporaryEntryPoints +00007FA12E6FE840 18 stub<14952> AllocateTemporaryEntryPoints +00007FA12E55A3A0 33 bool [System.Private.CoreLib] System.Enum::TryParse(string,bool,!!0&)[QuickJitted] +00007FA12E6FE858 18 stub<14953> AllocateTemporaryEntryPoints +00007FA12E6FE870 18 stub<14954> AllocateTemporaryEntryPoints +00007FA12E55A3F0 8a bool [System.Private.CoreLib] System.Enum::TryParse(string,bool,bool,!!0&)[QuickJitted] +00007FA12E6FE888 18 stub<14955> AllocateTemporaryEntryPoints +00007FA12E6FE8A0 18 stub<14956> AllocateTemporaryEntryPoints +00007FA12E6FE8B8 18 stub<14957> AllocateTemporaryEntryPoints +00007FA12E6FE8D0 60 stub<14958> AllocateTemporaryEntryPoints +00007FA12E670640 18 stub<14959> GenerateLookupStub +00007FA12E6FE930 18 stub<14960> AllocateTemporaryEntryPoints +00007FA12E6FE948 18 stub<14961> AllocateTemporaryEntryPoints +00007FA12E6FE960 18 stub<14962> AllocateTemporaryEntryPoints +00007FA12E55A490 33 bool [System.Private.CoreLib] System.Enum::TryParse(string,bool,!!0&)[QuickJitted] +00007FA12E6FE978 18 stub<14963> AllocateTemporaryEntryPoints +00007FA12E55A4E0 8a bool [System.Private.CoreLib] System.Enum::TryParse(string,bool,bool,!!0&)[QuickJitted] +00007FA12E6FE990 60 stub<14964> AllocateTemporaryEntryPoints +00007FA12E6FE9F0 18 stub<14965> AllocateTemporaryEntryPoints +00007FA12E6FEA08 18 stub<14966> AllocateTemporaryEntryPoints +00007FA12E55A580 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E55A5C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E670660 18 stub<14967> GenerateLookupStub +00007FA127804ED0 18 stub<14968> GenerateResolveStub +00007FA1277C9840 20 stub<14969> GenerateDispatchStub +00007FA12E670680 18 stub<14970> GenerateLookupStub +00007FA127804F40 18 stub<14971> GenerateResolveStub +00007FA1277C9860 20 stub<14972> GenerateDispatchStub +00007FA12E6FEA20 60 stub<14973> AllocateTemporaryEntryPoints +00007FA12E6FEA80 18 stub<14974> AllocateTemporaryEntryPoints +00007FA12E6FEA98 18 stub<14975> AllocateTemporaryEntryPoints +00007FA12E55A6C0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E55A700 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6FEAB0 30 stub<14976> AllocateTemporaryEntryPoints +00007FA12E6FEAE0 60 stub<14977> AllocateTemporaryEntryPoints +00007FA12E6FEB40 60 stub<14978> AllocateTemporaryEntryPoints +00007FA12E6FEBA0 18 stub<14979> AllocateTemporaryEntryPoints +00007FA12E6FEBB8 18 stub<14980> AllocateTemporaryEntryPoints +00007FA12E6FEBD0 18 stub<14981> AllocateTemporaryEntryPoints +00007FA12E6FEBE8 18 stub<14982> AllocateTemporaryEntryPoints +00007FA12E55A800 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E6FEC00 18 stub<14983> AllocateTemporaryEntryPoints +00007FA12E6FEC18 18 stub<14984> AllocateTemporaryEntryPoints +00007FA12E55A880 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6FEC30 18 stub<14985> AllocateTemporaryEntryPoints +00007FA12E6FEC48 30 stub<14986> AllocateTemporaryEntryPoints +00007FA12E6FEC78 18 stub<14987> AllocateTemporaryEntryPoints +00007FA12E6FEC90 18 stub<14988> AllocateTemporaryEntryPoints +00007FA12E6FECA8 30 stub<14989> AllocateTemporaryEntryPoints +00007FA12E6FECD8 30 stub<14990> AllocateTemporaryEntryPoints +00007FA12E6FED08 30 stub<14991> AllocateTemporaryEntryPoints +00007FA12E6FED38 30 stub<14992> AllocateTemporaryEntryPoints +00007FA12E6FED68 60 stub<14993> AllocateTemporaryEntryPoints +00007FA12E6FEDC8 30 stub<14994> AllocateTemporaryEntryPoints +00007FA12E6FEDF8 48 stub<14995> AllocateTemporaryEntryPoints +00007FA12E6FEE40 78 stub<14996> AllocateTemporaryEntryPoints +00007FA12E6FEEB8 48 stub<14997> AllocateTemporaryEntryPoints +00007FA12E6FEF00 60 stub<14998> AllocateTemporaryEntryPoints +00007FA12E6FEF60 48 stub<14999> AllocateTemporaryEntryPoints +00007FA12E6FEFA8 18 stub<15000> AllocateTemporaryEntryPoints +00007FA12E6FEFC0 18 stub<15001> AllocateTemporaryEntryPoints +00007FA12E6FEFD8 18 stub<15002> AllocateTemporaryEntryPoints +00007FA12E55ADD0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12E55AE10 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E7A0000 18 stub<15003> AllocateTemporaryEntryPoints +00007FA12E7A0018 18 stub<15004> AllocateTemporaryEntryPoints +00007FA12E7A0030 18 stub<15005> AllocateTemporaryEntryPoints +00007FA12E7A0048 18 stub<15006> AllocateTemporaryEntryPoints +00007FA12E7A0060 30 stub<15007> AllocateTemporaryEntryPoints +00007FA12E7A0090 18 stub<15008> AllocateTemporaryEntryPoints +00007FA12E7A00A8 78 stub<15009> AllocateTemporaryEntryPoints +00007FA12E7A0120 18 stub<15010> AllocateTemporaryEntryPoints +00007FA12E7A0138 30 stub<15011> AllocateTemporaryEntryPoints +00007FA12E7A0168 a8 stub<15012> AllocateTemporaryEntryPoints +00007FA12E7A0210 60 stub<15013> AllocateTemporaryEntryPoints +00007FA12E7A0270 150 stub<15014> AllocateTemporaryEntryPoints +00007FA12E7A03C0 48 stub<15015> AllocateTemporaryEntryPoints +00007FA12E7A0408 78 stub<15016> AllocateTemporaryEntryPoints +00007FA12E7A0480 108 stub<15017> AllocateTemporaryEntryPoints +00007FA12E7A0588 138 stub<15018> AllocateTemporaryEntryPoints +00007FA12E7A06C0 a8 stub<15019> AllocateTemporaryEntryPoints +00007FA12E7A0768 78 stub<15020> AllocateTemporaryEntryPoints +00007FA12E7A07E0 48 stub<15021> AllocateTemporaryEntryPoints +00007FA12E7A0828 48 stub<15022> AllocateTemporaryEntryPoints +00007FA12E7A0870 18 stub<15023> AllocateTemporaryEntryPoints +00007FA12E7A0888 258 stub<15024> AllocateTemporaryEntryPoints +00007FA12E7A0AE0 60 stub<15025> AllocateTemporaryEntryPoints +00007FA12E7A0B40 18 stub<15026> AllocateTemporaryEntryPoints +00007FA12E7A0B58 18 stub<15027> AllocateTemporaryEntryPoints +00007FA12E7A0B70 90 stub<15028> AllocateTemporaryEntryPoints +00007FA12E7A0C00 18 stub<15029> AllocateTemporaryEntryPoints +00007FA12E7A0C18 60 stub<15030> AllocateTemporaryEntryPoints +00007FA12E7A0C78 18 stub<15031> AllocateTemporaryEntryPoints +00007FA12E7A0C90 60 stub<15032> AllocateTemporaryEntryPoints +00007FA12E7A0CF0 a8 stub<15033> AllocateTemporaryEntryPoints +00007FA12E55AF10 a9 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::.ctor()[QuickJitted] +00007FA12E7A0D98 60 stub<15034> AllocateTemporaryEntryPoints +00007FA12E55AFD0 ba instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::.ctor(int32)[QuickJitted] +00007FA12E7A0DF8 a8 stub<15035> AllocateTemporaryEntryPoints +00007FA12E7A0EA0 60 stub<15036> AllocateTemporaryEntryPoints +00007FA12E7A0F00 60 stub<15037> AllocateTemporaryEntryPoints +00007FA12E7A0F60 60 stub<15038> AllocateTemporaryEntryPoints +00007FA12E7A2000 48 stub<15039> AllocateTemporaryEntryPoints +00007FA12E7A2048 180 stub<15040> AllocateTemporaryEntryPoints +00007FA12E7A21C8 c0 stub<15041> AllocateTemporaryEntryPoints +00007FA12E7A2288 60 stub<15042> AllocateTemporaryEntryPoints +00007FA12E7A22E8 60 stub<15043> AllocateTemporaryEntryPoints +00007FA12E7A2348 18 stub<15044> AllocateTemporaryEntryPoints +00007FA12E7A2360 30 stub<15045> AllocateTemporaryEntryPoints +00007FA12E7A2390 18 stub<15046> AllocateTemporaryEntryPoints +00007FA12E7A23A8 30 stub<15047> AllocateTemporaryEntryPoints +00007FA12E7A23D8 30 stub<15048> AllocateTemporaryEntryPoints +00007FA127804FB0 18 stub<15049> GenerateResolveStub +00007FA1277C9880 20 stub<15050> GenerateDispatchStub +00007FA127805020 18 stub<15051> GenerateResolveStub +00007FA1277C98A0 20 stub<15052> GenerateDispatchStub +00007FA12E7A2420 240 stub<15053> AllocateTemporaryEntryPoints +00007FA12E7A2660 d8 stub<15054> AllocateTemporaryEntryPoints +00007FA12E7A2738 60 stub<15055> AllocateTemporaryEntryPoints +00007FA12E7A2798 60 stub<15056> AllocateTemporaryEntryPoints +00007FA12E7A27F8 18 stub<15057> AllocateTemporaryEntryPoints +00007FA12E7A2810 18 stub<15058> AllocateTemporaryEntryPoints +00007FA12E7A2828 18 stub<15059> AllocateTemporaryEntryPoints +00007FA12E7A2840 18 stub<15060> AllocateTemporaryEntryPoints +00007FA12E55B0A0 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E7A2858 18 stub<15061> AllocateTemporaryEntryPoints +00007FA12E7A2870 18 stub<15062> AllocateTemporaryEntryPoints +00007FA12E55B120 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E7A2888 18 stub<15063> AllocateTemporaryEntryPoints +00007FA12E7A28A0 3c0 stub<15064> AllocateTemporaryEntryPoints +00007FA12E6706A0 18 stub<15065> GenerateLookupStub +00007FA12E7A2C60 60 stub<15066> AllocateTemporaryEntryPoints +00007FA12E7A2CC0 18 stub<15067> AllocateTemporaryEntryPoints +00007FA12E7A2CD8 18 stub<15068> AllocateTemporaryEntryPoints +00007FA12E7A2CF0 18 stub<15069> AllocateTemporaryEntryPoints +00007FA12E55B270 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12E55B2B0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E7A2D08 18 stub<15070> AllocateTemporaryEntryPoints +00007FA12E7A2D20 18 stub<15071> AllocateTemporaryEntryPoints +00007FA12E7A2D38 18 stub<15072> AllocateTemporaryEntryPoints +00007FA12E7A2D50 18 stub<15073> AllocateTemporaryEntryPoints +00007FA12E7A2D68 18 stub<15074> AllocateTemporaryEntryPoints +00007FA12E7A2D80 18 stub<15075> AllocateTemporaryEntryPoints +00007FA12E7A2D98 60 stub<15076> AllocateTemporaryEntryPoints +00007FA12E7A2DF8 78 stub<15077> AllocateTemporaryEntryPoints +00007FA12E7A2E70 30 stub<15078> AllocateTemporaryEntryPoints +00007FA12E7A2EA0 18 stub<15079> AllocateTemporaryEntryPoints +00007FA12E6706C0 18 stub<15080> GenerateLookupStub +00007FA127805090 18 stub<15081> GenerateResolveStub +00007FA12E7A4000 5e8 stub<15082> AllocateTemporaryEntryPoints +00007FA1277C98C0 20 stub<15083> GenerateDispatchStub +00007FA12E7A45E8 c0 stub<15084> AllocateTemporaryEntryPoints +00007FA12E7A46A8 18 stub<15085> AllocateTemporaryEntryPoints +00007FA12E7A46C0 90 stub<15086> AllocateTemporaryEntryPoints +00007FA12E7A4750 18 stub<15087> AllocateTemporaryEntryPoints +00007FA12E7A4768 a8 stub<15088> AllocateTemporaryEntryPoints +00007FA12E7A4810 18 stub<15089> AllocateTemporaryEntryPoints +00007FA12E7A4828 78 stub<15090> AllocateTemporaryEntryPoints +00007FA12E7A48A0 18 stub<15091> AllocateTemporaryEntryPoints +00007FA12E55B7C0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E7A48B8 18 stub<15092> AllocateTemporaryEntryPoints +00007FA12E7A48D0 5e8 stub<15093> AllocateTemporaryEntryPoints +00007FA12E7A4EB8 18 stub<15094> AllocateTemporaryEntryPoints +00007FA12E7A4ED0 18 stub<15095> AllocateTemporaryEntryPoints +00007FA12E7A4EE8 c0 stub<15096> AllocateTemporaryEntryPoints +00007FA12E7A4FA8 18 stub<15097> AllocateTemporaryEntryPoints +00007FA12E7A4FC0 18 stub<15098> AllocateTemporaryEntryPoints +00007FA12E7A6000 90 stub<15099> AllocateTemporaryEntryPoints +00007FA12E7A6090 a8 stub<15100> AllocateTemporaryEntryPoints +00007FA12E7A6138 18 stub<15101> AllocateTemporaryEntryPoints +00007FA12E7A6150 78 stub<15102> AllocateTemporaryEntryPoints +00007FA12E55B860 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E7A61C8 18 stub<15103> AllocateTemporaryEntryPoints +00007FA12E7A61E0 18 stub<15104> AllocateTemporaryEntryPoints +00007FA12E7A61F8 d8 stub<15105> AllocateTemporaryEntryPoints +00007FA12E55B940 27 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::.ctor(int32)[QuickJitted] +00007FA12E7A62D0 18 stub<15106> AllocateTemporaryEntryPoints +00007FA12E7A62E8 30 stub<15107> AllocateTemporaryEntryPoints +00007FA12E7A6318 18 stub<15108> AllocateTemporaryEntryPoints +00007FA12E7A6330 d8 stub<15109> AllocateTemporaryEntryPoints +00007FA12E55B980 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E7A6408 60 stub<15110> AllocateTemporaryEntryPoints +00007FA12E55BE60 a0 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::Initialize(int32)[QuickJitted] +00007FA12E55BAB0 393 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E55BF20 32 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::Add(!0,!1)[QuickJitted] +00007FA12E55BF70 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener+d__10]::.ctor()[QuickJitted] +00007FA12E7A6468 18 stub<15111> AllocateTemporaryEntryPoints +00007FA12E6706E0 18 stub<15112> GenerateLookupStub +00007FA12E7A6480 18 stub<15113> AllocateTemporaryEntryPoints +00007FA12E7A6498 18 stub<15114> AllocateTemporaryEntryPoints +00007FA12E670700 18 stub<15115> GenerateLookupStub +00007FA12E55BFB0 7c void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12E670720 18 stub<15116> GenerateLookupStub +00007FA127805100 18 stub<15117> GenerateResolveStub +00007FA1277C98E0 20 stub<15118> GenerateDispatchStub +00007FA12E55C050 627 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E55C6A0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::GetBucket(uint32)[QuickJitted] +00007FA12E7A64B0 18 stub<15119> AllocateTemporaryEntryPoints +00007FA12E7A64C8 18 stub<15120> AllocateTemporaryEntryPoints +00007FA12E7A64E0 18 stub<15121> AllocateTemporaryEntryPoints +00007FA12E7A64F8 18 stub<15122> AllocateTemporaryEntryPoints +00007FA12E55C710 27 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::.ctor(int32)[QuickJitted] +00007FA12E7A6510 30 stub<15123> AllocateTemporaryEntryPoints +00007FA12E55C750 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E7A6540 18 stub<15124> AllocateTemporaryEntryPoints +00007FA12E7A6558 d8 stub<15125> AllocateTemporaryEntryPoints +00007FA12E7A6630 18 stub<15126> AllocateTemporaryEntryPoints +00007FA12E7A6648 18 stub<15127> AllocateTemporaryEntryPoints +00007FA12E7A6660 18 stub<15128> AllocateTemporaryEntryPoints +00007FA12E7A6678 18 stub<15129> AllocateTemporaryEntryPoints +00007FA12E55C7F0 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E55C920 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E7A6690 60 stub<15130> AllocateTemporaryEntryPoints +00007FA12E7A66F0 18 stub<15131> AllocateTemporaryEntryPoints +00007FA12E7A6708 d8 stub<15132> AllocateTemporaryEntryPoints +00007FA12E55CA00 a0 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::Initialize(int32)[QuickJitted] +00007FA12E7A67E0 18 stub<15133> AllocateTemporaryEntryPoints +00007FA12E7A67F8 18 stub<15134> AllocateTemporaryEntryPoints +00007FA12E55CAC0 32 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::Add(!0,!1)[QuickJitted] +00007FA12E670740 18 stub<15135> GenerateLookupStub +00007FA12E7A6810 18 stub<15136> AllocateTemporaryEntryPoints +00007FA12E670760 18 stub<15137> GenerateLookupStub +00007FA12E55CB10 337 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E55CE70 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.ConnectionDispatcher`1+<>c__DisplayClass8_0+<g__AcceptConnectionsAsync|0>d[System.__Canon]]::.ctor()[QuickJitted] +00007FA12E7A6828 18 stub<15138> AllocateTemporaryEntryPoints +00007FA12E55D500 7c void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12E55CEB0 627 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E55D5A0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::GetBucket(uint32)[QuickJitted] +00007FA12E7A6840 18 stub<15139> AllocateTemporaryEntryPoints +00007FA12E55D610 5a instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12E7A6858 18 stub<15140> AllocateTemporaryEntryPoints +00007FA12E7A6870 18 stub<15141> AllocateTemporaryEntryPoints +00007FA12E55D680 3c2 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::FindValue(!0)[QuickJitted] +00007FA12E55DA60 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Interop+Error]::get_Default()[QuickJitted] +00007FA12E55DAA0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Interop+Error]::.cctor()[QuickJitted] +00007FA12E7A6888 18 stub<15142> AllocateTemporaryEntryPoints +00007FA12E7A68A0 d8 stub<15143> AllocateTemporaryEntryPoints +00007FA12E55DB20 1f instance void [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Interop+Error]::.ctor()[QuickJitted] +00007FA12E55DB60 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Interop+Error]::.ctor()[QuickJitted] +00007FA12E7A6978 18 stub<15144> AllocateTemporaryEntryPoints +00007FA12E55DBA0 27 instance bool [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Interop+Error]::Equals(!0,!0)[QuickJitted] +00007FA12E55DBE0 22 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::EnumEquals(!!0,!!0)[QuickJitted] +00007FA12E7A6990 a8 stub<15145> AllocateTemporaryEntryPoints +00007FA12E7A6A38 48 stub<15146> AllocateTemporaryEntryPoints +00007FA12E7A8000 5e8 stub<15147> AllocateTemporaryEntryPoints +00007FA12E7A85E8 c0 stub<15148> AllocateTemporaryEntryPoints +00007FA12E7A86A8 90 stub<15149> AllocateTemporaryEntryPoints +00007FA12E7A8738 a8 stub<15150> AllocateTemporaryEntryPoints +00007FA12E7A87E0 18 stub<15151> AllocateTemporaryEntryPoints +00007FA12E7A87F8 78 stub<15152> AllocateTemporaryEntryPoints +00007FA12E7A8870 18 stub<15153> AllocateTemporaryEntryPoints +00007FA12E7A8888 5e8 stub<15154> AllocateTemporaryEntryPoints +00007FA12E7A8E70 c0 stub<15155> AllocateTemporaryEntryPoints +00007FA12E7A8F30 90 stub<15156> AllocateTemporaryEntryPoints +00007FA12E7AA000 a8 stub<15157> AllocateTemporaryEntryPoints +00007FA12E7AA0A8 18 stub<15158> AllocateTemporaryEntryPoints +00007FA12E7AA0C0 78 stub<15159> AllocateTemporaryEntryPoints +00007FA12E7AA138 18 stub<15160> AllocateTemporaryEntryPoints +00007FA12E55DC20 27 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::.ctor(int32)[QuickJitted] +00007FA12E7AA150 30 stub<15161> AllocateTemporaryEntryPoints +00007FA12E7AA180 d8 stub<15162> AllocateTemporaryEntryPoints +00007FA12E55DC60 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E7AA258 60 stub<15163> AllocateTemporaryEntryPoints +00007FA12E55DD90 a0 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::Initialize(int32)[QuickJitted] +00007FA12E55DE50 32 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::Add(!0,!1)[QuickJitted] +00007FA12E670780 18 stub<15164> GenerateLookupStub +00007FA12E7AA2B8 18 stub<15165> AllocateTemporaryEntryPoints +00007FA12E6707A0 18 stub<15166> GenerateLookupStub +00007FA12E55DEA0 627 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E55E4F0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::GetBucket(uint32)[QuickJitted] +00007FA12E55E560 27 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::.ctor(int32)[QuickJitted] +00007FA12E55E5A0 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E7AA2D0 60 stub<15167> AllocateTemporaryEntryPoints +00007FA12E55E6D0 a0 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::Initialize(int32)[QuickJitted] +00007FA12E55E790 32 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::Add(!0,!1)[QuickJitted] +00007FA12E55E7E0 627 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E55EE30 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::GetBucket(uint32)[QuickJitted] +00007FA12E7AA330 18 stub<15168> AllocateTemporaryEntryPoints +00007FA12E55EEA0 5a instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12E7AA348 18 stub<15169> AllocateTemporaryEntryPoints +00007FA12E7AA360 18 stub<15170> AllocateTemporaryEntryPoints +00007FA12E55EF10 3c2 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Net.Sockets.SocketError,Interop+Error]::FindValue(!0)[QuickJitted] +00007FA12E55F2F0 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Net.Sockets.SocketError]::get_Default()[QuickJitted] +00007FA12E55F330 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Net.Sockets.SocketError]::.cctor()[QuickJitted] +00007FA12E7AA378 18 stub<15171> AllocateTemporaryEntryPoints +00007FA12E7AA390 d8 stub<15172> AllocateTemporaryEntryPoints +00007FA12E55F3B0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[System.Net.Sockets.SocketError]::.ctor()[QuickJitted] +00007FA12E55F3F0 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Net.Sockets.SocketError]::.ctor()[QuickJitted] +00007FA12E7AA468 18 stub<15173> AllocateTemporaryEntryPoints +00007FA12E55F430 27 instance bool [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[System.Net.Sockets.SocketError]::Equals(!0,!0)[QuickJitted] +00007FA12E55F470 22 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::EnumEquals(!!0,!!0)[QuickJitted] +00007FA12E7AA480 108 stub<15174> AllocateTemporaryEntryPoints +00007FA12E7AA588 a8 stub<15175> AllocateTemporaryEntryPoints +00007FA12E55F4B0 3b instance void [System.Private.CoreLib] System.Runtime.ExceptionServices.ExceptionDispatchInfo::Throw()[QuickJitted] +00007FA12E7AA630 7f8 stub<15176> AllocateTemporaryEntryPoints +00007FA12E7AC000 7f8 stub<15177> AllocateTemporaryEntryPoints +00007FA12E7AC7F8 7f8 stub<15178> AllocateTemporaryEntryPoints +00007FA12E7AE000 270 stub<15179> AllocateTemporaryEntryPoints +00007FA12E7AE270 18 stub<15180> AllocateTemporaryEntryPoints +00007FA12E7AE288 18 stub<15181> AllocateTemporaryEntryPoints +00007FA12E55F500 a7 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.KestrelTrace::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E55F5C0 11e void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12E7AE2A0 18 stub<15182> AllocateTemporaryEntryPoints +00007FA12E7AE2B8 a8 stub<15183> AllocateTemporaryEntryPoints +00007FA12E7AE360 18 stub<15184> AllocateTemporaryEntryPoints +00007FA12E55F700 2e4 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E55FA00 8f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.FormattedLogValues]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E7AE378 18 stub<15185> AllocateTemporaryEntryPoints +00007FA12E7AE390 18 stub<15186> AllocateTemporaryEntryPoints +00007FA12E55FAB0 225 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12E55FD00 1c instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.FormattedLogValues]::get_Formatter()[QuickJitted] +00007FA12E55FD30 37 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.FormattedLogValues]::get_State()[QuickJitted] +00007FA12E55FD80 1c instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.FormattedLogValues]::get_Exception()[QuickJitted] +00007FA12E55FDB0 1b instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.FormattedLogValues]::get_LogLevel()[QuickJitted] +00007FA12E55FDE0 30c instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12E560120 33 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.FormattedLogValues]::get_EventId()[QuickJitted] +00007FA12E560170 1b instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.FormattedLogValues]::get_Category()[QuickJitted] +00007FA12E7AE3A8 18 stub<15187> AllocateTemporaryEntryPoints +00007FA12E5601A0 230 instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E7AE3C0 18 stub<15188> AllocateTemporaryEntryPoints +00007FA12E5603F0 5a7 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E7AE3F0 18 stub<15189> AllocateTemporaryEntryPoints +00007FA12E7AE408 30 stub<15190> AllocateTemporaryEntryPoints +00007FA12E7AE438 f0 stub<15191> AllocateTemporaryEntryPoints +00007FA12E7AE528 810 stub<15192> AllocateTemporaryEntryPoints +00007FA12E7D0000 7f8 stub<15193> AllocateTemporaryEntryPoints +00007FA12E7D07F8 7f8 stub<15194> AllocateTemporaryEntryPoints +00007FA12E7D2000 7f8 stub<15195> AllocateTemporaryEntryPoints +00007FA12E7D27F8 330 stub<15196> AllocateTemporaryEntryPoints +00007FA12E7D2B28 48 stub<15197> AllocateTemporaryEntryPoints +00007FA12E7D2B70 150 stub<15198> AllocateTemporaryEntryPoints +00007FA12E7D2CC0 150 stub<15199> AllocateTemporaryEntryPoints +00007FA12E7D2E10 48 stub<15200> AllocateTemporaryEntryPoints +00007FA12E7D2E58 48 stub<15201> AllocateTemporaryEntryPoints +00007FA12E7D2EA0 48 stub<15202> AllocateTemporaryEntryPoints +00007FA1277C9900 20 stub<15203> GenerateDispatchStub +00007FA12E7D2EE8 48 stub<15204> AllocateTemporaryEntryPoints +00007FA1277C9920 20 stub<15205> GenerateDispatchStub +00007FA12E7D2F30 18 stub<15206> AllocateTemporaryEntryPoints +00007FA12E560DC0 201 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::AppendFormatted(!!0)[QuickJitted] +00007FA12E7D2F48 18 stub<15207> AllocateTemporaryEntryPoints +00007FA12E560FE0 7e instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] BuggyBits.SelfInvoker::RunAsync(string,int32)[QuickJitted] +00007FA12E7D2F60 18 stub<15208> AllocateTemporaryEntryPoints +00007FA12E561080 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5610C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E7D2F78 18 stub<15209> AllocateTemporaryEntryPoints +00007FA12E5611C0 684 instance void [Samples.BuggyBits] BuggyBits.SelfInvoker+d__7::MoveNext()[QuickJitted] +00007FA12E561890 137 instance void [Samples.BuggyBits] BuggyBits.SelfInvoker::CreateIdleThreads()[QuickJitted] +00007FA12E5619E0 22f instance class [System.Collections]System.Collections.Generic.List`1 [Samples.BuggyBits] BuggyBits.SelfInvoker::GetEndpoints(string)[QuickJitted] +00007FA12E7D2F90 18 stub<15210> AllocateTemporaryEntryPoints +00007FA12E561C30 6c instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] BuggyBits.SelfInvoker::ExecuteIterationAsync(string)[QuickJitted] +00007FA12E7D2FA8 18 stub<15211> AllocateTemporaryEntryPoints +00007FA12E561CC0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E561D00 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E7D2FC0 18 stub<15212> AllocateTemporaryEntryPoints +00007FA12E7D2FD8 18 stub<15213> AllocateTemporaryEntryPoints +00007FA12E7D4000 18 stub<15214> AllocateTemporaryEntryPoints +00007FA12E7D4018 18 stub<15215> AllocateTemporaryEntryPoints +00007FA12E561E00 513 instance void [Samples.BuggyBits] BuggyBits.SelfInvoker+d__10::MoveNext()[QuickJitted] +00007FA12E562350 2d instance valuetype [Datadog.Trace]Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMethodStruct [DuckTypeNotVisibleAssembly.HttpRequestMessage_1] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpRequestMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpRequestMessage_1::get_Method()[QuickJitted] +00007FA12E7D4030 18 stub<15216> AllocateTemporaryEntryPoints +00007FA12E5623A0 71 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMethodStruct]::Create(object)[QuickJitted] +00007FA12E562430 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMethodStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E5625D0 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMethodStruct]::.cctor()[QuickJitted] +00007FA12E562650 6ab void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::CreatePropertiesFromStruct(class [System.Reflection.Emit]System.Reflection.Emit.TypeBuilder,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.FieldInfo)[QuickJitted] +00007FA12E562D20 f7 class [System.Runtime]System.Reflection.PropertyInfo [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetTargetProperty(class [System.Runtime]System.Type,string,valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA12E7D4048 d8 stub<15217> AllocateTemporaryEntryPoints +00007FA12E562E30 6d5 class [System.Runtime]System.Delegate [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::CreateStructCopyMethod(class [System.Reflection.Emit]System.Reflection.Emit.ModuleBuilder,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[QuickJitted] +00007FA12E563530 fc void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::WriteLoadLocal(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,int32)[QuickJitted] +00007FA12E7D4120 60 stub<15218> AllocateTemporaryEntryPoints +00007FA12E563660 6c instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA128667890 3c Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMethodStruct /* MT: 0x00007FA12C5CA7C8 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12E5636E0 24 instance class [System.Private.Uri]System.Uri [DuckTypeNotVisibleAssembly.HttpRequestMessage_1] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpRequestMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpRequestMessage_1::get_RequestUri()[QuickJitted] +00007FA12E563720 9d class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.ClrProfiler.ScopeFactory::CreateOutboundHttpScope(class Datadog.Trace.Tracer,string,class [System.Runtime]System.Uri,valuetype Datadog.Trace.Configuration.IntegrationId,class Datadog.Trace.Tagging.HttpTags&,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E7D4180 48 stub<15219> AllocateTemporaryEntryPoints +00007FA12E7D41C8 48 stub<15220> AllocateTemporaryEntryPoints +00007FA12E7D4210 18 stub<15221> AllocateTemporaryEntryPoints +00007FA12E7D4228 78 stub<15222> AllocateTemporaryEntryPoints +00007FA12E7D42A0 78 stub<15223> AllocateTemporaryEntryPoints +00007FA12E7D4318 270 stub<15224> AllocateTemporaryEntryPoints +00007FA12E6707C0 18 stub<15225> GenerateLookupStub +00007FA12E5637E0 5ec class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.ClrProfiler.ScopeFactory::CreateInactiveOutboundHttpSpan(class Datadog.Trace.Tracer,string,class [System.Runtime]System.Uri,valuetype Datadog.Trace.Configuration.IntegrationId,class Datadog.Trace.Tagging.HttpTags&,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,bool)[QuickJitted] +00007FA12E563E00 27 class [System.Runtime]System.Func`2 [Datadog.Trace] Datadog.Trace.PlatformHelpers.PlatformStrategy::get_ShouldSkipClientSpan()[QuickJitted] +00007FA12E7D4588 48 stub<15226> AllocateTemporaryEntryPoints +00007FA12E563E40 7e void [Datadog.Trace] Datadog.Trace.PlatformHelpers.PlatformStrategy::.cctor()[QuickJitted] +00007FA12E563EE0 47 void [Datadog.Trace] Datadog.Trace.PlatformHelpers.PlatformStrategy+<>c::.cctor()[QuickJitted] +00007FA12E563F40 1f instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.PlatformStrategy+<>c::.ctor()[QuickJitted] +00007FA12E563F80 1a instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.PlatformStrategy+<>c::<.cctor>b__4_0(class Datadog.Trace.Scope)[QuickJitted] +00007FA12E563FB0 1c instance string[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_HttpClientExcludedUrlSubstrings()[QuickJitted] +00007FA12E563FE0 e2 bool [Datadog.Trace] Datadog.Trace.ClrProfiler.Helpers.HttpBypassHelper::UriContainsAnyOf(class [System.Runtime]System.Uri,string[])[QuickJitted] +00007FA12E5640E0 b9 class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.ClrProfiler.ScopeFactory::GetActiveHttpScope(class Datadog.Trace.Tracer)[QuickJitted] +00007FA12E5641B0 e4 string [Datadog.Trace] Datadog.Trace.Util.UriHelpers::CleanUri(class [System.Runtime]System.Uri,bool,bool)[QuickJitted] +00007FA12E5642B0 21 string [Datadog.Trace] Datadog.Trace.Util.UriHelpers::GetCleanUriPath(string)[QuickJitted] +00007FA12E7D45D0 48 stub<15227> AllocateTemporaryEntryPoints +00007FA12E5642F0 32e string [Datadog.Trace] Datadog.Trace.Util.UriHelpers::GetCleanUriPath(string,string)[QuickJitted] +00007FA12E564640 ae class [System.Runtime]System.Text.StringBuilder [Datadog.Trace] Datadog.Trace.Util.StringBuilderCache::Acquire(int32)[QuickJitted] +00007FA12E564710 128 bool [Datadog.Trace] Datadog.Trace.Util.UriHelpers::IsIdentifierSegment(string,int32,int32)[QuickJitted] +00007FA12E564850 3e string [Datadog.Trace] Datadog.Trace.Util.StringBuilderCache::GetStringAndRelease(class [System.Runtime]System.Text.StringBuilder)[QuickJitted] +00007FA12E5648B0 4e void [Datadog.Trace] Datadog.Trace.Util.StringBuilderCache::Release(class [System.Runtime]System.Text.StringBuilder)[QuickJitted] +00007FA12E564920 1f instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::.ctor()[QuickJitted] +00007FA12E564960 1f instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::.ctor()[QuickJitted] +00007FA12E5649A0 1f instance void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::.ctor()[QuickJitted] +00007FA12E5649E0 1f instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::.ctor()[QuickJitted] +00007FA12E564A20 59 instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::GetServiceName(class Datadog.Trace.Tracer,string)[QuickJitted] +00007FA12E564A90 1f instance class Datadog.Trace.Configuration.ServiceNames [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_ServiceNameMappings()[QuickJitted] +00007FA12E564AD0 2a instance string [Datadog.Trace] Datadog.Trace.Tracer::get_DefaultServiceName()[QuickJitted] +00007FA12E564B10 6f instance string [Datadog.Trace] Datadog.Trace.Configuration.ServiceNames::GetServiceName(string,string)[QuickJitted] +00007FA12E6707E0 18 stub<15228> GenerateLookupStub +00007FA12E564BA0 2ad instance class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.Tracer::StartSpan(string,class Datadog.Trace.Tagging.ITags,class Datadog.Trace.ISpanContext,string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,string,string,bool)[QuickJitted] +00007FA12E7D4618 108 stub<15229> AllocateTemporaryEntryPoints +00007FA12E7D4720 168 stub<15230> AllocateTemporaryEntryPoints +00007FA12E7D4888 120 stub<15231> AllocateTemporaryEntryPoints +00007FA12E670800 18 stub<15232> GenerateLookupStub +00007FA12E670820 18 stub<15233> GenerateLookupStub +00007FA12E7D49A8 60 stub<15234> AllocateTemporaryEntryPoints +00007FA12E670840 18 stub<15235> GenerateLookupStub +00007FA12E564E80 482 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.Tracer::CreateSpanContext(class Datadog.Trace.ISpanContext,string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,string,string)[QuickJitted] +00007FA12E565320 a8 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.GetSpanContext()[QuickJitted] +00007FA12E670860 18 stub<15236> GenerateLookupStub +00007FA12E5653E0 1c2 instance void [Datadog.Trace] Datadog.Trace.TraceContext::.ctor(class Datadog.Trace.IDatadogTracer,class Datadog.Trace.Tagging.TraceTagCollection)[QuickJitted] +00007FA127805170 18 stub<15237> GenerateResolveStub +00007FA1277C9940 20 stub<15238> GenerateDispatchStub +00007FA12E5655C0 2a instance void [Datadog.Trace] Datadog.Trace.TraceContext::set_Environment(string)[QuickJitted] +00007FA12E565600 2a instance void [Datadog.Trace] Datadog.Trace.TraceContext::set_ServiceVersion(string)[QuickJitted] +00007FA12E565640 1e instance int32 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_OutgoingTagPropagationHeaderMaxLength()[QuickJitted] +00007FA12E565680 29 instance void [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::.ctor(int32)[QuickJitted] +00007FA12E5656C0 8a instance void [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::.ctor(int32,class [System.Collections]System.Collections.Generic.List`1>,string)[QuickJitted] +00007FA12E670880 18 stub<15239> GenerateLookupStub +00007FA12E565760 61 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.GetSamplingPriority()[QuickJitted] +00007FA12E6708A0 18 stub<15240> GenerateLookupStub +00007FA12E5657E0 19d instance void [Datadog.Trace] Datadog.Trace.TraceContext::SetSamplingPriority(valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,bool)[QuickJitted] +00007FA12E5659A0 1b instance bool [System.Private.CoreLib] System.Nullable`1[System.UInt64]::get_HasValue()[QuickJitted] +00007FA12E7D4A08 a8 stub<15241> AllocateTemporaryEntryPoints +00007FA12E7D4AB0 30 stub<15242> AllocateTemporaryEntryPoints +00007FA12E7D4AE0 18 stub<15243> AllocateTemporaryEntryPoints +00007FA12E7D4AF8 18 stub<15244> AllocateTemporaryEntryPoints +00007FA12E7D4B10 18 stub<15245> AllocateTemporaryEntryPoints +00007FA12E7D4B28 18 stub<15246> AllocateTemporaryEntryPoints +00007FA12E7D4B40 18 stub<15247> AllocateTemporaryEntryPoints +00007FA12E5659D0 ca class Datadog.Trace.Activity.DuckTypes.IActivity [Datadog.Trace] Datadog.Trace.Activity.ActivityListener::GetCurrentActivity()[QuickJitted] +00007FA12E565AB0 115 object [Datadog.Trace] Datadog.Trace.Activity.ActivityListener::GetCurrentActivityObject()[QuickJitted] +00007FA12E565BF0 68 void [Datadog.Trace] Datadog.Trace.Activity.ActivityListener::.cctor()[QuickJitted] +00007FA12E7D4B58 30 stub<15248> AllocateTemporaryEntryPoints +00007FA12E6708C0 18 stub<15249> GenerateLookupStub +00007FA12E565C70 255 instance void [Datadog.Trace] Datadog.Trace.SpanContext::.ctor(class Datadog.Trace.ISpanContext,class Datadog.Trace.TraceContext,string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,string,string)[QuickJitted] +00007FA12E565EF0 ed instance void [Datadog.Trace] Datadog.Trace.SpanContext::.ctor(valuetype [System.Runtime]System.Nullable`1,string)[QuickJitted] +00007FA12E566000 1c instance !0 [System.Private.CoreLib] System.Nullable`1[System.UInt64]::GetValueOrDefault()[QuickJitted] +00007FA12E7D4B88 18 stub<15250> AllocateTemporaryEntryPoints +00007FA12E566030 d7 uint64 [Datadog.Trace] Datadog.Trace.Util.SpanIdGenerator::CreateNew()[QuickJitted] +00007FA12E566120 d class [System.Runtime]System.Random [Datadog.Trace] Datadog.Trace.Util.ThreadSafeRandom::get_Shared()[QuickJitted] +00007FA12E566150 2a instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_ServiceName(string)[QuickJitted] +00007FA12E6708E0 18 stub<15251> GenerateLookupStub +00007FA12E566190 37d instance void [Datadog.Trace] Datadog.Trace.Span::.ctor(class Datadog.Trace.SpanContext,valuetype [System.Runtime]System.Nullable`1,class Datadog.Trace.Tagging.ITags)[QuickJitted] +00007FA12E566530 2a instance void [Datadog.Trace] Datadog.Trace.Span::set_Tags(class Datadog.Trace.Tagging.ITags)[QuickJitted] +00007FA12E566570 1c instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.Span::get_Context()[QuickJitted] +00007FA12E5665A0 1c instance class Datadog.Trace.TraceContext [Datadog.Trace] Datadog.Trace.SpanContext::get_TraceContext()[QuickJitted] +00007FA12E5665D0 59 instance valuetype [System.Runtime]System.DateTimeOffset [Datadog.Trace] Datadog.Trace.TraceContext::get_UtcNow()[QuickJitted] +00007FA12E7D4BA0 48 stub<15252> AllocateTemporaryEntryPoints +00007FA12E566640 2c instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.TraceContext::get_Elapsed()[QuickJitted] +00007FA12E566680 68 valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.Util.StopwatchHelpers::GetElapsed(int64)[QuickJitted] +00007FA12E566700 2b void [Datadog.Trace] Datadog.Trace.Util.StopwatchHelpers::.cctor()[QuickJitted] +00007FA12E566750 2d instance void [Datadog.Trace] Datadog.Trace.Span::set_StartTime(valuetype [System.Runtime]System.DateTimeOffset)[QuickJitted] +00007FA12E7D4BE8 18 stub<15253> AllocateTemporaryEntryPoints +00007FA12E5667A0 4d void [Datadog.Trace] Datadog.Trace.Span::.cctor()[QuickJitted] +00007FA12E566810 2a instance void [Datadog.Trace] Datadog.Trace.Span::set_OperationName(string)[QuickJitted] +00007FA12E670900 18 stub<15254> GenerateLookupStub +00007FA12E566850 192 instance void [Datadog.Trace] Datadog.Trace.TraceContext::AddSpan(class Datadog.Trace.Span)[QuickJitted] +00007FA12E566A10 1c instance class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.TraceContext::get_RootSpan()[QuickJitted] +00007FA12E566A40 2a instance void [Datadog.Trace] Datadog.Trace.TraceContext::set_RootSpan(class Datadog.Trace.Span)[QuickJitted] +00007FA12E566A80 1c instance class Datadog.Trace.IDatadogTracer [Datadog.Trace] Datadog.Trace.TraceContext::get_Tracer()[QuickJitted] +00007FA12E566AB0 2a instance class Datadog.Trace.Sampling.ITraceSampler [Datadog.Trace] Datadog.Trace.Tracer::Datadog.Trace.IDatadogTracer.get_Sampler()[QuickJitted] +00007FA12E566AF0 1c instance class Datadog.Trace.Sampling.ITraceSampler [Datadog.Trace] Datadog.Trace.TracerManager::get_Sampler()[QuickJitted] +00007FA12E7D4C00 18 stub<15255> AllocateTemporaryEntryPoints +00007FA12E670920 18 stub<15256> GenerateLookupStub +00007FA12E670940 18 stub<15257> GenerateLookupStub +00007FA12E670960 18 stub<15258> GenerateLookupStub +00007FA12E7D4C18 18 stub<15259> AllocateTemporaryEntryPoints +00007FA12E7D4C30 18 stub<15260> AllocateTemporaryEntryPoints +00007FA12E670980 18 stub<15261> GenerateLookupStub +00007FA12E7D4C48 18 stub<15262> AllocateTemporaryEntryPoints +00007FA12E566B20 35f instance valuetype Datadog.Trace.Sampling.SamplingDecision [Datadog.Trace] Datadog.Trace.Sampling.TraceSampler::MakeSamplingDecision(class Datadog.Trace.Span)[QuickJitted] +00007FA12E566EB0 2a instance uint64 [Datadog.Trace] Datadog.Trace.Span::get_TraceId()[QuickJitted] +00007FA12E566EF0 1c instance uint64 [Datadog.Trace] Datadog.Trace.SpanContext::get_TraceId()[QuickJitted] +00007FA12E566F20 1d instance bool [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::IsMatch(class Datadog.Trace.Span)[QuickJitted] +00007FA12E7D4C60 18 stub<15263> AllocateTemporaryEntryPoints +00007FA12E566F60 31f instance float32 [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::GetSamplingRate(class Datadog.Trace.Span)[QuickJitted] +00007FA12E7D4C78 18 stub<15264> AllocateTemporaryEntryPoints +00007FA12E5672C0 29 void [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::.cctor()[QuickJitted] +00007FA12E567300 22 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::get_Count()[QuickJitted] +00007FA12E567340 1c instance string [Datadog.Trace] Datadog.Trace.TraceContext::get_Environment()[QuickJitted] +00007FA12E567370 2a instance string [Datadog.Trace] Datadog.Trace.Span::get_ServiceName()[QuickJitted] +00007FA12E5673B0 1c instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_ServiceName()[QuickJitted] +00007FA12E7D4C90 18 stub<15265> AllocateTemporaryEntryPoints +00007FA12E5673E0 6b instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12E7D4CA8 18 stub<15266> AllocateTemporaryEntryPoints +00007FA12E7D4CC0 18 stub<15267> AllocateTemporaryEntryPoints +00007FA12E567470 407 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::FindValue(!0)[QuickJitted] +00007FA12E7D4CD8 18 stub<15268> AllocateTemporaryEntryPoints +00007FA12E7D4CF0 18 stub<15269> AllocateTemporaryEntryPoints +00007FA12E7D4D08 18 stub<15270> AllocateTemporaryEntryPoints +00007FA12E5678A0 55 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,!!1,int32,string)[QuickJitted] +00007FA12E567910 ec instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,!!1,int32,string)[QuickJitted] +00007FA12E567A20 1b instance bool [System.Private.CoreLib] System.Nullable`1[System.Single]::get_HasValue()[QuickJitted] +00007FA12E567A50 20 instance !0 [System.Private.CoreLib] System.Nullable`1[System.Single]::GetValueOrDefault()[QuickJitted] +00007FA12E6709A0 18 stub<15271> GenerateLookupStub +00007FA12E567A90 5a instance class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.Span::SetMetric(string,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E567B00 1c instance class Datadog.Trace.Tagging.ITags [Datadog.Trace] Datadog.Trace.Span::get_Tags()[QuickJitted] +00007FA12E567B30 71 instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::SetMetric(string,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E567BC0 a8 instance void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::SetMetric(string,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E7D4D20 90 stub<15272> AllocateTemporaryEntryPoints +00007FA12E7D6000 6f0 stub<15273> AllocateTemporaryEntryPoints +00007FA12E7D66F0 78 stub<15274> AllocateTemporaryEntryPoints +00007FA12E7D6768 a8 stub<15275> AllocateTemporaryEntryPoints +00007FA12E7D6810 18 stub<15276> AllocateTemporaryEntryPoints +00007FA12E7D6828 18 stub<15277> AllocateTemporaryEntryPoints +00007FA12E7D6840 18 stub<15278> AllocateTemporaryEntryPoints +00007FA12E7D6858 18 stub<15279> AllocateTemporaryEntryPoints +00007FA12E7D6870 18 stub<15280> AllocateTemporaryEntryPoints +00007FA12E567C80 335 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::SetMetric(string,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E7D6888 60 stub<15281> AllocateTemporaryEntryPoints +00007FA12E567FF0 85 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::.ctor()[QuickJitted] +00007FA12E568090 81 void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::.cctor()[QuickJitted] +00007FA12E7D68E8 60 stub<15282> AllocateTemporaryEntryPoints +00007FA12E568130 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::get_Count()[QuickJitted] +00007FA12E568160 9d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::Add(!0)[QuickJitted] +00007FA12E568220 6e instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::AddWithResize(!0)[QuickJitted] +00007FA12E5682B0 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::Grow(int32)[QuickJitted] +00007FA12E568340 155 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::set_Capacity(int32)[QuickJitted] +00007FA12E7D6948 18 stub<15283> AllocateTemporaryEntryPoints +00007FA12E5684B0 29 void [Datadog.Trace] Datadog.Trace.Sampling.TraceSampler::.cctor()[QuickJitted] +00007FA12E7D6960 18 stub<15284> AllocateTemporaryEntryPoints +00007FA12E7D6978 18 stub<15285> AllocateTemporaryEntryPoints +00007FA12E5684F0 21 instance string [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::get_RuleName()[QuickJitted] +00007FA12E7D6990 18 stub<15286> AllocateTemporaryEntryPoints +00007FA12E568530 43 instance void [Datadog.Trace] dynamicClass::IL_STUB_InstantiatingStub(string,System.String /* MT: 0x00007FA128531038 */,System.Single /* MT: 0x00007FA128457208 */,System.UInt64 /* MT: 0x00007FA128453790 */,int32,string)[Optimized] +00007FA12E7D69A8 18 stub<15287> AllocateTemporaryEntryPoints +00007FA12E7D69C0 18 stub<15288> AllocateTemporaryEntryPoints +00007FA12E568590 a7 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,!!1,!!2,int32,string)[QuickJitted] +00007FA12E7D69D8 18 stub<15289> AllocateTemporaryEntryPoints +00007FA12E568650 110 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,!!1,!!2,int32,string)[QuickJitted] +00007FA12E568780 4e instance int32 [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::get_SamplingMechanism()[QuickJitted] +00007FA12E7D69F0 30 stub<15290> AllocateTemporaryEntryPoints +00007FA12E6709C0 18 stub<15291> GenerateLookupStub +00007FA12E5687F0 ed instance valuetype Datadog.Trace.Sampling.SamplingDecision [Datadog.Trace] Datadog.Trace.Sampling.TraceSampler::MakeSamplingDecision(class Datadog.Trace.Span,float32,int32)[QuickJitted] +00007FA12E568900 66 bool [Datadog.Trace] Datadog.Trace.Util.SamplingHelpers::SampleByRate(uint64,float64)[QuickJitted] +00007FA12E5689A0 30 instance void [Datadog.Trace] Datadog.Trace.Sampling.SamplingDecision::.ctor(int32,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E5689F0 4a instance void [Datadog.Trace] Datadog.Trace.TraceContext::SetSamplingPriority(valuetype Datadog.Trace.Sampling.SamplingDecision,bool)[QuickJitted] +00007FA12E568A50 1c instance class Datadog.Trace.Tagging.TraceTagCollection [Datadog.Trace] Datadog.Trace.TraceContext::get_Tags()[QuickJitted] +00007FA12E568A80 40 instance bool [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::TryAddTag(string,string)[QuickJitted] +00007FA12E568AE0 3eb instance bool [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::SetTag(string,string,bool)[QuickJitted] +00007FA12E6709E0 18 stub<15292> GenerateLookupStub +00007FA12E568F00 59 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.SetSamplingPriority(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E568F70 2a instance void [Datadog.Trace] Datadog.Trace.Span::set_Type(string)[QuickJitted] +00007FA12E568FB0 2a instance void [Datadog.Trace] Datadog.Trace.Span::set_ResourceName(string)[QuickJitted] +00007FA12E568FF0 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::set_HttpMethod(string)[QuickJitted] +00007FA12E569030 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::set_HttpUrl(string)[QuickJitted] +00007FA12E569070 38 string [Datadog.Trace] Datadog.Trace.Configuration.IntegrationRegistry::GetName(valuetype Datadog.Trace.Configuration.IntegrationId)[QuickJitted] +00007FA12E5690C0 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::set_InstrumentationName(string)[QuickJitted] +00007FA12E569100 5a instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::SetAnalyticsSampleRate(valuetype Datadog.Trace.Configuration.IntegrationId,class Datadog.Trace.Configuration.ImmutableTracerSettings,bool)[QuickJitted] +00007FA12E569170 f3 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::GetIntegrationAnalyticsSampleRate(valuetype Datadog.Trace.Configuration.IntegrationId,bool)[QuickJitted] +00007FA12E569290 1d instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettings::get_AnalyticsEnabled()[QuickJitted] +00007FA12E5692D0 2e instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::set_AnalyticsSampleRate(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E670A00 18 stub<15293> GenerateLookupStub +00007FA12E569320 56 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.Tracer::ActivateSpan(class Datadog.Trace.Span,bool)[QuickJitted] +00007FA12E569390 c3 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::Activate(class Datadog.Trace.Span,bool)[QuickJitted] +00007FA12E569470 6c instance void [Datadog.Trace] Datadog.Trace.Scope::.ctor(class Datadog.Trace.Scope,class Datadog.Trace.Span,class Datadog.Trace.IScopeManager,bool)[QuickJitted] +00007FA12E670A20 18 stub<15294> GenerateLookupStub +00007FA12E670A40 18 stub<15295> GenerateLookupStub +00007FA12E5694F0 eb void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::OnScopeChanged(valuetype [System.Threading]System.Threading.AsyncLocalValueChangedArgs`1)[QuickJitted] +00007FA12E5695F0 1c instance class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.Scope::get_Span()[QuickJitted] +00007FA12E569620 111 instance uint64 [Datadog.Trace] Datadog.Trace.Span::get_RootSpanId()[QuickJitted] +00007FA12E569760 2a instance uint64 [Datadog.Trace] Datadog.Trace.Span::get_SpanId()[QuickJitted] +00007FA12E5697A0 1c instance uint64 [Datadog.Trace] Datadog.Trace.SpanContext::get_SpanId()[QuickJitted] +00007FA12E5697D0 2b instance void [System.Private.CoreLib] System.Nullable`1[System.UInt64]::.ctor(!0)[QuickJitted] +00007FA12E7D6A20 48 stub<15296> AllocateTemporaryEntryPoints +00007FA12E569810 5d instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::Set(uint64,uint64)[QuickJitted] +00007FA12E569890 33 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker+SpanContext::.ctor(uint64,uint64)[QuickJitted] +00007FA12E7D6A68 18 stub<15297> AllocateTemporaryEntryPoints +00007FA12E7D6A80 18 stub<15298> AllocateTemporaryEntryPoints +00007FA12E5698E0 14f instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::WriteToNative(valuetype Datadog.Trace.ContinuousProfiler.ContextTracker/SpanContext&)[QuickJitted] +00007FA12E569A60 141 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::EnsureIsInitialized()[QuickJitted] +00007FA12E569BD0 c3 instance bool [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::get_IsValueCreated()[QuickJitted] +00007FA12E569CB0 a1 native int [Datadog.Trace] Datadog.Trace.ContinuousProfiler.NativeInterop::GetTraceContextNativePointer()[QuickJitted] +00007FA12E569D80 c8 instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::set_Value(!0)[QuickJitted] +00007FA12E7D6A98 30 stub<15299> AllocateTemporaryEntryPoints +00007FA12E7D6AC8 30 stub<15300> AllocateTemporaryEntryPoints +00007FA12E7D6AF8 30 stub<15301> AllocateTemporaryEntryPoints +00007FA12E569E60 21f instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::SetValueSlow(!0,valuetype System.Threading.ThreadLocal`1/LinkedSlotVolatile[])[QuickJitted] +00007FA12E56A0A0 9d int32 [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::GetNewTableSize(int32)[QuickJitted] +00007FA12E56A160 34 instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1+FinalizationHelper[System.IntPtr]::.ctor(valuetype System.Threading.ThreadLocal`1/LinkedSlotVolatile[])[QuickJitted] +00007FA12E56A1B0 191 instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::CreateLinkedSlot(valuetype System.Threading.ThreadLocal`1/LinkedSlotVolatile[],int32,!0)[QuickJitted] +00007FA12E56A370 bc instance !0 [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::get_Value()[QuickJitted] +00007FA12E56A450 8f instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker+SpanContext::Write(native int)[QuickJitted] +00007FA12E56A500 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::set_HttpClientHandlerType(string)[QuickJitted] +00007FA12E7D6B28 48 stub<15302> AllocateTemporaryEntryPoints +00007FA12E7D6B70 18 stub<15303> AllocateTemporaryEntryPoints +00007FA12E56A540 1bf class Datadog.Trace.Propagators.SpanContextPropagator [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::get_Instance()[QuickJitted] +00007FA12E56A730 40 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpHeadersCollection::.ctor(class Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.IRequestHeaders)[QuickJitted] +00007FA12E7D6B88 60 stub<15304> AllocateTemporaryEntryPoints +00007FA12E7D6BE8 18 stub<15305> AllocateTemporaryEntryPoints +00007FA12E7D6C00 18 stub<15306> AllocateTemporaryEntryPoints +00007FA12E7D6C18 60 stub<15307> AllocateTemporaryEntryPoints +00007FA12E7D6C78 18 stub<15308> AllocateTemporaryEntryPoints +00007FA12E7D6C90 18 stub<15309> AllocateTemporaryEntryPoints +00007FA12E7D6CA8 18 stub<15310> AllocateTemporaryEntryPoints +00007FA12E7D6CC0 60 stub<15311> AllocateTemporaryEntryPoints +00007FA12E7D6D20 18 stub<15312> AllocateTemporaryEntryPoints +00007FA12E7D6D38 18 stub<15313> AllocateTemporaryEntryPoints +00007FA12E7D6D50 18 stub<15314> AllocateTemporaryEntryPoints +00007FA12E56A790 41 instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::Inject(class Datadog.Trace.SpanContext,!!0)[QuickJitted] +00007FA12E7D6D68 18 stub<15315> AllocateTemporaryEntryPoints +00007FA12E7D6D80 18 stub<15316> AllocateTemporaryEntryPoints +00007FA12E56A7F0 102 instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::Inject(class Datadog.Trace.SpanContext,!!0,!!1)[QuickJitted] +00007FA12E7D6D98 18 stub<15317> AllocateTemporaryEntryPoints +00007FA12E56A910 8f instance void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::Inject(class Datadog.Trace.SpanContext,!!0,!!1)[QuickJitted] +00007FA12E56A9C0 2a0 string [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::CreateTraceParentHeader(class Datadog.Trace.SpanContext)[QuickJitted] +00007FA12E56AC80 1c instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_RawTraceId()[QuickJitted] +00007FA12E56ACB0 f3 bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::IsValidHexString(string,int32)[QuickJitted] +00007FA12E56ADC0 1c instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_RawSpanId()[QuickJitted] +00007FA12E56ADF0 1f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.TraceContext::get_SamplingPriority()[QuickJitted] +00007FA12E56AE30 33 instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator+HeadersCollectionGetterAndSetter`1[Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpHeadersCollection]::Set(!0,string,string)[QuickJitted] +00007FA12E670A60 18 stub<15318> GenerateLookupStub +00007FA12E670A80 18 stub<15319> GenerateLookupStub +00007FA12E56AE80 51 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpHeadersCollection::Set(string,string)[QuickJitted] +00007FA12E56AEF0 2c instance bool [DuckTypeNotVisibleAssembly.HttpRequestHeaders_2] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_Headers_HttpRequestHeaders.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IRequestHeaders_2::Remove(string)[QuickJitted] +00007FA12E56AF30 34 instance void [DuckTypeNotVisibleAssembly.HttpRequestHeaders_2] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_Headers_HttpRequestHeaders.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IRequestHeaders_2::Add(string,string)[QuickJitted] +00007FA12E56AF80 6ae string [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::CreateTraceStateHeader(class Datadog.Trace.SpanContext)[QuickJitted] +00007FA12E56B660 f3 string [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::SamplingPriorityToString(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E56B780 1c instance string [Datadog.Trace] Datadog.Trace.TraceContext::get_Origin()[QuickJitted] +00007FA12E7D6DB0 18 stub<15320> AllocateTemporaryEntryPoints +00007FA12E56B7B0 c9 instance valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[] [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::ToArray()[QuickJitted] +00007FA12E56B8A0 20a valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::ReplaceCharacters(valuetype [System.Runtime]System.ReadOnlySpan`1,char,char,char,valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[])[QuickJitted] +00007FA12E56BAD0 150 bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::NeedsCharacterReplacement(valuetype [System.Runtime]System.ReadOnlySpan`1,char,char,valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[])[QuickJitted] +00007FA12E56BC40 1b instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.Char,System.Char]::get_Key()[QuickJitted] +00007FA12E56BC70 1c instance string [Datadog.Trace] Datadog.Trace.TraceContext::get_AdditionalW3CTraceState()[QuickJitted] +00007FA1278051E0 18 stub<15321> GenerateResolveStub +00007FA1277C9960 20 stub<15322> GenerateDispatchStub +00007FA127805250 18 stub<15323> GenerateResolveStub +00007FA1277C9980 20 stub<15324> GenerateDispatchStub +00007FA12E7D6DC8 18 stub<15325> AllocateTemporaryEntryPoints +00007FA12E56BCA0 351 instance void [Datadog.Trace] Datadog.Trace.Propagators.DatadogContextPropagator::Inject(class Datadog.Trace.SpanContext,!!0,!!1)[QuickJitted] +00007FA12E56C020 7a instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_Origin()[QuickJitted] +00007FA12E56C0B0 7d instance string [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::ToPropagationHeader()[QuickJitted] +00007FA12E56C150 4b4 string [Datadog.Trace] Datadog.Trace.Tagging.TagPropagation::ToHeader(class Datadog.Trace.Tagging.TraceTagCollection,int32)[QuickJitted] +00007FA12E56C630 11f bool [Datadog.Trace] Datadog.Trace.Tagging.TagPropagation::IsValid(string,string)[QuickJitted] +00007FA12E56C770 2b instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::IntegrationGeneratedSpan(valuetype Datadog.Trace.Configuration.IntegrationId)[QuickJitted] +00007FA12E56C7B0 b2 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector::IntegrationGeneratedSpan(valuetype Datadog.Trace.Configuration.IntegrationId)[QuickJitted] +00007FA12E56C880 5c instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::.ctor(class Datadog.Trace.Scope)[QuickJitted] +00007FA12E56C900 1c instance string [Datadog.Trace] Datadog.Trace.Span::get_Type()[QuickJitted] +00007FA12E670AA0 18 stub<15326> GenerateLookupStub +00007FA12E56C930 225 instance string [Datadog.Trace] Datadog.Trace.Span::GetTag(string)[QuickJitted] +00007FA12E56CB70 148 instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::GetTag(string)[QuickJitted] +00007FA12E56CCD0 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_InstrumentationName()[QuickJitted] +00007FA12E56CD00 64 instance void [System.Private.CoreLib] System.Threading.QueueUserWorkItemCallback`1[System.ValueTuple`2[System.__Canon,System.Net.Http.HttpConnectionPool+RequestQueue`1+QueueItem[System.__Canon]]]::.ctor(class System.Action`1,!0,class System.Threading.ExecutionContext)[QuickJitted] +00007FA1278052C0 18 stub<15327> GenerateResolveStub +00007FA1277C99A0 20 stub<15328> GenerateDispatchStub +00007FA12E7D6DF8 18 stub<15329> AllocateTemporaryEntryPoints +00007FA12E7D6E10 18 stub<15330> AllocateTemporaryEntryPoints +00007FA12E7D6E28 18 stub<15331> AllocateTemporaryEntryPoints +00007FA12E7D6E40 48 stub<15332> AllocateTemporaryEntryPoints +00007FA127805330 18 stub<15333> GenerateResolveStub +00007FA1277C99C0 20 stub<15334> GenerateDispatchStub +00007FA12E56CD80 c6 instance void [System.Private.CoreLib] System.Threading.QueueUserWorkItemCallback`1[System.ValueTuple`2[System.__Canon,System.Net.Http.HttpConnectionPool+RequestQueue`1+QueueItem[System.__Canon]]]::Execute()[QuickJitted] +00007FA12E7D6E88 18 stub<15335> AllocateTemporaryEntryPoints +00007FA12E7D6EA0 60 stub<15336> AllocateTemporaryEntryPoints +00007FA12E56CE60 52 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::Reset()[QuickJitted] +00007FA12E56CED0 91 void [System.Private.CoreLib] System.Threading.ExecutionContext::RunForThreadPoolUnsafe(class System.Threading.ExecutionContext,class System.Action`1,!!0&)[QuickJitted] +00007FA12E56CF80 47 void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker+SpanContext::.cctor()[QuickJitted] +00007FA1278053A0 18 stub<15337> GenerateResolveStub +00007FA1277C99E0 20 stub<15338> GenerateDispatchStub +00007FA12E7D6F00 18 stub<15339> AllocateTemporaryEntryPoints +00007FA12E7D6F18 90 stub<15340> AllocateTemporaryEntryPoints +00007FA12E7D6FA8 18 stub<15341> AllocateTemporaryEntryPoints +00007FA12E56CFE0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E7D6FC0 18 stub<15342> AllocateTemporaryEntryPoints +00007FA12E7D8000 30 stub<15343> AllocateTemporaryEntryPoints +00007FA12E7D8030 18 stub<15344> AllocateTemporaryEntryPoints +00007FA12E7D8048 30 stub<15345> AllocateTemporaryEntryPoints +00007FA12E7D8078 18 stub<15346> AllocateTemporaryEntryPoints +00007FA12E7D8090 18 stub<15347> AllocateTemporaryEntryPoints +00007FA12E7D80A8 f0 stub<15348> AllocateTemporaryEntryPoints +00007FA12E56D080 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E7D8198 d8 stub<15349> AllocateTemporaryEntryPoints +00007FA12E7D8270 18 stub<15350> AllocateTemporaryEntryPoints +00007FA12E7D8288 18 stub<15351> AllocateTemporaryEntryPoints +00007FA12E7D82A0 18 stub<15352> AllocateTemporaryEntryPoints +00007FA12E7D82B8 18 stub<15353> AllocateTemporaryEntryPoints +00007FA12E56D120 256 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E56D390 3d instance System.Threading.Tasks.Task`1 /* MT: 0x00007FA128C16D30 */< [ERROR: INVALID TOKEN 0x02000000] /* MT: 0x00007FA12A45AC38 */> [System.Private.CoreLib] dynamicClass::IL_STUB_InstantiatingStub(System.Func`3 /* MT: 0x00007FA12A45B318 */,object,System.Threading.CancellationToken /* MT: 0x00007FA128C15670 */,System.Threading.Tasks.TaskContinuationOptions /* MT: 0x00007FA128C16570 */,System.Threading.Tasks.TaskScheduler /* MT: 0x00007FA12955C378 */)[Optimized] +00007FA12E56D3F0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::.ctor()[QuickJitted] +00007FA12E7D82D0 18 stub<15354> AllocateTemporaryEntryPoints +00007FA12E7D82E8 18 stub<15355> AllocateTemporaryEntryPoints +00007FA12E7D8300 18 stub<15356> AllocateTemporaryEntryPoints +00007FA12E7D8318 18 stub<15357> AllocateTemporaryEntryPoints +00007FA12E7D8330 18 stub<15358> AllocateTemporaryEntryPoints +00007FA12E7D8348 18 stub<15359> AllocateTemporaryEntryPoints +00007FA12E7D8360 540 stub<15360> AllocateTemporaryEntryPoints +00007FA12E7D88A0 30 stub<15361> AllocateTemporaryEntryPoints +00007FA12E7D88D0 30 stub<15362> AllocateTemporaryEntryPoints +00007FA12E56D430 7b void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12E7D8900 18 stub<15363> AllocateTemporaryEntryPoints +00007FA12E56D4D0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E7D8918 78 stub<15364> AllocateTemporaryEntryPoints +00007FA12E7D8990 18 stub<15365> AllocateTemporaryEntryPoints +00007FA12E7D89A8 18 stub<15366> AllocateTemporaryEntryPoints +00007FA12E7D89C0 f0 stub<15367> AllocateTemporaryEntryPoints +00007FA12E56D520 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E7D8AB0 d8 stub<15368> AllocateTemporaryEntryPoints +00007FA12E7D8B88 18 stub<15369> AllocateTemporaryEntryPoints +00007FA12E56D580 25f class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E56D800 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__7]::.ctor()[QuickJitted] +00007FA12E7D8BA0 18 stub<15370> AllocateTemporaryEntryPoints +00007FA12E7D8BB8 60 stub<15371> AllocateTemporaryEntryPoints +00007FA12E7D8C18 18 stub<15372> AllocateTemporaryEntryPoints +00007FA12E7D8C30 18 stub<15373> AllocateTemporaryEntryPoints +00007FA12E56D840 78 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12E56D8D0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E7D8C48 18 stub<15374> AllocateTemporaryEntryPoints +00007FA12E56D970 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E7D8C60 18 stub<15375> AllocateTemporaryEntryPoints +00007FA127805410 18 stub<15376> GenerateResolveStub +00007FA1277C9A00 20 stub<15377> GenerateDispatchStub +00007FA12E7D8C78 a8 stub<15378> AllocateTemporaryEntryPoints +00007FA12E7D8D20 60 stub<15379> AllocateTemporaryEntryPoints +00007FA12E7D8D80 18 stub<15380> AllocateTemporaryEntryPoints +00007FA12E7D8D98 18 stub<15381> AllocateTemporaryEntryPoints +00007FA12E7D8DB0 18 stub<15382> AllocateTemporaryEntryPoints +00007FA12E7D8DC8 d8 stub<15383> AllocateTemporaryEntryPoints +00007FA12E7D8EA0 30 stub<15384> AllocateTemporaryEntryPoints +00007FA12E7D8ED0 d8 stub<15385> AllocateTemporaryEntryPoints +00007FA12E7D8FA8 30 stub<15386> AllocateTemporaryEntryPoints +00007FA12E7D8FD8 18 stub<15387> AllocateTemporaryEntryPoints +00007FA12E7DA000 18 stub<15388> AllocateTemporaryEntryPoints +00007FA12E7DA018 18 stub<15389> AllocateTemporaryEntryPoints +00007FA12E7DA030 18 stub<15390> AllocateTemporaryEntryPoints +00007FA12E7DA048 18 stub<15391> AllocateTemporaryEntryPoints +00007FA12E7DA060 18 stub<15392> AllocateTemporaryEntryPoints +00007FA12E7DA078 18 stub<15393> AllocateTemporaryEntryPoints +00007FA12E7DA090 18 stub<15394> AllocateTemporaryEntryPoints +00007FA12E7DA0A8 18 stub<15395> AllocateTemporaryEntryPoints +00007FA12E7DA0C0 18 stub<15396> AllocateTemporaryEntryPoints +00007FA12E7DA0D8 18 stub<15397> AllocateTemporaryEntryPoints +00007FA12E7DA0F0 18 stub<15398> AllocateTemporaryEntryPoints +00007FA12E7DA108 18 stub<15399> AllocateTemporaryEntryPoints +00007FA12E7DA120 18 stub<15400> AllocateTemporaryEntryPoints +00007FA12E7DA138 18 stub<15401> AllocateTemporaryEntryPoints +00007FA12E7DA150 18 stub<15402> AllocateTemporaryEntryPoints +00007FA12E7DA168 18 stub<15403> AllocateTemporaryEntryPoints +00007FA12E7DA180 18 stub<15404> AllocateTemporaryEntryPoints +00007FA12E7DA198 18 stub<15405> AllocateTemporaryEntryPoints +00007FA12E56DA10 3c6 int32 [System.Private.CoreLib] System.Array::IndexOf(!!0[],!!0,int32,int32)[QuickJitted] +00007FA12E56DE00 8 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsBitwiseEquatable()[QuickJitted] +00007FA12E56DE20 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Interop+Sys+IPAddress]::get_Default()[QuickJitted] +00007FA12E56DE60 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Interop+Sys+IPAddress]::.cctor()[QuickJitted] +00007FA12E7DA1B0 18 stub<15406> AllocateTemporaryEntryPoints +00007FA12E7DA1C8 a8 stub<15407> AllocateTemporaryEntryPoints +00007FA12E56DEE0 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Interop+Sys+IPAddress]::.ctor()[QuickJitted] +00007FA12E56DF20 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Interop+Sys+IPAddress]::.ctor()[QuickJitted] +00007FA12E56DF60 203 instance int32 [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Interop+Sys+IPAddress]::IndexOf(!0[],!0,int32,int32)[QuickJitted] +00007FA12E7DA270 18 stub<15408> AllocateTemporaryEntryPoints +00007FA12E7DA288 18 stub<15409> AllocateTemporaryEntryPoints +00007FA12E7DA2A0 60 stub<15410> AllocateTemporaryEntryPoints +00007FA12E7DA300 18 stub<15411> AllocateTemporaryEntryPoints +00007FA12E56E590 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener+d__10]::MoveNext()[QuickJitted] +00007FA12E56E5D0 1d8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener+d__10]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E7DA318 18 stub<15412> AllocateTemporaryEntryPoints +00007FA12E56E7C0 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener+d__10]::.cctor()[QuickJitted] +00007FA12E7DA330 18 stub<15413> AllocateTemporaryEntryPoints +00007FA12E7DA348 18 stub<15414> AllocateTemporaryEntryPoints +00007FA12E56E870 2e void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener+d__10]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E670AC0 18 stub<15415> GenerateLookupStub +00007FA12E7DA360 30 stub<15416> AllocateTemporaryEntryPoints +00007FA12E7DA390 30 stub<15417> AllocateTemporaryEntryPoints +00007FA12E7DA3C0 30 stub<15418> AllocateTemporaryEntryPoints +00007FA12E7DA3F0 18 stub<15419> AllocateTemporaryEntryPoints +00007FA12E7DA408 48 stub<15420> AllocateTemporaryEntryPoints +00007FA12E7DA450 3f0 stub<15421> AllocateTemporaryEntryPoints +00007FA12E7DA840 18 stub<15422> AllocateTemporaryEntryPoints +00007FA12E7DA858 1b0 stub<15423> AllocateTemporaryEntryPoints +00007FA12E7DAA08 48 stub<15424> AllocateTemporaryEntryPoints +00007FA12E7DAA50 48 stub<15425> AllocateTemporaryEntryPoints +00007FA12E7DAA98 30 stub<15426> AllocateTemporaryEntryPoints +00007FA12E7DAAC8 60 stub<15427> AllocateTemporaryEntryPoints +00007FA12E7DAB28 78 stub<15428> AllocateTemporaryEntryPoints +00007FA12E7DABA0 138 stub<15429> AllocateTemporaryEntryPoints +00007FA12E7DACD8 f0 stub<15430> AllocateTemporaryEntryPoints +00007FA12E7DADC8 a8 stub<15431> AllocateTemporaryEntryPoints +00007FA12E7DC000 5b8 stub<15432> AllocateTemporaryEntryPoints +00007FA12E7DC5B8 1b0 stub<15433> AllocateTemporaryEntryPoints +00007FA12E7DC768 120 stub<15434> AllocateTemporaryEntryPoints +00007FA12E7DC888 4e0 stub<15435> AllocateTemporaryEntryPoints +00007FA12E7DE000 4e0 stub<15436> AllocateTemporaryEntryPoints +00007FA12E7DE4E0 60 stub<15437> AllocateTemporaryEntryPoints +00007FA12E7DE540 48 stub<15438> AllocateTemporaryEntryPoints +00007FA12E7DE588 168 stub<15439> AllocateTemporaryEntryPoints +00007FA12E7DE6F0 150 stub<15440> AllocateTemporaryEntryPoints +00007FA12E7DE840 48 stub<15441> AllocateTemporaryEntryPoints +00007FA12E7DE888 48 stub<15442> AllocateTemporaryEntryPoints +00007FA12E7DE8D0 48 stub<15443> AllocateTemporaryEntryPoints +00007FA12E7DE918 60 stub<15444> AllocateTemporaryEntryPoints +00007FA12E7DE978 240 stub<15445> AllocateTemporaryEntryPoints +00007FA12E7DEBB8 d8 stub<15446> AllocateTemporaryEntryPoints +00007FA12E7DEC90 240 stub<15447> AllocateTemporaryEntryPoints +00007FA12E7DEED0 d8 stub<15448> AllocateTemporaryEntryPoints +00007FA12E810000 60 stub<15449> AllocateTemporaryEntryPoints +00007FA12E810060 18 stub<15450> AllocateTemporaryEntryPoints +00007FA12E810078 18 stub<15451> AllocateTemporaryEntryPoints +00007FA12E56E8C0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E56E900 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E56EA00 4a instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::.ctor(!0)[QuickJitted] +00007FA12E810090 d8 stub<15452> AllocateTemporaryEntryPoints +00007FA12E56EA60 4f instance valuetype System.Runtime.CompilerServices.ValueTaskAwaiter`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::GetAwaiter()[QuickJitted] +00007FA12E56EAD0 2e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::.ctor(valuetype System.Threading.Tasks.ValueTask`1&)[QuickJitted] +00007FA12E56EB20 1f instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::get_IsCompleted()[QuickJitted] +00007FA12E810168 540 stub<15453> AllocateTemporaryEntryPoints +00007FA12E8106A8 540 stub<15454> AllocateTemporaryEntryPoints +00007FA12E810BE8 18 stub<15455> AllocateTemporaryEntryPoints +00007FA12E810C00 48 stub<15456> AllocateTemporaryEntryPoints +00007FA12E810C48 18 stub<15457> AllocateTemporaryEntryPoints +00007FA12E670AE0 18 stub<15458> GenerateLookupStub +00007FA12E56EB60 8f instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::get_IsCompleted()[QuickJitted] +00007FA12E56EC10 34 instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::GetResult()[QuickJitted] +00007FA12E670B00 18 stub<15459> GenerateLookupStub +00007FA12E56EC60 d8 instance !0 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::get_Result()[QuickJitted] +00007FA12E810C60 30 stub<15460> AllocateTemporaryEntryPoints +00007FA12E810C90 240 stub<15461> AllocateTemporaryEntryPoints +00007FA12E810ED0 a8 stub<15462> AllocateTemporaryEntryPoints +00007FA12E812000 a8 stub<15463> AllocateTemporaryEntryPoints +00007FA12E8120A8 198 stub<15464> AllocateTemporaryEntryPoints +00007FA12E812240 18 stub<15465> AllocateTemporaryEntryPoints +00007FA12E812258 18 stub<15466> AllocateTemporaryEntryPoints +00007FA12E812270 18 stub<15467> AllocateTemporaryEntryPoints +00007FA127805480 18 stub<15468> GenerateResolveStub +00007FA1277C9A20 20 stub<15469> GenerateDispatchStub +00007FA12E812288 78 stub<15470> AllocateTemporaryEntryPoints +00007FA12E56ED60 3e instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::.ctor(!0)[QuickJitted] +00007FA12E812300 540 stub<15471> AllocateTemporaryEntryPoints +00007FA12E812840 18 stub<15472> AllocateTemporaryEntryPoints +00007FA12E670B20 18 stub<15473> GenerateLookupStub +00007FA12E56EDC0 8f instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::get_IsCompleted()[QuickJitted] +00007FA12E56EE70 3c instance valuetype System.Runtime.CompilerServices.ValueTaskAwaiter`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::GetAwaiter()[QuickJitted] +00007FA12E56EED0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.FlushResult]::.ctor(valuetype System.Threading.Tasks.ValueTask`1&)[QuickJitted] +00007FA12E56EF10 1f instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.FlushResult]::get_IsCompleted()[QuickJitted] +00007FA12E56EF50 1f instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.FlushResult]::GetResult()[QuickJitted] +00007FA12E670B40 18 stub<15474> GenerateLookupStub +00007FA12E56EF90 96 instance !0 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::get_Result()[QuickJitted] +00007FA12E56F040 5b instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::.ctor(class System.Threading.Tasks.Sources.IValueTaskSource`1,int16)[QuickJitted] +00007FA12E812858 48 stub<15475> AllocateTemporaryEntryPoints +00007FA12E8128A0 18 stub<15476> AllocateTemporaryEntryPoints +00007FA12E8128B8 18 stub<15477> AllocateTemporaryEntryPoints +00007FA12E56F0B0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E8128D0 18 stub<15478> AllocateTemporaryEntryPoints +00007FA12E8128E8 18 stub<15479> AllocateTemporaryEntryPoints +00007FA12E56F100 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E812900 d8 stub<15480> AllocateTemporaryEntryPoints +00007FA12E8129D8 18 stub<15481> AllocateTemporaryEntryPoints +00007FA12E56F160 26d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E56F3F0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27]::.ctor()[QuickJitted] +00007FA12E8129F0 540 stub<15482> AllocateTemporaryEntryPoints +00007FA12E812F30 48 stub<15483> AllocateTemporaryEntryPoints +00007FA12E812F78 18 stub<15484> AllocateTemporaryEntryPoints +00007FA12E670B60 18 stub<15485> GenerateLookupStub +00007FA12E56F430 1b9 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12E814000 240 stub<15486> AllocateTemporaryEntryPoints +00007FA12E814240 d8 stub<15487> AllocateTemporaryEntryPoints +00007FA12E814318 60 stub<15488> AllocateTemporaryEntryPoints +00007FA12E814378 18 stub<15489> AllocateTemporaryEntryPoints +00007FA12E814390 18 stub<15490> AllocateTemporaryEntryPoints +00007FA12E56F620 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E56F660 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E8143A8 d8 stub<15491> AllocateTemporaryEntryPoints +00007FA12E56F760 63 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.ReadResult]::.ctor(class System.Threading.Tasks.Sources.IValueTaskSource`1,int16)[QuickJitted] +00007FA12E56F7E0 5b instance valuetype System.Runtime.CompilerServices.ValueTaskAwaiter`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.ReadResult]::GetAwaiter()[QuickJitted] +00007FA12E56F860 35 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.ReadResult]::.ctor(valuetype System.Threading.Tasks.ValueTask`1&)[QuickJitted] +00007FA12E56F8B0 1f instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.ReadResult]::get_IsCompleted()[QuickJitted] +00007FA12E814480 540 stub<15492> AllocateTemporaryEntryPoints +00007FA12E8149C0 18 stub<15493> AllocateTemporaryEntryPoints +00007FA12E670B80 18 stub<15494> GenerateLookupStub +00007FA12E56F8F0 8f instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.ReadResult]::get_IsCompleted()[QuickJitted] +00007FA12E8149D8 18 stub<15495> AllocateTemporaryEntryPoints +00007FA12E8149F0 18 stub<15496> AllocateTemporaryEntryPoints +00007FA12E56F9A0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E814A08 18 stub<15497> AllocateTemporaryEntryPoints +00007FA12E814A20 18 stub<15498> AllocateTemporaryEntryPoints +00007FA12E56F9F0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E814A38 d8 stub<15499> AllocateTemporaryEntryPoints +00007FA12E814B10 18 stub<15500> AllocateTemporaryEntryPoints +00007FA12E56FA50 289 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E56FD00 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28]::.ctor()[QuickJitted] +00007FA12E670BA0 18 stub<15501> GenerateLookupStub +00007FA12E56FD40 1c2 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12E814B28 78 stub<15502> AllocateTemporaryEntryPoints +00007FA12E56FF40 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.ConnectionDispatcher`1+<>c__DisplayClass8_0+<g__AcceptConnectionsAsync|0>d[System.__Canon]]::MoveNext()[QuickJitted] +00007FA12E56FF80 252 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.ConnectionDispatcher`1+<>c__DisplayClass8_0+<g__AcceptConnectionsAsync|0>d[System.__Canon]]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E814BA0 18 stub<15503> AllocateTemporaryEntryPoints +00007FA12E5701F0 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.ConnectionDispatcher`1+<>c__DisplayClass8_0+<g__AcceptConnectionsAsync|0>d[System.__Canon]]::.cctor()[QuickJitted] +00007FA12E814BB8 18 stub<15504> AllocateTemporaryEntryPoints +00007FA12E814BD0 18 stub<15505> AllocateTemporaryEntryPoints +00007FA12E5702A0 88 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.ConnectionDispatcher`1+<>c__DisplayClass8_0+<g__AcceptConnectionsAsync|0>d[System.__Canon]]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E814BE8 60 stub<15506> AllocateTemporaryEntryPoints +00007FA12E814C48 60 stub<15507> AllocateTemporaryEntryPoints +00007FA12E814CA8 18 stub<15508> AllocateTemporaryEntryPoints +00007FA12E814CC0 18 stub<15509> AllocateTemporaryEntryPoints +00007FA12E814CD8 18 stub<15510> AllocateTemporaryEntryPoints +00007FA12E814CF0 18 stub<15511> AllocateTemporaryEntryPoints +00007FA12E814D08 30 stub<15512> AllocateTemporaryEntryPoints +00007FA12E814D38 30 stub<15513> AllocateTemporaryEntryPoints +00007FA12E814D68 18 stub<15514> AllocateTemporaryEntryPoints +00007FA12E814D80 30 stub<15515> AllocateTemporaryEntryPoints +00007FA12E814DB0 18 stub<15516> AllocateTemporaryEntryPoints +00007FA12E814DC8 60 stub<15517> AllocateTemporaryEntryPoints +00007FA12E814E28 18 stub<15518> AllocateTemporaryEntryPoints +00007FA12E814E40 18 stub<15519> AllocateTemporaryEntryPoints +00007FA12E814E58 18 stub<15520> AllocateTemporaryEntryPoints +00007FA12E814E70 18 stub<15521> AllocateTemporaryEntryPoints +00007FA12E814E88 48 stub<15522> AllocateTemporaryEntryPoints +00007FA12E814ED0 60 stub<15523> AllocateTemporaryEntryPoints +00007FA12E814F30 48 stub<15524> AllocateTemporaryEntryPoints +00007FA12E814F78 18 stub<15525> AllocateTemporaryEntryPoints +00007FA1278054F0 18 stub<15526> GenerateResolveStub +00007FA1277C9A40 20 stub<15527> GenerateDispatchStub +00007FA127805560 18 stub<15528> GenerateResolveStub +00007FA1277C9A60 20 stub<15529> GenerateDispatchStub +00007FA12E814F90 60 stub<15530> AllocateTemporaryEntryPoints +00007FA12E816000 60 stub<15531> AllocateTemporaryEntryPoints +00007FA12E816060 18 stub<15532> AllocateTemporaryEntryPoints +00007FA12E816078 18 stub<15533> AllocateTemporaryEntryPoints +00007FA12E816090 18 stub<15534> AllocateTemporaryEntryPoints +00007FA12E8160A8 18 stub<15535> AllocateTemporaryEntryPoints +00007FA12E5707E0 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E8160C0 18 stub<15536> AllocateTemporaryEntryPoints +00007FA12E8160D8 18 stub<15537> AllocateTemporaryEntryPoints +00007FA12E570860 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E8160F0 18 stub<15538> AllocateTemporaryEntryPoints +00007FA12E816108 120 stub<15539> AllocateTemporaryEntryPoints +00007FA12E816228 90 stub<15540> AllocateTemporaryEntryPoints +00007FA12E8162B8 18 stub<15541> AllocateTemporaryEntryPoints +00007FA12E8162D0 18 stub<15542> AllocateTemporaryEntryPoints +00007FA12E570750 75 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.SocketConnectionListener+d__10]::ClearStateUponCompletion()[QuickJitted] +00007FA12E8162E8 18 stub<15543> AllocateTemporaryEntryPoints +00007FA12E816300 18 stub<15544> AllocateTemporaryEntryPoints +00007FA12E816318 18 stub<15545> AllocateTemporaryEntryPoints +00007FA12E816330 18 stub<15546> AllocateTemporaryEntryPoints +00007FA12E816348 48 stub<15547> AllocateTemporaryEntryPoints +00007FA12E816390 18 stub<15548> AllocateTemporaryEntryPoints +00007FA12E8163A8 18 stub<15549> AllocateTemporaryEntryPoints +00007FA12E8163C0 18 stub<15550> AllocateTemporaryEntryPoints +00007FA12E8163D8 18 stub<15551> AllocateTemporaryEntryPoints +00007FA12E8163F0 60 stub<15552> AllocateTemporaryEntryPoints +00007FA12E816450 18 stub<15553> AllocateTemporaryEntryPoints +00007FA12E816468 18 stub<15554> AllocateTemporaryEntryPoints +00007FA12E816480 30 stub<15555> AllocateTemporaryEntryPoints +00007FA12E8164B0 60 stub<15556> AllocateTemporaryEntryPoints +00007FA12E816510 18 stub<15557> AllocateTemporaryEntryPoints +00007FA12E816528 108 stub<15558> AllocateTemporaryEntryPoints +00007FA12E816630 168 stub<15559> AllocateTemporaryEntryPoints +00007FA12E816798 48 stub<15560> AllocateTemporaryEntryPoints +00007FA12E8167E0 18 stub<15561> AllocateTemporaryEntryPoints +00007FA12E8167F8 18 stub<15562> AllocateTemporaryEntryPoints +00007FA12E816810 18 stub<15563> AllocateTemporaryEntryPoints +00007FA12E816828 30 stub<15564> AllocateTemporaryEntryPoints +00007FA12E816858 18 stub<15565> AllocateTemporaryEntryPoints +00007FA12E816870 18 stub<15566> AllocateTemporaryEntryPoints +00007FA12E816888 168 stub<15567> AllocateTemporaryEntryPoints +00007FA12E8169F0 48 stub<15568> AllocateTemporaryEntryPoints +00007FA12E816A38 270 stub<15569> AllocateTemporaryEntryPoints +00007FA12E816CA8 18 stub<15570> AllocateTemporaryEntryPoints +00007FA12E816CC0 18 stub<15571> AllocateTemporaryEntryPoints +00007FA12E816CD8 138 stub<15572> AllocateTemporaryEntryPoints +00007FA12E816E10 60 stub<15573> AllocateTemporaryEntryPoints +00007FA12E816E70 60 stub<15574> AllocateTemporaryEntryPoints +00007FA12E816ED0 18 stub<15575> AllocateTemporaryEntryPoints +00007FA12E816EE8 18 stub<15576> AllocateTemporaryEntryPoints +00007FA12E816F00 18 stub<15577> AllocateTemporaryEntryPoints +00007FA12E816F18 18 stub<15578> AllocateTemporaryEntryPoints +00007FA12E5709B0 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E816F30 18 stub<15579> AllocateTemporaryEntryPoints +00007FA12E816F48 18 stub<15580> AllocateTemporaryEntryPoints +00007FA12E570A30 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E816F60 18 stub<15581> AllocateTemporaryEntryPoints +00007FA12E818000 a8 stub<15582> AllocateTemporaryEntryPoints +00007FA12E8180A8 d8 stub<15583> AllocateTemporaryEntryPoints +00007FA12E818180 498 stub<15584> AllocateTemporaryEntryPoints +00007FA12E818618 30 stub<15585> AllocateTemporaryEntryPoints +00007FA12E818648 78 stub<15586> AllocateTemporaryEntryPoints +00007FA12E8186C0 c0 stub<15587> AllocateTemporaryEntryPoints +00007FA12E818780 c0 stub<15588> AllocateTemporaryEntryPoints +00007FA12E818840 6f0 stub<15589> AllocateTemporaryEntryPoints +00007FA12E818F30 c0 stub<15590> AllocateTemporaryEntryPoints +00007FA12E81A000 1b0 stub<15591> AllocateTemporaryEntryPoints +00007FA12E81A1B0 108 stub<15592> AllocateTemporaryEntryPoints +00007FA12E81A2B8 90 stub<15593> AllocateTemporaryEntryPoints +00007FA12E81A348 30 stub<15594> AllocateTemporaryEntryPoints +00007FA12E81A378 30 stub<15595> AllocateTemporaryEntryPoints +00007FA12E81A3A8 30 stub<15596> AllocateTemporaryEntryPoints +00007FA12E81A3D8 30 stub<15597> AllocateTemporaryEntryPoints +00007FA12E81A408 48 stub<15598> AllocateTemporaryEntryPoints +00007FA12E81A450 30 stub<15599> AllocateTemporaryEntryPoints +00007FA12E81A480 18 stub<15600> AllocateTemporaryEntryPoints +00007FA12E81A498 f0 stub<15601> AllocateTemporaryEntryPoints +00007FA12E81A588 48 stub<15602> AllocateTemporaryEntryPoints +00007FA12E81A5D0 30 stub<15603> AllocateTemporaryEntryPoints +00007FA12E81A600 48 stub<15604> AllocateTemporaryEntryPoints +00007FA12E81A648 18 stub<15605> AllocateTemporaryEntryPoints +00007FA12E81A660 30 stub<15606> AllocateTemporaryEntryPoints +00007FA12E81A690 18 stub<15607> AllocateTemporaryEntryPoints +00007FA12E81A6A8 138 stub<15608> AllocateTemporaryEntryPoints +00007FA12E81A7E0 7f8 stub<15609> AllocateTemporaryEntryPoints +00007FA12E81C000 858 stub<15610> AllocateTemporaryEntryPoints +00007FA12E81C858 600 stub<15611> AllocateTemporaryEntryPoints +00007FA12E81E000 228 stub<15612> AllocateTemporaryEntryPoints +00007FA12E81E228 30 stub<15613> AllocateTemporaryEntryPoints +00007FA12E81E258 18 stub<15614> AllocateTemporaryEntryPoints +00007FA12E81E270 30 stub<15615> AllocateTemporaryEntryPoints +00007FA12E81E2A0 18 stub<15616> AllocateTemporaryEntryPoints +00007FA12E81E2B8 30 stub<15617> AllocateTemporaryEntryPoints +00007FA12E81E2E8 540 stub<15618> AllocateTemporaryEntryPoints +00007FA12E81E828 48 stub<15619> AllocateTemporaryEntryPoints +00007FA12E81E870 18 stub<15620> AllocateTemporaryEntryPoints +00007FA12E81E888 18 stub<15621> AllocateTemporaryEntryPoints +00007FA12E81E8A0 18 stub<15622> AllocateTemporaryEntryPoints +00007FA12E81E8B8 18 stub<15623> AllocateTemporaryEntryPoints +00007FA12E81E8D0 18 stub<15624> AllocateTemporaryEntryPoints +00007FA12E81E8E8 18 stub<15625> AllocateTemporaryEntryPoints +00007FA12E81E900 30 stub<15626> AllocateTemporaryEntryPoints +00007FA12E81E930 30 stub<15627> AllocateTemporaryEntryPoints +00007FA12E81E960 420 stub<15628> AllocateTemporaryEntryPoints +00007FA12E81ED80 30 stub<15629> AllocateTemporaryEntryPoints +00007FA12E81EDB0 48 stub<15630> AllocateTemporaryEntryPoints +00007FA12E81EDF8 48 stub<15631> AllocateTemporaryEntryPoints +00007FA12E81EE40 30 stub<15632> AllocateTemporaryEntryPoints +00007FA12E81EE70 30 stub<15633> AllocateTemporaryEntryPoints +00007FA12E830000 168 stub<15634> AllocateTemporaryEntryPoints +00007FA12E830168 3a8 stub<15635> AllocateTemporaryEntryPoints +00007FA12E832000 c00 stub<15636> AllocateTemporaryEntryPoints +00007FA12E834000 510 stub<15637> AllocateTemporaryEntryPoints +00007FA12E834510 570 stub<15638> AllocateTemporaryEntryPoints +00007FA12E836000 690 stub<15639> AllocateTemporaryEntryPoints +00007FA12E836690 600 stub<15640> AllocateTemporaryEntryPoints +00007FA12E838000 600 stub<15641> AllocateTemporaryEntryPoints +00007FA12E838600 300 stub<15642> AllocateTemporaryEntryPoints +00007FA12E838900 c0 stub<15643> AllocateTemporaryEntryPoints +00007FA12E8389C0 a8 stub<15644> AllocateTemporaryEntryPoints +00007FA12E83A000 660 stub<15645> AllocateTemporaryEntryPoints +00007FA12E83A660 600 stub<15646> AllocateTemporaryEntryPoints +00007FA12E83C000 600 stub<15647> AllocateTemporaryEntryPoints +00007FA12E83C600 2a0 stub<15648> AllocateTemporaryEntryPoints +00007FA12E83C8A0 2e8 stub<15649> AllocateTemporaryEntryPoints +00007FA12E83CB88 78 stub<15650> AllocateTemporaryEntryPoints +00007FA12E83CC00 1f8 stub<15651> AllocateTemporaryEntryPoints +00007FA12E83CDF8 a8 stub<15652> AllocateTemporaryEntryPoints +00007FA12E83CEA0 48 stub<15653> AllocateTemporaryEntryPoints +00007FA12E83CEE8 60 stub<15654> AllocateTemporaryEntryPoints +00007FA1278055D0 18 stub<15655> GenerateResolveStub +00007FA1277C9A80 20 stub<15656> GenerateDispatchStub +00007FA12E83CF48 18 stub<15657> AllocateTemporaryEntryPoints +00007FA12E83CF60 18 stub<15658> AllocateTemporaryEntryPoints +00007FA12E83CF78 18 stub<15659> AllocateTemporaryEntryPoints +00007FA12E83CF90 18 stub<15660> AllocateTemporaryEntryPoints +00007FA12E83E000 78 stub<15661> AllocateTemporaryEntryPoints +00007FA12E83E078 78 stub<15662> AllocateTemporaryEntryPoints +00007FA12E83E0F0 60 stub<15663> AllocateTemporaryEntryPoints +00007FA12E83E150 18 stub<15664> AllocateTemporaryEntryPoints +00007FA12E83E168 18 stub<15665> AllocateTemporaryEntryPoints +00007FA12E83E180 18 stub<15666> AllocateTemporaryEntryPoints +00007FA12E83E198 18 stub<15667> AllocateTemporaryEntryPoints +00007FA12E83E1B0 60 stub<15668> AllocateTemporaryEntryPoints +00007FA12E83E210 60 stub<15669> AllocateTemporaryEntryPoints +00007FA12E83E270 18 stub<15670> AllocateTemporaryEntryPoints +00007FA12E83E288 18 stub<15671> AllocateTemporaryEntryPoints +00007FA12E83E2A0 18 stub<15672> AllocateTemporaryEntryPoints +00007FA12E83E2B8 18 stub<15673> AllocateTemporaryEntryPoints +00007FA12E570F80 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E83E2D0 18 stub<15674> AllocateTemporaryEntryPoints +00007FA12E83E2E8 18 stub<15675> AllocateTemporaryEntryPoints +00007FA12E571000 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E83E300 18 stub<15676> AllocateTemporaryEntryPoints +00007FA12E83E318 78 stub<15677> AllocateTemporaryEntryPoints +00007FA12E83E390 48 stub<15678> AllocateTemporaryEntryPoints +00007FA12E83E3D8 18 stub<15679> AllocateTemporaryEntryPoints +00007FA12E83E3F0 18 stub<15680> AllocateTemporaryEntryPoints +00007FA12E83E408 60 stub<15681> AllocateTemporaryEntryPoints +00007FA12E83E468 60 stub<15682> AllocateTemporaryEntryPoints +00007FA12E83E4C8 18 stub<15683> AllocateTemporaryEntryPoints +00007FA12E83E4E0 18 stub<15684> AllocateTemporaryEntryPoints +00007FA12E83E4F8 18 stub<15685> AllocateTemporaryEntryPoints +00007FA12E83E510 18 stub<15686> AllocateTemporaryEntryPoints +00007FA12E571150 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E83E528 18 stub<15687> AllocateTemporaryEntryPoints +00007FA12E83E540 18 stub<15688> AllocateTemporaryEntryPoints +00007FA12E5711D0 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E83E558 18 stub<15689> AllocateTemporaryEntryPoints +00007FA127805640 18 stub<15690> GenerateResolveStub +00007FA1277C9AA0 20 stub<15691> GenerateDispatchStub +00007FA12E571320 49 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.ReadResult]::.ctor(!0)[QuickJitted] +00007FA12E571380 2a instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.ReadResult]::GetResult()[QuickJitted] +00007FA12E670BC0 18 stub<15692> GenerateLookupStub +00007FA12E5713C0 bd instance !0 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.ReadResult]::get_Result()[QuickJitted] +00007FA12E83E5A0 78 stub<15693> AllocateTemporaryEntryPoints +00007FA12E83E618 4e0 stub<15694> AllocateTemporaryEntryPoints +00007FA12E83EAF8 270 stub<15695> AllocateTemporaryEntryPoints +00007FA12E840000 4f8 stub<15696> AllocateTemporaryEntryPoints +00007FA12E8404F8 4f8 stub<15697> AllocateTemporaryEntryPoints +00007FA12E8409F0 18 stub<15698> AllocateTemporaryEntryPoints +00007FA12E5714A0 103 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::.ctor(valuetype System.Buffers.ReadOnlySequence`1)[QuickJitted] +00007FA12E5715C0 21 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::set_CurrentSpanIndex(int32)[QuickJitted] +00007FA12E571600 24 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::set_Consumed(int64)[QuickJitted] +00007FA12E571640 2f instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::set_CurrentSpan(valuetype [System.Private.CoreLib]System.ReadOnlySpan`1)[QuickJitted] +00007FA12E571690 8c instance bool [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::TryPeek(!0&)[QuickJitted] +00007FA12E571740 33 instance valuetype [System.Private.CoreLib]System.ReadOnlySpan`1 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_CurrentSpan()[QuickJitted] +00007FA12E571790 1b instance int32 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_CurrentSpanIndex()[QuickJitted] +00007FA12E5717C0 24 instance bool [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_End()[QuickJitted] +00007FA12E571800 36 instance int64 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Remaining()[QuickJitted] +00007FA12E840A08 18 stub<15699> AllocateTemporaryEntryPoints +00007FA12E571850 64 instance int64 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Length()[QuickJitted] +00007FA12E5718D0 34 instance valuetype System.Buffers.ReadOnlySequence`1 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Sequence()[QuickJitted] +00007FA12E571920 1c instance int64 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Consumed()[QuickJitted] +00007FA12E840A20 18 stub<15700> AllocateTemporaryEntryPoints +00007FA12E571950 1a7 instance bool [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::TryReadTo(valuetype [System.Private.CoreLib]System.ReadOnlySpan`1&,!0,bool)[QuickJitted] +00007FA12E571B20 76 instance valuetype [System.Private.CoreLib]System.ReadOnlySpan`1 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_UnreadSpan()[QuickJitted] +00007FA12E571BB0 aa instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::AdvanceCurrentSpan(int64)[QuickJitted] +00007FA12E840A38 78 stub<15701> AllocateTemporaryEntryPoints +00007FA12E840AB0 60 stub<15702> AllocateTemporaryEntryPoints +00007FA12E840B10 2b8 stub<15703> AllocateTemporaryEntryPoints +00007FA12E840DC8 18 stub<15704> AllocateTemporaryEntryPoints +00007FA12E840DE0 1e0 stub<15705> AllocateTemporaryEntryPoints +00007FA12E571C80 5a instance void [System.Private.CoreLib] System.Tuple`4[System.UInt64,System.UInt64,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpMethod,System.Int32]::.ctor(!0,!1,!2,!3)[QuickJitted] +00007FA12E840FC0 18 stub<15706> AllocateTemporaryEntryPoints +00007FA12E842000 2d0 stub<15707> AllocateTemporaryEntryPoints +00007FA12E8422D0 2a0 stub<15708> AllocateTemporaryEntryPoints +00007FA12E842570 18 stub<15709> AllocateTemporaryEntryPoints +00007FA12E842588 18 stub<15710> AllocateTemporaryEntryPoints +00007FA12E8425A0 60 stub<15711> AllocateTemporaryEntryPoints +00007FA12E842600 18 stub<15712> AllocateTemporaryEntryPoints +00007FA12E842618 2d0 stub<15713> AllocateTemporaryEntryPoints +00007FA12E8428E8 2d0 stub<15714> AllocateTemporaryEntryPoints +00007FA12E842BB8 48 stub<15715> AllocateTemporaryEntryPoints +00007FA12E842C00 60 stub<15716> AllocateTemporaryEntryPoints +00007FA12E842C60 f0 stub<15717> AllocateTemporaryEntryPoints +00007FA12E842D50 18 stub<15718> AllocateTemporaryEntryPoints +00007FA12E842D68 18 stub<15719> AllocateTemporaryEntryPoints +00007FA12E842D80 18 stub<15720> AllocateTemporaryEntryPoints +00007FA12E842D98 18 stub<15721> AllocateTemporaryEntryPoints +00007FA12E842DB0 18 stub<15722> AllocateTemporaryEntryPoints +00007FA12E842DC8 18 stub<15723> AllocateTemporaryEntryPoints +00007FA12E844000 2d0 stub<15724> AllocateTemporaryEntryPoints +00007FA12E8442D0 18 stub<15725> AllocateTemporaryEntryPoints +00007FA12E8442E8 18 stub<15726> AllocateTemporaryEntryPoints +00007FA12E572100 1b6 bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.StringUtilities::TryGetAsciiString(uint8*,char*,int32)[OptimizedTier1] +00007FA12E844300 60 stub<15727> AllocateTemporaryEntryPoints +00007FA12E844360 18 stub<15728> AllocateTemporaryEntryPoints +00007FA12E844378 18 stub<15729> AllocateTemporaryEntryPoints +00007FA12E5722E0 3cd int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfAnyValueType(!!0&,!!0,!!0,int32)[OptimizedTier1] +00007FA12E5726E0 cf instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::Advance(int64)[QuickJitted] +00007FA12E844390 18 stub<15730> AllocateTemporaryEntryPoints +00007FA12E8443A8 18 stub<15731> AllocateTemporaryEntryPoints +00007FA12E5727E0 4aa int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfAnyValueType(!!0&,!!0,!!0,!!0,int32)[OptimizedTier1] +00007FA12E8443C0 18 stub<15732> AllocateTemporaryEntryPoints +00007FA12E8443D8 18 stub<15733> AllocateTemporaryEntryPoints +00007FA12E8443F0 18 stub<15734> AllocateTemporaryEntryPoints +00007FA12E844408 18 stub<15735> AllocateTemporaryEntryPoints +00007FA12E844420 18 stub<15736> AllocateTemporaryEntryPoints +00007FA12E844438 18 stub<15737> AllocateTemporaryEntryPoints +00007FA12E844450 18 stub<15738> AllocateTemporaryEntryPoints +00007FA12E572CC0 1be8 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::Append(valuetype [System.Runtime]System.ReadOnlySpan`1,valuetype [System.Runtime]System.ReadOnlySpan`1,bool)[OptimizedTier1] +00007FA12E844468 a8 stub<15739> AllocateTemporaryEntryPoints +00007FA12E844510 5e8 stub<15740> AllocateTemporaryEntryPoints +00007FA12E844AF8 78 stub<15741> AllocateTemporaryEntryPoints +00007FA12E844B70 18 stub<15742> AllocateTemporaryEntryPoints +00007FA12E574D50 29 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::.ctor(class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E574D90 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E844B88 18 stub<15743> AllocateTemporaryEntryPoints +00007FA12E574F70 5e instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12E844BA0 60 stub<15744> AllocateTemporaryEntryPoints +00007FA12E844C00 18 stub<15745> AllocateTemporaryEntryPoints +00007FA12E844C18 18 stub<15746> AllocateTemporaryEntryPoints +00007FA12E844C30 18 stub<15747> AllocateTemporaryEntryPoints +00007FA12E574FF0 5bb instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::FindValue(!0)[QuickJitted] +00007FA12E5755D0 36 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::set_Item(!0,!1)[QuickJitted] +00007FA12E575620 9c1 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E576000 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::Initialize(int32)[QuickJitted] +00007FA12E844C48 60 stub<15748> AllocateTemporaryEntryPoints +00007FA12E576100 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::GetBucket(uint32)[QuickJitted] +00007FA12E576170 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::Resize()[QuickJitted] +00007FA12E5761C0 4c5 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::Resize(int32,bool)[QuickJitted] +00007FA12E844CA8 1b0 stub<15749> AllocateTemporaryEntryPoints +00007FA12E5766B0 188 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::AdvanceToNextSpan(int64)[QuickJitted] +00007FA12E846000 240 stub<15750> AllocateTemporaryEntryPoints +00007FA12E846240 18 stub<15751> AllocateTemporaryEntryPoints +00007FA12E576860 182 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::GetNextSpan()[QuickJitted] +00007FA12E576A10 76 instance valuetype System.SequencePosition [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Position()[QuickJitted] +00007FA12E846258 378 stub<15752> AllocateTemporaryEntryPoints +00007FA12E8465D0 108 stub<15753> AllocateTemporaryEntryPoints +00007FA12E8466D8 198 stub<15754> AllocateTemporaryEntryPoints +00007FA12E846870 d8 stub<15755> AllocateTemporaryEntryPoints +00007FA12E846948 108 stub<15756> AllocateTemporaryEntryPoints +00007FA12E846A50 d8 stub<15757> AllocateTemporaryEntryPoints +00007FA12E846B28 d8 stub<15758> AllocateTemporaryEntryPoints +00007FA12E846C00 2a0 stub<15759> AllocateTemporaryEntryPoints +00007FA12E846EA0 18 stub<15760> AllocateTemporaryEntryPoints +00007FA12E846EB8 18 stub<15761> AllocateTemporaryEntryPoints +00007FA12E848000 150 stub<15762> AllocateTemporaryEntryPoints +00007FA12E848150 c0 stub<15763> AllocateTemporaryEntryPoints +00007FA12E848210 228 stub<15764> AllocateTemporaryEntryPoints +00007FA12E848438 138 stub<15765> AllocateTemporaryEntryPoints +00007FA12E848570 360 stub<15766> AllocateTemporaryEntryPoints +00007FA12E8488D0 150 stub<15767> AllocateTemporaryEntryPoints +00007FA12E848A20 240 stub<15768> AllocateTemporaryEntryPoints +00007FA12E848C60 150 stub<15769> AllocateTemporaryEntryPoints +00007FA12E848DB0 1f8 stub<15770> AllocateTemporaryEntryPoints +00007FA12E84A000 2e8 stub<15771> AllocateTemporaryEntryPoints +00007FA12E670BE0 18 stub<15772> GenerateLookupStub +00007FA12E84A2E8 120 stub<15773> AllocateTemporaryEntryPoints +00007FA12E84A408 120 stub<15774> AllocateTemporaryEntryPoints +00007FA12E84A528 378 stub<15775> AllocateTemporaryEntryPoints +00007FA12E84A8A0 120 stub<15776> AllocateTemporaryEntryPoints +00007FA12E84A9C0 450 stub<15777> AllocateTemporaryEntryPoints +00007FA12E84AE10 120 stub<15778> AllocateTemporaryEntryPoints +00007FA12E84C000 270 stub<15779> AllocateTemporaryEntryPoints +00007FA12E670C00 18 stub<15780> GenerateLookupStub +00007FA12E576AA0 48 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[QuickJitted] +00007FA12E576B00 21 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::set_Revision(int32)[QuickJitted] +00007FA12E576B40 26 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::set_Collection(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[QuickJitted] +00007FA12E576B80 1b instance class Microsoft.AspNetCore.Http.Features.IFeatureCollection [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::get_Collection()[QuickJitted] +00007FA12E576BB0 48 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[QuickJitted] +00007FA1278056B0 18 stub<15781> GenerateResolveStub +00007FA1277C9AC0 20 stub<15782> GenerateDispatchStub +00007FA12E576C10 21 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::set_Revision(int32)[QuickJitted] +00007FA12E576C50 26 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::set_Collection(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[QuickJitted] +00007FA12E576C90 48 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[QuickJitted] +00007FA12E576CF0 21 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::set_Revision(int32)[QuickJitted] +00007FA12E576D30 26 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::set_Collection(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[QuickJitted] +00007FA12E84C270 168 stub<15783> AllocateTemporaryEntryPoints +00007FA12E84C3D8 120 stub<15784> AllocateTemporaryEntryPoints +00007FA12E84C4F8 210 stub<15785> AllocateTemporaryEntryPoints +00007FA12E84C708 90 stub<15786> AllocateTemporaryEntryPoints +00007FA12E84C798 120 stub<15787> AllocateTemporaryEntryPoints +00007FA12E84C8B8 108 stub<15788> AllocateTemporaryEntryPoints +00007FA12E576D70 37 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection,int32)[QuickJitted] +00007FA12E576DC0 37 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection,int32)[QuickJitted] +00007FA12E576E10 37 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection,int32)[QuickJitted] +00007FA12E576E60 1d instance bool [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticObserver::IsEventEnabled(string)[QuickJitted] +00007FA12E84C9C0 60 stub<15789> AllocateTemporaryEntryPoints +00007FA12E84CA20 18 stub<15790> AllocateTemporaryEntryPoints +00007FA12E84CA38 18 stub<15791> AllocateTemporaryEntryPoints +00007FA12E84CA50 78 stub<15792> AllocateTemporaryEntryPoints +00007FA12E84CAC8 30 stub<15793> AllocateTemporaryEntryPoints +00007FA12E84CAF8 30 stub<15794> AllocateTemporaryEntryPoints +00007FA12E84CB28 c0 stub<15795> AllocateTemporaryEntryPoints +00007FA12E84CBE8 18 stub<15796> AllocateTemporaryEntryPoints +00007FA12E84CC00 18 stub<15797> AllocateTemporaryEntryPoints +00007FA12E84CC18 18 stub<15798> AllocateTemporaryEntryPoints +00007FA12E84CC30 18 stub<15799> AllocateTemporaryEntryPoints +00007FA12E5772A0 8b instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::Fetch(!!0&,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E577340 1b instance class Microsoft.AspNetCore.Http.Features.IFeatureCollection [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::get_Collection()[QuickJitted] +00007FA12E84CC48 18 stub<15800> AllocateTemporaryEntryPoints +00007FA12E84CC60 18 stub<15801> AllocateTemporaryEntryPoints +00007FA12E84CC78 18 stub<15802> AllocateTemporaryEntryPoints +00007FA12E84CC90 18 stub<15803> AllocateTemporaryEntryPoints +00007FA12E577370 120 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::Fetch(!!0&,!!1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E5774B0 1b instance int32 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::get_Revision()[QuickJitted] +00007FA12E84CCA8 18 stub<15804> AllocateTemporaryEntryPoints +00007FA12E84CCC0 18 stub<15805> AllocateTemporaryEntryPoints +00007FA12E84CCD8 18 stub<15806> AllocateTemporaryEntryPoints +00007FA12E84CCF0 60 stub<15807> AllocateTemporaryEntryPoints +00007FA12E84CD50 18 stub<15808> AllocateTemporaryEntryPoints +00007FA12E84CD68 18 stub<15809> AllocateTemporaryEntryPoints +00007FA12E5774E0 1de instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::UpdateCached(!!0&,!!1,class [System.Runtime]System.Func`2,int32,bool)[QuickJitted] +00007FA12E84CD80 18 stub<15810> AllocateTemporaryEntryPoints +00007FA12E84CD98 18 stub<15811> AllocateTemporaryEntryPoints +00007FA12E84CDB0 18 stub<15812> AllocateTemporaryEntryPoints +00007FA12E84CDC8 30 stub<15813> AllocateTemporaryEntryPoints +00007FA12E84CDF8 30 stub<15814> AllocateTemporaryEntryPoints +00007FA12E84CE28 30 stub<15815> AllocateTemporaryEntryPoints +00007FA12E84CE58 18 stub<15816> AllocateTemporaryEntryPoints +00007FA12E84CE70 30 stub<15817> AllocateTemporaryEntryPoints +00007FA12E84CEA0 30 stub<15818> AllocateTemporaryEntryPoints +00007FA12E84CED0 30 stub<15819> AllocateTemporaryEntryPoints +00007FA12E84CF00 60 stub<15820> AllocateTemporaryEntryPoints +00007FA127805720 18 stub<15821> GenerateResolveStub +00007FA1277C9AE0 20 stub<15822> GenerateDispatchStub +00007FA12E84CF60 18 stub<15823> AllocateTemporaryEntryPoints +00007FA12E84CF78 60 stub<15824> AllocateTemporaryEntryPoints +00007FA12E84E000 78 stub<15825> AllocateTemporaryEntryPoints +00007FA12E84E078 2a0 stub<15826> AllocateTemporaryEntryPoints +00007FA12E84E318 60 stub<15827> AllocateTemporaryEntryPoints +00007FA12E5776E0 3d instance void [System.Private.CoreLib] System.ValueTuple`3[System.IntPtr,System.Int32,System.HexConverter+Casing]::.ctor(!0,!1,!2)[QuickJitted] +00007FA12E84E378 48 stub<15828> AllocateTemporaryEntryPoints +00007FA12E84E3C0 18 stub<15829> AllocateTemporaryEntryPoints +00007FA12E84E3D8 60 stub<15830> AllocateTemporaryEntryPoints +00007FA12E577740 107 string [System.Private.CoreLib] System.String::Create(int32,!!0,class System.Buffers.SpanAction`2)[QuickJitted] +00007FA12E84E438 78 stub<15831> AllocateTemporaryEntryPoints +00007FA12E577860 1c3 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticObserver::System.IObserver>.OnNext(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA12E577A60 5c8 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnNext(string,object)[QuickJitted] +00007FA12E84E4C8 18 stub<15832> AllocateTemporaryEntryPoints +00007FA12E84E4E0 78 stub<15833> AllocateTemporaryEntryPoints +00007FA12E578050 128 void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::.cctor()[QuickJitted] +00007FA12E578190 56 instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler::.ctor(class Datadog.Trace.Logging.IDatadogLogger,string,valuetype Datadog.Trace.Configuration.IntegrationId)[QuickJitted] +00007FA12E84E558 18 stub<15834> AllocateTemporaryEntryPoints +00007FA12E84E570 1b0 stub<15835> AllocateTemporaryEntryPoints +00007FA12E578200 140 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnHostingHttpRequestInStart(object)[QuickJitted] +00007FA12E578360 47 instance class Datadog.Trace.Tracer [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::get_CurrentTracer()[QuickJitted] +00007FA12E5783C0 47 instance class Datadog.Trace.AppSec.Security [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::get_CurrentSecurity()[QuickJitted] +00007FA12E84E720 a8 stub<15836> AllocateTemporaryEntryPoints +00007FA12E84E7C8 a8 stub<15837> AllocateTemporaryEntryPoints +00007FA12E84E870 18 stub<15838> AllocateTemporaryEntryPoints +00007FA12E84E888 18 stub<15839> AllocateTemporaryEntryPoints +00007FA12E84E8A0 30 stub<15840> AllocateTemporaryEntryPoints +00007FA12E578420 8f bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[QuickJitted] +00007FA12E5784D0 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInStartStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E578670 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInStartStruct]::.cctor()[QuickJitted] +00007FA12E5786F0 21 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckAttributeBase::set_BindingFlags(valuetype [System.Runtime]System.Reflection.BindingFlags)[QuickJitted] +00007FA128667930 18 object [System.Private.CoreLib] dynamicClass::InvokeStub_DuckAttributeBase.set_BindingFlags(object,object,native int*)[Optimized] +00007FA12E84E8D0 d8 stub<15841> AllocateTemporaryEntryPoints +00007FA12E84E9A8 60 stub<15842> AllocateTemporaryEntryPoints +00007FA12E578730 6c instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA1286679B0 3b Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/HttpRequestInStartStruct /* MT: 0x00007FA12E8F0368 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12E84EA08 30 stub<15843> AllocateTemporaryEntryPoints +00007FA12E84EA38 1f8 stub<15844> AllocateTemporaryEntryPoints +00007FA12E84EC30 f0 stub<15845> AllocateTemporaryEntryPoints +00007FA12E84ED20 1f8 stub<15846> AllocateTemporaryEntryPoints +00007FA12E84EF18 30 stub<15847> AllocateTemporaryEntryPoints +00007FA12E670C20 18 stub<15848> GenerateLookupStub +00007FA12E84EF48 48 stub<15849> AllocateTemporaryEntryPoints +00007FA12E84EF90 60 stub<15850> AllocateTemporaryEntryPoints +00007FA12E910000 a8 stub<15851> AllocateTemporaryEntryPoints +00007FA12E9100A8 108 stub<15852> AllocateTemporaryEntryPoints +00007FA12E9101B0 18 stub<15853> AllocateTemporaryEntryPoints +00007FA12E9101C8 c0 stub<15854> AllocateTemporaryEntryPoints +00007FA12E5787B0 803 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler::StartAspNetCorePipelineScope(class Datadog.Trace.Tracer,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest,string)[QuickJitted] +00007FA12E578FE0 1f instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+<>c__DisplayClass7_0::.ctor()[QuickJitted] +00007FA127805790 18 stub<15855> GenerateResolveStub +00007FA1277C9B00 20 stub<15856> GenerateDispatchStub +00007FA12E910288 300 stub<15857> AllocateTemporaryEntryPoints +00007FA12E579020 1c instance class Datadog.Trace.Util.Http.QueryStringManager [Datadog.Trace] Datadog.Trace.TracerManager::get_QueryStringManager()[QuickJitted] +00007FA12E910588 240 stub<15858> AllocateTemporaryEntryPoints +00007FA12E9107C8 30 stub<15859> AllocateTemporaryEntryPoints +00007FA12E579050 f6 string [Datadog.Trace] Datadog.Trace.Util.Http.HttpRequestExtensions::GetUrl(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest,class Datadog.Trace.Util.Http.QueryStringManager)[QuickJitted] +00007FA127805800 18 stub<15860> GenerateResolveStub +00007FA1277C9B20 20 stub<15861> GenerateDispatchStub +00007FA12E9107F8 78 stub<15862> AllocateTemporaryEntryPoints +00007FA12E910870 18 stub<15863> AllocateTemporaryEntryPoints +00007FA12E579160 236 string [Datadog.Trace] Datadog.Trace.Util.Http.HttpRequestUtils::GetUrl(string,string,string,string,string,class Datadog.Trace.Util.Http.QueryStringManager)[QuickJitted] +00007FA12E5793C0 61 instance string [Datadog.Trace] Datadog.Trace.Util.Http.QueryStringManager::Obfuscate(string)[QuickJitted] +00007FA12E910888 60 stub<15864> AllocateTemporaryEntryPoints +00007FA12E9108E8 d8 stub<15865> AllocateTemporaryEntryPoints +00007FA12E9109C0 18 stub<15866> AllocateTemporaryEntryPoints +00007FA12E9109D8 18 stub<15867> AllocateTemporaryEntryPoints +00007FA12E579440 15a instance string [Datadog.Trace] Datadog.Trace.Util.Http.QueryStringObfuscation.Obfuscator::Obfuscate(string)[QuickJitted] +00007FA12E9109F0 d8 stub<15868> AllocateTemporaryEntryPoints +00007FA12E910AC8 18 stub<15869> AllocateTemporaryEntryPoints +00007FA12E5795C0 e8 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler::ExtractPropagatedContext(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest)[QuickJitted] +00007FA12E5796D0 26 instance void [Datadog.Trace] Datadog.Trace.Headers.HeadersCollectionAdapter::.ctor(class [Microsoft.AspNetCore.Http.Features]Microsoft.AspNetCore.Http.IHeaderDictionary)[QuickJitted] +00007FA12E910AE0 60 stub<15870> AllocateTemporaryEntryPoints +00007FA12E910B40 18 stub<15871> AllocateTemporaryEntryPoints +00007FA12E910B58 18 stub<15872> AllocateTemporaryEntryPoints +00007FA12E910B70 18 stub<15873> AllocateTemporaryEntryPoints +00007FA12E910B88 60 stub<15874> AllocateTemporaryEntryPoints +00007FA12E910BE8 18 stub<15875> AllocateTemporaryEntryPoints +00007FA12E910C00 18 stub<15876> AllocateTemporaryEntryPoints +00007FA12E910C18 18 stub<15877> AllocateTemporaryEntryPoints +00007FA12E579710 39 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::Extract(!!0)[QuickJitted] +00007FA12E910C30 18 stub<15878> AllocateTemporaryEntryPoints +00007FA12E910C48 18 stub<15879> AllocateTemporaryEntryPoints +00007FA12E579760 fb instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::Extract(!!0,!!1)[QuickJitted] +00007FA12E910C60 18 stub<15880> AllocateTemporaryEntryPoints +00007FA12E910C78 18 stub<15881> AllocateTemporaryEntryPoints +00007FA12E910C90 18 stub<15882> AllocateTemporaryEntryPoints +00007FA12E579870 21c instance bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::TryExtract(!!0,!!1,class Datadog.Trace.SpanContext&)[QuickJitted] +00007FA12E579AB0 2b instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator+HeadersCollectionGetterAndSetter`1[Datadog.Trace.Headers.HeadersCollectionAdapter]::Get(!0,string)[QuickJitted] +00007FA12E670C40 18 stub<15883> GenerateLookupStub +00007FA12E579AF0 69 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Headers.HeadersCollectionAdapter::GetValues(string)[QuickJitted] +00007FA12E670C60 18 stub<15884> GenerateLookupStub +00007FA12E670C80 18 stub<15885> GenerateLookupStub +00007FA12E579B70 e4 bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::TryGetSingle(class [System.Runtime]System.Collections.Generic.IEnumerable`1,string&)[QuickJitted] +00007FA12E910CA8 108 stub<15886> AllocateTemporaryEntryPoints +00007FA12E910DB0 18 stub<15887> AllocateTemporaryEntryPoints +00007FA12E910DC8 18 stub<15888> AllocateTemporaryEntryPoints +00007FA12E910DE0 18 stub<15889> AllocateTemporaryEntryPoints +00007FA12E910DF8 18 stub<15890> AllocateTemporaryEntryPoints +00007FA12E910E10 18 stub<15891> AllocateTemporaryEntryPoints +00007FA12E910E28 18 stub<15892> AllocateTemporaryEntryPoints +00007FA12E579C70 351 bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::TryParseTraceParent(string,valuetype Datadog.Trace.Propagators.W3CTraceParent&)[QuickJitted] +00007FA12E579FF0 59 uint64 [Datadog.Trace] Datadog.Trace.Propagators.ParseUtility::ParseFromHexOrDefault(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12E57A060 69 instance void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceParent::.ctor(uint64,uint64,bool,string,string)[QuickJitted] +00007FA127805870 18 stub<15893> GenerateResolveStub +00007FA1277C9B40 20 stub<15894> GenerateDispatchStub +00007FA12E57A0E0 14c string [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::TrimAndJoinStrings(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1277C9B60 20 stub<15895> GenerateDispatchStub +00007FA1278058E0 18 stub<15896> GenerateResolveStub +00007FA1277C9B80 20 stub<15897> GenerateDispatchStub +00007FA12E57A250 60e valuetype Datadog.Trace.Propagators.W3CTraceState [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::ParseTraceState(string)[QuickJitted] +00007FA12E57A8A0 291 void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::SplitTraceStateValues(string,string&,string&)[QuickJitted] +00007FA12E57AB50 29d valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::SamplingPriorityToInt32(valuetype [System.Runtime]System.ReadOnlySpan`1)[QuickJitted] +00007FA12E57AE10 60 instance void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceState::.ctor(valuetype [System.Runtime]System.Nullable`1,string,string,string)[QuickJitted] +00007FA12E57AE90 87 instance void [Datadog.Trace] Datadog.Trace.SpanContext::.ctor(valuetype [System.Runtime]System.Nullable`1,uint64,valuetype [System.Runtime]System.Nullable`1,string,string,string,string)[QuickJitted] +00007FA12E57AF30 2d instance !0 [System.Private.CoreLib] System.Nullable`1[System.UInt64]::get_Value()[QuickJitted] +00007FA12E57AF80 5d instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_Origin(string)[QuickJitted] +00007FA12E57B000 2a instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_PropagatedTags(string)[QuickJitted] +00007FA12E57B040 2a instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_AdditionalW3CTraceState(string)[QuickJitted] +00007FA12E910E40 18 stub<15898> AllocateTemporaryEntryPoints +00007FA12E910E58 18 stub<15899> AllocateTemporaryEntryPoints +00007FA12E910E70 18 stub<15900> AllocateTemporaryEntryPoints +00007FA12E910E88 18 stub<15901> AllocateTemporaryEntryPoints +00007FA12E57B080 16b instance class [System.Runtime]System.Collections.Generic.IEnumerable`1> [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler::ExtractHeaderTags(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest,class Datadog.Trace.Tracer)[QuickJitted] +00007FA12E57B210 1c instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_HeaderTags()[QuickJitted] +00007FA12E910EA0 18 stub<15902> AllocateTemporaryEntryPoints +00007FA12E910EB8 18 stub<15903> AllocateTemporaryEntryPoints +00007FA12E910ED0 18 stub<15904> AllocateTemporaryEntryPoints +00007FA12E57B240 75 bool [Datadog.Trace] Datadog.Trace.ExtensionMethods.DictionaryExtensions::IsNullOrEmpty(class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2)[QuickJitted] +00007FA12E910EE8 18 stub<15905> AllocateTemporaryEntryPoints +00007FA12E912000 6f0 stub<15906> AllocateTemporaryEntryPoints +00007FA12E9126F0 c0 stub<15907> AllocateTemporaryEntryPoints +00007FA12E9127B0 90 stub<15908> AllocateTemporaryEntryPoints +00007FA12E912840 a8 stub<15909> AllocateTemporaryEntryPoints +00007FA12E9128E8 18 stub<15910> AllocateTemporaryEntryPoints +00007FA12E912900 78 stub<15911> AllocateTemporaryEntryPoints +00007FA12E912978 18 stub<15912> AllocateTemporaryEntryPoints +00007FA12E57B2D0 dc bool [Datadog.Trace] Datadog.Trace.ExtensionMethods.DictionaryExtensions::IsEmpty(class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2)[QuickJitted] +00007FA127805950 18 stub<15913> GenerateResolveStub +00007FA1277C9BA0 20 stub<15914> GenerateDispatchStub +00007FA12E912990 198 stub<15915> AllocateTemporaryEntryPoints +00007FA12E912B28 198 stub<15916> AllocateTemporaryEntryPoints +00007FA12E912CC0 78 stub<15917> AllocateTemporaryEntryPoints +00007FA12E912D38 48 stub<15918> AllocateTemporaryEntryPoints +00007FA12E912D80 18 stub<15919> AllocateTemporaryEntryPoints +00007FA12E912D98 18 stub<15920> AllocateTemporaryEntryPoints +00007FA12E57B3C0 5c class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Empty()[QuickJitted] +00007FA12E57B430 4b void [System.Linq] System.Linq.EmptyPartition`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.cctor()[QuickJitted] +00007FA12E57B490 1f instance void [System.Linq] System.Linq.EmptyPartition`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA1278059C0 18 stub<15921> GenerateResolveStub +00007FA1277C9BC0 20 stub<15922> GenerateDispatchStub +00007FA127805A30 18 stub<15923> GenerateResolveStub +00007FA1277C9BE0 20 stub<15924> GenerateDispatchStub +00007FA12E57B4D0 3c instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::.ctor(valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString)[QuickJitted] +00007FA12E912DB0 18 stub<15925> AllocateTemporaryEntryPoints +00007FA12E912DC8 18 stub<15926> AllocateTemporaryEntryPoints +00007FA12E57B520 1f instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::.ctor()[QuickJitted] +00007FA12E57B560 3c instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::.ctor()[QuickJitted] +00007FA12E57B5B0 1f instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::.ctor()[QuickJitted] +00007FA12E57B5F0 f2 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.Tracer::StartActiveInternal(string,class Datadog.Trace.ISpanContext,string,valuetype [System.Runtime]System.Nullable`1,bool,class Datadog.Trace.Tagging.ITags)[QuickJitted] +00007FA12E57B710 1c instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_PropagatedTags()[QuickJitted] +00007FA12E57B740 51e class Datadog.Trace.Tagging.TraceTagCollection [Datadog.Trace] Datadog.Trace.Tagging.TagPropagation::ParseHeader(string,int32)[QuickJitted] +00007FA12E57BC80 9b void [Datadog.Trace] Datadog.Trace.Tagging.TagPropagation::.cctor()[QuickJitted] +00007FA12E57BD30 1c instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.SpanContext::get_SamplingPriority()[QuickJitted] +00007FA127805AA0 18 stub<15927> GenerateResolveStub +00007FA1277C9C00 20 stub<15928> GenerateDispatchStub +00007FA12E57BD60 2a instance void [Datadog.Trace] Datadog.Trace.TraceContext::set_Origin(string)[QuickJitted] +00007FA12E57BDA0 1c instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_AdditionalW3CTraceState()[QuickJitted] +00007FA12E57BDD0 2a instance void [Datadog.Trace] Datadog.Trace.TraceContext::set_AdditionalW3CTraceState(string)[QuickJitted] +00007FA127805B10 18 stub<15929> GenerateResolveStub +00007FA1277C9C20 20 stub<15930> GenerateDispatchStub +00007FA12E57BE10 33 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.SpanContext::get_PathwayContext()[QuickJitted] +00007FA12E57BE60 28 instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_PathwayContext(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA127805B80 18 stub<15931> GenerateResolveStub +00007FA1277C9C40 20 stub<15932> GenerateDispatchStub +00007FA12E670CA0 18 stub<15933> GenerateLookupStub +00007FA12E670CC0 18 stub<15934> GenerateLookupStub +00007FA12E670CE0 18 stub<15935> GenerateLookupStub +00007FA12E57BEA0 244 void [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::DecorateWebServerSpan(class Datadog.Trace.ISpan,string,string,string,string,string,class Datadog.Trace.Tagging.WebTags,class [System.Runtime]System.Collections.Generic.IEnumerable`1>)[QuickJitted] +00007FA12E57C110 27 instance void [Datadog.Trace] Datadog.Trace.Span::Datadog.Trace.ISpan.set_Type(string)[QuickJitted] +00007FA12E57C150 27 instance void [Datadog.Trace] Datadog.Trace.Span::Datadog.Trace.ISpan.set_ResourceName(string)[QuickJitted] +00007FA12E57C190 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpMethod(string)[QuickJitted] +00007FA12E57C1D0 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpRequestHeadersHost(string)[QuickJitted] +00007FA12E57C210 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpUrl(string)[QuickJitted] +00007FA12E57C250 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpUserAgent(string)[QuickJitted] +00007FA12E57C290 18 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.EmptyPartition`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::GetEnumerator()[QuickJitted] +00007FA12E57C2C0 16 instance bool [System.Linq] System.Linq.EmptyPartition`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::MoveNext()[QuickJitted] +00007FA12E57C2F0 14 instance void [System.Linq] System.Linq.EmptyPartition`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::System.IDisposable.Dispose()[QuickJitted] +00007FA12E57C320 1f instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_IpHeaderEnabled()[QuickJitted] +00007FA127805BF0 18 stub<15936> GenerateResolveStub +00007FA1277C9C60 20 stub<15937> GenerateDispatchStub +00007FA12E912DE0 48 stub<15938> AllocateTemporaryEntryPoints +00007FA12E912E28 18 stub<15939> AllocateTemporaryEntryPoints +00007FA12E912E40 18 stub<15940> AllocateTemporaryEntryPoints +00007FA12E912E58 18 stub<15941> AllocateTemporaryEntryPoints +00007FA12E912E70 18 stub<15942> AllocateTemporaryEntryPoints +00007FA12E912E88 18 stub<15943> AllocateTemporaryEntryPoints +00007FA12E912EA0 60 stub<15944> AllocateTemporaryEntryPoints +00007FA127805C60 18 stub<15945> GenerateResolveStub +00007FA1277C9C80 20 stub<15946> GenerateDispatchStub +00007FA12E912F00 18 stub<15947> AllocateTemporaryEntryPoints +00007FA12E912F18 90 stub<15948> AllocateTemporaryEntryPoints +00007FA12E912FA8 18 stub<15949> AllocateTemporaryEntryPoints +00007FA12E912FC0 18 stub<15950> AllocateTemporaryEntryPoints +00007FA12E914000 d8 stub<15951> AllocateTemporaryEntryPoints +00007FA12E9140D8 18 stub<15952> AllocateTemporaryEntryPoints +00007FA12E9140F0 18 stub<15953> AllocateTemporaryEntryPoints +00007FA12E57C760 8b instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::Fetch(!!0&,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E914108 18 stub<15954> AllocateTemporaryEntryPoints +00007FA12E914120 18 stub<15955> AllocateTemporaryEntryPoints +00007FA12E914138 18 stub<15956> AllocateTemporaryEntryPoints +00007FA12E57C800 120 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::Fetch(!!0&,!!1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E57C940 1b instance int32 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::get_Revision()[QuickJitted] +00007FA12E914150 18 stub<15957> AllocateTemporaryEntryPoints +00007FA12E57C970 1de instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::UpdateCached(!!0&,!!1,class [System.Runtime]System.Func`2,int32,bool)[QuickJitted] +00007FA12E914168 18 stub<15958> AllocateTemporaryEntryPoints +00007FA12E914180 18 stub<15959> AllocateTemporaryEntryPoints +00007FA12E914198 18 stub<15960> AllocateTemporaryEntryPoints +00007FA12E9141B0 18 stub<15961> AllocateTemporaryEntryPoints +00007FA12E9141C8 18 stub<15962> AllocateTemporaryEntryPoints +00007FA12E9141E0 18 stub<15963> AllocateTemporaryEntryPoints +00007FA12E9141F8 18 stub<15964> AllocateTemporaryEntryPoints +00007FA12E914210 18 stub<15965> AllocateTemporaryEntryPoints +00007FA12E914228 18 stub<15966> AllocateTemporaryEntryPoints +00007FA127805CD0 18 stub<15967> GenerateResolveStub +00007FA1277C9CA0 20 stub<15968> GenerateDispatchStub +00007FA12E914258 48 stub<15969> AllocateTemporaryEntryPoints +00007FA12E9142A0 f0 stub<15970> AllocateTemporaryEntryPoints +00007FA12E914390 18 stub<15971> AllocateTemporaryEntryPoints +00007FA12E9143A8 18 stub<15972> AllocateTemporaryEntryPoints +00007FA12E9143C0 18 stub<15973> AllocateTemporaryEntryPoints +00007FA12E9143D8 18 stub<15974> AllocateTemporaryEntryPoints +00007FA12E9143F0 48 stub<15975> AllocateTemporaryEntryPoints +00007FA12E914438 18 stub<15976> AllocateTemporaryEntryPoints +00007FA12E57CB70 42 instance void [Microsoft.Extensions.Logging] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,System.Object /* MT: 0x00007FA1277A9300 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E914450 18 stub<15977> AllocateTemporaryEntryPoints +00007FA12E914468 18 stub<15978> AllocateTemporaryEntryPoints +00007FA12E914480 18 stub<15979> AllocateTemporaryEntryPoints +00007FA12E914498 18 stub<15980> AllocateTemporaryEntryPoints +00007FA12E9144B0 18 stub<15981> AllocateTemporaryEntryPoints +00007FA12E57CBD0 42 instance void [Microsoft.Extensions.Logging.Console] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,System.Object /* MT: 0x00007FA1277A9300 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E9144C8 a8 stub<15982> AllocateTemporaryEntryPoints +00007FA12E914570 18 stub<15983> AllocateTemporaryEntryPoints +00007FA12E914588 18 stub<15984> AllocateTemporaryEntryPoints +00007FA12E9145A0 18 stub<15985> AllocateTemporaryEntryPoints +00007FA12E9145B8 18 stub<15986> AllocateTemporaryEntryPoints +00007FA12E9145D0 a8 stub<15987> AllocateTemporaryEntryPoints +00007FA127805D40 18 stub<15988> GenerateResolveStub +00007FA1277C9CC0 20 stub<15989> GenerateDispatchStub +00007FA127805DB0 18 stub<15990> GenerateResolveStub +00007FA1277C9CE0 20 stub<15991> GenerateDispatchStub +00007FA127805E20 18 stub<15992> GenerateResolveStub +00007FA1277C9D00 20 stub<15993> GenerateDispatchStub +00007FA12E914678 18 stub<15994> AllocateTemporaryEntryPoints +00007FA12E914690 138 stub<15995> AllocateTemporaryEntryPoints +00007FA12E57CC30 8d string [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingRequestStartingLog::ValueOrEmptyMarker(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12E9147C8 18 stub<15996> AllocateTemporaryEntryPoints +00007FA12E9147E0 18 stub<15997> AllocateTemporaryEntryPoints +00007FA12E9147F8 18 stub<15998> AllocateTemporaryEntryPoints +00007FA12E914810 18 stub<15999> AllocateTemporaryEntryPoints +00007FA12E914828 18 stub<16000> AllocateTemporaryEntryPoints +00007FA12E57CCE0 42 instance void [Microsoft.Extensions.Logging.Debug] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,System.Object /* MT: 0x00007FA1277A9300 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E914840 18 stub<16001> AllocateTemporaryEntryPoints +00007FA12E914858 18 stub<16002> AllocateTemporaryEntryPoints +00007FA12E914870 18 stub<16003> AllocateTemporaryEntryPoints +00007FA12E57CD40 42 instance void [Microsoft.Extensions.Logging.EventSource] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,System.Object /* MT: 0x00007FA1277A9300 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E670D00 18 stub<16004> GenerateLookupStub +00007FA12E914888 60 stub<16005> AllocateTemporaryEntryPoints +00007FA12E9148E8 18 stub<16006> AllocateTemporaryEntryPoints +00007FA12E57CDA0 95 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[QuickJitted] +00007FA12E914900 18 stub<16007> AllocateTemporaryEntryPoints +00007FA12E57CE60 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E57CEA0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E670D20 18 stub<16008> GenerateLookupStub +00007FA12E914918 a8 stub<16009> AllocateTemporaryEntryPoints +00007FA12E670D40 18 stub<16010> GenerateLookupStub +00007FA12E670D60 18 stub<16011> GenerateLookupStub +00007FA12E9149C0 18 stub<16012> AllocateTemporaryEntryPoints +00007FA12E57CFA0 9d6 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4::MoveNext()[QuickJitted] +00007FA12E916000 6f0 stub<16013> AllocateTemporaryEntryPoints +00007FA12E9166F0 78 stub<16014> AllocateTemporaryEntryPoints +00007FA12E916768 a8 stub<16015> AllocateTemporaryEntryPoints +00007FA12E916810 18 stub<16016> AllocateTemporaryEntryPoints +00007FA12E916828 18 stub<16017> AllocateTemporaryEntryPoints +00007FA12E916840 60 stub<16018> AllocateTemporaryEntryPoints +00007FA12E57D9D0 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Primitives.StringSegment]::.ctor()[QuickJitted] +00007FA12E57DA40 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Primitives.StringSegment]::.cctor()[QuickJitted] +00007FA12E9168A0 48 stub<16019> AllocateTemporaryEntryPoints +00007FA12E9168E8 c0 stub<16020> AllocateTemporaryEntryPoints +00007FA1277C9D20 20 stub<16021> GenerateDispatchStub +00007FA12E9169A8 60 stub<16022> AllocateTemporaryEntryPoints +00007FA1277C9D40 20 stub<16023> GenerateDispatchStub +00007FA12E916A08 198 stub<16024> AllocateTemporaryEntryPoints +00007FA12E57DA80 37 instance !0 [System.Private.CoreLib] System.Lazy`1[System.Int32]::get_Value()[QuickJitted] +00007FA12E57DAD0 e7 instance !0 [System.Private.CoreLib] System.Lazy`1[System.Int32]::CreateValue()[QuickJitted] +00007FA12E57DBF0 b4 instance void [System.Private.CoreLib] System.Lazy`1[System.Int32]::ExecutionAndPublication(class System.LazyHelper,bool)[QuickJitted] +00007FA12E57DCD0 f7 instance void [System.Private.CoreLib] System.Lazy`1[System.Int32]::ViaFactory(valuetype System.Threading.LazyThreadSafetyMode)[QuickJitted] +00007FA127805E90 18 stub<16025> GenerateResolveStub +00007FA1277C9D60 20 stub<16026> GenerateDispatchStub +00007FA1277C9D80 20 stub<16027> GenerateDispatchStub +00007FA1277C9DA0 20 stub<16028> GenerateDispatchStub +00007FA1277C9DC0 20 stub<16029> GenerateDispatchStub +00007FA12E916BB8 78 stub<16030> AllocateTemporaryEntryPoints +00007FA12E916C30 18 stub<16031> AllocateTemporaryEntryPoints +00007FA12E916C48 60 stub<16032> AllocateTemporaryEntryPoints +00007FA12E916CA8 48 stub<16033> AllocateTemporaryEntryPoints +00007FA12E57DDF0 113 class [System.Runtime]System.Action`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12E57DF20 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass10_0`1[System.Int32]::.ctor()[QuickJitted] +00007FA12E916CF0 120 stub<16034> AllocateTemporaryEntryPoints +00007FA12E916E10 18 stub<16035> AllocateTemporaryEntryPoints +00007FA12E916E28 18 stub<16036> AllocateTemporaryEntryPoints +00007FA12E916E40 18 stub<16037> AllocateTemporaryEntryPoints +00007FA12E916E58 60 stub<16038> AllocateTemporaryEntryPoints +00007FA12E916EB8 48 stub<16039> AllocateTemporaryEntryPoints +00007FA12E916F00 18 stub<16040> AllocateTemporaryEntryPoints +00007FA12E57DF60 42 instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues /* MT: 0x00007FA12E8FBD68 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E57DFC0 80 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E916F18 18 stub<16041> AllocateTemporaryEntryPoints +00007FA12E916F30 18 stub<16042> AllocateTemporaryEntryPoints +00007FA12E57E060 14c instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E57E1D0 f7 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12E916F48 18 stub<16043> AllocateTemporaryEntryPoints +00007FA12E918000 a8 stub<16044> AllocateTemporaryEntryPoints +00007FA12E9180A8 18 stub<16045> AllocateTemporaryEntryPoints +00007FA12E57E2F0 2a6 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E57E5C0 85 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E9180C0 18 stub<16046> AllocateTemporaryEntryPoints +00007FA12E9180D8 18 stub<16047> AllocateTemporaryEntryPoints +00007FA12E57E660 1d2 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12E57E860 1c instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues]::get_Formatter()[QuickJitted] +00007FA12E57E890 1c instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues]::get_State()[QuickJitted] +00007FA12E57E8C0 1c instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues]::get_Exception()[QuickJitted] +00007FA12E57E8F0 1b instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues]::get_LogLevel()[QuickJitted] +00007FA12E57E920 30c instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12E57EC60 33 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues]::get_EventId()[QuickJitted] +00007FA12E57ECB0 1b instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues]::get_Category()[QuickJitted] +00007FA12E9180F0 18 stub<16048> AllocateTemporaryEntryPoints +00007FA12E57ECE0 205 instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E918108 18 stub<16049> AllocateTemporaryEntryPoints +00007FA12E57EF10 551 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E918120 30 stub<16050> AllocateTemporaryEntryPoints +00007FA12E918150 18 stub<16051> AllocateTemporaryEntryPoints +00007FA12E918168 18 stub<16052> AllocateTemporaryEntryPoints +00007FA12E918180 168 stub<16053> AllocateTemporaryEntryPoints +00007FA1277C9DE0 20 stub<16054> GenerateDispatchStub +00007FA12E9182E8 30 stub<16055> AllocateTemporaryEntryPoints +00007FA12E918318 60 stub<16056> AllocateTemporaryEntryPoints +00007FA127805F00 18 stub<16057> GenerateResolveStub +00007FA1277C9E00 20 stub<16058> GenerateDispatchStub +00007FA12E918378 18 stub<16059> AllocateTemporaryEntryPoints +00007FA12E918390 18 stub<16060> AllocateTemporaryEntryPoints +00007FA12E9183A8 18 stub<16061> AllocateTemporaryEntryPoints +00007FA12E9183C0 18 stub<16062> AllocateTemporaryEntryPoints +00007FA12E9183D8 90 stub<16063> AllocateTemporaryEntryPoints +00007FA12E918468 90 stub<16064> AllocateTemporaryEntryPoints +00007FA12E9184F8 18 stub<16065> AllocateTemporaryEntryPoints +00007FA12E918528 18 stub<16066> AllocateTemporaryEntryPoints +00007FA127805F70 18 stub<16067> GenerateResolveStub +00007FA1277C9E20 20 stub<16068> GenerateDispatchStub +00007FA12E670D80 18 stub<16069> GenerateLookupStub +00007FA127805FE0 18 stub<16070> GenerateResolveStub +00007FA1277C9E40 20 stub<16071> GenerateDispatchStub +00007FA12E670DA0 18 stub<16072> GenerateLookupStub +00007FA12E918540 30 stub<16073> AllocateTemporaryEntryPoints +00007FA12E918570 a8 stub<16074> AllocateTemporaryEntryPoints +00007FA12E918618 18 stub<16075> AllocateTemporaryEntryPoints +00007FA12E918630 120 stub<16076> AllocateTemporaryEntryPoints +00007FA12E57F890 54 instance class System.Collections.Generic.IEnumerator`1 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12E57F900 5a instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::.ctor(class System.Collections.Generic.List`1)[QuickJitted] +00007FA12E57F970 aa instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::MoveNext()[QuickJitted] +00007FA12E57FA30 43 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::get_Current()[QuickJitted] +00007FA12E918768 60 stub<16077> AllocateTemporaryEntryPoints +00007FA12E9187C8 30 stub<16078> AllocateTemporaryEntryPoints +00007FA127806050 18 stub<16079> GenerateResolveStub +00007FA1277C9E60 20 stub<16080> GenerateDispatchStub +00007FA1278060C0 18 stub<16081> GenerateResolveStub +00007FA1277C9E80 20 stub<16082> GenerateDispatchStub +00007FA127806130 18 stub<16083> GenerateResolveStub +00007FA1277C9EA0 20 stub<16084> GenerateDispatchStub +00007FA12E670DC0 18 stub<16085> GenerateLookupStub +00007FA1278061A0 18 stub<16086> GenerateResolveStub +00007FA1277C9EC0 20 stub<16087> GenerateDispatchStub +00007FA127806210 18 stub<16088> GenerateResolveStub +00007FA1277C9EE0 20 stub<16089> GenerateDispatchStub +00007FA127806280 18 stub<16090> GenerateResolveStub +00007FA1277C9F00 20 stub<16091> GenerateDispatchStub +00007FA1277C9F20 20 stub<16092> GenerateDispatchStub +00007FA1277C9F40 20 stub<16093> GenerateDispatchStub +00007FA12E670DE0 18 stub<16094> GenerateLookupStub +00007FA1278062F0 18 stub<16095> GenerateResolveStub +00007FA1277C9F60 20 stub<16096> GenerateDispatchStub +00007FA12E670E00 18 stub<16097> GenerateLookupStub +00007FA127806360 18 stub<16098> GenerateResolveStub +00007FA1277C9F80 20 stub<16099> GenerateDispatchStub +00007FA12E918810 18 stub<16100> AllocateTemporaryEntryPoints +00007FA12E918828 18 stub<16101> AllocateTemporaryEntryPoints +00007FA12E670E20 18 stub<16102> GenerateLookupStub +00007FA1278063D0 18 stub<16103> GenerateResolveStub +00007FA1277C9FA0 20 stub<16104> GenerateDispatchStub +00007FA12E670E40 18 stub<16105> GenerateLookupStub +00007FA127806440 18 stub<16106> GenerateResolveStub +00007FA1277C9FC0 20 stub<16107> GenerateDispatchStub +00007FA12E670E60 18 stub<16108> GenerateLookupStub +00007FA1278064B0 18 stub<16109> GenerateResolveStub +00007FA1277C9FE0 20 stub<16110> GenerateDispatchStub +00007FA12E918840 18 stub<16111> AllocateTemporaryEntryPoints +00007FA1277CA000 20 stub<16112> GenerateDispatchStub +00007FA12E670E80 18 stub<16113> GenerateLookupStub +00007FA12E918858 18 stub<16114> AllocateTemporaryEntryPoints +00007FA12E918870 18 stub<16115> AllocateTemporaryEntryPoints +00007FA12E918888 18 stub<16116> AllocateTemporaryEntryPoints +00007FA12E9188A0 18 stub<16117> AllocateTemporaryEntryPoints +00007FA12E9188B8 18 stub<16118> AllocateTemporaryEntryPoints +00007FA12E9188D0 18 stub<16119> AllocateTemporaryEntryPoints +00007FA12E9188E8 60 stub<16120> AllocateTemporaryEntryPoints +00007FA12E918948 30 stub<16121> AllocateTemporaryEntryPoints +00007FA12E918978 60 stub<16122> AllocateTemporaryEntryPoints +00007FA12E9189D8 90 stub<16123> AllocateTemporaryEntryPoints +00007FA12E918A80 48 stub<16124> AllocateTemporaryEntryPoints +00007FA12E918AC8 78 stub<16125> AllocateTemporaryEntryPoints +00007FA12E918B40 18 stub<16126> AllocateTemporaryEntryPoints +00007FA12E918B58 18 stub<16127> AllocateTemporaryEntryPoints +00007FA12E918B70 18 stub<16128> AllocateTemporaryEntryPoints +00007FA12E918B88 18 stub<16129> AllocateTemporaryEntryPoints +00007FA12E918BA0 18 stub<16130> AllocateTemporaryEntryPoints +00007FA12E918BB8 18 stub<16131> AllocateTemporaryEntryPoints +00007FA12E918BD0 18 stub<16132> AllocateTemporaryEntryPoints +00007FA12E918BE8 18 stub<16133> AllocateTemporaryEntryPoints +00007FA12E918C00 60 stub<16134> AllocateTemporaryEntryPoints +00007FA12E918C60 78 stub<16135> AllocateTemporaryEntryPoints +00007FA12E918CD8 18 stub<16136> AllocateTemporaryEntryPoints +00007FA12E918CF0 30 stub<16137> AllocateTemporaryEntryPoints +00007FA12E918D20 30 stub<16138> AllocateTemporaryEntryPoints +00007FA12E918D50 18 stub<16139> AllocateTemporaryEntryPoints +00007FA12E918D68 48 stub<16140> AllocateTemporaryEntryPoints +00007FA12E918DB0 18 stub<16141> AllocateTemporaryEntryPoints +00007FA12E918DC8 30 stub<16142> AllocateTemporaryEntryPoints +00007FA12E918DF8 18 stub<16143> AllocateTemporaryEntryPoints +00007FA12E918E10 30 stub<16144> AllocateTemporaryEntryPoints +00007FA12E918E40 18 stub<16145> AllocateTemporaryEntryPoints +00007FA12E91A000 1b0 stub<16146> AllocateTemporaryEntryPoints +00007FA127806520 18 stub<16147> GenerateResolveStub +00007FA1277CA020 20 stub<16148> GenerateDispatchStub +00007FA12E91A1B0 60 stub<16149> AllocateTemporaryEntryPoints +00007FA12E91A210 18 stub<16150> AllocateTemporaryEntryPoints +00007FA12E91A228 18 stub<16151> AllocateTemporaryEntryPoints +00007FA127806590 18 stub<16152> GenerateResolveStub +00007FA1277CA040 20 stub<16153> GenerateDispatchStub +00007FA12E91A240 f0 stub<16154> AllocateTemporaryEntryPoints +00007FA127806600 18 stub<16155> GenerateResolveStub +00007FA1277CA060 20 stub<16156> GenerateDispatchStub +00007FA12E91A330 a8 stub<16157> AllocateTemporaryEntryPoints +00007FA12E91A3D8 18 stub<16158> AllocateTemporaryEntryPoints +00007FA1277CA080 20 stub<16159> GenerateDispatchStub +00007FA1277CA0A0 20 stub<16160> GenerateDispatchStub +00007FA12E91A3F0 18 stub<16161> AllocateTemporaryEntryPoints +00007FA12E670EA0 18 stub<16162> GenerateLookupStub +00007FA12E670EC0 18 stub<16163> GenerateLookupStub +00007FA127806670 18 stub<16164> GenerateResolveStub +00007FA1277CA0C0 20 stub<16165> GenerateDispatchStub +00007FA1277CA0E0 20 stub<16166> GenerateDispatchStub +00007FA1278066E0 18 stub<16167> GenerateResolveStub +00007FA1277CA100 20 stub<16168> GenerateDispatchStub +00007FA127806750 18 stub<16169> GenerateResolveStub +00007FA1277CA120 20 stub<16170> GenerateDispatchStub +00007FA12E91A408 18 stub<16171> AllocateTemporaryEntryPoints +00007FA12E91A420 48 stub<16172> AllocateTemporaryEntryPoints +00007FA12E91A468 138 stub<16173> AllocateTemporaryEntryPoints +00007FA12E57FA90 60 instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::MoveNextRare()[QuickJitted] +00007FA12E57FB10 14 instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::Dispose()[QuickJitted] +00007FA12E57FB40 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::get_Count()[QuickJitted] +00007FA1278067C0 18 stub<16174> GenerateResolveStub +00007FA1277CA140 20 stub<16175> GenerateDispatchStub +00007FA127806830 18 stub<16176> GenerateResolveStub +00007FA1277CA160 20 stub<16177> GenerateDispatchStub +00007FA1278068A0 18 stub<16178> GenerateResolveStub +00007FA1277CA180 20 stub<16179> GenerateDispatchStub +00007FA1277CA1A0 20 stub<16180> GenerateDispatchStub +00007FA127806910 18 stub<16181> GenerateResolveStub +00007FA1277CA1C0 20 stub<16182> GenerateDispatchStub +00007FA12E91A5D0 18 stub<16183> AllocateTemporaryEntryPoints +00007FA12E670EE0 18 stub<16184> GenerateLookupStub +00007FA127806980 18 stub<16185> GenerateResolveStub +00007FA1277CA1E0 20 stub<16186> GenerateDispatchStub +00007FA1278069F0 18 stub<16187> GenerateResolveStub +00007FA1277CA200 20 stub<16188> GenerateDispatchStub +00007FA12E91A5E8 48 stub<16189> AllocateTemporaryEntryPoints +00007FA12784B790 11 stub<16190> GenerateVTableCallStub +00007FA12E91A630 18 stub<16191> AllocateTemporaryEntryPoints +00007FA12E91A648 18 stub<16192> AllocateTemporaryEntryPoints +00007FA12E57FB70 71 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Routing.ConventionalRouteEntry]::get_Item(int32)[QuickJitted] +00007FA12E670F00 18 stub<16193> GenerateLookupStub +00007FA127806A60 18 stub<16194> GenerateResolveStub +00007FA1277CA220 20 stub<16195> GenerateDispatchStub +00007FA12E670F20 18 stub<16196> GenerateLookupStub +00007FA127806AD0 18 stub<16197> GenerateResolveStub +00007FA1277CA240 20 stub<16198> GenerateDispatchStub +00007FA12E91A660 18 stub<16199> AllocateTemporaryEntryPoints +00007FA12E91A678 78 stub<16200> AllocateTemporaryEntryPoints +00007FA12E91A6F0 78 stub<16201> AllocateTemporaryEntryPoints +00007FA12E91A768 30 stub<16202> AllocateTemporaryEntryPoints +00007FA12E91A798 18 stub<16203> AllocateTemporaryEntryPoints +00007FA12E91A7B0 30 stub<16204> AllocateTemporaryEntryPoints +00007FA12E91A7E0 18 stub<16205> AllocateTemporaryEntryPoints +00007FA12E91A7F8 18 stub<16206> AllocateTemporaryEntryPoints +00007FA12E91A810 48 stub<16207> AllocateTemporaryEntryPoints +00007FA12E670F40 18 stub<16208> GenerateLookupStub +00007FA127806B40 18 stub<16209> GenerateResolveStub +00007FA1277CA260 20 stub<16210> GenerateDispatchStub +00007FA12E91A858 18 stub<16211> AllocateTemporaryEntryPoints +00007FA12E670F60 18 stub<16212> GenerateLookupStub +00007FA127806BB0 18 stub<16213> GenerateResolveStub +00007FA1277CA280 20 stub<16214> GenerateDispatchStub +00007FA12E670F80 18 stub<16215> GenerateLookupStub +00007FA127806C20 18 stub<16216> GenerateResolveStub +00007FA1277CA2A0 20 stub<16217> GenerateDispatchStub +00007FA12E91A870 78 stub<16218> AllocateTemporaryEntryPoints +00007FA12E91A8E8 6f0 stub<16219> AllocateTemporaryEntryPoints +00007FA12E91AFD8 18 stub<16220> AllocateTemporaryEntryPoints +00007FA12E91C000 48 stub<16221> AllocateTemporaryEntryPoints +00007FA12E91C048 18 stub<16222> AllocateTemporaryEntryPoints +00007FA12E91C060 90 stub<16223> AllocateTemporaryEntryPoints +00007FA12E91C0F0 6f0 stub<16224> AllocateTemporaryEntryPoints +00007FA12E91C7E0 78 stub<16225> AllocateTemporaryEntryPoints +00007FA12E91C858 a8 stub<16226> AllocateTemporaryEntryPoints +00007FA12E91C900 18 stub<16227> AllocateTemporaryEntryPoints +00007FA12E91E000 6f0 stub<16228> AllocateTemporaryEntryPoints +00007FA12E91E6F0 78 stub<16229> AllocateTemporaryEntryPoints +00007FA12E91E768 a8 stub<16230> AllocateTemporaryEntryPoints +00007FA12E91E810 18 stub<16231> AllocateTemporaryEntryPoints +00007FA12E91E828 18 stub<16232> AllocateTemporaryEntryPoints +00007FA12E91E840 18 stub<16233> AllocateTemporaryEntryPoints +00007FA12E91E858 60 stub<16234> AllocateTemporaryEntryPoints +00007FA12E91E8B8 18 stub<16235> AllocateTemporaryEntryPoints +00007FA12E670FA0 18 stub<16236> GenerateLookupStub +00007FA127806C90 18 stub<16237> GenerateResolveStub +00007FA1277CA2C0 20 stub<16238> GenerateDispatchStub +00007FA12E670FC0 18 stub<16239> GenerateLookupStub +00007FA127806D00 18 stub<16240> GenerateResolveStub +00007FA1277CA2E0 20 stub<16241> GenerateDispatchStub +00007FA127806D70 18 stub<16242> GenerateResolveStub +00007FA1277CA300 20 stub<16243> GenerateDispatchStub +00007FA12E91E8D0 30 stub<16244> AllocateTemporaryEntryPoints +00007FA12E91E900 48 stub<16245> AllocateTemporaryEntryPoints +00007FA12E91E948 48 stub<16246> AllocateTemporaryEntryPoints +00007FA12E91E990 60 stub<16247> AllocateTemporaryEntryPoints +00007FA12E91E9F0 60 stub<16248> AllocateTemporaryEntryPoints +00007FA12E91EA50 60 stub<16249> AllocateTemporaryEntryPoints +00007FA127806DE0 18 stub<16250> GenerateResolveStub +00007FA1277CA320 20 stub<16251> GenerateDispatchStub +00007FA127806E50 18 stub<16252> GenerateResolveStub +00007FA1277CA340 20 stub<16253> GenerateDispatchStub +00007FA12E91EAB0 18 stub<16254> AllocateTemporaryEntryPoints +00007FA12E91EAC8 18 stub<16255> AllocateTemporaryEntryPoints +00007FA12E91EAE0 18 stub<16256> AllocateTemporaryEntryPoints +00007FA12E91EAF8 18 stub<16257> AllocateTemporaryEntryPoints +00007FA12E91EB10 18 stub<16258> AllocateTemporaryEntryPoints +00007FA12E91EB28 18 stub<16259> AllocateTemporaryEntryPoints +00007FA12E91EB40 18 stub<16260> AllocateTemporaryEntryPoints +00007FA12E91EB58 18 stub<16261> AllocateTemporaryEntryPoints +00007FA12E91EB70 18 stub<16262> AllocateTemporaryEntryPoints +00007FA12E91EB88 18 stub<16263> AllocateTemporaryEntryPoints +00007FA12E91EBA0 18 stub<16264> AllocateTemporaryEntryPoints +00007FA12E91EBB8 c0 stub<16265> AllocateTemporaryEntryPoints +00007FA12E91EC78 18 stub<16266> AllocateTemporaryEntryPoints +00007FA12E91EC90 18 stub<16267> AllocateTemporaryEntryPoints +00007FA12E91ECA8 30 stub<16268> AllocateTemporaryEntryPoints +00007FA12E91ECD8 258 stub<16269> AllocateTemporaryEntryPoints +00007FA12E91EF30 90 stub<16270> AllocateTemporaryEntryPoints +00007FA12E940000 1c8 stub<16271> AllocateTemporaryEntryPoints +00007FA12E9401C8 60 stub<16272> AllocateTemporaryEntryPoints +00007FA12E940228 6f0 stub<16273> AllocateTemporaryEntryPoints +00007FA12E940918 78 stub<16274> AllocateTemporaryEntryPoints +00007FA12E940990 a8 stub<16275> AllocateTemporaryEntryPoints +00007FA12E940A38 18 stub<16276> AllocateTemporaryEntryPoints +00007FA12E940A50 18 stub<16277> AllocateTemporaryEntryPoints +00007FA12E940A68 18 stub<16278> AllocateTemporaryEntryPoints +00007FA12E940A80 60 stub<16279> AllocateTemporaryEntryPoints +00007FA12E580410 98 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::.ctor(int32)[QuickJitted] +00007FA12E5804C0 b6 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::Add(!0)[QuickJitted] +00007FA12E940AE0 90 stub<16280> AllocateTemporaryEntryPoints +00007FA12E940B70 18 stub<16281> AllocateTemporaryEntryPoints +00007FA12E940B88 90 stub<16282> AllocateTemporaryEntryPoints +00007FA12E940C18 30 stub<16283> AllocateTemporaryEntryPoints +00007FA12E940C48 18 stub<16284> AllocateTemporaryEntryPoints +00007FA12E940C60 30 stub<16285> AllocateTemporaryEntryPoints +00007FA12E940C90 30 stub<16286> AllocateTemporaryEntryPoints +00007FA12E580590 56 class System.Collections.Generic.Comparer`1 [System.Private.CoreLib] System.Collections.Generic.Comparer`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::Create(class System.Comparison`1)[QuickJitted] +00007FA12E580600 34 instance void [System.Private.CoreLib] System.Collections.Generic.ComparisonComparer`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::.ctor(class System.Comparison`1)[QuickJitted] +00007FA12E580650 1f instance void [System.Private.CoreLib] System.Collections.Generic.Comparer`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::.ctor()[QuickJitted] +00007FA12E580690 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::.ctor()[QuickJitted] +00007FA12E580700 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::.cctor()[QuickJitted] +00007FA12E580740 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::get_Count()[QuickJitted] +00007FA12E940CC0 18 stub<16287> AllocateTemporaryEntryPoints +00007FA12E940CD8 18 stub<16288> AllocateTemporaryEntryPoints +00007FA12E580770 7f instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::Sort(int32,int32,class System.Collections.Generic.IComparer`1)[QuickJitted] +00007FA12E940CF0 2b8 stub<16289> AllocateTemporaryEntryPoints +00007FA12E940FA8 18 stub<16290> AllocateTemporaryEntryPoints +00007FA12E940FC0 18 stub<16291> AllocateTemporaryEntryPoints +00007FA12E940FD8 18 stub<16292> AllocateTemporaryEntryPoints +00007FA12E942000 18 stub<16293> AllocateTemporaryEntryPoints +00007FA12E942018 2b8 stub<16294> AllocateTemporaryEntryPoints +00007FA12E9422D0 180 stub<16295> AllocateTemporaryEntryPoints +00007FA12E942450 30 stub<16296> AllocateTemporaryEntryPoints +00007FA12E942480 180 stub<16297> AllocateTemporaryEntryPoints +00007FA12E942600 30 stub<16298> AllocateTemporaryEntryPoints +00007FA12E670FE0 18 stub<16299> GenerateLookupStub +00007FA12E580810 ec void [System.Private.CoreLib] System.Array::Sort(!!0[],int32,int32,class System.Collections.Generic.IComparer`1)[QuickJitted] +00007FA12E580920 22 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[QuickJitted] +00007FA12E580960 30 instance void [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::.ctor(!0&,int32)[QuickJitted] +00007FA12E5809B0 27 class System.Collections.Generic.IArraySortHelper`1 [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::get_Default()[QuickJitted] +00007FA12E5809F0 1f void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::.cctor()[QuickJitted] +00007FA12E942630 18 stub<16300> AllocateTemporaryEntryPoints +00007FA12E580A30 166 class System.Collections.Generic.IArraySortHelper`1 [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::CreateArraySortHelper()[QuickJitted] +00007FA12E580BB0 1f instance void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::.ctor()[QuickJitted] +00007FA12E942648 18 stub<16301> AllocateTemporaryEntryPoints +00007FA12E942660 60 stub<16302> AllocateTemporaryEntryPoints +00007FA12E9426C0 90 stub<16303> AllocateTemporaryEntryPoints +00007FA12E580BF0 101 instance void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::Sort(valuetype System.Span`1,class System.Collections.Generic.IComparer`1)[QuickJitted] +00007FA12E942768 2b8 stub<16304> AllocateTemporaryEntryPoints +00007FA12E580D20 70 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::IntrospectiveSort(valuetype System.Span`1,class System.Comparison`1)[QuickJitted] +00007FA12E580DB0 1b instance int32 [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::get_Length()[QuickJitted] +00007FA12E580DE0 22d void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::IntroSort(valuetype System.Span`1,int32,class System.Comparison`1)[QuickJitted] +00007FA12E942A20 18 stub<16305> AllocateTemporaryEntryPoints +00007FA12E581030 76 instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::Slice(int32,int32)[QuickJitted] +00007FA12E5810C0 2c6 int32 [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::PickPivotAndPartition(valuetype System.Span`1,class System.Comparison`1)[QuickJitted] +00007FA12E5813B0 15f void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::SwapIfGreater(valuetype System.Span`1,class System.Comparison`1,int32,int32)[QuickJitted] +00007FA12E581540 3d instance !0& [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::get_Item(int32)[QuickJitted] +00007FA12E942A38 60 stub<16306> AllocateTemporaryEntryPoints +00007FA12E5815A0 8a instance int32 [System.Private.CoreLib] System.Collections.Generic.ComparisonComparer`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::Compare(!0,!0)[QuickJitted] +00007FA12E581640 a4 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::Swap(valuetype System.Span`1,int32,int32)[QuickJitted] +00007FA12E581700 1ce void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::InsertionSort(valuetype System.Span`1,class System.Comparison`1)[QuickJitted] +00007FA12E5818F0 62 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::get_Item(int32)[QuickJitted] +00007FA12E581970 6a instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::AddWithResize(!0)[QuickJitted] +00007FA12E5819F0 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::Grow(int32)[QuickJitted] +00007FA12E581A80 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::set_Capacity(int32)[QuickJitted] +00007FA12E942A98 60 stub<16307> AllocateTemporaryEntryPoints +00007FA1277CA360 20 stub<16308> GenerateDispatchStub +00007FA127806EC0 18 stub<16309> GenerateResolveStub +00007FA1277CA380 20 stub<16310> GenerateDispatchStub +00007FA12E581B60 61 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Matching.DfaMatcherBuilder+DfaBuilderWorkerWorkItem]::set_Item(int32,!0)[QuickJitted] +00007FA12E942AF8 18 stub<16311> AllocateTemporaryEntryPoints +00007FA12E942B10 48 stub<16312> AllocateTemporaryEntryPoints +00007FA12E942B58 18 stub<16313> AllocateTemporaryEntryPoints +00007FA12E942B70 18 stub<16314> AllocateTemporaryEntryPoints +00007FA12E942B88 18 stub<16315> AllocateTemporaryEntryPoints +00007FA12E942BA0 18 stub<16316> AllocateTemporaryEntryPoints +00007FA12E942BB8 18 stub<16317> AllocateTemporaryEntryPoints +00007FA12E942BD0 18 stub<16318> AllocateTemporaryEntryPoints +00007FA12E942BE8 18 stub<16319> AllocateTemporaryEntryPoints +00007FA12E942C00 18 stub<16320> AllocateTemporaryEntryPoints +00007FA12E942C18 18 stub<16321> AllocateTemporaryEntryPoints +00007FA12E942C30 18 stub<16322> AllocateTemporaryEntryPoints +00007FA12E942C48 c0 stub<16323> AllocateTemporaryEntryPoints +00007FA12E671000 18 stub<16324> GenerateLookupStub +00007FA127806F30 18 stub<16325> GenerateResolveStub +00007FA1277CA3A0 20 stub<16326> GenerateDispatchStub +00007FA12E671020 18 stub<16327> GenerateLookupStub +00007FA127806FA0 18 stub<16328> GenerateResolveStub +00007FA1277CA3C0 20 stub<16329> GenerateDispatchStub +00007FA12E942D08 1c8 stub<16330> AllocateTemporaryEntryPoints +00007FA12E942ED0 18 stub<16331> AllocateTemporaryEntryPoints +00007FA12E942EE8 18 stub<16332> AllocateTemporaryEntryPoints +00007FA12E942F00 18 stub<16333> AllocateTemporaryEntryPoints +00007FA12E942F18 18 stub<16334> AllocateTemporaryEntryPoints +00007FA12E942F30 a8 stub<16335> AllocateTemporaryEntryPoints +00007FA12E942FD8 18 stub<16336> AllocateTemporaryEntryPoints +00007FA12E944000 18 stub<16337> AllocateTemporaryEntryPoints +00007FA12E944018 18 stub<16338> AllocateTemporaryEntryPoints +00007FA12E944030 18 stub<16339> AllocateTemporaryEntryPoints +00007FA127807010 18 stub<16340> GenerateResolveStub +00007FA1277CA3E0 20 stub<16341> GenerateDispatchStub +00007FA1277CA400 20 stub<16342> GenerateDispatchStub +00007FA12E944060 138 stub<16343> AllocateTemporaryEntryPoints +00007FA12E944198 5e8 stub<16344> AllocateTemporaryEntryPoints +00007FA12E944780 c0 stub<16345> AllocateTemporaryEntryPoints +00007FA12E944840 90 stub<16346> AllocateTemporaryEntryPoints +00007FA12E9448D0 a8 stub<16347> AllocateTemporaryEntryPoints +00007FA12E944978 18 stub<16348> AllocateTemporaryEntryPoints +00007FA12E944990 78 stub<16349> AllocateTemporaryEntryPoints +00007FA12E944A08 18 stub<16350> AllocateTemporaryEntryPoints +00007FA12E944A20 198 stub<16351> AllocateTemporaryEntryPoints +00007FA12E944BB8 18 stub<16352> AllocateTemporaryEntryPoints +00007FA12E944BD0 2a0 stub<16353> AllocateTemporaryEntryPoints +00007FA12E944E70 18 stub<16354> AllocateTemporaryEntryPoints +00007FA12E944E88 18 stub<16355> AllocateTemporaryEntryPoints +00007FA12E581FE0 23 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::.ctor()[QuickJitted] +00007FA12E944EA0 30 stub<16356> AllocateTemporaryEntryPoints +00007FA12E944ED0 d8 stub<16357> AllocateTemporaryEntryPoints +00007FA12E582020 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA1277CA420 20 stub<16358> GenerateDispatchStub +00007FA12E582150 37 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::ContainsKey(!0)[QuickJitted] +00007FA12E946000 60 stub<16359> AllocateTemporaryEntryPoints +00007FA12E946060 18 stub<16360> AllocateTemporaryEntryPoints +00007FA12E946078 18 stub<16361> AllocateTemporaryEntryPoints +00007FA12E671040 18 stub<16362> GenerateLookupStub +00007FA12E671060 18 stub<16363> GenerateLookupStub +00007FA12E5821A0 419 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::FindValue(!0)[QuickJitted] +00007FA12E5825E0 3f instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::Add(!0,!1)[QuickJitted] +00007FA12E946090 18 stub<16364> AllocateTemporaryEntryPoints +00007FA12E582640 703 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E582D70 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::Initialize(int32)[QuickJitted] +00007FA12E9460A8 60 stub<16365> AllocateTemporaryEntryPoints +00007FA12E946108 18 stub<16366> AllocateTemporaryEntryPoints +00007FA12E582E70 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::GetBucket(uint32)[QuickJitted] +00007FA12E946120 18 stub<16367> AllocateTemporaryEntryPoints +00007FA12E582EE0 68 instance !1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::get_Item(!0)[QuickJitted] +00007FA12E582F60 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey]::get_Default()[QuickJitted] +00007FA12E582FA0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey]::.cctor()[QuickJitted] +00007FA12E946138 18 stub<16368> AllocateTemporaryEntryPoints +00007FA12E946150 a8 stub<16369> AllocateTemporaryEntryPoints +00007FA12E583020 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey]::.ctor()[QuickJitted] +00007FA12E583060 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey]::.ctor()[QuickJitted] +00007FA12E9461F8 18 stub<16370> AllocateTemporaryEntryPoints +00007FA12E5830A0 67 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey]::Equals(!0,!0)[QuickJitted] +00007FA12E583120 69 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12E946210 30 stub<16371> AllocateTemporaryEntryPoints +00007FA12E5831A0 3f instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::set_Item(!0,!1)[QuickJitted] +00007FA12E583200 22 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::get_Count()[QuickJitted] +00007FA12E946240 60 stub<16372> AllocateTemporaryEntryPoints +00007FA12E583240 b6 instance valuetype System.Collections.Generic.Dictionary`2/Enumerator [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::GetEnumerator()[QuickJitted] +00007FA12E583310 5f instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::.ctor(class System.Collections.Generic.Dictionary`2,int32)[QuickJitted] +00007FA12E583390 1da instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::MoveNext()[QuickJitted] +00007FA12E583590 45 instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::.ctor(!0,!1)[QuickJitted] +00007FA12E5835F0 38 instance valuetype System.Collections.Generic.KeyValuePair`2 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::get_Current()[QuickJitted] +00007FA12E583640 37 instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::get_Key()[QuickJitted] +00007FA12E583690 1f instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::get_Value()[QuickJitted] +00007FA12E9462A0 18 stub<16373> AllocateTemporaryEntryPoints +00007FA12E5836D0 18 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[Microsoft.AspNetCore.Routing.Matching.HttpMethodMatcherPolicy+EdgeKey,System.__Canon]::Dispose()[QuickJitted] +00007FA12E9462B8 18 stub<16374> AllocateTemporaryEntryPoints +00007FA12E9462D0 18 stub<16375> AllocateTemporaryEntryPoints +00007FA12E9462E8 18 stub<16376> AllocateTemporaryEntryPoints +00007FA12E946300 18 stub<16377> AllocateTemporaryEntryPoints +00007FA12E946318 60 stub<16378> AllocateTemporaryEntryPoints +00007FA12E946378 18 stub<16379> AllocateTemporaryEntryPoints +00007FA12E583700 29 instance int32 [System.Private.CoreLib] System.SZArrayHelper::get_Count()[QuickJitted] +00007FA12E946390 18 stub<16380> AllocateTemporaryEntryPoints +00007FA12E9463A8 18 stub<16381> AllocateTemporaryEntryPoints +00007FA12E9463C0 60 stub<16382> AllocateTemporaryEntryPoints +00007FA12E946420 18 stub<16383> AllocateTemporaryEntryPoints +00007FA12E583740 72 instance !!0 [System.Private.CoreLib] System.SZArrayHelper::get_Item(int32)[QuickJitted] +00007FA12E946438 60 stub<16384> AllocateTemporaryEntryPoints +00007FA127807080 18 stub<16385> GenerateResolveStub +00007FA1277CA440 20 stub<16386> GenerateDispatchStub +00007FA1278070F0 18 stub<16387> GenerateResolveStub +00007FA1277CA460 20 stub<16388> GenerateDispatchStub +00007FA127807160 18 stub<16389> GenerateResolveStub +00007FA1277CA480 20 stub<16390> GenerateDispatchStub +00007FA12E9464B0 18 stub<16391> AllocateTemporaryEntryPoints +00007FA12E9464C8 18 stub<16392> AllocateTemporaryEntryPoints +00007FA12E9464E0 30 stub<16393> AllocateTemporaryEntryPoints +00007FA12E946510 60 stub<16394> AllocateTemporaryEntryPoints +00007FA12E946570 60 stub<16395> AllocateTemporaryEntryPoints +00007FA12E9465D0 30 stub<16396> AllocateTemporaryEntryPoints +00007FA12E946600 60 stub<16397> AllocateTemporaryEntryPoints +00007FA12E946660 18 stub<16398> AllocateTemporaryEntryPoints +00007FA12E946678 18 stub<16399> AllocateTemporaryEntryPoints +00007FA12E946690 18 stub<16400> AllocateTemporaryEntryPoints +00007FA12E9466A8 18 stub<16401> AllocateTemporaryEntryPoints +00007FA12E9466C0 18 stub<16402> AllocateTemporaryEntryPoints +00007FA1278071D0 18 stub<16403> GenerateResolveStub +00007FA1277CA4A0 20 stub<16404> GenerateDispatchStub +00007FA12E671080 18 stub<16405> GenerateLookupStub +00007FA1277CA4C0 20 stub<16406> GenerateDispatchStub +00007FA12E9466D8 18 stub<16407> AllocateTemporaryEntryPoints +00007FA12E9466F0 18 stub<16408> AllocateTemporaryEntryPoints +00007FA12E946708 18 stub<16409> AllocateTemporaryEntryPoints +00007FA12E946720 18 stub<16410> AllocateTemporaryEntryPoints +00007FA12E946738 48 stub<16411> AllocateTemporaryEntryPoints +00007FA12E946780 48 stub<16412> AllocateTemporaryEntryPoints +00007FA12E9467C8 90 stub<16413> AllocateTemporaryEntryPoints +00007FA12E946858 48 stub<16414> AllocateTemporaryEntryPoints +00007FA12E9468A0 48 stub<16415> AllocateTemporaryEntryPoints +00007FA12E9468E8 48 stub<16416> AllocateTemporaryEntryPoints +00007FA12E946930 48 stub<16417> AllocateTemporaryEntryPoints +00007FA1277CA4E0 20 stub<16418> GenerateDispatchStub +00007FA127807240 18 stub<16419> GenerateResolveStub +00007FA1277CA500 20 stub<16420> GenerateDispatchStub +00007FA12E946978 48 stub<16421> AllocateTemporaryEntryPoints +00007FA12E9469C0 60 stub<16422> AllocateTemporaryEntryPoints +00007FA1278072B0 18 stub<16423> GenerateResolveStub +00007FA1277CA520 20 stub<16424> GenerateDispatchStub +00007FA12E946A20 18 stub<16425> AllocateTemporaryEntryPoints +00007FA12E946A38 18 stub<16426> AllocateTemporaryEntryPoints +00007FA12E946A50 18 stub<16427> AllocateTemporaryEntryPoints +00007FA12E946A68 18 stub<16428> AllocateTemporaryEntryPoints +00007FA12E946A80 18 stub<16429> AllocateTemporaryEntryPoints +00007FA12E5837D0 27 !!0[] [System.Private.CoreLib] System.Array::Empty()[QuickJitted] +00007FA12E583810 2a void [System.Private.CoreLib] System.Array+EmptyArray`1[Microsoft.AspNetCore.Routing.Matching.Candidate]::.cctor()[QuickJitted] +00007FA12E946A98 18 stub<16430> AllocateTemporaryEntryPoints +00007FA12E946AB0 18 stub<16431> AllocateTemporaryEntryPoints +00007FA12E946AC8 48 stub<16432> AllocateTemporaryEntryPoints +00007FA12E946B10 30 stub<16433> AllocateTemporaryEntryPoints +00007FA12E946B40 30 stub<16434> AllocateTemporaryEntryPoints +00007FA12E946B70 18 stub<16435> AllocateTemporaryEntryPoints +00007FA12E946B88 18 stub<16436> AllocateTemporaryEntryPoints +00007FA12E946BA0 18 stub<16437> AllocateTemporaryEntryPoints +00007FA12E946BB8 18 stub<16438> AllocateTemporaryEntryPoints +00007FA12E583850 29 instance int32 [System.Private.CoreLib] System.SZArrayHelper::get_Count()[QuickJitted] +00007FA12E946BD0 18 stub<16439> AllocateTemporaryEntryPoints +00007FA12E946BE8 18 stub<16440> AllocateTemporaryEntryPoints +00007FA12E583890 72 instance !!0 [System.Private.CoreLib] System.SZArrayHelper::get_Item(int32)[QuickJitted] +00007FA127807320 18 stub<16441> GenerateResolveStub +00007FA1277CA540 20 stub<16442> GenerateDispatchStub +00007FA127807390 18 stub<16443> GenerateResolveStub +00007FA1277CA560 20 stub<16444> GenerateDispatchStub +00007FA12E946C18 18 stub<16445> AllocateTemporaryEntryPoints +00007FA12E946C30 18 stub<16446> AllocateTemporaryEntryPoints +00007FA12E946C48 18 stub<16447> AllocateTemporaryEntryPoints +00007FA12E583920 ac !!0 [System.Linq] System.Linq.Enumerable::Single(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12E946C60 18 stub<16448> AllocateTemporaryEntryPoints +00007FA12E946C78 78 stub<16449> AllocateTemporaryEntryPoints +00007FA12E946CF0 78 stub<16450> AllocateTemporaryEntryPoints +00007FA12E946D68 a8 stub<16451> AllocateTemporaryEntryPoints +00007FA12E946E10 18 stub<16452> AllocateTemporaryEntryPoints +00007FA12E946E28 18 stub<16453> AllocateTemporaryEntryPoints +00007FA12E5839F0 3b9 !!0 [System.Linq] System.Linq.Enumerable::TryGetSingle(class [System.Runtime]System.Collections.Generic.IEnumerable`1,bool&)[QuickJitted] +00007FA12E6710A0 18 stub<16454> GenerateLookupStub +00007FA12E6710C0 18 stub<16455> GenerateLookupStub +00007FA1277CA580 20 stub<16456> GenerateDispatchStub +00007FA127807400 18 stub<16457> GenerateResolveStub +00007FA1277CA5A0 20 stub<16458> GenerateDispatchStub +00007FA127807470 18 stub<16459> GenerateResolveStub +00007FA1277CA5C0 20 stub<16460> GenerateDispatchStub +00007FA1278074E0 18 stub<16461> GenerateResolveStub +00007FA1277CA5E0 20 stub<16462> GenerateDispatchStub +00007FA1277CA600 20 stub<16463> GenerateDispatchStub +00007FA12E946E40 d8 stub<16464> AllocateTemporaryEntryPoints +00007FA12E946F18 60 stub<16465> AllocateTemporaryEntryPoints +00007FA12E946F78 60 stub<16466> AllocateTemporaryEntryPoints +00007FA1277CA620 20 stub<16467> GenerateDispatchStub +00007FA12E948000 168 stub<16468> AllocateTemporaryEntryPoints +00007FA12E948168 270 stub<16469> AllocateTemporaryEntryPoints +00007FA12E9483D8 2b8 stub<16470> AllocateTemporaryEntryPoints +00007FA1277CA640 20 stub<16471> GenerateDispatchStub +00007FA12E948690 18 stub<16472> AllocateTemporaryEntryPoints +00007FA12E9486A8 18 stub<16473> AllocateTemporaryEntryPoints +00007FA12E583DE0 72 instance void [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::.ctor(void*,int32)[QuickJitted] +00007FA12E583E70 8 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12E9486C0 18 stub<16474> AllocateTemporaryEntryPoints +00007FA12E9486D8 18 stub<16475> AllocateTemporaryEntryPoints +00007FA12E583E90 72 instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::Slice(int32,int32)[QuickJitted] +00007FA12E583F20 30 instance void [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::.ctor(!0&,int32)[QuickJitted] +00007FA12E9486F0 270 stub<16476> AllocateTemporaryEntryPoints +00007FA12E583F70 43 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::op_Implicit(valuetype System.Span`1)[QuickJitted] +00007FA12E583FD0 30 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::.ctor(!0&,int32)[QuickJitted] +00007FA12E948960 18 stub<16477> AllocateTemporaryEntryPoints +00007FA12E948978 18 stub<16478> AllocateTemporaryEntryPoints +00007FA12E948990 60 stub<16479> AllocateTemporaryEntryPoints +00007FA12E9489F0 18 stub<16480> AllocateTemporaryEntryPoints +00007FA12E948A08 18 stub<16481> AllocateTemporaryEntryPoints +00007FA12E584420 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E584460 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E948A20 18 stub<16482> AllocateTemporaryEntryPoints +00007FA12E948A38 18 stub<16483> AllocateTemporaryEntryPoints +00007FA12E584560 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E948A50 18 stub<16484> AllocateTemporaryEntryPoints +00007FA12E948A68 30 stub<16485> AllocateTemporaryEntryPoints +00007FA12E5845B0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E948A98 d8 stub<16486> AllocateTemporaryEntryPoints +00007FA12E948B70 d8 stub<16487> AllocateTemporaryEntryPoints +00007FA12E948C48 18 stub<16488> AllocateTemporaryEntryPoints +00007FA12E948C60 60 stub<16489> AllocateTemporaryEntryPoints +00007FA12E584610 247 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E948CC0 18 stub<16490> AllocateTemporaryEntryPoints +00007FA12E948CD8 18 stub<16491> AllocateTemporaryEntryPoints +00007FA12E948CF0 18 stub<16492> AllocateTemporaryEntryPoints +00007FA12E948D08 18 stub<16493> AllocateTemporaryEntryPoints +00007FA12E948D20 18 stub<16494> AllocateTemporaryEntryPoints +00007FA12E948D38 18 stub<16495> AllocateTemporaryEntryPoints +00007FA12E584870 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.Matching.ILEmitTrieJumpTable+d__12]::.ctor()[QuickJitted] +00007FA12E948D50 a8 stub<16496> AllocateTemporaryEntryPoints +00007FA12E948DF8 78 stub<16497> AllocateTemporaryEntryPoints +00007FA12E948E70 60 stub<16498> AllocateTemporaryEntryPoints +00007FA12E948ED0 90 stub<16499> AllocateTemporaryEntryPoints +00007FA12E948F60 60 stub<16500> AllocateTemporaryEntryPoints +00007FA12E948FC0 18 stub<16501> AllocateTemporaryEntryPoints +00007FA12E948FD8 18 stub<16502> AllocateTemporaryEntryPoints +00007FA12E94A000 60 stub<16503> AllocateTemporaryEntryPoints +00007FA12E94A060 60 stub<16504> AllocateTemporaryEntryPoints +00007FA12E94A0C0 48 stub<16505> AllocateTemporaryEntryPoints +00007FA12E94A108 18 stub<16506> AllocateTemporaryEntryPoints +00007FA12E94A120 18 stub<16507> AllocateTemporaryEntryPoints +00007FA12E94A138 18 stub<16508> AllocateTemporaryEntryPoints +00007FA12E94A150 18 stub<16509> AllocateTemporaryEntryPoints +00007FA12E94A168 18 stub<16510> AllocateTemporaryEntryPoints +00007FA12E94A180 18 stub<16511> AllocateTemporaryEntryPoints +00007FA12E94A198 18 stub<16512> AllocateTemporaryEntryPoints +00007FA12E94A1B0 18 stub<16513> AllocateTemporaryEntryPoints +00007FA12E94A1C8 60 stub<16514> AllocateTemporaryEntryPoints +00007FA12E94A228 138 stub<16515> AllocateTemporaryEntryPoints +00007FA12E94A360 30 stub<16516> AllocateTemporaryEntryPoints +00007FA12E5848B0 20f bool [System.Linq] System.Linq.Enumerable::Any(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E6710E0 18 stub<16517> GenerateLookupStub +00007FA12E94A390 18 stub<16518> AllocateTemporaryEntryPoints +00007FA12E94A3A8 18 stub<16519> AllocateTemporaryEntryPoints +00007FA12E94A3C0 a8 stub<16520> AllocateTemporaryEntryPoints +00007FA12E94A468 18 stub<16521> AllocateTemporaryEntryPoints +00007FA12E94A480 18 stub<16522> AllocateTemporaryEntryPoints +00007FA12E671100 18 stub<16523> GenerateLookupStub +00007FA12E671120 18 stub<16524> GenerateLookupStub +00007FA12E94A498 18 stub<16525> AllocateTemporaryEntryPoints +00007FA12E94A4B0 18 stub<16526> AllocateTemporaryEntryPoints +00007FA12E94A4C8 18 stub<16527> AllocateTemporaryEntryPoints +00007FA12E94A4E0 60 stub<16528> AllocateTemporaryEntryPoints +00007FA12E94A540 60 stub<16529> AllocateTemporaryEntryPoints +00007FA12E94A5A0 138 stub<16530> AllocateTemporaryEntryPoints +00007FA12E94A6D8 18 stub<16531> AllocateTemporaryEntryPoints +00007FA12E94A6F0 18 stub<16532> AllocateTemporaryEntryPoints +00007FA12E94A708 c0 stub<16533> AllocateTemporaryEntryPoints +00007FA12E94A7E0 2b8 stub<16534> AllocateTemporaryEntryPoints +00007FA12E94AA98 270 stub<16535> AllocateTemporaryEntryPoints +00007FA12E584AF0 892 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnRoutingEndpointMatched(object)[QuickJitted] +00007FA12E94AD08 a8 stub<16536> AllocateTemporaryEntryPoints +00007FA12E94ADB0 18 stub<16537> AllocateTemporaryEntryPoints +00007FA12E94ADC8 90 stub<16538> AllocateTemporaryEntryPoints +00007FA12E5853C0 8f bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[QuickJitted] +00007FA12E94AE58 90 stub<16539> AllocateTemporaryEntryPoints +00007FA12E94AEE8 18 stub<16540> AllocateTemporaryEntryPoints +00007FA12E94AF00 18 stub<16541> AllocateTemporaryEntryPoints +00007FA12E585470 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInEndpointMatchedStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E585610 83 class [System.Runtime]System.Collections.Generic.IEnumerable`1> [System.Linq] System.Linq.Enumerable::GroupBy(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E5856B0 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInEndpointMatchedStruct]::.cctor()[QuickJitted] +00007FA12E585730 82 instance void [System.Linq] System.Linq.GroupedEnumerable`2[System.ValueTuple`2[System.__Canon,System.Int32],System.Int32]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E671140 18 stub<16542> GenerateLookupStub +00007FA12E94C000 1b0 stub<16543> AllocateTemporaryEntryPoints +00007FA12E94C1B0 48 stub<16544> AllocateTemporaryEntryPoints +00007FA12E94C1F8 1b0 stub<16545> AllocateTemporaryEntryPoints +00007FA12E94C3A8 48 stub<16546> AllocateTemporaryEntryPoints +00007FA12E5857D0 114 instance class System.Linq.IGrouping`2[] [System.Linq] System.Linq.GroupedEnumerable`2[System.ValueTuple`2[System.__Canon,System.Int32],System.Int32]::ToArray()[QuickJitted] +00007FA12E94C3F0 d8 stub<16547> AllocateTemporaryEntryPoints +00007FA12E94C4C8 18 stub<16548> AllocateTemporaryEntryPoints +00007FA12E94C4E0 60 stub<16549> AllocateTemporaryEntryPoints +00007FA12E94C540 60 stub<16550> AllocateTemporaryEntryPoints +00007FA12E94C5A0 1b0 stub<16551> AllocateTemporaryEntryPoints +00007FA12E94C750 1b0 stub<16552> AllocateTemporaryEntryPoints +00007FA12E94C900 78 stub<16553> AllocateTemporaryEntryPoints +00007FA12E94C978 a8 stub<16554> AllocateTemporaryEntryPoints +00007FA12E585900 6c instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA12E585980 24f class System.Linq.Lookup`2 [System.Linq] System.Linq.Lookup`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::Create(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA128667A50 3b Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/HttpRequestInEndpointMatchedStruct /* MT: 0x00007FA12E962580 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12E94CA20 18 stub<16555> AllocateTemporaryEntryPoints +00007FA12E94CA38 d8 stub<16556> AllocateTemporaryEntryPoints +00007FA12E94CB10 30 stub<16557> AllocateTemporaryEntryPoints +00007FA12E585C00 ca instance void [System.Linq] System.Linq.Lookup`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E585CE0 1c instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_IsFirstPipelineExecution()[QuickJitted] +00007FA12E585D10 22 instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::set_IsUsingEndpointRouting(bool)[QuickJitted] +00007FA127807550 18 stub<16558> GenerateResolveStub +00007FA12E585D50 22 instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::set_IsFirstPipelineExecution(bool)[QuickJitted] +00007FA1277CA660 20 stub<16559> GenerateDispatchStub +00007FA1277CA680 20 stub<16560> GenerateDispatchStub +00007FA1278075C0 18 stub<16561> GenerateResolveStub +00007FA1277CA6A0 20 stub<16562> GenerateDispatchStub +00007FA12E585D90 100 instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::MatchesOriginalPath(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest)[QuickJitted] +00007FA12E671160 18 stub<16563> GenerateLookupStub +00007FA12E585EB0 1c instance valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_OriginalPath()[QuickJitted] +00007FA12E586150 10f bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[QuickJitted] +00007FA12E585EE0 255 instance class System.Linq.Grouping`2 [System.Linq] System.Linq.Lookup`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::GetGrouping(!0,bool)[QuickJitted] +00007FA12E94CB40 c0 stub<16564> AllocateTemporaryEntryPoints +00007FA12E586280 43 instance int32 [System.Linq] System.Linq.Lookup`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::InternalGetHashCode(!0)[QuickJitted] +00007FA12E5862E0 51 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::g__GetBaseProperties|13_0(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E94CC00 60 stub<16565> AllocateTemporaryEntryPoints +00007FA12E586350 37 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseProperties|13_0>d::.ctor(int32)[QuickJitted] +00007FA12E671180 18 stub<16566> GenerateLookupStub +00007FA12E5863A0 a4 instance void [System.Linq] System.Linq.Grouping`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(!0,int32)[QuickJitted] +00007FA12E94CC60 18 stub<16567> AllocateTemporaryEntryPoints +00007FA12E586460 8f instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseProperties|13_0>d::System.Collections.Generic.IEnumerable.GetEnumerator()[QuickJitted] +00007FA12E94CC78 18 stub<16568> AllocateTemporaryEntryPoints +00007FA12E94CC90 18 stub<16569> AllocateTemporaryEntryPoints +00007FA12E586510 f8 instance void [System.Linq] System.Linq.Grouping`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::Add(!1)[QuickJitted] +00007FA127807630 18 stub<16570> GenerateResolveStub +00007FA1277CA6C0 20 stub<16571> GenerateDispatchStub +00007FA12E586620 24f instance bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseProperties|13_0>d::MoveNext()[QuickJitted] +00007FA1278076A0 18 stub<16572> GenerateResolveStub +00007FA1277CA6E0 20 stub<16573> GenerateDispatchStub +00007FA12E94CCA8 18 stub<16574> AllocateTemporaryEntryPoints +00007FA12E586890 14 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<g__GetBaseProperties|13_0>d::System.IDisposable.Dispose()[QuickJitted] +00007FA12E94CCC0 18 stub<16575> AllocateTemporaryEntryPoints +00007FA12E94CCD8 18 stub<16576> AllocateTemporaryEntryPoints +00007FA1277CA700 20 stub<16577> GenerateDispatchStub +00007FA12E5868C0 fc instance class System.Linq.IGrouping`2[] [System.Linq] System.Linq.Lookup`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Linq.IIListProvider>.ToArray()[QuickJitted] +00007FA12E94CCF0 48 stub<16578> AllocateTemporaryEntryPoints +00007FA12E5869D0 1b instance !0 [System.Linq] System.Linq.Grouping`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::get_Key()[QuickJitted] +00007FA12E94CD38 48 stub<16579> AllocateTemporaryEntryPoints +00007FA12E94CD80 48 stub<16580> AllocateTemporaryEntryPoints +00007FA12E94CDC8 18 stub<16581> AllocateTemporaryEntryPoints +00007FA12E586A00 257 void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions::WriteMethodCalli(class Datadog.Trace.DuckTyping.LazyILGenerator,class [System.Runtime]System.Reflection.MethodInfo)[QuickJitted] +00007FA12E94CDE0 18 stub<16582> AllocateTemporaryEntryPoints +00007FA12E94CDF8 18 stub<16583> AllocateTemporaryEntryPoints +00007FA12E94CE10 18 stub<16584> AllocateTemporaryEntryPoints +00007FA12E586C80 121 !!0[] [System.Linq] System.Linq.Enumerable::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12E94CE40 18 stub<16585> AllocateTemporaryEntryPoints +00007FA12E94CE58 48 stub<16586> AllocateTemporaryEntryPoints +00007FA12E94E000 168 stub<16587> AllocateTemporaryEntryPoints +00007FA12E94E168 a8 stub<16588> AllocateTemporaryEntryPoints +00007FA12E94E210 18 stub<16589> AllocateTemporaryEntryPoints +00007FA12E94E228 168 stub<16590> AllocateTemporaryEntryPoints +00007FA12E94E390 60 stub<16591> AllocateTemporaryEntryPoints +00007FA12E586DC0 13a instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::Emit(valuetype [System.Reflection.Primitives]System.Reflection.Emit.OpCode,int64)[QuickJitted] +00007FA12E94E3F0 18 stub<16592> AllocateTemporaryEntryPoints +00007FA12E94E408 18 stub<16593> AllocateTemporaryEntryPoints +00007FA12E586F20 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass27_0::.ctor()[QuickJitted] +00007FA12E586F60 47 void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions+<>c::.cctor()[QuickJitted] +00007FA12E586FC0 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.ILHelpersExtensions+<>c::.ctor()[QuickJitted] +00007FA12E94E420 48 stub<16594> AllocateTemporaryEntryPoints +00007FA12E587000 32b !!0[] [System.Linq] System.Collections.Generic.EnumerableHelpers::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12E6711A0 18 stub<16595> GenerateLookupStub +00007FA12E587350 171 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator::EmitCalli(valuetype [System.Reflection.Primitives]System.Reflection.Emit.OpCode,valuetype [System.Runtime]System.Reflection.CallingConventions,class [System.Runtime]System.Type,class [System.Runtime]System.Type[],class [System.Runtime]System.Type[])[QuickJitted] +00007FA12E5874E0 1b instance int32 [System.Linq] System.Linq.Grouping`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Collections.Generic.ICollection.get_Count()[QuickJitted] +00007FA12E6711C0 18 stub<16596> GenerateLookupStub +00007FA12E587510 1f instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass32_0::.ctor()[QuickJitted] +00007FA12E587550 3b instance void [System.Linq] System.Linq.Grouping`2[System.Int32,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Collections.Generic.ICollection.CopyTo(!1[],int32)[QuickJitted] +00007FA127807710 18 stub<16597> GenerateResolveStub +00007FA1277CA720 20 stub<16598> GenerateDispatchStub +00007FA12E94E468 18 stub<16599> AllocateTemporaryEntryPoints +00007FA12E94E480 18 stub<16600> AllocateTemporaryEntryPoints +00007FA12E94E498 30 stub<16601> AllocateTemporaryEntryPoints +00007FA12E94E4C8 60 stub<16602> AllocateTemporaryEntryPoints +00007FA12E94E528 18 stub<16603> AllocateTemporaryEntryPoints +00007FA12E94E540 18 stub<16604> AllocateTemporaryEntryPoints +00007FA12E94E558 90 stub<16605> AllocateTemporaryEntryPoints +00007FA1277CA740 20 stub<16606> GenerateDispatchStub +00007FA12E5875A0 83 class [System.Runtime]System.Collections.Generic.IEnumerable`1> [System.Linq] System.Linq.Enumerable::GroupBy(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E587640 34 instance bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+<>c::b__9_0(class [System.Runtime]System.Reflection.ConstructorInfo)[QuickJitted] +00007FA12E587690 82 instance void [System.Linq] System.Linq.GroupedEnumerable`2[System.ValueTuple`2[System.__Canon,System.Int32],System.UInt64]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA127807780 18 stub<16607> GenerateResolveStub +00007FA1277CA760 20 stub<16608> GenerateDispatchStub +00007FA12E94E5E8 1b0 stub<16609> AllocateTemporaryEntryPoints +00007FA12E94E798 48 stub<16610> AllocateTemporaryEntryPoints +00007FA12E587730 b7 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1> [System.Linq] System.Linq.GroupedEnumerable`2[System.ValueTuple`2[System.__Canon,System.Int32],System.UInt64]::GetEnumerator()[QuickJitted] +00007FA128667AF0 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_DuckAttributeBase.set_Name(object,object,native int*)[Optimized] +00007FA12E94E7E0 1b0 stub<16611> AllocateTemporaryEntryPoints +00007FA12E587800 3b instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass27_0::b__0(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12E587850 52 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.LazyILGenerator+<>c__DisplayClass32_0::b__0(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator)[QuickJitted] +00007FA12E5878C0 251 class System.Linq.Lookup`2 [System.Linq] System.Linq.Lookup`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::Create(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E587B40 ca instance void [System.Linq] System.Linq.Lookup`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E94E990 78 stub<16612> AllocateTemporaryEntryPoints +00007FA12E94EA08 18 stub<16613> AllocateTemporaryEntryPoints +00007FA12E587C20 25a instance class System.Linq.Grouping`2 [System.Linq] System.Linq.Lookup`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::GetGrouping(!0,bool)[QuickJitted] +00007FA128667B70 60 Datadog.Trace.DiagnosticListeners.EndpointFeatureProxy /* MT: 0x00007FA12E9629C0 */ [Datadog.Trace] dynamicClass::CreateProxyInstance(object)[Optimized] +00007FA12E587EE0 45 instance int32 [System.Linq] System.Linq.Lookup`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::InternalGetHashCode(!0)[QuickJitted] +00007FA12E587E90 31 instance object [DuckTypeNotVisibleAssembly.Http1Connection`1_8] Microsoft_AspNetCore_Server_Kestrel_Core__ADB9793829DDAE60.Microsoft_AspNetCore_Server_Kestrel_Core_Internal_Http_Http1Connection`1\[\[Microsoft_AspNetCore_Hosting_HostingApplication__Context\, Microsoft_AspNetCore_Hosting\, Version=7_0_0_0\, Culture=neutral\, PublicKeyToken=adb9793829ddae60\]\].Datadog_Trace_DiagnosticListeners_EndpointFeatureProxy_8::GetEndpoint()[QuickJitted] +00007FA12E94EA20 a8 stub<16614> AllocateTemporaryEntryPoints +00007FA12E94EAC8 18 stub<16615> AllocateTemporaryEntryPoints +00007FA12E587F40 a7 instance void [System.Linq] System.Linq.Grouping`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(!0,int32)[QuickJitted] +00007FA12E588000 8f bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[QuickJitted] +00007FA12E5880B0 f8 instance void [System.Linq] System.Linq.Grouping`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::Add(!1)[QuickJitted] +00007FA12E94EAE0 90 stub<16616> AllocateTemporaryEntryPoints +00007FA12E94EB70 90 stub<16617> AllocateTemporaryEntryPoints +00007FA12E5881C0 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E588360 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::.cctor()[QuickJitted] +00007FA12E5883E0 95 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1> [System.Linq] System.Linq.Lookup`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::GetEnumerator()[QuickJitted] +00007FA12E94EC00 a8 stub<16618> AllocateTemporaryEntryPoints +00007FA12E588490 2b instance void [System.Linq] System.Linq.Lookup`2+d__17[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(int32)[QuickJitted] +00007FA12E94ECA8 1b0 stub<16619> AllocateTemporaryEntryPoints +00007FA12E94EE58 48 stub<16620> AllocateTemporaryEntryPoints +00007FA12E980000 1b0 stub<16621> AllocateTemporaryEntryPoints +00007FA12E9801B0 78 stub<16622> AllocateTemporaryEntryPoints +00007FA12E980228 a8 stub<16623> AllocateTemporaryEntryPoints +00007FA12E5884D0 101 instance bool [System.Linq] System.Linq.Lookup`2+d__17[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::MoveNext()[QuickJitted] +00007FA12E9802D0 108 stub<16624> AllocateTemporaryEntryPoints +00007FA12E5885F0 1c instance class System.Linq.IGrouping`2 [System.Linq] System.Linq.Lookup`2+d__17[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Collections.Generic.IEnumerator>.get_Current()[QuickJitted] +00007FA12E588620 1c instance !0 [System.Linq] System.Linq.Grouping`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::get_Key()[QuickJitted] +00007FA12E9803D8 60 stub<16625> AllocateTemporaryEntryPoints +00007FA12E588650 1b instance int32 [System.Linq] System.Linq.Grouping`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Collections.Generic.ICollection.get_Count()[QuickJitted] +00007FA12E588680 77 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA12E588710 3b instance void [System.Linq] System.Linq.Grouping`2[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Collections.Generic.ICollection.CopyTo(!1[],int32)[QuickJitted] +00007FA1278077F0 18 stub<16626> GenerateResolveStub +00007FA1277CA780 20 stub<16627> GenerateDispatchStub +00007FA12E980438 18 stub<16628> AllocateTemporaryEntryPoints +00007FA127807860 18 stub<16629> GenerateResolveStub +00007FA1277CA7A0 20 stub<16630> GenerateDispatchStub +00007FA1278078D0 18 stub<16631> GenerateResolveStub +00007FA12E980450 60 stub<16632> AllocateTemporaryEntryPoints +00007FA128667C30 228 Datadog.Trace.DiagnosticListeners.RouteEndpoint /* MT: 0x00007FA12E9626F0 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12E588760 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.RoutePattern]::.cctor()[QuickJitted] +00007FA1277CA7C0 20 stub<16633> GenerateDispatchStub +00007FA127807940 18 stub<16634> GenerateResolveStub +00007FA1277CA7E0 20 stub<16635> GenerateDispatchStub +00007FA1278079B0 18 stub<16636> GenerateResolveStub +00007FA1277CA800 20 stub<16637> GenerateDispatchStub +00007FA127807A20 18 stub<16638> GenerateResolveStub +00007FA1277CA820 20 stub<16639> GenerateDispatchStub +00007FA12E9804B0 18 stub<16640> AllocateTemporaryEntryPoints +00007FA12E9804C8 18 stub<16641> AllocateTemporaryEntryPoints +00007FA12E9804E0 30 stub<16642> AllocateTemporaryEntryPoints +00007FA12E980510 60 stub<16643> AllocateTemporaryEntryPoints +00007FA12E980570 108 stub<16644> AllocateTemporaryEntryPoints +00007FA12E980678 18 stub<16645> AllocateTemporaryEntryPoints +00007FA12E980690 90 stub<16646> AllocateTemporaryEntryPoints +00007FA12E5887E0 83 class [System.Runtime]System.Collections.Generic.IEnumerable`1> [System.Linq] System.Linq.Enumerable::GroupBy(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E980720 30 stub<16647> AllocateTemporaryEntryPoints +00007FA12E588880 82 instance void [System.Linq] System.Linq.GroupedEnumerable`2[System.ValueTuple`2[System.__Canon,System.Int32],System.UInt16]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E980750 1b0 stub<16648> AllocateTemporaryEntryPoints +00007FA128667ED0 44 Datadog.Trace.DiagnosticListeners.RoutePattern /* MT: 0x00007FA12E962630 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12E980900 48 stub<16649> AllocateTemporaryEntryPoints +00007FA12E588920 36 instance void [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::.ctor(!0)[QuickJitted] +00007FA12E588970 b7 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1> [System.Linq] System.Linq.GroupedEnumerable`2[System.ValueTuple`2[System.__Canon,System.Int32],System.UInt16]::GetEnumerator()[QuickJitted] +00007FA12E588A40 1b instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::get_HasValue()[QuickJitted] +00007FA12E588A70 48 instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::get_Value()[QuickJitted] +00007FA12E588AD0 2d instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::set_AspNetCoreEndpoint(string)[QuickJitted] +00007FA12E980948 1b0 stub<16650> AllocateTemporaryEntryPoints +00007FA12E588B20 2a instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::set_Route(string)[QuickJitted] +00007FA12E980AF8 18 stub<16651> AllocateTemporaryEntryPoints +00007FA12E980B10 18 stub<16652> AllocateTemporaryEntryPoints +00007FA12E588B60 2a !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::DuckCast(object)[QuickJitted] +00007FA12E980B28 a8 stub<16653> AllocateTemporaryEntryPoints +00007FA12E980BD0 a8 stub<16654> AllocateTemporaryEntryPoints +00007FA12E588BA0 24f class System.Linq.Lookup`2 [System.Linq] System.Linq.Lookup`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::Create(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E588E20 2a !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::Create(object)[QuickJitted] +00007FA12E980C78 18 stub<16655> AllocateTemporaryEntryPoints +00007FA12E980C90 d8 stub<16656> AllocateTemporaryEntryPoints +00007FA12E588E60 a4 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestStruct]::Create(object)[QuickJitted] +00007FA12E588F20 ca instance void [System.Linq] System.Linq.Lookup`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E589000 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E980D68 18 stub<16657> AllocateTemporaryEntryPoints +00007FA12E980D80 a8 stub<16658> AllocateTemporaryEntryPoints +00007FA12E5891A0 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestStruct]::.cctor()[QuickJitted] +00007FA12E6711E0 18 stub<16659> GenerateLookupStub +00007FA12E980E28 138 stub<16660> AllocateTemporaryEntryPoints +00007FA12E589220 25f instance class System.Linq.Grouping`2 [System.Linq] System.Linq.Lookup`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::GetGrouping(!0,bool)[QuickJitted] +00007FA12E980F60 60 stub<16661> AllocateTemporaryEntryPoints +00007FA12E671200 18 stub<16662> GenerateLookupStub +00007FA12E589500 77 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA12E5894A0 46 instance int32 [System.Linq] System.Linq.Lookup`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::InternalGetHashCode(!0)[QuickJitted] +00007FA12E671220 18 stub<16663> GenerateLookupStub +00007FA12E589590 a5 instance void [System.Linq] System.Linq.Grouping`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(!0,int32)[QuickJitted] +00007FA12E980FC0 18 stub<16664> AllocateTemporaryEntryPoints +00007FA12E671240 18 stub<16665> GenerateLookupStub +00007FA12E589650 f8 instance void [System.Linq] System.Linq.Grouping`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::Add(!1)[QuickJitted] +00007FA12E982000 90 stub<16666> AllocateTemporaryEntryPoints +00007FA12E589760 95 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1> [System.Linq] System.Linq.Lookup`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::GetEnumerator()[QuickJitted] +00007FA12E589810 2b instance void [System.Linq] System.Linq.Lookup`2+d__17[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::.ctor(int32)[QuickJitted] +00007FA12E589850 101 instance bool [System.Linq] System.Linq.Lookup`2+d__17[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::MoveNext()[QuickJitted] +00007FA12E589970 1c instance class System.Linq.IGrouping`2 [System.Linq] System.Linq.Lookup`2+d__17[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Collections.Generic.IEnumerator>.get_Current()[QuickJitted] +00007FA128667F70 1ac Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/HttpRequestStruct /* MT: 0x00007FA12E962C30 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12E5899A0 1c instance !0 [System.Linq] System.Linq.Grouping`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::get_Key()[QuickJitted] +00007FA127807A90 18 stub<16667> GenerateResolveStub +00007FA1277CA840 20 stub<16668> GenerateDispatchStub +00007FA12E982090 18 stub<16669> AllocateTemporaryEntryPoints +00007FA12E9820A8 18 stub<16670> AllocateTemporaryEntryPoints +00007FA12E9820C0 18 stub<16671> AllocateTemporaryEntryPoints +00007FA12E5899D0 1b instance int32 [System.Linq] System.Linq.Grouping`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Collections.Generic.ICollection.get_Count()[QuickJitted] +00007FA12E589A00 3b instance void [System.Linq] System.Linq.Grouping`2[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::System.Collections.Generic.ICollection.CopyTo(!1[],int32)[QuickJitted] +00007FA127807B00 18 stub<16672> GenerateResolveStub +00007FA1277CA860 20 stub<16673> GenerateDispatchStub +00007FA127807B70 18 stub<16674> GenerateResolveStub +00007FA1277CA880 20 stub<16675> GenerateDispatchStub +00007FA127807BE0 18 stub<16676> GenerateResolveStub +00007FA1277CA8A0 20 stub<16677> GenerateDispatchStub +00007FA12E589A50 66f string [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreResourceNameHelper::SimplifyRoutePattern(valuetype Datadog.Trace.DiagnosticListeners.RoutePattern,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,string,string,string,bool)[QuickJitted] +00007FA1277CA8C0 20 stub<16678> GenerateDispatchStub +00007FA1277CA8E0 20 stub<16679> GenerateDispatchStub +00007FA12E58A100 14 instance void [System.Linq] System.Linq.Lookup`2+d__17[System.UInt16,System.ValueTuple`2[System.__Canon,System.Int32]]::System.IDisposable.Dispose()[QuickJitted] +00007FA1277CA900 20 stub<16680> GenerateDispatchStub +00007FA12E9820D8 18 stub<16681> AllocateTemporaryEntryPoints +00007FA12E58A160 1f !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::DuckCast(object)[QuickJitted] +00007FA12E58A130 14 instance void [System.Linq] System.Linq.Lookup`2+d__17[System.UInt64,System.ValueTuple`2[System.__Canon,System.Int32]]::System.IDisposable.Dispose()[QuickJitted] +00007FA12E9820F0 a8 stub<16682> AllocateTemporaryEntryPoints +00007FA12E58A1A0 1f !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::Create(object)[QuickJitted] +00007FA12E982198 18 stub<16683> AllocateTemporaryEntryPoints +00007FA12E58A5E0 71 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternPathSegmentStruct]::Create(object)[QuickJitted] +00007FA12E58A670 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.Matching.ILEmitTrieJumpTable+d__12]::MoveNext()[QuickJitted] +00007FA12E58A6B0 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternPathSegmentStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E58A850 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternPathSegmentStruct]::.cctor()[QuickJitted] +00007FA12E58A8D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.Matching.ILEmitTrieJumpTable+d__12]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E58AA50 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.Matching.ILEmitTrieJumpTable+d__12]::.cctor()[QuickJitted] +00007FA12E9821B0 18 stub<16684> AllocateTemporaryEntryPoints +00007FA12E58AAD0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.Matching.ILEmitTrieJumpTable+d__12]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E9821C8 d8 stub<16685> AllocateTemporaryEntryPoints +00007FA12E58AB10 5f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.Matching.ILEmitTrieJumpTable+d__12]::ClearStateUponCompletion()[QuickJitted] +00007FA12E9822A0 60 stub<16686> AllocateTemporaryEntryPoints +00007FA12E58AB90 6c instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA128668190 3d Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/RoutePatternPathSegmentStruct /* MT: 0x00007FA12E991328 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA1277CA920 20 stub<16687> GenerateDispatchStub +00007FA12E982300 a8 stub<16688> AllocateTemporaryEntryPoints +00007FA12E9823A8 18 stub<16689> AllocateTemporaryEntryPoints +00007FA12E58AC10 8f bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[QuickJitted] +00007FA12E58ACC0 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternContentPartStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E58AE60 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternContentPartStruct]::.cctor()[QuickJitted] +00007FA12E58AEE0 18b void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypePropertyOrFieldNotFoundException::Throw(string,string,class [System.Runtime]System.Type)[QuickJitted] +00007FA12E58B090 eb instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypePropertyOrFieldNotFoundException::.ctor(string,string,string)[QuickJitted] +00007FA12E58B1A0 27 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeException::.ctor(string)[QuickJitted] +00007FA12E9823C0 18 stub<16690> AllocateTemporaryEntryPoints +00007FA12E9823D8 60 stub<16691> AllocateTemporaryEntryPoints +00007FA12E982438 18 stub<16692> AllocateTemporaryEntryPoints +00007FA12E982450 a8 stub<16693> AllocateTemporaryEntryPoints +00007FA12E9824F8 18 stub<16694> AllocateTemporaryEntryPoints +00007FA12E58B1E0 a3 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[QuickJitted] +00007FA12E58B2A0 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternParameterPartStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E58B440 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternParameterPartStruct]::.cctor()[QuickJitted] +00007FA12E982510 168 stub<16695> AllocateTemporaryEntryPoints +00007FA12E982678 60 stub<16696> AllocateTemporaryEntryPoints +00007FA12E58B4C0 85 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA128668230 85 Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/RoutePatternParameterPartStruct /* MT: 0x00007FA12E991288 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA1277CA940 20 stub<16697> GenerateDispatchStub +00007FA1277CA960 20 stub<16698> GenerateDispatchStub +00007FA12E58B560 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpMethod()[QuickJitted] +00007FA12E58B590 2a instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::set_ResourceName(string)[QuickJitted] +00007FA12E58B5D0 2d instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::set_AspNetCoreRoute(string)[QuickJitted] +00007FA12E671260 18 stub<16699> GenerateLookupStub +00007FA12E9826D8 18 stub<16700> AllocateTemporaryEntryPoints +00007FA12E58B620 e04 instance class Datadog.Trace.ISpan [Datadog.Trace] Datadog.Trace.Span::SetTag(string,string)[QuickJitted] +00007FA12E58C470 1c instance bool [Datadog.Trace] Datadog.Trace.Span::get_IsFinished()[QuickJitted] +00007FA12E58C4A0 5f instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::SetTag(string,string)[QuickJitted] +00007FA12E58C520 91 instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::SetTag(string,string)[QuickJitted] +00007FA12E58C5D0 301 instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::SetTag(string,string)[QuickJitted] +00007FA12E9826F0 18 stub<16701> AllocateTemporaryEntryPoints +00007FA12E982708 18 stub<16702> AllocateTemporaryEntryPoints +00007FA12E58C8F0 2cf instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::SetTag(string,string)[QuickJitted] +00007FA12E982720 c0 stub<16703> AllocateTemporaryEntryPoints +00007FA12E9827E0 a8 stub<16704> AllocateTemporaryEntryPoints +00007FA12E58CBF0 11e void [Datadog.Trace] Datadog.Trace.AppSec.Coordinator.SecurityCoordinatorHelpers::CheckPathParams(class Datadog.Trace.AppSec.Security,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class Datadog.Trace.Span,class [System.Runtime]System.Collections.Generic.IDictionary`2)[QuickJitted] +00007FA12E982888 90 stub<16705> AllocateTemporaryEntryPoints +00007FA12E982918 60 stub<16706> AllocateTemporaryEntryPoints +00007FA12E982978 1b0 stub<16707> AllocateTemporaryEntryPoints +00007FA12E982B28 150 stub<16708> AllocateTemporaryEntryPoints +00007FA12E982C78 18 stub<16709> AllocateTemporaryEntryPoints +00007FA12E982C90 18 stub<16710> AllocateTemporaryEntryPoints +00007FA12E58CD30 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E58CD70 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E982CA8 18 stub<16711> AllocateTemporaryEntryPoints +00007FA12E982CC0 18 stub<16712> AllocateTemporaryEntryPoints +00007FA12E982CD8 18 stub<16713> AllocateTemporaryEntryPoints +00007FA12E982CF0 18 stub<16714> AllocateTemporaryEntryPoints +00007FA12E982D08 18 stub<16715> AllocateTemporaryEntryPoints +00007FA12E982D20 18 stub<16716> AllocateTemporaryEntryPoints +00007FA12E982D38 18 stub<16717> AllocateTemporaryEntryPoints +00007FA12E982D50 18 stub<16718> AllocateTemporaryEntryPoints +00007FA12E982D68 30 stub<16719> AllocateTemporaryEntryPoints +00007FA12E982D98 78 stub<16720> AllocateTemporaryEntryPoints +00007FA12E982E10 18 stub<16721> AllocateTemporaryEntryPoints +00007FA12E982E28 18 stub<16722> AllocateTemporaryEntryPoints +00007FA12E982E40 18 stub<16723> AllocateTemporaryEntryPoints +00007FA12E982E58 18 stub<16724> AllocateTemporaryEntryPoints +00007FA12E982E70 18 stub<16725> AllocateTemporaryEntryPoints +00007FA12E982E88 18 stub<16726> AllocateTemporaryEntryPoints +00007FA12E982EA0 48 stub<16727> AllocateTemporaryEntryPoints +00007FA12E984000 1f8 stub<16728> AllocateTemporaryEntryPoints +00007FA12E9841F8 18 stub<16729> AllocateTemporaryEntryPoints +00007FA12E984210 18 stub<16730> AllocateTemporaryEntryPoints +00007FA12E984228 18 stub<16731> AllocateTemporaryEntryPoints +00007FA12E984240 18 stub<16732> AllocateTemporaryEntryPoints +00007FA12E984258 18 stub<16733> AllocateTemporaryEntryPoints +00007FA12E984270 18 stub<16734> AllocateTemporaryEntryPoints +00007FA12E984288 18 stub<16735> AllocateTemporaryEntryPoints +00007FA12E9842A0 60 stub<16736> AllocateTemporaryEntryPoints +00007FA12E984300 18 stub<16737> AllocateTemporaryEntryPoints +00007FA12E984318 18 stub<16738> AllocateTemporaryEntryPoints +00007FA12E984330 18 stub<16739> AllocateTemporaryEntryPoints +00007FA12E58CE70 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12E58CEB0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E984348 18 stub<16740> AllocateTemporaryEntryPoints +00007FA12E984360 18 stub<16741> AllocateTemporaryEntryPoints +00007FA12E984378 18 stub<16742> AllocateTemporaryEntryPoints +00007FA12E671280 18 stub<16743> GenerateLookupStub +00007FA127807C50 18 stub<16744> GenerateResolveStub +00007FA1277CA980 20 stub<16745> GenerateDispatchStub +00007FA127807CC0 18 stub<16746> GenerateResolveStub +00007FA1277CA9A0 20 stub<16747> GenerateDispatchStub +00007FA12E984390 18 stub<16748> AllocateTemporaryEntryPoints +00007FA12E9843A8 18 stub<16749> AllocateTemporaryEntryPoints +00007FA12E9843C0 18 stub<16750> AllocateTemporaryEntryPoints +00007FA12E9843D8 18 stub<16751> AllocateTemporaryEntryPoints +00007FA12E9843F0 18 stub<16752> AllocateTemporaryEntryPoints +00007FA12E984408 18 stub<16753> AllocateTemporaryEntryPoints +00007FA12E984420 18 stub<16754> AllocateTemporaryEntryPoints +00007FA12E984438 48 stub<16755> AllocateTemporaryEntryPoints +00007FA12E984480 18 stub<16756> AllocateTemporaryEntryPoints +00007FA12E984498 18 stub<16757> AllocateTemporaryEntryPoints +00007FA12E9844B0 18 stub<16758> AllocateTemporaryEntryPoints +00007FA12E9844C8 18 stub<16759> AllocateTemporaryEntryPoints +00007FA12E58CFB0 47 instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12E997110 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E9844E0 18 stub<16760> AllocateTemporaryEntryPoints +00007FA12E9844F8 18 stub<16761> AllocateTemporaryEntryPoints +00007FA12E58D010 47 instance void [Microsoft.Extensions.Logging] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12E997110 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E984510 18 stub<16762> AllocateTemporaryEntryPoints +00007FA12E984528 18 stub<16763> AllocateTemporaryEntryPoints +00007FA12E984540 18 stub<16764> AllocateTemporaryEntryPoints +00007FA12E58D070 47 instance void [Microsoft.Extensions.Logging.Console] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12E997110 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E984558 18 stub<16765> AllocateTemporaryEntryPoints +00007FA12E984570 18 stub<16766> AllocateTemporaryEntryPoints +00007FA12E984588 18 stub<16767> AllocateTemporaryEntryPoints +00007FA12E9845A0 18 stub<16768> AllocateTemporaryEntryPoints +00007FA12E9845B8 18 stub<16769> AllocateTemporaryEntryPoints +00007FA12E9845D0 18 stub<16770> AllocateTemporaryEntryPoints +00007FA12E58D0D0 47 instance void [Microsoft.Extensions.Logging.Debug] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12E997110 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E9845E8 18 stub<16771> AllocateTemporaryEntryPoints +00007FA12E984600 18 stub<16772> AllocateTemporaryEntryPoints +00007FA12E58D130 47 instance void [Microsoft.Extensions.Logging.EventSource] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12E997110 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E984618 30 stub<16773> AllocateTemporaryEntryPoints +00007FA12E984648 c0 stub<16774> AllocateTemporaryEntryPoints +00007FA12E984708 198 stub<16775> AllocateTemporaryEntryPoints +00007FA12E9848A0 198 stub<16776> AllocateTemporaryEntryPoints +00007FA12E984A38 78 stub<16777> AllocateTemporaryEntryPoints +00007FA12E984AB0 a8 stub<16778> AllocateTemporaryEntryPoints +00007FA12E984B58 18 stub<16779> AllocateTemporaryEntryPoints +00007FA127807D30 18 stub<16780> GenerateResolveStub +00007FA1277CA9C0 20 stub<16781> GenerateDispatchStub +00007FA12E984B70 168 stub<16782> AllocateTemporaryEntryPoints +00007FA12E984CD8 48 stub<16783> AllocateTemporaryEntryPoints +00007FA12E984D20 f0 stub<16784> AllocateTemporaryEntryPoints +00007FA12E984E10 60 stub<16785> AllocateTemporaryEntryPoints +00007FA12E984E70 48 stub<16786> AllocateTemporaryEntryPoints +00007FA12E984EB8 a8 stub<16787> AllocateTemporaryEntryPoints +00007FA12E984F60 48 stub<16788> AllocateTemporaryEntryPoints +00007FA12E6712A0 18 stub<16789> GenerateLookupStub +00007FA127807DA0 18 stub<16790> GenerateResolveStub +00007FA1277CA9E0 20 stub<16791> GenerateDispatchStub +00007FA12E6712C0 18 stub<16792> GenerateLookupStub +00007FA127807E10 18 stub<16793> GenerateResolveStub +00007FA1277CAA00 20 stub<16794> GenerateDispatchStub +00007FA12E984FA8 18 stub<16795> AllocateTemporaryEntryPoints +00007FA12E986000 78 stub<16796> AllocateTemporaryEntryPoints +00007FA1277CAA20 20 stub<16797> GenerateDispatchStub +00007FA127807E80 18 stub<16798> GenerateResolveStub +00007FA1277CAA40 20 stub<16799> GenerateDispatchStub +00007FA12E986078 18 stub<16800> AllocateTemporaryEntryPoints +00007FA12E986090 18 stub<16801> AllocateTemporaryEntryPoints +00007FA12E9860A8 18 stub<16802> AllocateTemporaryEntryPoints +00007FA12E9860C0 18 stub<16803> AllocateTemporaryEntryPoints +00007FA12E9860D8 18 stub<16804> AllocateTemporaryEntryPoints +00007FA12E9860F0 90 stub<16805> AllocateTemporaryEntryPoints +00007FA12E986180 18 stub<16806> AllocateTemporaryEntryPoints +00007FA12E986198 18 stub<16807> AllocateTemporaryEntryPoints +00007FA12E9861B0 60 stub<16808> AllocateTemporaryEntryPoints +00007FA12E986210 18 stub<16809> AllocateTemporaryEntryPoints +00007FA12E986228 18 stub<16810> AllocateTemporaryEntryPoints +00007FA12E986240 78 stub<16811> AllocateTemporaryEntryPoints +00007FA12E9862B8 18 stub<16812> AllocateTemporaryEntryPoints +00007FA12E9862D0 18 stub<16813> AllocateTemporaryEntryPoints +00007FA12E58D190 8b instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::Fetch(!!0&,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E58D230 1b instance class Microsoft.AspNetCore.Http.Features.IFeatureCollection [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::get_Collection()[QuickJitted] +00007FA12E9862E8 18 stub<16814> AllocateTemporaryEntryPoints +00007FA12E986300 18 stub<16815> AllocateTemporaryEntryPoints +00007FA12E986318 18 stub<16816> AllocateTemporaryEntryPoints +00007FA12E58D260 120 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::Fetch(!!0&,!!1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E58D3A0 1b instance int32 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::get_Revision()[QuickJitted] +00007FA12E986330 18 stub<16817> AllocateTemporaryEntryPoints +00007FA12E58D3D0 1d2 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::UpdateCached(!!0&,!!1,class [System.Runtime]System.Func`2,int32,bool)[QuickJitted] +00007FA12E986348 18 stub<16818> AllocateTemporaryEntryPoints +00007FA12E986360 18 stub<16819> AllocateTemporaryEntryPoints +00007FA12E986378 240 stub<16820> AllocateTemporaryEntryPoints +00007FA12E9865B8 18 stub<16821> AllocateTemporaryEntryPoints +00007FA12E58D5C0 86 instance void [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12E9865D0 18 stub<16822> AllocateTemporaryEntryPoints +00007FA12E9865E8 60 stub<16823> AllocateTemporaryEntryPoints +00007FA12E58D660 9b instance void [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Push(!0)[QuickJitted] +00007FA12E58D710 70 instance void [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::PushWithResize(!0)[QuickJitted] +00007FA12E986648 18 stub<16824> AllocateTemporaryEntryPoints +00007FA12E986660 18 stub<16825> AllocateTemporaryEntryPoints +00007FA12E58D7A0 e3 instance void [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Grow(int32)[QuickJitted] +00007FA12E986678 18 stub<16826> AllocateTemporaryEntryPoints +00007FA12E986690 18 stub<16827> AllocateTemporaryEntryPoints +00007FA12E9866A8 18 stub<16828> AllocateTemporaryEntryPoints +00007FA127807EF0 18 stub<16829> GenerateResolveStub +00007FA1277CAA60 20 stub<16830> GenerateDispatchStub +00007FA127807F60 18 stub<16831> GenerateResolveStub +00007FA1277CAA80 20 stub<16832> GenerateDispatchStub +00007FA12E9866C0 18 stub<16833> AllocateTemporaryEntryPoints +00007FA12E9866D8 48 stub<16834> AllocateTemporaryEntryPoints +00007FA12E986720 18 stub<16835> AllocateTemporaryEntryPoints +00007FA12E986738 30 stub<16836> AllocateTemporaryEntryPoints +00007FA12E986768 18 stub<16837> AllocateTemporaryEntryPoints +00007FA12E986780 30 stub<16838> AllocateTemporaryEntryPoints +00007FA12E9867B0 150 stub<16839> AllocateTemporaryEntryPoints +00007FA12E986900 18 stub<16840> AllocateTemporaryEntryPoints +00007FA12E986918 18 stub<16841> AllocateTemporaryEntryPoints +00007FA12E986930 18 stub<16842> AllocateTemporaryEntryPoints +00007FA12E986948 30 stub<16843> AllocateTemporaryEntryPoints +00007FA127807FD0 18 stub<16844> GenerateResolveStub +00007FA1277CAAA0 20 stub<16845> GenerateDispatchStub +00007FA12E6712E0 18 stub<16846> GenerateLookupStub +00007FA127808040 18 stub<16847> GenerateResolveStub +00007FA1277CAAC0 20 stub<16848> GenerateDispatchStub +00007FA12E986978 18 stub<16849> AllocateTemporaryEntryPoints +00007FA12E671300 18 stub<16850> GenerateLookupStub +00007FA12E986990 18 stub<16851> AllocateTemporaryEntryPoints +00007FA12E9869A8 18 stub<16852> AllocateTemporaryEntryPoints +00007FA12E9869C0 30 stub<16853> AllocateTemporaryEntryPoints +00007FA12E9869F0 18 stub<16854> AllocateTemporaryEntryPoints +00007FA12E986A38 18 stub<16855> AllocateTemporaryEntryPoints +00007FA12E986A50 d8 stub<16856> AllocateTemporaryEntryPoints +00007FA1278080B0 18 stub<16857> GenerateResolveStub +00007FA1277CAAE0 20 stub<16858> GenerateDispatchStub +00007FA12E671320 18 stub<16859> GenerateLookupStub +00007FA127808120 18 stub<16860> GenerateResolveStub +00007FA1277CAB00 20 stub<16861> GenerateDispatchStub +00007FA12E986B40 18 stub<16862> AllocateTemporaryEntryPoints +00007FA12E986B58 210 stub<16863> AllocateTemporaryEntryPoints +00007FA12E986D68 30 stub<16864> AllocateTemporaryEntryPoints +00007FA12E986D98 48 stub<16865> AllocateTemporaryEntryPoints +00007FA12E986DE0 198 stub<16866> AllocateTemporaryEntryPoints +00007FA12E988000 a8 stub<16867> AllocateTemporaryEntryPoints +00007FA12E9880A8 78 stub<16868> AllocateTemporaryEntryPoints +00007FA12E988120 18 stub<16869> AllocateTemporaryEntryPoints +00007FA12E988138 60 stub<16870> AllocateTemporaryEntryPoints +00007FA12E988198 18 stub<16871> AllocateTemporaryEntryPoints +00007FA12E9881B0 18 stub<16872> AllocateTemporaryEntryPoints +00007FA12E9881C8 60 stub<16873> AllocateTemporaryEntryPoints +00007FA12E988228 18 stub<16874> AllocateTemporaryEntryPoints +00007FA12E988240 90 stub<16875> AllocateTemporaryEntryPoints +00007FA12E9882D0 90 stub<16876> AllocateTemporaryEntryPoints +00007FA12E988360 18 stub<16877> AllocateTemporaryEntryPoints +00007FA12E988378 18 stub<16878> AllocateTemporaryEntryPoints +00007FA12E988390 18 stub<16879> AllocateTemporaryEntryPoints +00007FA12E9883A8 18 stub<16880> AllocateTemporaryEntryPoints +00007FA12E9883C0 18 stub<16881> AllocateTemporaryEntryPoints +00007FA12E9883D8 18 stub<16882> AllocateTemporaryEntryPoints +00007FA12E9883F0 18 stub<16883> AllocateTemporaryEntryPoints +00007FA128668320 32 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method123(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object[])[Optimized] +00007FA12E988408 30 stub<16884> AllocateTemporaryEntryPoints +00007FA12E988438 30 stub<16885> AllocateTemporaryEntryPoints +00007FA12E988468 18 stub<16886> AllocateTemporaryEntryPoints +00007FA12E988480 48 stub<16887> AllocateTemporaryEntryPoints +00007FA12E9884C8 60 stub<16888> AllocateTemporaryEntryPoints +00007FA12E988528 18 stub<16889> AllocateTemporaryEntryPoints +00007FA12E988540 18 stub<16890> AllocateTemporaryEntryPoints +00007FA12E988558 18 stub<16891> AllocateTemporaryEntryPoints +00007FA12E988570 90 stub<16892> AllocateTemporaryEntryPoints +00007FA12E988600 18 stub<16893> AllocateTemporaryEntryPoints +00007FA12E988618 18 stub<16894> AllocateTemporaryEntryPoints +00007FA12E988630 120 stub<16895> AllocateTemporaryEntryPoints +00007FA12E988750 90 stub<16896> AllocateTemporaryEntryPoints +00007FA12E9887E0 90 stub<16897> AllocateTemporaryEntryPoints +00007FA12E988870 18 stub<16898> AllocateTemporaryEntryPoints +00007FA12E988888 18 stub<16899> AllocateTemporaryEntryPoints +00007FA12E9888A0 18 stub<16900> AllocateTemporaryEntryPoints +00007FA12E9888B8 18 stub<16901> AllocateTemporaryEntryPoints +00007FA12E9888D0 18 stub<16902> AllocateTemporaryEntryPoints +00007FA12E9888E8 5e8 stub<16903> AllocateTemporaryEntryPoints +00007FA1286683B0 8c object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method124(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,System.IServiceProvider /* MT: 0x00007FA12B194C30 */,object[])[Optimized] +00007FA12E988ED0 30 stub<16904> AllocateTemporaryEntryPoints +00007FA12E988F00 18 stub<16905> AllocateTemporaryEntryPoints +00007FA12E988F18 18 stub<16906> AllocateTemporaryEntryPoints +00007FA12E988F30 18 stub<16907> AllocateTemporaryEntryPoints +00007FA12E988F48 90 stub<16908> AllocateTemporaryEntryPoints +00007FA12E98A000 30 stub<16909> AllocateTemporaryEntryPoints +00007FA12E98A030 30 stub<16910> AllocateTemporaryEntryPoints +00007FA12E98A060 48 stub<16911> AllocateTemporaryEntryPoints +00007FA12E98A0A8 48 stub<16912> AllocateTemporaryEntryPoints +00007FA12E98A0F0 48 stub<16913> AllocateTemporaryEntryPoints +00007FA12E98A138 18 stub<16914> AllocateTemporaryEntryPoints +00007FA12E98A150 18 stub<16915> AllocateTemporaryEntryPoints +00007FA12E98A168 30 stub<16916> AllocateTemporaryEntryPoints +00007FA12E98A198 30 stub<16917> AllocateTemporaryEntryPoints +00007FA12E98A1C8 18 stub<16918> AllocateTemporaryEntryPoints +00007FA12E98A1E0 18 stub<16919> AllocateTemporaryEntryPoints +00007FA12E98A1F8 18 stub<16920> AllocateTemporaryEntryPoints +00007FA12E98A210 18 stub<16921> AllocateTemporaryEntryPoints +00007FA12E98A228 108 stub<16922> AllocateTemporaryEntryPoints +00007FA12E98A330 a8 stub<16923> AllocateTemporaryEntryPoints +00007FA12E98A3D8 a8 stub<16924> AllocateTemporaryEntryPoints +00007FA12E98A480 18 stub<16925> AllocateTemporaryEntryPoints +00007FA12E98A498 18 stub<16926> AllocateTemporaryEntryPoints +00007FA12E98A4B0 48 stub<16927> AllocateTemporaryEntryPoints +00007FA12E671340 18 stub<16928> GenerateLookupStub +00007FA12E98A4F8 18 stub<16929> AllocateTemporaryEntryPoints +00007FA1286684A0 1a object [System.Private.CoreLib] dynamicClass::InvokeStub_AttributeUsageAttribute.set_AllowMultiple(object,object,native int*)[Optimized] +00007FA128668520 1a object [System.Private.CoreLib] dynamicClass::InvokeStub_AttributeUsageAttribute.set_Inherited(object,object,native int*)[Optimized] +00007FA127808190 18 stub<16930> GenerateResolveStub +00007FA1277CAB20 20 stub<16931> GenerateDispatchStub +00007FA12E98A528 18 stub<16932> AllocateTemporaryEntryPoints +00007FA12E671360 18 stub<16933> GenerateLookupStub +00007FA127808200 18 stub<16934> GenerateResolveStub +00007FA1277CAB40 20 stub<16935> GenerateDispatchStub +00007FA12E98A540 18 stub<16936> AllocateTemporaryEntryPoints +00007FA12E671380 18 stub<16937> GenerateLookupStub +00007FA127808270 18 stub<16938> GenerateResolveStub +00007FA1277CAB60 20 stub<16939> GenerateDispatchStub +00007FA12E98A558 30 stub<16940> AllocateTemporaryEntryPoints +00007FA12E98A588 48 stub<16941> AllocateTemporaryEntryPoints +00007FA12E98A5D0 18 stub<16942> AllocateTemporaryEntryPoints +00007FA12E98A5E8 60 stub<16943> AllocateTemporaryEntryPoints +00007FA12E98A648 30 stub<16944> AllocateTemporaryEntryPoints +00007FA12E98A678 a8 stub<16945> AllocateTemporaryEntryPoints +00007FA1278082E0 18 stub<16946> GenerateResolveStub +00007FA1277CAB80 20 stub<16947> GenerateDispatchStub +00007FA12E98A720 30 stub<16948> AllocateTemporaryEntryPoints +00007FA12E98A750 60 stub<16949> AllocateTemporaryEntryPoints +00007FA12E98A7B0 60 stub<16950> AllocateTemporaryEntryPoints +00007FA12E98A810 60 stub<16951> AllocateTemporaryEntryPoints +00007FA12E98A870 60 stub<16952> AllocateTemporaryEntryPoints +00007FA12E98A8D0 60 stub<16953> AllocateTemporaryEntryPoints +00007FA12E98A930 60 stub<16954> AllocateTemporaryEntryPoints +00007FA12E98A990 60 stub<16955> AllocateTemporaryEntryPoints +00007FA12E98A9F0 60 stub<16956> AllocateTemporaryEntryPoints +00007FA12E98AA50 78 stub<16957> AllocateTemporaryEntryPoints +00007FA12E98AAC8 60 stub<16958> AllocateTemporaryEntryPoints +00007FA12E98AB28 18 stub<16959> AllocateTemporaryEntryPoints +00007FA12E98AB40 18 stub<16960> AllocateTemporaryEntryPoints +00007FA12E58E4B0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E58E4F0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E98C000 600 stub<16961> AllocateTemporaryEntryPoints +00007FA12E98C600 90 stub<16962> AllocateTemporaryEntryPoints +00007FA12E98C690 18 stub<16963> AllocateTemporaryEntryPoints +00007FA12E58E5F0 471 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnMvcBeforeAction(object)[QuickJitted] +00007FA12E98C6A8 a8 stub<16964> AllocateTemporaryEntryPoints +00007FA12E98C750 18 stub<16965> AllocateTemporaryEntryPoints +00007FA12E58EA80 8f bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[QuickJitted] +00007FA12E58EB30 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+BeforeActionStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12E58ECD0 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+BeforeActionStruct]::.cctor()[QuickJitted] +00007FA12E98C768 138 stub<16966> AllocateTemporaryEntryPoints +00007FA12E98C8A0 60 stub<16967> AllocateTemporaryEntryPoints +00007FA12E58ED50 77 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA1286685A0 6a Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/BeforeActionStruct /* MT: 0x00007FA12E9B64B0 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12E98C900 150 stub<16968> AllocateTemporaryEntryPoints +00007FA12E98CA50 d8 stub<16969> AllocateTemporaryEntryPoints +00007FA12E6713A0 18 stub<16970> GenerateLookupStub +00007FA12E98CB28 30 stub<16971> AllocateTemporaryEntryPoints +00007FA12E98CB58 18 stub<16972> AllocateTemporaryEntryPoints +00007FA12E6713C0 18 stub<16973> GenerateLookupStub +00007FA12E98CB70 18 stub<16974> AllocateTemporaryEntryPoints +00007FA12E98CB88 240 stub<16975> AllocateTemporaryEntryPoints +00007FA12E98CDC8 18 stub<16976> AllocateTemporaryEntryPoints +00007FA12E98CDE0 18 stub<16977> AllocateTemporaryEntryPoints +00007FA12E98CDF8 18 stub<16978> AllocateTemporaryEntryPoints +00007FA12E58EDE0 9a9 class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::StartMvcCoreSpan(class Datadog.Trace.Tracer,class Datadog.Trace.Span,valuetype Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/BeforeActionStruct,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest)[QuickJitted] +00007FA12E58F7C0 1f instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::.ctor()[QuickJitted] +00007FA127808350 18 stub<16979> GenerateResolveStub +00007FA1277CABA0 20 stub<16980> GenerateDispatchStub +00007FA12E58F800 1c instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_IsUsingEndpointRouting()[QuickJitted] +00007FA12E58F830 1c instance string [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_Route()[QuickJitted] +00007FA12E58F860 1c instance string [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_ResourceName()[QuickJitted] +00007FA12E58F890 2d instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::set_AspNetCoreAction(string)[QuickJitted] +00007FA12E58F8E0 2d instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::set_AspNetCoreController(string)[QuickJitted] +00007FA12E58F930 2d instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::set_AspNetCoreArea(string)[QuickJitted] +00007FA12E58F980 2d instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::set_AspNetCorePage(string)[QuickJitted] +00007FA12E6713E0 18 stub<16981> GenerateLookupStub +00007FA12E671400 18 stub<16982> GenerateLookupStub +00007FA12E58F9D0 2c7 void [Datadog.Trace] Datadog.Trace.AppSec.Coordinator.SecurityCoordinatorHelpers::CheckPathParamsFromAction(class Datadog.Trace.AppSec.Security,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class Datadog.Trace.Span,class [System.Runtime]System.Collections.Generic.IList`1,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[QuickJitted] +00007FA12E98E000 2e8 stub<16983> AllocateTemporaryEntryPoints +00007FA12E98E2E8 90 stub<16984> AllocateTemporaryEntryPoints +00007FA12E98E378 18 stub<16985> AllocateTemporaryEntryPoints +00007FA12E98E390 18 stub<16986> AllocateTemporaryEntryPoints +00007FA12E98E3A8 18 stub<16987> AllocateTemporaryEntryPoints +00007FA12E98E3C0 18 stub<16988> AllocateTemporaryEntryPoints +00007FA12E98E3D8 18 stub<16989> AllocateTemporaryEntryPoints +00007FA12E98E3F0 18 stub<16990> AllocateTemporaryEntryPoints +00007FA12E98E408 18 stub<16991> AllocateTemporaryEntryPoints +00007FA12E98E420 150 stub<16992> AllocateTemporaryEntryPoints +00007FA1277CABC0 20 stub<16993> GenerateDispatchStub +00007FA1278083C0 18 stub<16994> GenerateResolveStub +00007FA1277CABE0 20 stub<16995> GenerateDispatchStub +00007FA12E98E570 90 stub<16996> AllocateTemporaryEntryPoints +00007FA12E98E600 18 stub<16997> AllocateTemporaryEntryPoints +00007FA12E98E618 18 stub<16998> AllocateTemporaryEntryPoints +00007FA12E98E630 18 stub<16999> AllocateTemporaryEntryPoints +00007FA12E98E648 18 stub<17000> AllocateTemporaryEntryPoints +00007FA12E98E660 18 stub<17001> AllocateTemporaryEntryPoints +00007FA12E98E678 18 stub<17002> AllocateTemporaryEntryPoints +00007FA12E98E690 48 stub<17003> AllocateTemporaryEntryPoints +00007FA12E98E6D8 60 stub<17004> AllocateTemporaryEntryPoints +00007FA12E98E738 60 stub<17005> AllocateTemporaryEntryPoints +00007FA12E98E798 48 stub<17006> AllocateTemporaryEntryPoints +00007FA12E58FCC0 1b6 class [System.Runtime]System.Action`4 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12E58FE90 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.__Canon,System.Double]::.ctor()[QuickJitted] +00007FA12E98E7E0 138 stub<17007> AllocateTemporaryEntryPoints +00007FA12E98E918 18 stub<17008> AllocateTemporaryEntryPoints +00007FA12E98E930 18 stub<17009> AllocateTemporaryEntryPoints +00007FA12E98E948 18 stub<17010> AllocateTemporaryEntryPoints +00007FA12E98E960 18 stub<17011> AllocateTemporaryEntryPoints +00007FA12E98E978 48 stub<17012> AllocateTemporaryEntryPoints +00007FA12E98E9C0 60 stub<17013> AllocateTemporaryEntryPoints +00007FA12E98EA20 18 stub<17014> AllocateTemporaryEntryPoints +00007FA12E5902D0 95 instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`4 /* MT: 0x00007FA12E9BA210 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E98EA38 18 stub<17015> AllocateTemporaryEntryPoints +00007FA12E590380 106 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E98EA50 18 stub<17016> AllocateTemporaryEntryPoints +00007FA12E98EA68 18 stub<17017> AllocateTemporaryEntryPoints +00007FA12E98EA80 18 stub<17018> AllocateTemporaryEntryPoints +00007FA12E5904A0 95 instance void [Microsoft.Extensions.Logging] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`4 /* MT: 0x00007FA12E9BA210 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E98EA98 18 stub<17019> AllocateTemporaryEntryPoints +00007FA12E98EAB0 18 stub<17020> AllocateTemporaryEntryPoints +00007FA12E590550 1ac instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E98EAC8 18 stub<17021> AllocateTemporaryEntryPoints +00007FA12E590720 186 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12E98EAE0 18 stub<17022> AllocateTemporaryEntryPoints +00007FA12E98EAF8 18 stub<17023> AllocateTemporaryEntryPoints +00007FA12E98EB10 18 stub<17024> AllocateTemporaryEntryPoints +00007FA12E5908D0 95 instance void [Microsoft.Extensions.Logging.Console] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`4 /* MT: 0x00007FA12E9BA210 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E98EB28 a8 stub<17025> AllocateTemporaryEntryPoints +00007FA12E98EBD0 18 stub<17026> AllocateTemporaryEntryPoints +00007FA12E98EBE8 18 stub<17027> AllocateTemporaryEntryPoints +00007FA12E590980 3b2 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E590D50 99 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E98EC00 18 stub<17028> AllocateTemporaryEntryPoints +00007FA12E98EC18 18 stub<17029> AllocateTemporaryEntryPoints +00007FA12E98EC30 18 stub<17030> AllocateTemporaryEntryPoints +00007FA12E98EC48 18 stub<17031> AllocateTemporaryEntryPoints +00007FA12E98EC60 18 stub<17032> AllocateTemporaryEntryPoints +00007FA12E590E00 3f4 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12E591220 20 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_Formatter()[QuickJitted] +00007FA12E591260 45 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_State()[QuickJitted] +00007FA12E5912C0 20 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_Exception()[QuickJitted] +00007FA12E98EC78 18 stub<17033> AllocateTemporaryEntryPoints +00007FA12E591300 1f instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_LogLevel()[QuickJitted] +00007FA12E98EC90 18 stub<17034> AllocateTemporaryEntryPoints +00007FA12E591340 3fd instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12E591770 37 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_EventId()[QuickJitted] +00007FA12E5917C0 1f instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_Category()[QuickJitted] +00007FA12E98ECA8 18 stub<17035> AllocateTemporaryEntryPoints +00007FA12E98ECC0 18 stub<17036> AllocateTemporaryEntryPoints +00007FA12E98ECD8 18 stub<17037> AllocateTemporaryEntryPoints +00007FA12E591800 95 instance void [Microsoft.Extensions.Logging.Debug] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`4 /* MT: 0x00007FA12E9BA210 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E5918B0 250 instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E98ECF0 18 stub<17038> AllocateTemporaryEntryPoints +00007FA12E98ED08 18 stub<17039> AllocateTemporaryEntryPoints +00007FA12E98ED20 18 stub<17040> AllocateTemporaryEntryPoints +00007FA12E591B20 95 instance void [Microsoft.Extensions.Logging.EventSource] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`4 /* MT: 0x00007FA12E9BA210 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E591BD0 5ee instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E98ED38 18 stub<17041> AllocateTemporaryEntryPoints +00007FA12E98ED50 18 stub<17042> AllocateTemporaryEntryPoints +00007FA12E98ED68 18 stub<17043> AllocateTemporaryEntryPoints +00007FA12E98ED80 18 stub<17044> AllocateTemporaryEntryPoints +00007FA12E98ED98 18 stub<17045> AllocateTemporaryEntryPoints +00007FA12E98EDB0 18 stub<17046> AllocateTemporaryEntryPoints +00007FA12E98EDC8 18 stub<17047> AllocateTemporaryEntryPoints +00007FA12E98EDE0 18 stub<17048> AllocateTemporaryEntryPoints +00007FA12E98EDF8 60 stub<17049> AllocateTemporaryEntryPoints +00007FA12E98EE58 108 stub<17050> AllocateTemporaryEntryPoints +00007FA12E98EF60 18 stub<17051> AllocateTemporaryEntryPoints +00007FA12E98EF78 60 stub<17052> AllocateTemporaryEntryPoints +00007FA12E98EFD8 18 stub<17053> AllocateTemporaryEntryPoints +00007FA12E9C0000 48 stub<17054> AllocateTemporaryEntryPoints +00007FA12E9C0048 18 stub<17055> AllocateTemporaryEntryPoints +00007FA12E9C0060 60 stub<17056> AllocateTemporaryEntryPoints +00007FA12E9C00C0 48 stub<17057> AllocateTemporaryEntryPoints +00007FA12E9C0108 48 stub<17058> AllocateTemporaryEntryPoints +00007FA12E9C0150 90 stub<17059> AllocateTemporaryEntryPoints +00007FA12E9C01E0 d8 stub<17060> AllocateTemporaryEntryPoints +00007FA127808430 18 stub<17061> GenerateResolveStub +00007FA1277CAC00 20 stub<17062> GenerateDispatchStub +00007FA12E9C02B8 48 stub<17063> AllocateTemporaryEntryPoints +00007FA1278084A0 18 stub<17064> GenerateResolveStub +00007FA1277CAC20 20 stub<17065> GenerateDispatchStub +00007FA127808510 18 stub<17066> GenerateResolveStub +00007FA1277CAC40 20 stub<17067> GenerateDispatchStub +00007FA12E9C0300 90 stub<17068> AllocateTemporaryEntryPoints +00007FA12E9C0390 18 stub<17069> AllocateTemporaryEntryPoints +00007FA12E9C03A8 78 stub<17070> AllocateTemporaryEntryPoints +00007FA12E9C0420 18 stub<17071> AllocateTemporaryEntryPoints +00007FA12E9C0438 120 stub<17072> AllocateTemporaryEntryPoints +00007FA12E9C0558 18 stub<17073> AllocateTemporaryEntryPoints +00007FA12E9C0570 60 stub<17074> AllocateTemporaryEntryPoints +00007FA12E9C05D0 f0 stub<17075> AllocateTemporaryEntryPoints +00007FA127808580 18 stub<17076> GenerateResolveStub +00007FA1277CAC60 20 stub<17077> GenerateDispatchStub +00007FA12E5921E0 3f instance class BuggyBits.Models.DataLayer [Samples.BuggyBits] BuggyBits.Startup+<>c::b__4_0(class [System.ComponentModel]System.IServiceProvider)[QuickJitted] +00007FA12E592240 85 instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer::.ctor()[QuickJitted] +00007FA12E9C06C0 f0 stub<17078> AllocateTemporaryEntryPoints +00007FA12E9C07B0 18 stub<17079> AllocateTemporaryEntryPoints +00007FA12E9C07C8 1c8 stub<17080> AllocateTemporaryEntryPoints +00007FA12E9C0990 90 stub<17081> AllocateTemporaryEntryPoints +00007FA12784B7B0 11 stub<17082> GenerateVTableCallStub +00007FA12E9C0A20 18 stub<17083> AllocateTemporaryEntryPoints +00007FA12E9C0A50 90 stub<17084> AllocateTemporaryEntryPoints +00007FA12E9C0AE0 60 stub<17085> AllocateTemporaryEntryPoints +00007FA12E9C0B40 18 stub<17086> AllocateTemporaryEntryPoints +00007FA12E9C0B58 108 stub<17087> AllocateTemporaryEntryPoints +00007FA12E9C0C60 138 stub<17088> AllocateTemporaryEntryPoints +00007FA12E9C0D98 90 stub<17089> AllocateTemporaryEntryPoints +00007FA12E9C0E28 60 stub<17090> AllocateTemporaryEntryPoints +00007FA12E9C0E88 18 stub<17091> AllocateTemporaryEntryPoints +00007FA12E9C0EA0 18 stub<17092> AllocateTemporaryEntryPoints +00007FA12E5922E0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E592320 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E9C0EB8 18 stub<17093> AllocateTemporaryEntryPoints +00007FA12E9C0ED0 18 stub<17094> AllocateTemporaryEntryPoints +00007FA12E9C0EE8 90 stub<17095> AllocateTemporaryEntryPoints +00007FA12E9C2000 a8 stub<17096> AllocateTemporaryEntryPoints +00007FA12E9C20A8 a8 stub<17097> AllocateTemporaryEntryPoints +00007FA12E9C2150 18 stub<17098> AllocateTemporaryEntryPoints +00007FA12E9C2168 18 stub<17099> AllocateTemporaryEntryPoints +00007FA12E9C2180 18 stub<17100> AllocateTemporaryEntryPoints +00007FA12E9C2198 18 stub<17101> AllocateTemporaryEntryPoints +00007FA12E9C21B0 18 stub<17102> AllocateTemporaryEntryPoints +00007FA12E9C21C8 60 stub<17103> AllocateTemporaryEntryPoints +00007FA12E9C2228 48 stub<17104> AllocateTemporaryEntryPoints +00007FA12E592420 1b6 class [System.Runtime]System.Action`4 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12E5925F0 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::.ctor()[QuickJitted] +00007FA12E9C2270 60 stub<17105> AllocateTemporaryEntryPoints +00007FA12E9C22D0 48 stub<17106> AllocateTemporaryEntryPoints +00007FA12E592630 1b6 class [System.Runtime]System.Action`5 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage::Define(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,string,class Microsoft.Extensions.Logging.LogDefineOptions)[QuickJitted] +00007FA12E592800 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass14_0`3[System.__Canon,System.__Canon,System.Double]::.ctor()[QuickJitted] +00007FA12E9C2318 120 stub<17107> AllocateTemporaryEntryPoints +00007FA12E9C2438 120 stub<17108> AllocateTemporaryEntryPoints +00007FA12E9C2558 120 stub<17109> AllocateTemporaryEntryPoints +00007FA12E9C2678 60 stub<17110> AllocateTemporaryEntryPoints +00007FA12E9C26D8 18 stub<17111> AllocateTemporaryEntryPoints +00007FA12E9C26F0 18 stub<17112> AllocateTemporaryEntryPoints +00007FA12E9C2708 18 stub<17113> AllocateTemporaryEntryPoints +00007FA12E592840 22a instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,!1,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12E592A90 4c instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::.ctor(class Microsoft.Extensions.Logging.LogValuesFormatter,!0,!1)[QuickJitted] +00007FA12E9C2720 18 stub<17114> AllocateTemporaryEntryPoints +00007FA12E9C2738 18 stub<17115> AllocateTemporaryEntryPoints +00007FA12E9C2750 18 stub<17116> AllocateTemporaryEntryPoints +00007FA12E9C2768 48 stub<17117> AllocateTemporaryEntryPoints +00007FA12E9C27B0 48 stub<17118> AllocateTemporaryEntryPoints +00007FA12E9C27F8 48 stub<17119> AllocateTemporaryEntryPoints +00007FA12E9C2840 60 stub<17120> AllocateTemporaryEntryPoints +00007FA12E592AF0 e9 void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::.cctor()[QuickJitted] +00007FA12E592BF0 4b void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2+<>c[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::.cctor()[QuickJitted] +00007FA12E592C50 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2+<>c[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::.ctor()[QuickJitted] +00007FA12E9C28A0 18 stub<17121> AllocateTemporaryEntryPoints +00007FA12E592C90 6f instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12E9D1A60 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E592D20 d7 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E9C28B8 18 stub<17122> AllocateTemporaryEntryPoints +00007FA12E9C28D0 18 stub<17123> AllocateTemporaryEntryPoints +00007FA12E9C28E8 18 stub<17124> AllocateTemporaryEntryPoints +00007FA12E592E10 6f instance void [Microsoft.Extensions.Logging] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12E9D1A60 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E9C2900 18 stub<17125> AllocateTemporaryEntryPoints +00007FA12E9C2918 18 stub<17126> AllocateTemporaryEntryPoints +00007FA12E592EA0 1ac instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E9C2930 18 stub<17127> AllocateTemporaryEntryPoints +00007FA12E593070 160 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12E9C2948 18 stub<17128> AllocateTemporaryEntryPoints +00007FA12E9C2960 18 stub<17129> AllocateTemporaryEntryPoints +00007FA12E9C2978 18 stub<17130> AllocateTemporaryEntryPoints +00007FA12E593200 6f instance void [Microsoft.Extensions.Logging.Console] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12E9D1A60 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E9C2990 a8 stub<17131> AllocateTemporaryEntryPoints +00007FA12E9C2A38 18 stub<17132> AllocateTemporaryEntryPoints +00007FA12E9C2A50 18 stub<17133> AllocateTemporaryEntryPoints +00007FA12E593290 396 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E593650 8c instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E9C2A68 18 stub<17134> AllocateTemporaryEntryPoints +00007FA12E9C2A80 18 stub<17135> AllocateTemporaryEntryPoints +00007FA12E9C2A98 18 stub<17136> AllocateTemporaryEntryPoints +00007FA12E9C2AB0 18 stub<17137> AllocateTemporaryEntryPoints +00007FA12E9C2AC8 18 stub<17138> AllocateTemporaryEntryPoints +00007FA12E5936F0 3c6 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12E593AE0 20 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_Formatter()[QuickJitted] +00007FA12E593B20 38 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_State()[QuickJitted] +00007FA12E593B70 20 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_Exception()[QuickJitted] +00007FA12E9C2AE0 18 stub<17139> AllocateTemporaryEntryPoints +00007FA12E593BB0 78 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2+<>c[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::<.cctor>b__13_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`2,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12E9C2AF8 18 stub<17140> AllocateTemporaryEntryPoints +00007FA12E593C40 75 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::ToString()[QuickJitted] +00007FA12E593CD0 1f instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_LogLevel()[QuickJitted] +00007FA12E9C2B10 18 stub<17141> AllocateTemporaryEntryPoints +00007FA12E593D10 3fd instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12E594140 37 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_EventId()[QuickJitted] +00007FA12E594190 1f instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_Category()[QuickJitted] +00007FA12E9C2B28 18 stub<17142> AllocateTemporaryEntryPoints +00007FA12E9C2B40 18 stub<17143> AllocateTemporaryEntryPoints +00007FA12E9C2B58 18 stub<17144> AllocateTemporaryEntryPoints +00007FA12E5941D0 6f instance void [Microsoft.Extensions.Logging.Debug] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12E9D1A60 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E594260 22a instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E9C2B70 18 stub<17145> AllocateTemporaryEntryPoints +00007FA12E9C2B88 18 stub<17146> AllocateTemporaryEntryPoints +00007FA12E9C2BA0 18 stub<17147> AllocateTemporaryEntryPoints +00007FA12E5944B0 6f instance void [Microsoft.Extensions.Logging.EventSource] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12E9D1A60 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E594540 5a2 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E9C2BB8 18 stub<17148> AllocateTemporaryEntryPoints +00007FA12E594B00 386 instance class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult [Samples.BuggyBits] BuggyBits.Controllers.ProductsController::Index()[QuickJitted] +00007FA12E594EC0 ae instance class [System.Collections]System.Collections.Generic.List`1 [Samples.BuggyBits] BuggyBits.Models.DataLayer::GetAllProducts()[QuickJitted] +00007FA12E594F90 1ac instance class BuggyBits.Models.Product [Samples.BuggyBits] BuggyBits.Models.DataLayer::GetProduct(int32)[QuickJitted] +00007FA12E595160 1f instance void [Samples.BuggyBits] BuggyBits.Models.Product::.ctor()[QuickJitted] +00007FA12E5951A0 2a instance void [Samples.BuggyBits] BuggyBits.Models.Product::set_ProductName(string)[QuickJitted] +00007FA12E5951E0 2a instance void [Samples.BuggyBits] BuggyBits.Models.Product::set_Description(string)[QuickJitted] +00007FA12E595220 2a instance void [Samples.BuggyBits] BuggyBits.Models.Product::set_Price(string)[QuickJitted] +00007FA12E595260 8f instance class [System.Collections]System.Collections.Generic.List`1 [Samples.BuggyBits] BuggyBits.Models.DataLayer::GetAllProducts()[OptimizedTier1OSR] +00007FA12E595320 1c instance string [Samples.BuggyBits] BuggyBits.Models.Product::get_ProductName()[QuickJitted] +00007FA12E595350 1c instance string [Samples.BuggyBits] BuggyBits.Models.Product::get_Description()[QuickJitted] +00007FA12E595380 1c instance string [Samples.BuggyBits] BuggyBits.Models.Product::get_Price()[QuickJitted] +00007FA12E9C2BD0 1e0 stub<17149> AllocateTemporaryEntryPoints +00007FA12E9C2DB0 30 stub<17150> AllocateTemporaryEntryPoints +00007FA12E9C2DE0 1e0 stub<17151> AllocateTemporaryEntryPoints +00007FA12E9C2FC0 30 stub<17152> AllocateTemporaryEntryPoints +00007FA12E9C4000 18 stub<17153> AllocateTemporaryEntryPoints +00007FA1278085F0 18 stub<17154> GenerateResolveStub +00007FA1277CAC80 20 stub<17155> GenerateDispatchStub +00007FA12EA4C558 18 stub<17156> AllocateTemporaryEntryPoints +00007FA12EA4C570 18 stub<17157> AllocateTemporaryEntryPoints +00007FA12EA4C588 18 stub<17158> AllocateTemporaryEntryPoints +00007FA12E5953C0 10d void [System.Private.CoreLib] System.Buffer::Memmove(uint8&,uint8&,native uint)[OptimizedTier1] +00007FA12EA4C5A0 18 stub<17159> AllocateTemporaryEntryPoints +00007FA12E5954F0 d1 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::AppendLiteral(string)[OptimizedTier1] +00007FA12E5955E0 60 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::AppendStringDirect(string)[OptimizedTier1] +00007FA12E595660 6b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::AppendFormatted(string)[OptimizedTier1] +00007FA12E5956F0 55 void [System.Private.CoreLib] System.String::FillStringChecked(string,int32,string)[OptimizedTier1] +00007FA12E595760 bc void [System.Private.CoreLib] System.Buffer::_Memmove(uint8&,uint8&,native uint)[OptimizedTier1] +00007FA12EA4C5B8 18 stub<17160> AllocateTemporaryEntryPoints +00007FA12EA4C5D0 18 stub<17161> AllocateTemporaryEntryPoints +00007FA12EA4C5E8 60 stub<17162> AllocateTemporaryEntryPoints +00007FA12EA4C648 60 stub<17163> AllocateTemporaryEntryPoints +00007FA12EA4C6A8 60 stub<17164> AllocateTemporaryEntryPoints +00007FA12EA4C708 78 stub<17165> AllocateTemporaryEntryPoints +00007FA12E595840 378 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[System.Char]::Return(!0[],bool)[OptimizedTier1] +00007FA12E595BE0 140 string [System.Private.CoreLib] System.String::Concat(string,string)[OptimizedTier1] +00007FA12E595D40 6a instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12E595DD0 5 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.__Canon]::get_Current()[OptimizedTier1] +00007FA12E595DF0 72 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::.ctor(int32,int32)[OptimizedTier1] +00007FA12EA4C780 18 stub<17166> AllocateTemporaryEntryPoints +00007FA12EA4C798 18 stub<17167> AllocateTemporaryEntryPoints +00007FA12EA4C7B0 18 stub<17168> AllocateTemporaryEntryPoints +00007FA12EA4C7C8 18 stub<17169> AllocateTemporaryEntryPoints +00007FA12EA4C7E0 18 stub<17170> AllocateTemporaryEntryPoints +00007FA12EA4C7F8 18 stub<17171> AllocateTemporaryEntryPoints +00007FA12EA4C810 18 stub<17172> AllocateTemporaryEntryPoints +00007FA12EA4C828 18 stub<17173> AllocateTemporaryEntryPoints +00007FA12E595E80 3a4 instance !0[] [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[System.Char]::Rent(int32)[OptimizedTier1] +00007FA12E596250 5 instance string [Samples.BuggyBits] BuggyBits.Models.Product::get_ProductName()[OptimizedTier1] +00007FA12E596270 5 instance string [Samples.BuggyBits] BuggyBits.Models.Product::get_Description()[OptimizedTier1] +00007FA12E596290 5 instance string [Samples.BuggyBits] BuggyBits.Models.Product::get_Price()[OptimizedTier1] +00007FA12E5962B0 67 instance string [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::ToStringAndClear()[OptimizedTier1] +00007FA12E596330 5a string [System.Private.CoreLib] System.String::Ctor(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EA4C840 138 stub<17174> AllocateTemporaryEntryPoints +00007FA12EA4C978 18 stub<17175> AllocateTemporaryEntryPoints +00007FA12EA4C990 180 stub<17176> AllocateTemporaryEntryPoints +00007FA12EA4CB10 18 stub<17177> AllocateTemporaryEntryPoints +00007FA12EA4CB28 60 stub<17178> AllocateTemporaryEntryPoints +00007FA12EA4CB88 18 stub<17179> AllocateTemporaryEntryPoints +00007FA12EA4CBA0 18 stub<17180> AllocateTemporaryEntryPoints +00007FA12E5963C0 14e instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2+Enumerator[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12EA4CBB8 18 stub<17181> AllocateTemporaryEntryPoints +00007FA12EA4CBD0 18 stub<17182> AllocateTemporaryEntryPoints +00007FA12E596540 da instance void [System.Private.CoreLib] System.Gen2GcCallback::Finalize()[OptimizedTier1] +00007FA12E596660 ea valuetype System.GCMemoryInfo [System.Private.CoreLib] System.GC::GetGCMemoryInfo(valuetype System.GCKind)[OptimizedTier1] +00007FA12E596770 2d void [System.Private.CoreLib] System.GC::ReRegisterForFinalize(object)[OptimizedTier1] +00007FA12E5967C0 1 instance void [System.Private.CoreLib] System.Runtime.ConstrainedExecution.CriticalFinalizerObject::Finalize()[OptimizedTier1] +00007FA12E5967E0 5f object [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::ChkCastClass(void*,object)[OptimizedTier1] +00007FA12E596860 51 valuetype System.Buffers.Utilities/MemoryPressure [System.Private.CoreLib] System.Buffers.Utilities::GetMemoryPressure()[OptimizedTier1] +00007FA12EA4CBE8 18 stub<17183> AllocateTemporaryEntryPoints +00007FA12EA4CC00 180 stub<17184> AllocateTemporaryEntryPoints +00007FA12EA4CD80 a8 stub<17185> AllocateTemporaryEntryPoints +00007FA12EA4CE28 18 stub<17186> AllocateTemporaryEntryPoints +00007FA12E5968E0 162 instance class System.Collections.Generic.IEnumerator`1> [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2[System.__Canon,System.__Canon]::System.Collections.Generic.IEnumerable>.GetEnumerator()[OptimizedTier1] +00007FA12E596A70 31 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2+Enumerator[System.__Canon,System.__Canon]::.ctor(class System.Runtime.CompilerServices.ConditionalWeakTable`2)[OptimizedTier1] +00007FA12EA4CE40 18 stub<17187> AllocateTemporaryEntryPoints +00007FA12EA4CE58 18 stub<17188> AllocateTemporaryEntryPoints +00007FA12EA4CE70 18 stub<17189> AllocateTemporaryEntryPoints +00007FA12EA4CE88 18 stub<17190> AllocateTemporaryEntryPoints +00007FA12EA4CEA0 18 stub<17191> AllocateTemporaryEntryPoints +00007FA12EA4CEB8 18 stub<17192> AllocateTemporaryEntryPoints +00007FA12EA4CED0 18 stub<17193> AllocateTemporaryEntryPoints +00007FA12E596AC0 a9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2+Enumerator[System.__Canon,System.__Canon]::Dispose()[OptimizedTier1] +00007FA12E596BA0 2d void [System.Private.CoreLib] System.GC::SuppressFinalize(object)[OptimizedTier1] +00007FA12E596BF0 d5 void [System.Private.CoreLib] System.Threading.LowLevelSpinWaiter::Wait(int32,int32,int32)[OptimizedTier1] +00007FA127808660 18 stub<17194> GenerateResolveStub +00007FA1277CACA0 20 stub<17195> GenerateDispatchStub +00007FA12EA4E000 120 stub<17196> AllocateTemporaryEntryPoints +00007FA12EA4E120 18 stub<17197> AllocateTemporaryEntryPoints +00007FA12EA4E138 18 stub<17198> AllocateTemporaryEntryPoints +00007FA12E596CF0 39 instance bool [System.Private.CoreLib] System.Threading.PortableThreadPool::OnGen2GCCallback()[OptimizedTier1] +00007FA12EA4E198 a8 stub<17199> AllocateTemporaryEntryPoints +00007FA12EA4E240 a8 stub<17200> AllocateTemporaryEntryPoints +00007FA12E596D50 2e instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+<>c[System.Int32]::b__13_0(object)[OptimizedTier1] +00007FA12E671420 18 stub<17201> GenerateLookupStub +00007FA12E671440 18 stub<17202> GenerateLookupStub +00007FA12EA4E2E8 18 stub<17203> AllocateTemporaryEntryPoints +00007FA12EA4E300 60 stub<17204> AllocateTemporaryEntryPoints +00007FA12EA4E360 18 stub<17205> AllocateTemporaryEntryPoints +00007FA12EA4E378 a8 stub<17206> AllocateTemporaryEntryPoints +00007FA12EA4E420 60 stub<17207> AllocateTemporaryEntryPoints +00007FA12EA4E480 18 stub<17208> AllocateTemporaryEntryPoints +00007FA12E596DA0 453 instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[System.Int32]::Trim()[OptimizedTier1] +00007FA12E597260 1e instance valuetype System.Collections.Generic.KeyValuePair`2 [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2+Enumerator[System.__Canon,System.__Canon]::get_Current()[OptimizedTier1] +00007FA12E5972A0 2e instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+<>c[System.Byte]::b__13_0(object)[OptimizedTier1] +00007FA12E671460 18 stub<17209> GenerateLookupStub +00007FA12E671480 18 stub<17210> GenerateLookupStub +00007FA12EA4E498 18 stub<17211> AllocateTemporaryEntryPoints +00007FA12EA4E4B0 60 stub<17212> AllocateTemporaryEntryPoints +00007FA12EA4E510 18 stub<17213> AllocateTemporaryEntryPoints +00007FA1277CACC0 20 stub<17214> GenerateDispatchStub +00007FA1277CACE0 20 stub<17215> GenerateDispatchStub +00007FA12E597300 4a6 instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[System.Byte]::Trim()[OptimizedTier1] +00007FA12E597810 2e instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+<>c[System.Char]::b__13_0(object)[OptimizedTier1] +00007FA12E6714A0 18 stub<17216> GenerateLookupStub +00007FA12E6714C0 18 stub<17217> GenerateLookupStub +00007FA12EA4E528 18 stub<17218> AllocateTemporaryEntryPoints +00007FA12EA4E540 18 stub<17219> AllocateTemporaryEntryPoints +00007FA12E597860 4a9 instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[System.Char]::Trim()[OptimizedTier1] +00007FA1277CAD00 20 stub<17220> GenerateDispatchStub +00007FA1277CAD20 20 stub<17221> GenerateDispatchStub +00007FA1277CAD40 20 stub<17222> GenerateDispatchStub +00007FA1277CAD60 20 stub<17223> GenerateDispatchStub +00007FA1278086D0 18 stub<17224> GenerateResolveStub +00007FA1277CAD80 20 stub<17225> GenerateDispatchStub +00007FA127808740 18 stub<17226> GenerateResolveStub +00007FA1277CADA0 20 stub<17227> GenerateDispatchStub +00007FA12E597D80 12b instance void [System.Private.CoreLib] System.Runtime.InteropServices.SafeHandle::InternalRelease(bool)[OptimizedTier1] +00007FA12E597EE0 91 instance void [System.Private.CoreLib] System.Runtime.InteropServices.SafeHandle::DangerousAddRef(bool&)[OptimizedTier1] +00007FA12E597FA0 58 object [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::IsInstanceOfClass(void*,object)[OptimizedTier1] +00007FA1278087B0 18 stub<17228> GenerateResolveStub +00007FA1277CADC0 20 stub<17229> GenerateDispatchStub +00007FA12E598010 98 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey]::Equals(!0,!0)[QuickJitted] +00007FA12EA4E570 18 stub<17230> AllocateTemporaryEntryPoints +00007FA12EA4E588 18 stub<17231> AllocateTemporaryEntryPoints +00007FA12E5980C0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12EA4E5A0 18 stub<17232> AllocateTemporaryEntryPoints +00007FA12EA4E5B8 18 stub<17233> AllocateTemporaryEntryPoints +00007FA12E598160 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12EA4E5D0 18 stub<17234> AllocateTemporaryEntryPoints +00007FA12E598240 146 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA1277CADE0 20 stub<17235> GenerateDispatchStub +00007FA12EA4E5E8 d8 stub<17236> AllocateTemporaryEntryPoints +00007FA12EA4E6C0 30 stub<17237> AllocateTemporaryEntryPoints +00007FA12E5983C0 23f instance bool [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.AgentConfiguration::Equals(class Datadog.Trace.Agent.DiscoveryService.AgentConfiguration)[QuickJitted] +00007FA12E598620 38 instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.AgentConfiguration::get_EqualityContract()[QuickJitted] +00007FA12EA4E6F0 a8 stub<17238> AllocateTemporaryEntryPoints +00007FA12E598670 8 instance bool [System.Private.CoreLib] System.Diagnostics.Tracing.EventSource::IsEnabled()[OptimizedTier1] +00007FA12EA4E7F8 18 stub<17239> AllocateTemporaryEntryPoints +00007FA12EA4E810 18 stub<17240> AllocateTemporaryEntryPoints +00007FA12E5986A0 b3 object [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::IsInstanceOfAny(void*,object)[OptimizedTier1] +00007FA12E598770 66 instance class Microsoft.Win32.SafeHandles.SafeWaitHandle [System.Private.CoreLib] System.Threading.WaitHandle::get_SafeWaitHandle()[OptimizedTier1] +00007FA12E5987F0 16 void [System.Private.CoreLib] System.Threading.Monitor::Enter(object,bool&)[OptimizedTier1] +00007FA12E598820 19 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable+ConfiguredTaskAwaiter::GetResult()[OptimizedTier1] +00007FA12E598850 2a instance valuetype System.Runtime.CompilerServices.ConfiguredTaskAwaitable [System.Private.CoreLib] System.Threading.Tasks.Task::ConfigureAwait(bool)[OptimizedTier1] +00007FA12E598890 8 instance valuetype System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable::GetAwaiter()[OptimizedTier1] +00007FA12E5988B0 11 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable+ConfiguredTaskAwaiter::get_IsCompleted()[OptimizedTier1] +00007FA12E5988E0 4 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_TokenType()[OptimizedTier1] +00007FA12E598900 70 object [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::IsInstanceOfInterface(void*,object)[OptimizedTier1] +00007FA12E598990 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::get_Count()[OptimizedTier1] +00007FA12E5989B0 4 instance int32 [System.Private.CoreLib] System.String::get_Length()[OptimizedTier1] +00007FA12E5989D0 4 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::get_Length()[OptimizedTier1] +00007FA12E5989F0 4 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Peek()[OptimizedTier1] +00007FA12E598A10 4 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::get_StartIndex()[OptimizedTier1] +00007FA12E598A30 1 instance void [System.Private.CoreLib] System.Object::.ctor()[OptimizedTier1] +00007FA12E598A50 5 instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JArray::get_ChildrenTokens()[OptimizedTier1] +00007FA12E598A70 19 instance char [System.Private.CoreLib] System.String::get_Chars(int32)[OptimizedTier1] +00007FA12E598AA0 b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::set_Next(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E598AC0 43 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetPostValueState(bool)[OptimizedTier1] +00007FA12E598B20 3b void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ValidationUtils::ArgumentNotNull(object,string)[OptimizedTier1] +00007FA12E598B80 28 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::get_Item(int32)[OptimizedTier1] +00007FA12E598BC0 10 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JsonTokenUtils::IsStartToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12E598BE0 48 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_Depth()[OptimizedTier1] +00007FA12E598C40 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::get_Count()[OptimizedTier1] +00007FA12E598C60 4 instance string [System.Private.CoreLib] System.String::ToString()[OptimizedTier1] +00007FA12E598C80 24b instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::Read()[OptimizedTier1] +00007FA12E598F30 6c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::EnsureBuffer()[OptimizedTier1] +00007FA12E598FC0 4 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringBuffer::set_Position(int32)[OptimizedTier1] +00007FA12E598FE0 13b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken,object,bool)[OptimizedTier1] +00007FA12E599180 5 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_Value()[OptimizedTier1] +00007FA12E6714E0 18 stub<17241> GenerateLookupStub +00007FA12E671500 18 stub<17242> GenerateLookupStub +00007FA12E671520 18 stub<17243> GenerateLookupStub +00007FA12E5991A0 799 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken,object)[OptimizedTier1] +00007FA12E5999B0 11 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JsonTokenUtils::IsEndToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12EA4E828 138 stub<17244> AllocateTemporaryEntryPoints +00007FA12E5999E0 17a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::AutoComplete(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12E599B80 1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::.ctor()[OptimizedTier1] +00007FA12E599BA0 174 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::TryAddInternal(int32,object,bool,bool)[OptimizedTier1] +00007FA12E599D50 79 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::IsMultiContent(object)[OptimizedTier1] +00007FA12EA4E960 138 stub<17245> AllocateTemporaryEntryPoints +00007FA12E599DF0 79 class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::CreateFromContent(object)[OptimizedTier1] +00007FA12E599E90 214 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::InsertItem(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,bool,bool)[OptimizedTier1] +00007FA12E59A0D0 81 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::CheckReentrancy()[OptimizedTier1] +00007FA12E59A170 c5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::EnsureParentToken(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,bool,bool)[OptimizedTier1] +00007FA12E59A260 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::get_Parent()[OptimizedTier1] +00007FA12E59A280 b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::set_Parent(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer)[OptimizedTier1] +00007FA12E59A2A0 b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken::set_Previous(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E59A2C0 b0 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ShiftBufferIfNeeded()[OptimizedTier1] +00007FA12E59A3A0 9fb instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadStringIntoBuffer(char)[OptimizedTier1] +00007FA12E59ADD0 178 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::FinishReadStringIntoBuffer(int32,int32,int32)[OptimizedTier1] +00007FA12E59AF70 24 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::.ctor(char[],int32,int32)[OptimizedTier1] +00007FA12E59AFB0 e class System.Globalization.CultureInfo [System.Private.CoreLib] System.Globalization.CultureInfo::get_InvariantCulture()[OptimizedTier1] +00007FA12E59AFD0 15 bool [System.Private.CoreLib] System.String::IsNullOrEmpty(string)[OptimizedTier1] +00007FA12E59B000 b5 void [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::StelemRef_Helper(object&,void*,object)[OptimizedTier1] +00007FA12E59B0D0 1b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ProcessLineFeed()[OptimizedTier1] +00007FA12E59B100 d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::OnNewLine(int32)[OptimizedTier1] +00007FA12E59B120 1d instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::ToString()[OptimizedTier1] +00007FA12E59B160 1b9 string [System.Private.CoreLib] System.String::Ctor(char[],int32,int32)[OptimizedTier1] +00007FA12E59B340 5e2 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseValue()[OptimizedTier1] +00007FA12E59B9A0 d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::UpdateScopeWithFinishedValue()[OptimizedTier1] +00007FA12E59B9C0 d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::UpdateScopeWithFinishedValue()[OptimizedTier1] +00007FA12E59B9E0 4 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::get_Type()[OptimizedTier1] +00007FA12E59BA00 bd instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::Insert(int32,!0)[OptimizedTier1] +00007FA12E59BAE0 e6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::ValidateToken(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E59BC00 356 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParsePostValue(bool)[OptimizedTier1] +00007FA12E59BFA0 1b instance char [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::get_Item(int32)[OptimizedTier1] +00007FA12E59BFD0 12 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::InternalWriteValue(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12E59C000 1a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(object,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType)[OptimizedTier1] +00007FA12E59C030 ac instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::AddJValue(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12E59C100 46 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::TryAdd(object)[OptimizedTier1] +00007FA12E59C160 10 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty+JPropertyList::get_Count()[OptimizedTier1] +00007FA12E59C180 3 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::get_HasValues()[OptimizedTier1] +00007FA12E59C1A0 4c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::get_Last()[OptimizedTier1] +00007FA12E59C210 d1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetStateBasedOnCurrent()[OptimizedTier1] +00007FA12E59C320 4f instance int32 [System.Private.CoreLib] System.Collections.ObjectModel.Collection`1[System.__Canon]::get_Count()[OptimizedTier1] +00007FA12E59C390 1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValueDelimiter()[OptimizedTier1] +00007FA12E59C3B0 4 instance char[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference::get_Chars()[OptimizedTier1] +00007FA12E59C3D0 6 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::get_Type()[OptimizedTier1] +00007FA12E59C3F0 5 instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::get_ChildrenTokens()[OptimizedTier1] +00007FA12E59C410 b instance int32 [System.Private.CoreLib] System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer::GetHashCode(string)[OptimizedTier1] +00007FA12E59C440 6e instance int32 [System.Private.CoreLib] System.String::GetNonRandomizedHashCode()[OptimizedTier1] +00007FA12E59C4D0 33 bool [System.Private.CoreLib] System.Char::IsWhiteSpace(char)[OptimizedTier1] +00007FA12E59C520 8 instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonNameTable [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::get_PropertyNameTable()[OptimizedTier1] +00007FA12E59C540 5 instance class [System.Runtime]System.Collections.Generic.IList`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::get_ChildrenTokens()[OptimizedTier1] +00007FA12EA4EA98 18 stub<17246> AllocateTemporaryEntryPoints +00007FA12E59C560 4c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::TryGetValue(string,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken&)[OptimizedTier1] +00007FA12E59C5D0 5 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::get_Name()[OptimizedTier1] +00007FA12E59C5F0 28 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EA4EAB0 60 stub<17247> AllocateTemporaryEntryPoints +00007FA12EA4EB10 18 stub<17248> AllocateTemporaryEntryPoints +00007FA12EA4EB28 18 stub<17249> AllocateTemporaryEntryPoints +00007FA12E59C640 256 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::FindValue(!0)[OptimizedTier1] +00007FA12E59C8C0 11b instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadNumberCharIntoBuffer(char,int32)[OptimizedTier1] +00007FA12E59CA70 17 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ClearRecentString()[OptimizedTier1] +00007FA12E59CAA0 3 int32 [System.Private.CoreLib] System.Threading.Volatile::Read(int32&)[OptimizedTier1] +00007FA12E59CAC0 1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::.ctor()[OptimizedTier1] +00007FA12E59CAE0 4f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::AddParent(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer)[OptimizedTier1] +00007FA12E59CB50 4b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::AddAndSkipParentCheck(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E59CBC0 b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken,object)[OptimizedTier1] +00007FA12E59CBE0 4 instance bool [System.Private.CoreLib] System.Nullable`1[System.Int32]::get_HasValue()[OptimizedTier1] +00007FA12E59CC00 233 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseObject()[OptimizedTier1] +00007FA12E59CE70 24b instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseProperty()[OptimizedTier1] +00007FA12E59D0E0 145 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::Get(char[],int32,int32)[OptimizedTier1] +00007FA12E59D260 195 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::EatWhitespace()[OptimizedTier1] +00007FA12E59D410 de instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WritePropertyName(string)[OptimizedTier1] +00007FA12E59D510 28 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::Remove(string)[OptimizedTier1] +00007FA12E59D560 142 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::Property(string,valuetype [System.Runtime]System.StringComparison)[OptimizedTier1] +00007FA12E59D6D0 7a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::.ctor(string)[OptimizedTier1] +00007FA12E59D770 1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty+JPropertyList::.ctor()[OptimizedTier1] +00007FA12E59D790 6c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::InsertItem(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,bool,bool)[OptimizedTier1] +00007FA12E59D820 211 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::ValidateToken(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E59DA60 b6 instance void [System.Private.CoreLib] System.Collections.ObjectModel.Collection`1[System.__Canon]::Insert(int32,!0)[OptimizedTier1] +00007FA12E59DB40 3 instance bool [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::System.Collections.Generic.ICollection.get_IsReadOnly()[OptimizedTier1] +00007FA12E59DB60 bc instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::InsertItem(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E59DC40 27 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::GetKeyForItem(class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E59DC80 75 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::AddKey(string,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E59DD20 4d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::EnsureDictionary()[OptimizedTier1] +00007FA12E59DD90 12 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::set_Item(!0,!1)[OptimizedTier1] +00007FA12E59DDC0 4bc instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12E59E2A0 63 instance void [System.Private.CoreLib] System.Collections.ObjectModel.Collection`1[System.__Canon]::InsertItem(int32,!0)[OptimizedTier1] +00007FA12E59E320 1c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WritePropertyName(string)[OptimizedTier1] +00007FA12E59E350 1c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::InternalWritePropertyName(string)[OptimizedTier1] +00007FA12E59E380 d7 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::InsertItem(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken,bool,bool)[OptimizedTier1] +00007FA12E59E480 9 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty::get_Value()[OptimizedTier1] +00007FA12E59E4A0 12 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty+JPropertyList::Insert(int32,class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken)[OptimizedTier1] +00007FA12E59E4D0 f0 object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BoxedPrimitives::Get(int64)[OptimizedTier1] +00007FA12E59E600 56 instance !0 [System.Private.CoreLib] System.Collections.ObjectModel.Collection`1[System.__Canon]::get_Item(int32)[OptimizedTier1] +00007FA12E59E680 2c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition::.ctor(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12E59E6C0 14 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition::TypeHasIndex(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12E59E6F0 2f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JProperty+JPropertyList::get_Item(int32)[OptimizedTier1] +00007FA12E59E740 d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12E59E760 b2 object [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::ChkCastAny(void*,object)[OptimizedTier1] +00007FA12E59E830 199 instance bool [System.Private.CoreLib] System.String::Equals(string,valuetype System.StringComparison)[OptimizedTier1] +00007FA12EA4EB40 60 stub<17250> AllocateTemporaryEntryPoints +00007FA12E59EA20 112 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.__Canon]::TryDequeue(!0&)[OptimizedTier1] +00007FA12E59EB60 206 instance object [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueue::Dequeue(class System.Threading.ThreadPoolWorkQueueThreadLocals,bool&)[OptimizedTier1] +00007FA127808820 18 stub<17251> GenerateResolveStub +00007FA1277CAE00 20 stub<17252> GenerateDispatchStub +00007FA127808890 18 stub<17253> GenerateResolveStub +00007FA1277CAE20 20 stub<17254> GenerateDispatchStub +00007FA12E59EDA0 1f7 instance bool [System.Private.CoreLib] System.Threading.WaitHandle::WaitOneNoCheck(int32)[OptimizedTier1] +00007FA12E59EFC0 76 instance bool [System.Private.CoreLib] System.Threading.WaitHandle::WaitOne(int32)[OptimizedTier1] +00007FA12E59F060 47 bool [System.Private.CoreLib] System.Threading.PortableThreadPool+WorkerThread::TakeActiveRequest(class System.Threading.PortableThreadPool)[OptimizedTier1] +00007FA12E59F0C0 6f instance bool [System.Private.CoreLib] System.Threading.Tasks.Task::AddTaskContinuation(object,bool)[OptimizedTier1] +00007FA12E59F150 d instance bool [System.Private.CoreLib] System.Threading.Tasks.Task::get_IsCompleted()[OptimizedTier1] +00007FA12E59F170 2d class System.Threading.Thread [System.Private.CoreLib] System.Threading.Thread::get_CurrentThread()[OptimizedTier1] +00007FA12E59F1C0 12 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.__Canon]::get_Default()[OptimizedTier1] +00007FA12E59F1F0 65 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.__Canon]::TryDequeue(!0&)[OptimizedTier1] +00007FA12E59F280 6f instance bool [System.Private.CoreLib] System.Diagnostics.Tracing.EventSource::IsEnabledCommon(bool,valuetype System.Diagnostics.Tracing.EventLevel,valuetype System.Diagnostics.Tracing.EventKeywords,valuetype System.Diagnostics.Tracing.EventLevel,valuetype System.Diagnostics.Tracing.EventKeywords,valuetype System.Diagnostics.Tracing.EventChannel)[OptimizedTier1] +00007FA12E59F310 4 !!0 [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::ReadUnaligned(void*)[OptimizedTier1] +00007FA12E59F330 14 bool [System.Private.CoreLib] System.Text.ASCIIUtility::AllCharsInUInt64AreAscii(uint64)[OptimizedTier1] +00007FA12EA4EBB8 2d0 stub<17255> AllocateTemporaryEntryPoints +00007FA12EA4EE88 18 stub<17256> AllocateTemporaryEntryPoints +00007FA12EA4EEA0 18 stub<17257> AllocateTemporaryEntryPoints +00007FA12EA4EEB8 18 stub<17258> AllocateTemporaryEntryPoints +00007FA12E59F360 18 void [System.Private.CoreLib] System.Text.ASCIIUtility::NarrowFourUtf16CharsToAsciiAndWriteToBuffer(uint8&,uint64)[OptimizedTier1] +00007FA12E59F390 48 void [System.Private.CoreLib] System.Threading.ThreadPool::RequestWorkerThread()[OptimizedTier1] +00007FA12E59F3F0 40 instance void [System.Private.CoreLib] System.Threading.PortableThreadPool::RequestWorker()[OptimizedTier1] +00007FA12EA4EED0 18 stub<17259> AllocateTemporaryEntryPoints +00007FA12E59F460 16c void [System.Private.CoreLib] System.Threading.PortableThreadPool+WorkerThread::MaybeAddWorkingWorker(class System.Threading.PortableThreadPool)[OptimizedTier1] +00007FA12E59F600 bc instance void [System.Private.CoreLib] System.Threading.LowLevelLifoSemaphore::Release(int32)[OptimizedTier1] +00007FA12EA4EEE8 18 stub<17260> AllocateTemporaryEntryPoints +00007FA12E671540 18 stub<17261> GenerateLookupStub +00007FA12EA4EF00 18 stub<17262> AllocateTemporaryEntryPoints +00007FA12E59F6E0 415 bool [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueue::Dispatch()[OptimizedTier1] +00007FA12E59FB20 13f instance int32 [System.Private.CoreLib] System.Threading.Semaphore::Release(int32)[OptimizedTier1] +00007FA12E59FC80 d5 instance int32 [System.Private.CoreLib] System.Threading.Semaphore::ReleaseCore(int32)[OptimizedTier1] +00007FA12EA4EF18 18 stub<17263> AllocateTemporaryEntryPoints +00007FA12E59FD80 153 bool [System.Private.CoreLib] Interop+Kernel32::ReleaseSemaphore(class Microsoft.Win32.SafeHandles.SafeWaitHandle,int32,int32&)[OptimizedTier1] +00007FA12E59FF20 6b void [System.Private.CoreLib] System.Threading.PortableThreadPool+WorkerThread::RemoveWorkingWorker(class System.Threading.PortableThreadPool)[OptimizedTier1] +00007FA12E59FFA0 29e instance bool [System.Private.CoreLib] System.Threading.LowLevelLifoSemaphore::Wait(int32,bool)[OptimizedTier1] +00007FA12E5A0260 f2 int32 [System.Private.CoreLib] System.Threading.LowLevelLifoSemaphore::WaitNative(class Microsoft.Win32.SafeHandles.SafeWaitHandle,int32)[OptimizedTier1] +00007FA12E5A0380 11a instance bool [System.Private.CoreLib] System.Threading.LowLevelLifoSemaphore::WaitForSignal(int32)[OptimizedTier1] +00007FA12E5A04C0 46 instance void [System.Private.CoreLib] System.Threading.PortableThreadPool+WorkerThread+<>c::<.cctor>b__11_0()[OptimizedTier1] +00007FA12E5A0520 4e instance void [System.Private.CoreLib] System.Diagnostics.Tracing.NativeRuntimeEventSource::ThreadPoolWorkerThreadWait(uint32,uint32,uint16)[OptimizedTier1] +00007FA12E5A0590 31 instance bool [System.Private.CoreLib] System.Threading.LowLevelLock::TryAcquire()[OptimizedTier1] +00007FA127808900 18 stub<17264> GenerateResolveStub +00007FA1277CAE40 20 stub<17265> GenerateDispatchStub +00007FA1277CAE60 20 stub<17266> GenerateDispatchStub +00007FA12E5A05E0 1c instance class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Path()[QuickJitted] +00007FA12E5A0610 1b instance int32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Length()[QuickJitted] +00007FA12E5A0640 1c instance class [System.Collections]System.Collections.Generic.Dictionary`2 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Hashes()[QuickJitted] +00007FA12E671560 18 stub<17267> GenerateLookupStub +00007FA127808970 18 stub<17268> GenerateResolveStub +00007FA1277CAE80 20 stub<17269> GenerateDispatchStub +00007FA12E5A0670 85 instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmCachedTargetFileHash [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__30_1(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA12E5A0710 49 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmCachedTargetFileHash::.ctor(string,string)[QuickJitted] +00007FA12E5A0770 56 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmCachedTargetFile::.ctor(string,int32,class [System.Collections]System.Collections.Generic.List`1)[QuickJitted] +00007FA12E5A07E0 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::get_Id()[QuickJitted] +00007FA12E5A0810 1b instance int32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Version()[QuickJitted] +00007FA12E5A0840 1b instance uint32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_ApplyState()[QuickJitted] +00007FA12E5A0870 1c instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Error()[QuickJitted] +00007FA12E5A08A0 79 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmConfigState::.ctor(string,int32,string,uint32,string)[QuickJitted] +00007FA1278089E0 18 stub<17270> GenerateResolveStub +00007FA1277CAEA0 20 stub<17271> GenerateDispatchStub +00007FA127808A50 18 stub<17272> GenerateResolveStub +00007FA1277CAEC0 20 stub<17273> GenerateDispatchStub +00007FA128660040 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method125(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1286600D0 44 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method126(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128660180 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method127(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12EA4EF30 18 stub<17274> AllocateTemporaryEntryPoints +00007FA12EA4EF48 18 stub<17275> AllocateTemporaryEntryPoints +00007FA12EAA0000 240 stub<17276> AllocateTemporaryEntryPoints +00007FA12EAA0240 48 stub<17277> AllocateTemporaryEntryPoints +00007FA12EAA0288 60 stub<17278> AllocateTemporaryEntryPoints +00007FA12EAA02E8 a8 stub<17279> AllocateTemporaryEntryPoints +00007FA12EAA0390 18 stub<17280> AllocateTemporaryEntryPoints +00007FA12EAA03A8 390 stub<17281> AllocateTemporaryEntryPoints +00007FA12EAA0738 30 stub<17282> AllocateTemporaryEntryPoints +00007FA12EAA0768 18 stub<17283> AllocateTemporaryEntryPoints +00007FA12EAA0780 30 stub<17284> AllocateTemporaryEntryPoints +00007FA12EAA07B0 30 stub<17285> AllocateTemporaryEntryPoints +00007FA12EAA07E0 30 stub<17286> AllocateTemporaryEntryPoints +00007FA12EAA0810 18 stub<17287> AllocateTemporaryEntryPoints +00007FA12EAA0828 30 stub<17288> AllocateTemporaryEntryPoints +00007FA12EAA0858 30 stub<17289> AllocateTemporaryEntryPoints +00007FA12EAA0888 30 stub<17290> AllocateTemporaryEntryPoints +00007FA12EAA08B8 30 stub<17291> AllocateTemporaryEntryPoints +00007FA12EAA08E8 18 stub<17292> AllocateTemporaryEntryPoints +00007FA12EAA0900 30 stub<17293> AllocateTemporaryEntryPoints +00007FA12EAA0930 30 stub<17294> AllocateTemporaryEntryPoints +00007FA128660210 1a object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method128(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA128660290 44 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method129(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12E5A0930 36 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(uint32)[QuickJitted] +00007FA128660B90 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method130(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1286673F0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method131(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128667480 44 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method132(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12EAA0960 18 stub<17295> AllocateTemporaryEntryPoints +00007FA128667530 2e object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method133(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12EAA0978 18 stub<17296> AllocateTemporaryEntryPoints +00007FA1286675C0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method134(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA128668670 a4 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method135(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA128667650 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method136(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA1286684A0 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method137(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12E5A0980 4e instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryRemove(!0,!1&)[QuickJitted] +00007FA12EAA0990 d8 stub<17297> AllocateTemporaryEntryPoints +00007FA12EAA0A68 30 stub<17298> AllocateTemporaryEntryPoints +00007FA12EAA0A98 d8 stub<17299> AllocateTemporaryEntryPoints +00007FA12EAA0B70 30 stub<17300> AllocateTemporaryEntryPoints +00007FA12E5A09F0 3da instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryRemoveInternal(!0,!1&,bool,!1)[QuickJitted] +00007FA12E671580 18 stub<17301> GenerateLookupStub +00007FA12E5A0E00 67e instance class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult [Samples.BuggyBits] BuggyBits.Controllers.ProductsController::Index()[OptimizedTier1OSR] +00007FA12EAA0BA0 18 stub<17302> AllocateTemporaryEntryPoints +00007FA12784B7D0 11 stub<17303> GenerateVTableCallStub +00007FA12784B7F0 11 stub<17304> GenerateVTableCallStub +00007FA12EAA0BB8 18 stub<17305> AllocateTemporaryEntryPoints +00007FA12EAA0BD0 258 stub<17306> AllocateTemporaryEntryPoints +00007FA1277CAEE0 20 stub<17307> GenerateDispatchStub +00007FA12EAA0E28 120 stub<17308> AllocateTemporaryEntryPoints +00007FA12EAA2000 120 stub<17309> AllocateTemporaryEntryPoints +00007FA12EAA2120 120 stub<17310> AllocateTemporaryEntryPoints +00007FA12EAA2240 60 stub<17311> AllocateTemporaryEntryPoints +00007FA12EAA22A0 18 stub<17312> AllocateTemporaryEntryPoints +00007FA12EAA22B8 18 stub<17313> AllocateTemporaryEntryPoints +00007FA12EAA22D0 18 stub<17314> AllocateTemporaryEntryPoints +00007FA12E5A18E0 25f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass14_0`3[System.__Canon,System.__Canon,System.Double]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,!1,!2,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12E5A1B60 69 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]::.ctor(class Microsoft.Extensions.Logging.LogValuesFormatter,!0,!1,!2)[QuickJitted] +00007FA12EAA22E8 18 stub<17315> AllocateTemporaryEntryPoints +00007FA12EAA2300 18 stub<17316> AllocateTemporaryEntryPoints +00007FA12EAA2318 18 stub<17317> AllocateTemporaryEntryPoints +00007FA12EAA2330 48 stub<17318> AllocateTemporaryEntryPoints +00007FA12EAA2378 48 stub<17319> AllocateTemporaryEntryPoints +00007FA12EAA23C0 48 stub<17320> AllocateTemporaryEntryPoints +00007FA12EAA2408 60 stub<17321> AllocateTemporaryEntryPoints +00007FA12E5A1BE0 e9 void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]::.cctor()[QuickJitted] +00007FA12E5A1CE0 4b void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3+<>c[System.__Canon,System.__Canon,System.Double]::.cctor()[QuickJitted] +00007FA12E5A1D40 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3+<>c[System.__Canon,System.__Canon,System.Double]::.ctor()[QuickJitted] +00007FA12EAA2468 18 stub<17322> AllocateTemporaryEntryPoints +00007FA12E5A1D80 7f instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`3 /* MT: 0x00007FA12E9DD160 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E5A1E20 e7 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12EAA2480 18 stub<17323> AllocateTemporaryEntryPoints +00007FA12EAA2498 18 stub<17324> AllocateTemporaryEntryPoints +00007FA12EAA24B0 18 stub<17325> AllocateTemporaryEntryPoints +00007FA12E5A1F20 7f instance void [Microsoft.Extensions.Logging] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`3 /* MT: 0x00007FA12E9DD160 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12EAA24C8 18 stub<17326> AllocateTemporaryEntryPoints +00007FA12EAA24E0 18 stub<17327> AllocateTemporaryEntryPoints +00007FA12E5A1FC0 1ac instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12EAA24F8 18 stub<17328> AllocateTemporaryEntryPoints +00007FA12E5A2190 170 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12EAA2510 18 stub<17329> AllocateTemporaryEntryPoints +00007FA12EAA2528 18 stub<17330> AllocateTemporaryEntryPoints +00007FA12EAA2540 18 stub<17331> AllocateTemporaryEntryPoints +00007FA12E5A2330 7f instance void [Microsoft.Extensions.Logging.Console] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`3 /* MT: 0x00007FA12E9DD160 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12EAA2558 a8 stub<17332> AllocateTemporaryEntryPoints +00007FA12EAA2600 18 stub<17333> AllocateTemporaryEntryPoints +00007FA12EAA2618 18 stub<17334> AllocateTemporaryEntryPoints +00007FA12E5A23D0 3b5 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12E5A27B0 91 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12EAA2630 18 stub<17335> AllocateTemporaryEntryPoints +00007FA12EAA2648 18 stub<17336> AllocateTemporaryEntryPoints +00007FA12EAA2660 18 stub<17337> AllocateTemporaryEntryPoints +00007FA12EAA2678 18 stub<17338> AllocateTemporaryEntryPoints +00007FA12EAA2690 18 stub<17339> AllocateTemporaryEntryPoints +00007FA12E5A2860 3d5 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12E5A2C60 20 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_Formatter()[QuickJitted] +00007FA12E5A2CA0 3d instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_State()[QuickJitted] +00007FA12E5A2D00 20 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_Exception()[QuickJitted] +00007FA12EAA26A8 18 stub<17340> AllocateTemporaryEntryPoints +00007FA12E5A2D40 78 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3+<>c[System.__Canon,System.__Canon,System.Double]::<.cctor>b__14_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`3,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12EAA26C0 18 stub<17341> AllocateTemporaryEntryPoints +00007FA12E5A2DD0 8b instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]::ToString()[QuickJitted] +00007FA12E5A2E80 1f instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_LogLevel()[QuickJitted] +00007FA12EAA26D8 18 stub<17342> AllocateTemporaryEntryPoints +00007FA12E5A2EC0 3fd instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12E5A32F0 37 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_EventId()[QuickJitted] +00007FA12E5A3340 1f instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_Category()[QuickJitted] +00007FA12EAA26F0 18 stub<17343> AllocateTemporaryEntryPoints +00007FA12EAA2708 18 stub<17344> AllocateTemporaryEntryPoints +00007FA12EAA2720 18 stub<17345> AllocateTemporaryEntryPoints +00007FA12E5A3380 7f instance void [Microsoft.Extensions.Logging.Debug] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`3 /* MT: 0x00007FA12E9DD160 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E5A3420 23a instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12EAA2738 18 stub<17346> AllocateTemporaryEntryPoints +00007FA12EAA2750 18 stub<17347> AllocateTemporaryEntryPoints +00007FA12EAA2768 18 stub<17348> AllocateTemporaryEntryPoints +00007FA12E5A3680 7f instance void [Microsoft.Extensions.Logging.EventSource] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`3 /* MT: 0x00007FA12E9DD160 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E5A3720 5c2 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12EAA2780 a8 stub<17349> AllocateTemporaryEntryPoints +00007FA12EAA2828 c0 stub<17350> AllocateTemporaryEntryPoints +00007FA12EAA28E8 c0 stub<17351> AllocateTemporaryEntryPoints +00007FA12EAA29A8 90 stub<17352> AllocateTemporaryEntryPoints +00007FA12EAA2A38 90 stub<17353> AllocateTemporaryEntryPoints +00007FA12784B810 11 stub<17354> GenerateVTableCallStub +00007FA12EAA2AC8 90 stub<17355> AllocateTemporaryEntryPoints +00007FA12EAA2B58 18 stub<17356> AllocateTemporaryEntryPoints +00007FA12EAA2B70 18 stub<17357> AllocateTemporaryEntryPoints +00007FA12EAA2B88 108 stub<17358> AllocateTemporaryEntryPoints +00007FA12EAA2C90 18 stub<17359> AllocateTemporaryEntryPoints +00007FA12EAA2CA8 90 stub<17360> AllocateTemporaryEntryPoints +00007FA12EAA2D38 18 stub<17361> AllocateTemporaryEntryPoints +00007FA12EAA2D50 60 stub<17362> AllocateTemporaryEntryPoints +00007FA12EAA2DB0 18 stub<17363> AllocateTemporaryEntryPoints +00007FA12EAA2DC8 90 stub<17364> AllocateTemporaryEntryPoints +00007FA12EAA2E58 90 stub<17365> AllocateTemporaryEntryPoints +00007FA12EAA2EE8 18 stub<17366> AllocateTemporaryEntryPoints +00007FA12EAA2F00 18 stub<17367> AllocateTemporaryEntryPoints +00007FA12EAA2F18 60 stub<17368> AllocateTemporaryEntryPoints +00007FA12EAA2F78 18 stub<17369> AllocateTemporaryEntryPoints +00007FA12EAA2F90 18 stub<17370> AllocateTemporaryEntryPoints +00007FA12E5A3D00 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A3D40 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EAA4000 78 stub<17371> AllocateTemporaryEntryPoints +00007FA12EAA4078 60 stub<17372> AllocateTemporaryEntryPoints +00007FA12EAA40D8 18 stub<17373> AllocateTemporaryEntryPoints +00007FA12EAA40F0 18 stub<17374> AllocateTemporaryEntryPoints +00007FA12E5A3E40 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A3E80 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EAA4108 18 stub<17375> AllocateTemporaryEntryPoints +00007FA12EAA4120 18 stub<17376> AllocateTemporaryEntryPoints +00007FA12EAA4138 18 stub<17377> AllocateTemporaryEntryPoints +00007FA12EAA4150 18 stub<17378> AllocateTemporaryEntryPoints +00007FA12E6715A0 18 stub<17379> GenerateLookupStub +00007FA12EAA4168 18 stub<17380> AllocateTemporaryEntryPoints +00007FA12EAA4180 18 stub<17381> AllocateTemporaryEntryPoints +00007FA127808AC0 18 stub<17382> GenerateResolveStub +00007FA1277CAF00 20 stub<17383> GenerateDispatchStub +00007FA12E6715C0 18 stub<17384> GenerateLookupStub +00007FA12E6715E0 18 stub<17385> GenerateLookupStub +00007FA127808B30 18 stub<17386> GenerateResolveStub +00007FA1277CAF20 20 stub<17387> GenerateDispatchStub +00007FA12EAA4198 18 stub<17388> AllocateTemporaryEntryPoints +00007FA12EAA41B0 18 stub<17389> AllocateTemporaryEntryPoints +00007FA12EAA41C8 18 stub<17390> AllocateTemporaryEntryPoints +00007FA12EAA41E0 18 stub<17391> AllocateTemporaryEntryPoints +00007FA12EAA41F8 18 stub<17392> AllocateTemporaryEntryPoints +00007FA12EAA4210 18 stub<17393> AllocateTemporaryEntryPoints +00007FA127808BA0 18 stub<17394> GenerateResolveStub +00007FA1277CAF40 20 stub<17395> GenerateDispatchStub +00007FA1277CAF60 20 stub<17396> GenerateDispatchStub +00007FA127808C10 18 stub<17397> GenerateResolveStub +00007FA1277CAF80 20 stub<17398> GenerateDispatchStub +00007FA12EAA4228 60 stub<17399> AllocateTemporaryEntryPoints +00007FA12EAA4288 18 stub<17400> AllocateTemporaryEntryPoints +00007FA12EAA42A0 18 stub<17401> AllocateTemporaryEntryPoints +00007FA1277CAFA0 20 stub<17402> GenerateDispatchStub +00007FA127808C80 18 stub<17403> GenerateResolveStub +00007FA1277CAFC0 20 stub<17404> GenerateDispatchStub +00007FA12EAA42B8 78 stub<17405> AllocateTemporaryEntryPoints +00007FA1277CAFE0 20 stub<17406> GenerateDispatchStub +00007FA12EAA4348 18 stub<17407> AllocateTemporaryEntryPoints +00007FA12E671600 18 stub<17408> GenerateLookupStub +00007FA127808CF0 18 stub<17409> GenerateResolveStub +00007FA1277CB000 20 stub<17410> GenerateDispatchStub +00007FA12E671620 18 stub<17411> GenerateLookupStub +00007FA127808D60 18 stub<17412> GenerateResolveStub +00007FA1277CB020 20 stub<17413> GenerateDispatchStub +00007FA12E671640 18 stub<17414> GenerateLookupStub +00007FA127808DD0 18 stub<17415> GenerateResolveStub +00007FA1277CB040 20 stub<17416> GenerateDispatchStub +00007FA12E671660 18 stub<17417> GenerateLookupStub +00007FA127808E40 18 stub<17418> GenerateResolveStub +00007FA1277CB060 20 stub<17419> GenerateDispatchStub +00007FA12EAA4360 18 stub<17420> AllocateTemporaryEntryPoints +00007FA12E671680 18 stub<17421> GenerateLookupStub +00007FA127808EB0 18 stub<17422> GenerateResolveStub +00007FA1277CB080 20 stub<17423> GenerateDispatchStub +00007FA127808F20 18 stub<17424> GenerateResolveStub +00007FA1277CB0A0 20 stub<17425> GenerateDispatchStub +00007FA12EAA4390 18 stub<17426> AllocateTemporaryEntryPoints +00007FA12EAA43A8 18 stub<17427> AllocateTemporaryEntryPoints +00007FA12EAA43C0 60 stub<17428> AllocateTemporaryEntryPoints +00007FA127808F90 18 stub<17429> GenerateResolveStub +00007FA1277CB0C0 20 stub<17430> GenerateDispatchStub +00007FA1277CB0E0 20 stub<17431> GenerateDispatchStub +00007FA127809000 18 stub<17432> GenerateResolveStub +00007FA1277CB100 20 stub<17433> GenerateDispatchStub +00007FA12EAA4420 60 stub<17434> AllocateTemporaryEntryPoints +00007FA127809070 18 stub<17435> GenerateResolveStub +00007FA1277CB120 20 stub<17436> GenerateDispatchStub +00007FA1278090E0 18 stub<17437> GenerateResolveStub +00007FA1277CB140 20 stub<17438> GenerateDispatchStub +00007FA1277CB160 20 stub<17439> GenerateDispatchStub +00007FA12EAA4480 48 stub<17440> AllocateTemporaryEntryPoints +00007FA12EAA44C8 18 stub<17441> AllocateTemporaryEntryPoints +00007FA127809150 18 stub<17442> GenerateResolveStub +00007FA1277CB180 20 stub<17443> GenerateDispatchStub +00007FA12E6716A0 18 stub<17444> GenerateLookupStub +00007FA1278091C0 18 stub<17445> GenerateResolveStub +00007FA1277CB1A0 20 stub<17446> GenerateDispatchStub +00007FA12EAA44E0 18 stub<17447> AllocateTemporaryEntryPoints +00007FA12EAA44F8 f0 stub<17448> AllocateTemporaryEntryPoints +00007FA12EAA45E8 90 stub<17449> AllocateTemporaryEntryPoints +00007FA12EAA4678 18 stub<17450> AllocateTemporaryEntryPoints +00007FA12EAA4690 60 stub<17451> AllocateTemporaryEntryPoints +00007FA12EAA46F0 2b8 stub<17452> AllocateTemporaryEntryPoints +00007FA12EAA6000 6f0 stub<17453> AllocateTemporaryEntryPoints +00007FA12EAA66F0 c0 stub<17454> AllocateTemporaryEntryPoints +00007FA12EAA67B0 90 stub<17455> AllocateTemporaryEntryPoints +00007FA12EAA6840 a8 stub<17456> AllocateTemporaryEntryPoints +00007FA12EAA68E8 18 stub<17457> AllocateTemporaryEntryPoints +00007FA12EAA6900 78 stub<17458> AllocateTemporaryEntryPoints +00007FA12EAA6978 18 stub<17459> AllocateTemporaryEntryPoints +00007FA12E5A3F80 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::.ctor()[QuickJitted] +00007FA12E5A4020 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12EAA6990 30 stub<17460> AllocateTemporaryEntryPoints +00007FA12EAA69C0 18 stub<17461> AllocateTemporaryEntryPoints +00007FA12EAA69D8 48 stub<17462> AllocateTemporaryEntryPoints +00007FA12EAA6A20 d8 stub<17463> AllocateTemporaryEntryPoints +00007FA12E5A4050 388 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E5A4400 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12E5A4490 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey]::get_Default()[QuickJitted] +00007FA12E5A44D0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey]::.cctor()[QuickJitted] +00007FA12EAA6AF8 18 stub<17464> AllocateTemporaryEntryPoints +00007FA12EAA6B10 a8 stub<17465> AllocateTemporaryEntryPoints +00007FA12E5A4550 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey]::.ctor()[QuickJitted] +00007FA12E5A4590 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey]::.ctor()[QuickJitted] +00007FA12EAA6BB8 18 stub<17466> AllocateTemporaryEntryPoints +00007FA12EAA6BD0 180 stub<17467> AllocateTemporaryEntryPoints +00007FA127809230 18 stub<17468> GenerateResolveStub +00007FA1277CB1C0 20 stub<17469> GenerateDispatchStub +00007FA12E6716C0 18 stub<17470> GenerateLookupStub +00007FA1278092A0 18 stub<17471> GenerateResolveStub +00007FA1277CB1E0 20 stub<17472> GenerateDispatchStub +00007FA12EAA6D50 18 stub<17473> AllocateTemporaryEntryPoints +00007FA12E6716E0 18 stub<17474> GenerateLookupStub +00007FA127809310 18 stub<17475> GenerateResolveStub +00007FA1277CB200 20 stub<17476> GenerateDispatchStub +00007FA12EAA6D68 78 stub<17477> AllocateTemporaryEntryPoints +00007FA12EAA6DE0 18 stub<17478> AllocateTemporaryEntryPoints +00007FA12EAA6DF8 48 stub<17479> AllocateTemporaryEntryPoints +00007FA12EAA6E40 78 stub<17480> AllocateTemporaryEntryPoints +00007FA12EAA8000 228 stub<17481> AllocateTemporaryEntryPoints +00007FA12EAA8228 168 stub<17482> AllocateTemporaryEntryPoints +00007FA12EAA8390 378 stub<17483> AllocateTemporaryEntryPoints +00007FA12EAA8708 90 stub<17484> AllocateTemporaryEntryPoints +00007FA12EAA8798 18 stub<17485> AllocateTemporaryEntryPoints +00007FA127809380 18 stub<17486> GenerateResolveStub +00007FA1277CB220 20 stub<17487> GenerateDispatchStub +00007FA12E671700 18 stub<17488> GenerateLookupStub +00007FA1278093F0 18 stub<17489> GenerateResolveStub +00007FA1277CB240 20 stub<17490> GenerateDispatchStub +00007FA12EAA87B0 18 stub<17491> AllocateTemporaryEntryPoints +00007FA12EAA87C8 168 stub<17492> AllocateTemporaryEntryPoints +00007FA12EAA8930 18 stub<17493> AllocateTemporaryEntryPoints +00007FA12E671720 18 stub<17494> GenerateLookupStub +00007FA12EAA8948 30 stub<17495> AllocateTemporaryEntryPoints +00007FA12EAA8978 30 stub<17496> AllocateTemporaryEntryPoints +00007FA12EAA89A8 30 stub<17497> AllocateTemporaryEntryPoints +00007FA127809460 18 stub<17498> GenerateResolveStub +00007FA1277CB260 20 stub<17499> GenerateDispatchStub +00007FA1278094D0 18 stub<17500> GenerateResolveStub +00007FA1277CB280 20 stub<17501> GenerateDispatchStub +00007FA12EAA89D8 18 stub<17502> AllocateTemporaryEntryPoints +00007FA12E671740 18 stub<17503> GenerateLookupStub +00007FA127809540 18 stub<17504> GenerateResolveStub +00007FA1277CB2A0 20 stub<17505> GenerateDispatchStub +00007FA12E671760 18 stub<17506> GenerateLookupStub +00007FA1278095B0 18 stub<17507> GenerateResolveStub +00007FA1277CB2C0 20 stub<17508> GenerateDispatchStub +00007FA12EAA89F0 18 stub<17509> AllocateTemporaryEntryPoints +00007FA12EAA8A08 60 stub<17510> AllocateTemporaryEntryPoints +00007FA12EAA8A68 18 stub<17511> AllocateTemporaryEntryPoints +00007FA12EAA8A80 18 stub<17512> AllocateTemporaryEntryPoints +00007FA12E5A49D0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A4A10 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EAA8A98 18 stub<17513> AllocateTemporaryEntryPoints +00007FA127809620 18 stub<17514> GenerateResolveStub +00007FA1277CB2E0 20 stub<17515> GenerateDispatchStub +00007FA127809690 18 stub<17516> GenerateResolveStub +00007FA1277CB300 20 stub<17517> GenerateDispatchStub +00007FA12EAA8AB0 108 stub<17518> AllocateTemporaryEntryPoints +00007FA12EAA8BB8 f0 stub<17519> AllocateTemporaryEntryPoints +00007FA12EAA8CA8 18 stub<17520> AllocateTemporaryEntryPoints +00007FA12EAA8CC0 18 stub<17521> AllocateTemporaryEntryPoints +00007FA12EAA8CD8 18 stub<17522> AllocateTemporaryEntryPoints +00007FA127809700 18 stub<17523> GenerateResolveStub +00007FA1277CB320 20 stub<17524> GenerateDispatchStub +00007FA12EAA8CF0 18 stub<17525> AllocateTemporaryEntryPoints +00007FA12EAA8D08 18 stub<17526> AllocateTemporaryEntryPoints +00007FA12EAA8D20 138 stub<17527> AllocateTemporaryEntryPoints +00007FA12EAA8E58 48 stub<17528> AllocateTemporaryEntryPoints +00007FA12EAA8EA0 18 stub<17529> AllocateTemporaryEntryPoints +00007FA12EAA8EB8 18 stub<17530> AllocateTemporaryEntryPoints +00007FA12EAA8ED0 78 stub<17531> AllocateTemporaryEntryPoints +00007FA12EAA8F48 60 stub<17532> AllocateTemporaryEntryPoints +00007FA12EAA8FA8 18 stub<17533> AllocateTemporaryEntryPoints +00007FA12EAAA000 120 stub<17534> AllocateTemporaryEntryPoints +00007FA12EAAA120 18 stub<17535> AllocateTemporaryEntryPoints +00007FA12EAAA138 18 stub<17536> AllocateTemporaryEntryPoints +00007FA12E671780 18 stub<17537> GenerateLookupStub +00007FA127809770 18 stub<17538> GenerateResolveStub +00007FA1277CB340 20 stub<17539> GenerateDispatchStub +00007FA12E6717A0 18 stub<17540> GenerateLookupStub +00007FA1278097E0 18 stub<17541> GenerateResolveStub +00007FA1277CB360 20 stub<17542> GenerateDispatchStub +00007FA12E6717C0 18 stub<17543> GenerateLookupStub +00007FA127809850 18 stub<17544> GenerateResolveStub +00007FA1277CB380 20 stub<17545> GenerateDispatchStub +00007FA12EAAA150 18 stub<17546> AllocateTemporaryEntryPoints +00007FA12EAAA168 18 stub<17547> AllocateTemporaryEntryPoints +00007FA12EAAA180 18 stub<17548> AllocateTemporaryEntryPoints +00007FA12EAAA198 78 stub<17549> AllocateTemporaryEntryPoints +00007FA12EAAA210 30 stub<17550> AllocateTemporaryEntryPoints +00007FA12EAAA240 48 stub<17551> AllocateTemporaryEntryPoints +00007FA12EAAA288 48 stub<17552> AllocateTemporaryEntryPoints +00007FA12EAAA2D0 90 stub<17553> AllocateTemporaryEntryPoints +00007FA12EAAA360 48 stub<17554> AllocateTemporaryEntryPoints +00007FA12EAAA3A8 48 stub<17555> AllocateTemporaryEntryPoints +00007FA12EAAA3F0 48 stub<17556> AllocateTemporaryEntryPoints +00007FA12EAAA438 18 stub<17557> AllocateTemporaryEntryPoints +00007FA12EAAA450 18 stub<17558> AllocateTemporaryEntryPoints +00007FA12EAAA468 18 stub<17559> AllocateTemporaryEntryPoints +00007FA12EAAA480 18 stub<17560> AllocateTemporaryEntryPoints +00007FA12EAAA498 18 stub<17561> AllocateTemporaryEntryPoints +00007FA12EAAA4C8 18 stub<17562> AllocateTemporaryEntryPoints +00007FA12EAAA4E0 18 stub<17563> AllocateTemporaryEntryPoints +00007FA128668780 37 Microsoft.AspNetCore.Mvc.Razor.IRazorPage /* MT: 0x00007FA12E3FB340 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method138(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12EAAA4F8 6f0 stub<17564> AllocateTemporaryEntryPoints +00007FA12EAAABE8 78 stub<17565> AllocateTemporaryEntryPoints +00007FA12EAAAC60 a8 stub<17566> AllocateTemporaryEntryPoints +00007FA12EAAAD08 18 stub<17567> AllocateTemporaryEntryPoints +00007FA12EAAAD20 18 stub<17568> AllocateTemporaryEntryPoints +00007FA12EAAAD38 18 stub<17569> AllocateTemporaryEntryPoints +00007FA12EAAAD50 60 stub<17570> AllocateTemporaryEntryPoints +00007FA12E5A4B10 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::.ctor()[QuickJitted] +00007FA12E5A4B80 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::.cctor()[QuickJitted] +00007FA1278098C0 18 stub<17571> GenerateResolveStub +00007FA1277CB3A0 20 stub<17572> GenerateDispatchStub +00007FA127809930 18 stub<17573> GenerateResolveStub +00007FA1277CB3C0 20 stub<17574> GenerateDispatchStub +00007FA1278099A0 18 stub<17575> GenerateResolveStub +00007FA1277CB3E0 20 stub<17576> GenerateDispatchStub +00007FA128668820 37 Microsoft.AspNetCore.Mvc.Razor.IRazorPage /* MT: 0x00007FA12E3FB340 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method139(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12E5A4BC0 d7 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::Insert(int32,!0)[QuickJitted] +00007FA12E5A4CB0 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::Grow(int32)[QuickJitted] +00007FA12E5A4D40 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::set_Capacity(int32)[QuickJitted] +00007FA12EAAADC8 78 stub<17577> AllocateTemporaryEntryPoints +00007FA12EAAAE40 c0 stub<17578> AllocateTemporaryEntryPoints +00007FA12EAAAF00 18 stub<17579> AllocateTemporaryEntryPoints +00007FA12EAAC000 f0 stub<17580> AllocateTemporaryEntryPoints +00007FA127809A10 18 stub<17581> GenerateResolveStub +00007FA1277CB400 20 stub<17582> GenerateDispatchStub +00007FA1277CB420 20 stub<17583> GenerateDispatchStub +00007FA1277CB440 20 stub<17584> GenerateDispatchStub +00007FA127809A80 18 stub<17585> GenerateResolveStub +00007FA1277CB460 20 stub<17586> GenerateDispatchStub +00007FA12EAAC0F0 240 stub<17587> AllocateTemporaryEntryPoints +00007FA12EAAC330 18 stub<17588> AllocateTemporaryEntryPoints +00007FA12EAAC348 18 stub<17589> AllocateTemporaryEntryPoints +00007FA12EAAC360 18 stub<17590> AllocateTemporaryEntryPoints +00007FA12EAAC378 18 stub<17591> AllocateTemporaryEntryPoints +00007FA12EAAC390 60 stub<17592> AllocateTemporaryEntryPoints +00007FA12E5A4E20 35 instance void [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::.ctor()[QuickJitted] +00007FA12EAAC3F0 18 stub<17593> AllocateTemporaryEntryPoints +00007FA12E5A4E70 27 !!0[] [System.Private.CoreLib] System.Array::Empty()[QuickJitted] +00007FA12E5A4EB0 2a void [System.Private.CoreLib] System.Array+EmptyArray`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::.cctor()[QuickJitted] +00007FA12E5A4EF0 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::get_Count()[QuickJitted] +00007FA12E5A4F20 68 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::get_Item(int32)[QuickJitted] +00007FA12EAAC408 a8 stub<17594> AllocateTemporaryEntryPoints +00007FA1277CB480 20 stub<17595> GenerateDispatchStub +00007FA12EAAC4B0 18 stub<17596> AllocateTemporaryEntryPoints +00007FA12EAAC4C8 18 stub<17597> AllocateTemporaryEntryPoints +00007FA12EAAC4E0 18 stub<17598> AllocateTemporaryEntryPoints +00007FA12E5A4FA0 47 instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`1 /* MT: 0x00007FA12DDBAC88 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12EAAC4F8 c0 stub<17599> AllocateTemporaryEntryPoints +00007FA12EAAC5B8 c0 stub<17600> AllocateTemporaryEntryPoints +00007FA12EAAC678 60 stub<17601> AllocateTemporaryEntryPoints +00007FA12EAAC6D8 18 stub<17602> AllocateTemporaryEntryPoints +00007FA12EAAC6F0 18 stub<17603> AllocateTemporaryEntryPoints +00007FA12E5A5410 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A5450 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EAAC708 168 stub<17604> AllocateTemporaryEntryPoints +00007FA12EAAC870 60 stub<17605> AllocateTemporaryEntryPoints +00007FA12EAAC8D0 18 stub<17606> AllocateTemporaryEntryPoints +00007FA12EAAC8E8 18 stub<17607> AllocateTemporaryEntryPoints +00007FA12E5A5550 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A5590 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EAAC900 30 stub<17608> AllocateTemporaryEntryPoints +00007FA127809AF0 18 stub<17609> GenerateResolveStub +00007FA1277CB4A0 20 stub<17610> GenerateDispatchStub +00007FA12EAAC930 18 stub<17611> AllocateTemporaryEntryPoints +00007FA12EAAC948 18 stub<17612> AllocateTemporaryEntryPoints +00007FA12EAAC960 18 stub<17613> AllocateTemporaryEntryPoints +00007FA12EAAC978 18 stub<17614> AllocateTemporaryEntryPoints +00007FA12EAAC990 18 stub<17615> AllocateTemporaryEntryPoints +00007FA12EAAC9A8 18 stub<17616> AllocateTemporaryEntryPoints +00007FA12EAAC9C0 18 stub<17617> AllocateTemporaryEntryPoints +00007FA12EAAC9D8 18 stub<17618> AllocateTemporaryEntryPoints +00007FA12EAAC9F0 18 stub<17619> AllocateTemporaryEntryPoints +00007FA12EAACA08 378 stub<17620> AllocateTemporaryEntryPoints +00007FA12EAACD80 180 stub<17621> AllocateTemporaryEntryPoints +00007FA12EAACF00 78 stub<17622> AllocateTemporaryEntryPoints +00007FA12EAACF78 18 stub<17623> AllocateTemporaryEntryPoints +00007FA12EAACF90 18 stub<17624> AllocateTemporaryEntryPoints +00007FA12E5A5690 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A56D0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EAACFA8 18 stub<17625> AllocateTemporaryEntryPoints +00007FA12EAACFC0 18 stub<17626> AllocateTemporaryEntryPoints +00007FA12EAACFD8 18 stub<17627> AllocateTemporaryEntryPoints +00007FA12E5A57D0 69 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12EAAE000 60 stub<17628> AllocateTemporaryEntryPoints +00007FA12EAAE060 18 stub<17629> AllocateTemporaryEntryPoints +00007FA12EAAE078 18 stub<17630> AllocateTemporaryEntryPoints +00007FA12E5A5850 419 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::FindValue(!0)[QuickJitted] +00007FA12E5A5C90 3f instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::Add(!0,!1)[QuickJitted] +00007FA12EAAE090 18 stub<17631> AllocateTemporaryEntryPoints +00007FA12E5A5CF0 703 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E5A6420 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::Initialize(int32)[QuickJitted] +00007FA12EAAE0A8 60 stub<17632> AllocateTemporaryEntryPoints +00007FA12E5A6520 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::GetBucket(uint32)[QuickJitted] +00007FA12EAAE108 18 stub<17633> AllocateTemporaryEntryPoints +00007FA12EAAE120 18 stub<17634> AllocateTemporaryEntryPoints +00007FA12EAAE138 18 stub<17635> AllocateTemporaryEntryPoints +00007FA12E5A6590 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12E5A65D0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EAAE150 18 stub<17636> AllocateTemporaryEntryPoints +00007FA12EAAE168 18 stub<17637> AllocateTemporaryEntryPoints +00007FA12EAAE180 198 stub<17638> AllocateTemporaryEntryPoints +00007FA127809B60 18 stub<17639> GenerateResolveStub +00007FA1277CB4C0 20 stub<17640> GenerateDispatchStub +00007FA12EAAE318 18 stub<17641> AllocateTemporaryEntryPoints +00007FA12EAAE330 18 stub<17642> AllocateTemporaryEntryPoints +00007FA12E5A66D0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A6710 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA127809BD0 18 stub<17643> GenerateResolveStub +00007FA1277CB4E0 20 stub<17644> GenerateDispatchStub +00007FA127809C40 18 stub<17645> GenerateResolveStub +00007FA1277CB500 20 stub<17646> GenerateDispatchStub +00007FA12EAAE348 18 stub<17647> AllocateTemporaryEntryPoints +00007FA12EAAE360 18 stub<17648> AllocateTemporaryEntryPoints +00007FA12E5A6810 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A6850 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6717E0 18 stub<17649> GenerateLookupStub +00007FA12EAAE378 18 stub<17650> AllocateTemporaryEntryPoints +00007FA12E671800 18 stub<17651> GenerateLookupStub +00007FA12E5A6950 4b0 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12E5A6E20 126 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::GetBucket(int32)[QuickJitted] +00007FA12EAAE390 18 stub<17652> AllocateTemporaryEntryPoints +00007FA12EAAE3A8 90 stub<17653> AllocateTemporaryEntryPoints +00007FA12EAAE438 90 stub<17654> AllocateTemporaryEntryPoints +00007FA12EAAE4C8 30 stub<17655> AllocateTemporaryEntryPoints +00007FA12EAAE4F8 18 stub<17656> AllocateTemporaryEntryPoints +00007FA12EAAE510 18 stub<17657> AllocateTemporaryEntryPoints +00007FA12EAAE528 18 stub<17658> AllocateTemporaryEntryPoints +00007FA12EAAE540 18 stub<17659> AllocateTemporaryEntryPoints +00007FA12EAAE558 18 stub<17660> AllocateTemporaryEntryPoints +00007FA12EAAE570 18 stub<17661> AllocateTemporaryEntryPoints +00007FA12784B830 11 stub<17662> GenerateVTableCallStub +00007FA1286688C0 47 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method140(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider /* MT: 0x00007FA12D0F32C8 */,Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary /* MT: 0x00007FA12E272A30 */)[Optimized] +00007FA12EAAE588 18 stub<17663> AllocateTemporaryEntryPoints +00007FA12EAAE5A0 18 stub<17664> AllocateTemporaryEntryPoints +00007FA12EAAE5B8 18 stub<17665> AllocateTemporaryEntryPoints +00007FA12EAAE5D0 18 stub<17666> AllocateTemporaryEntryPoints +00007FA12EAAE5E8 18 stub<17667> AllocateTemporaryEntryPoints +00007FA12EAAE600 18 stub<17668> AllocateTemporaryEntryPoints +00007FA128668970 5f Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method141(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */)[Optimized] +00007FA12EAAE618 18 stub<17669> AllocateTemporaryEntryPoints +00007FA12EAAE630 18 stub<17670> AllocateTemporaryEntryPoints +00007FA12EAAE648 18 stub<17671> AllocateTemporaryEntryPoints +00007FA12EAAE660 18 stub<17672> AllocateTemporaryEntryPoints +00007FA12E671820 18 stub<17673> GenerateLookupStub +00007FA127809CB0 18 stub<17674> GenerateResolveStub +00007FA1277CB520 20 stub<17675> GenerateDispatchStub +00007FA12EAAE678 18 stub<17676> AllocateTemporaryEntryPoints +00007FA12EAAE690 18 stub<17677> AllocateTemporaryEntryPoints +00007FA12EAAE6A8 18 stub<17678> AllocateTemporaryEntryPoints +00007FA12EAAE6C0 18 stub<17679> AllocateTemporaryEntryPoints +00007FA12EAAE6D8 18 stub<17680> AllocateTemporaryEntryPoints +00007FA12EAAE6F0 228 stub<17681> AllocateTemporaryEntryPoints +00007FA12EAAE918 18 stub<17682> AllocateTemporaryEntryPoints +00007FA12EAAE930 18 stub<17683> AllocateTemporaryEntryPoints +00007FA128663550 1a object [System.Private.CoreLib] dynamicClass::InvokeStub_AttributeUsageAttribute.set_AllowMultiple(object,object,native int*)[Optimized] +00007FA128667930 1a object [System.Private.CoreLib] dynamicClass::InvokeStub_AttributeUsageAttribute.set_Inherited(object,object,native int*)[Optimized] +00007FA12EAAE948 18 stub<17684> AllocateTemporaryEntryPoints +00007FA12EAAE960 18 stub<17685> AllocateTemporaryEntryPoints +00007FA12E5A6F60 f9 instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::GetOrAdd(!0,!1)[QuickJitted] +00007FA12E5A7080 47a instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::TryGetValueInternal(!0,int32,!1&)[QuickJitted] +00007FA12EAAE978 18 stub<17686> AllocateTemporaryEntryPoints +00007FA12E5A7520 74b instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12E5A7CA0 db instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA12E5A7D90 74 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA12EAAE990 18 stub<17687> AllocateTemporaryEntryPoints +00007FA12EAAE9A8 1e0 stub<17688> AllocateTemporaryEntryPoints +00007FA12EAAEB88 1e0 stub<17689> AllocateTemporaryEntryPoints +00007FA12EAAED68 c0 stub<17690> AllocateTemporaryEntryPoints +00007FA12EAAEE28 90 stub<17691> AllocateTemporaryEntryPoints +00007FA12EAAEEB8 a8 stub<17692> AllocateTemporaryEntryPoints +00007FA12EAAEF60 18 stub<17693> AllocateTemporaryEntryPoints +00007FA12E5A7E20 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_ModelExpressionProvider(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider)[QuickJitted] +00007FA12EAAEF78 18 stub<17694> AllocateTemporaryEntryPoints +00007FA12EB70000 1e0 stub<17695> AllocateTemporaryEntryPoints +00007FA12EB701E0 48 stub<17696> AllocateTemporaryEntryPoints +00007FA12EB70228 18 stub<17697> AllocateTemporaryEntryPoints +00007FA12EB70240 a8 stub<17698> AllocateTemporaryEntryPoints +00007FA1277CB540 20 stub<17699> GenerateDispatchStub +00007FA12EB702E8 18 stub<17700> AllocateTemporaryEntryPoints +00007FA12EB70300 30 stub<17701> AllocateTemporaryEntryPoints +00007FA12EB70330 48 stub<17702> AllocateTemporaryEntryPoints +00007FA12EB70378 30 stub<17703> AllocateTemporaryEntryPoints +00007FA12EB703A8 18 stub<17704> AllocateTemporaryEntryPoints +00007FA12EB703C0 18 stub<17705> AllocateTemporaryEntryPoints +00007FA12EB703D8 18 stub<17706> AllocateTemporaryEntryPoints +00007FA12EB703F0 18 stub<17707> AllocateTemporaryEntryPoints +00007FA12EB70408 48 stub<17708> AllocateTemporaryEntryPoints +00007FA12EB70450 90 stub<17709> AllocateTemporaryEntryPoints +00007FA12EB704E0 90 stub<17710> AllocateTemporaryEntryPoints +00007FA12EB70570 48 stub<17711> AllocateTemporaryEntryPoints +00007FA12EB705B8 48 stub<17712> AllocateTemporaryEntryPoints +00007FA12EB70600 48 stub<17713> AllocateTemporaryEntryPoints +00007FA12EB70648 30 stub<17714> AllocateTemporaryEntryPoints +00007FA12EB70678 30 stub<17715> AllocateTemporaryEntryPoints +00007FA12EB706A8 48 stub<17716> AllocateTemporaryEntryPoints +00007FA12EB706F0 60 stub<17717> AllocateTemporaryEntryPoints +00007FA12EB70750 a8 stub<17718> AllocateTemporaryEntryPoints +00007FA12EB707F8 138 stub<17719> AllocateTemporaryEntryPoints +00007FA12EB70930 48 stub<17720> AllocateTemporaryEntryPoints +00007FA1277CB560 20 stub<17721> GenerateDispatchStub +00007FA12E5A7E70 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_Url(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IUrlHelper)[QuickJitted] +00007FA12EB70978 138 stub<17722> AllocateTemporaryEntryPoints +00007FA12EB70AB0 60 stub<17723> AllocateTemporaryEntryPoints +00007FA12EB70B10 18 stub<17724> AllocateTemporaryEntryPoints +00007FA12EB70B28 90 stub<17725> AllocateTemporaryEntryPoints +00007FA12EB70BB8 18 stub<17726> AllocateTemporaryEntryPoints +00007FA12E5A82C0 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_Component(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.IViewComponentHelper)[QuickJitted] +00007FA12E5A8310 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_Json(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper)[QuickJitted] +00007FA12EB70BD0 258 stub<17727> AllocateTemporaryEntryPoints +00007FA12EB70E28 48 stub<17728> AllocateTemporaryEntryPoints +00007FA128668A40 21 object [System.Private.CoreLib] dynamicClass::InvokeStub_DefaultObjectPoolProvider..ctor(object,object,native int*)[Optimized] +00007FA12EB70E70 18 stub<17729> AllocateTemporaryEntryPoints +00007FA12EB70E88 18 stub<17730> AllocateTemporaryEntryPoints +00007FA12EB70EA0 60 stub<17731> AllocateTemporaryEntryPoints +00007FA127809D20 18 stub<17732> GenerateResolveStub +00007FA1277CB580 20 stub<17733> GenerateDispatchStub +00007FA127809D90 18 stub<17734> GenerateResolveStub +00007FA1277CB5A0 20 stub<17735> GenerateDispatchStub +00007FA12E671840 18 stub<17736> GenerateLookupStub +00007FA127809E00 18 stub<17737> GenerateResolveStub +00007FA1277CB5C0 20 stub<17738> GenerateDispatchStub +00007FA12EB70F00 18 stub<17739> AllocateTemporaryEntryPoints +00007FA12E671860 18 stub<17740> GenerateLookupStub +00007FA12EB70F18 18 stub<17741> AllocateTemporaryEntryPoints +00007FA12EB70F30 30 stub<17742> AllocateTemporaryEntryPoints +00007FA12EB72000 120 stub<17743> AllocateTemporaryEntryPoints +00007FA12EB72120 18 stub<17744> AllocateTemporaryEntryPoints +00007FA12EB72138 60 stub<17745> AllocateTemporaryEntryPoints +00007FA12EB72198 6f0 stub<17746> AllocateTemporaryEntryPoints +00007FA12EB72888 c0 stub<17747> AllocateTemporaryEntryPoints +00007FA12EB72948 90 stub<17748> AllocateTemporaryEntryPoints +00007FA12EB729D8 a8 stub<17749> AllocateTemporaryEntryPoints +00007FA12EB72A80 18 stub<17750> AllocateTemporaryEntryPoints +00007FA12EB72A98 78 stub<17751> AllocateTemporaryEntryPoints +00007FA12EB72B10 18 stub<17752> AllocateTemporaryEntryPoints +00007FA12E5A8360 89 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorCache+CacheEntry]::.ctor()[QuickJitted] +00007FA12E5A8400 1b int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorCache+CacheEntry]::get_DefaultConcurrencyLevel()[QuickJitted] +00007FA12EB72B28 18 stub<17753> AllocateTemporaryEntryPoints +00007FA12EB72B40 48 stub<17754> AllocateTemporaryEntryPoints +00007FA12E5A8430 3da instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorCache+CacheEntry]::.ctor(int32,int32,bool,class [System.Private.CoreLib]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E5A8830 72 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorCache+CacheEntry]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2/Node[],object[],int32[])[QuickJitted] +00007FA12EB72B88 48 stub<17755> AllocateTemporaryEntryPoints +00007FA12E671880 18 stub<17756> GenerateLookupStub +00007FA127809E70 18 stub<17757> GenerateResolveStub +00007FA1277CB5E0 20 stub<17758> GenerateDispatchStub +00007FA12E6718A0 18 stub<17759> GenerateLookupStub +00007FA127809EE0 18 stub<17760> GenerateResolveStub +00007FA1277CB600 20 stub<17761> GenerateDispatchStub +00007FA12EB72BD0 f0 stub<17762> AllocateTemporaryEntryPoints +00007FA12EB72CC0 60 stub<17763> AllocateTemporaryEntryPoints +00007FA12E5A88C0 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_Html(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper`1)[QuickJitted] +00007FA12EB72D20 18 stub<17764> AllocateTemporaryEntryPoints +00007FA12E5A8910 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::ExecuteAsync()[QuickJitted] +00007FA12EB72D38 18 stub<17765> AllocateTemporaryEntryPoints +00007FA12E5A8980 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A89C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5A8AC0 c8 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart+d__0::MoveNext()[QuickJitted] +00007FA128668AC0 47 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method142(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider /* MT: 0x00007FA12D0F32C8 */,Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary /* MT: 0x00007FA12E272A30 */)[Optimized] +00007FA128668B70 5f Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method143(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */)[Optimized] +00007FA12EB72D68 18 stub<17766> AllocateTemporaryEntryPoints +00007FA12EB72D80 18 stub<17767> AllocateTemporaryEntryPoints +00007FA12EB72D98 18 stub<17768> AllocateTemporaryEntryPoints +00007FA12EB72DB0 18 stub<17769> AllocateTemporaryEntryPoints +00007FA12EB72DC8 18 stub<17770> AllocateTemporaryEntryPoints +00007FA12E5A8BB0 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_ModelExpressionProvider(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider)[QuickJitted] +00007FA127809F50 18 stub<17771> GenerateResolveStub +00007FA1277CB620 20 stub<17772> GenerateDispatchStub +00007FA12E5A8C00 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_Url(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IUrlHelper)[QuickJitted] +00007FA128668C40 4f object [System.Private.CoreLib] dynamicClass::InvokeStub_DefaultViewComponentHelper..ctor(object,object,native int*)[Optimized] +00007FA127809FC0 18 stub<17773> GenerateResolveStub +00007FA1277CB640 20 stub<17774> GenerateDispatchStub +00007FA12E5A8C50 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_Component(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.IViewComponentHelper)[QuickJitted] +00007FA12EB72E10 18 stub<17775> AllocateTemporaryEntryPoints +00007FA12E5A8CA0 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_Json(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper)[QuickJitted] +00007FA12EB72E28 18 stub<17776> AllocateTemporaryEntryPoints +00007FA12EB72E40 18 stub<17777> AllocateTemporaryEntryPoints +00007FA12E5A8CF0 3e instance Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder/GeneratedMethod /* MT: 0x00007FA12DBCD458 */ [System.Collections.Concurrent] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey /* MT: 0x00007FA12DBC9940 */,System.Func`3 /* MT: 0x00007FA12A45B318 */,Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite /* MT: 0x00007FA12DBC9B98 */)[Optimized] +00007FA128668CF0 70 object [System.Private.CoreLib] dynamicClass::InvokeStub_HtmlHelper`1..ctor(object,object,native int*)[Optimized] +00007FA12E5A8D50 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_Html(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper`1)[QuickJitted] +00007FA12EB72E88 18 stub<17778> AllocateTemporaryEntryPoints +00007FA12E5A8DA0 19b instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::GetOrAdd(!0,class [System.Private.CoreLib]System.Func`3,!!0)[QuickJitted] +00007FA12E5A8F60 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::ExecuteAsync()[QuickJitted] +00007FA12EB72EA0 18 stub<17779> AllocateTemporaryEntryPoints +00007FA12EB72EB8 18 stub<17780> AllocateTemporaryEntryPoints +00007FA12E5A8FD0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5A9010 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E6718C0 18 stub<17781> GenerateLookupStub +00007FA12E5A9110 377 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::TryGetValueInternal(!0,int32,!1&)[QuickJitted] +00007FA12E5A94B0 1f9 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index+d__0::MoveNext()[QuickJitted] +00007FA12E5A96D0 94 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::GetBucket(int32)[QuickJitted] +00007FA12E6718E0 18 stub<17782> GenerateLookupStub +00007FA12780A030 18 stub<17783> GenerateResolveStub +00007FA1277CB660 20 stub<17784> GenerateDispatchStub +00007FA12EB74000 1e0 stub<17785> AllocateTemporaryEntryPoints +00007FA12EB741E0 18 stub<17786> AllocateTemporaryEntryPoints +00007FA12EB741F8 18 stub<17787> AllocateTemporaryEntryPoints +00007FA12EB74210 18 stub<17788> AllocateTemporaryEntryPoints +00007FA12E671900 18 stub<17789> GenerateLookupStub +00007FA12EB74210 30 stub<17790> AllocateTemporaryEntryPoints +00007FA12EB74240 18 stub<17791> AllocateTemporaryEntryPoints +00007FA12EB74258 a8 stub<17792> AllocateTemporaryEntryPoints +00007FA12EB74300 18 stub<17793> AllocateTemporaryEntryPoints +00007FA12EB74318 60 stub<17794> AllocateTemporaryEntryPoints +00007FA12EB74378 78 stub<17795> AllocateTemporaryEntryPoints +00007FA12EB743F0 18 stub<17796> AllocateTemporaryEntryPoints +00007FA12EB74408 18 stub<17797> AllocateTemporaryEntryPoints +00007FA12EB74438 18 stub<17798> AllocateTemporaryEntryPoints +00007FA12E5A9B80 3e5 instance !0[] [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Rent(int32)[QuickJitted] +00007FA12EB74450 18 stub<17799> AllocateTemporaryEntryPoints +00007FA12EB74468 18 stub<17800> AllocateTemporaryEntryPoints +00007FA12EB74480 18 stub<17801> AllocateTemporaryEntryPoints +00007FA12EB74498 18 stub<17802> AllocateTemporaryEntryPoints +00007FA12E5A9F90 bc !!0[] [System.Private.CoreLib] System.GC::AllocateUninitializedArray(int32,bool)[QuickJitted] +00007FA12E5AA060 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12E5AA080 5c4 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[QuickJitted] +00007FA12E5AA670 94 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::GetBucketAndLock(int32,uint32&)[QuickJitted] +00007FA12E5AA720 76 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder+GeneratedMethod]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[QuickJitted] +00007FA12EB744B0 18 stub<17803> AllocateTemporaryEntryPoints +00007FA12EB744C8 18 stub<17804> AllocateTemporaryEntryPoints +00007FA12E5AA7B0 446 instance native uint [System.Text.Encodings.Web] System.Text.Encodings.Web.OptimizedInboxTextEncoder::GetIndexOfFirstCharToEncodeSsse3(char*,native uint)[QuickJitted] +00007FA12E5AAC70 1f instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper`1 [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::get_Html()[QuickJitted] +00007FA1277CB680 20 stub<17805> GenerateDispatchStub +00007FA12EB744E0 18 stub<17806> AllocateTemporaryEntryPoints +00007FA12EB744F8 18 stub<17807> AllocateTemporaryEntryPoints +00007FA12EB74510 18 stub<17808> AllocateTemporaryEntryPoints +00007FA12E5AACB0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5AACF0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EB74528 18 stub<17809> AllocateTemporaryEntryPoints +00007FA12EB74540 18 stub<17810> AllocateTemporaryEntryPoints +00007FA12EB74558 18 stub<17811> AllocateTemporaryEntryPoints +00007FA12780A0A0 18 stub<17812> GenerateResolveStub +00007FA1277CB6A0 20 stub<17813> GenerateDispatchStub +00007FA12780A110 18 stub<17814> GenerateResolveStub +00007FA1277CB6C0 20 stub<17815> GenerateDispatchStub +00007FA12EB74570 360 stub<17816> AllocateTemporaryEntryPoints +00007FA12EB748D0 48 stub<17817> AllocateTemporaryEntryPoints +00007FA128668DC0 55 Microsoft.AspNetCore.Mvc.Razor.IRazorPage /* MT: 0x00007FA12E3FB340 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method144(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */)[Optimized] +00007FA12EB74918 18 stub<17818> AllocateTemporaryEntryPoints +00007FA12EB74930 18 stub<17819> AllocateTemporaryEntryPoints +00007FA12E5AADF0 27 !!0[] [System.Private.CoreLib] System.Array::Empty()[QuickJitted] +00007FA12E5AAE30 2a void [System.Private.CoreLib] System.Array+EmptyArray`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::.cctor()[QuickJitted] +00007FA12780A180 18 stub<17820> GenerateResolveStub +00007FA1277CB6E0 20 stub<17821> GenerateDispatchStub +00007FA12780A1F0 18 stub<17822> GenerateResolveStub +00007FA1277CB700 20 stub<17823> GenerateDispatchStub +00007FA12780A260 18 stub<17824> GenerateResolveStub +00007FA1277CB720 20 stub<17825> GenerateDispatchStub +00007FA12780A2D0 18 stub<17826> GenerateResolveStub +00007FA1277CB740 20 stub<17827> GenerateDispatchStub +00007FA12780A340 18 stub<17828> GenerateResolveStub +00007FA1277CB760 20 stub<17829> GenerateDispatchStub +00007FA12780A3B0 18 stub<17830> GenerateResolveStub +00007FA1277CB780 20 stub<17831> GenerateDispatchStub +00007FA12780A420 18 stub<17832> GenerateResolveStub +00007FA1277CB7A0 20 stub<17833> GenerateDispatchStub +00007FA128668E80 47 Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method145(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider /* MT: 0x00007FA12D0F32C8 */,Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary /* MT: 0x00007FA12E272A30 */)[Optimized] +00007FA128668F30 5f Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */ [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method146(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary /* MT: 0x00007FA12E5434E0 */)[Optimized] +00007FA12EB74948 48 stub<17834> AllocateTemporaryEntryPoints +00007FA12EB74990 18 stub<17835> AllocateTemporaryEntryPoints +00007FA12EB749A8 18 stub<17836> AllocateTemporaryEntryPoints +00007FA12EB749C0 18 stub<17837> AllocateTemporaryEntryPoints +00007FA12EB749D8 18 stub<17838> AllocateTemporaryEntryPoints +00007FA12EB749F0 18 stub<17839> AllocateTemporaryEntryPoints +00007FA12E5AAE70 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_ModelExpressionProvider(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider)[QuickJitted] +00007FA12E5AAEC0 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_Url(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IUrlHelper)[QuickJitted] +00007FA128669020 ce object [Microsoft.Extensions.DependencyInjection] dynamicClass::ResolveService(Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder/ILEmitResolverBuilderRuntimeContext /* MT: 0x00007FA12E03FA48 */,Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope /* MT: 0x00007FA12DBCA288 */)[Optimized] +00007FA12E671920 18 stub<17840> GenerateLookupStub +00007FA12E671940 18 stub<17841> GenerateLookupStub +00007FA128669160 18d object [Microsoft.Extensions.DependencyInjection] dynamicClass::ResolveService(Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder/ILEmitResolverBuilderRuntimeContext /* MT: 0x00007FA12E03FA48 */,Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope /* MT: 0x00007FA12DBCA288 */)[Optimized] +00007FA12780A490 18 stub<17842> GenerateResolveStub +00007FA1277CB7C0 20 stub<17843> GenerateDispatchStub +00007FA12E5AAF10 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_Component(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.IViewComponentHelper)[QuickJitted] +00007FA12E5AAF60 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_Json(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper)[QuickJitted] +00007FA128669380 13b object [Microsoft.Extensions.DependencyInjection] dynamicClass::ResolveService(Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder/ILEmitResolverBuilderRuntimeContext /* MT: 0x00007FA12E03FA48 */,Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope /* MT: 0x00007FA12DBCA288 */)[Optimized] +00007FA12E5AAFB0 2d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_Html(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper`1)[QuickJitted] +00007FA12EB74A08 18 stub<17844> AllocateTemporaryEntryPoints +00007FA12E5AB000 5a instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::ExecuteAsync()[QuickJitted] +00007FA12EB74A20 18 stub<17845> AllocateTemporaryEntryPoints +00007FA12E5AB070 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5AB0B0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EB74A38 1b0 stub<17846> AllocateTemporaryEntryPoints +00007FA12EB74BE8 18 stub<17847> AllocateTemporaryEntryPoints +00007FA12EB74C00 18 stub<17848> AllocateTemporaryEntryPoints +00007FA12EB74C18 228 stub<17849> AllocateTemporaryEntryPoints +00007FA12EB74E40 18 stub<17850> AllocateTemporaryEntryPoints +00007FA12EB74E58 18 stub<17851> AllocateTemporaryEntryPoints +00007FA12E5AB1B0 6bb instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+d__28::MoveNext()[QuickJitted] +00007FA12780A500 18 stub<17852> GenerateResolveStub +00007FA1277CB7E0 20 stub<17853> GenerateDispatchStub +00007FA12E5AB8B0 d0 instance class [Microsoft.AspNetCore.Razor.Runtime]Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::get___tagHelperScopeManager()[QuickJitted] +00007FA12EB74E70 60 stub<17854> AllocateTemporaryEntryPoints +00007FA12EB76000 1e0 stub<17855> AllocateTemporaryEntryPoints +00007FA12EB761E0 1e0 stub<17856> AllocateTemporaryEntryPoints +00007FA12EB763C0 c0 stub<17857> AllocateTemporaryEntryPoints +00007FA12EB76480 90 stub<17858> AllocateTemporaryEntryPoints +00007FA12EB76510 a8 stub<17859> AllocateTemporaryEntryPoints +00007FA12EB765B8 18 stub<17860> AllocateTemporaryEntryPoints +00007FA12EB765D0 c0 stub<17861> AllocateTemporaryEntryPoints +00007FA12EB76690 168 stub<17862> AllocateTemporaryEntryPoints +00007FA12EB767F8 150 stub<17863> AllocateTemporaryEntryPoints +00007FA12EB76948 108 stub<17864> AllocateTemporaryEntryPoints +00007FA12EB76A50 60 stub<17865> AllocateTemporaryEntryPoints +00007FA12780A570 18 stub<17866> GenerateResolveStub +00007FA1277CB800 20 stub<17867> GenerateDispatchStub +00007FA12EB76AB0 18 stub<17868> AllocateTemporaryEntryPoints +00007FA12EB76AC8 18 stub<17869> AllocateTemporaryEntryPoints +00007FA12EB76AE0 18 stub<17870> AllocateTemporaryEntryPoints +00007FA12EB76AF8 18 stub<17871> AllocateTemporaryEntryPoints +00007FA12EB76B10 18 stub<17872> AllocateTemporaryEntryPoints +00007FA12EB76B28 18 stub<17873> AllocateTemporaryEntryPoints +00007FA12EB76B40 18 stub<17874> AllocateTemporaryEntryPoints +00007FA12EB76B58 18 stub<17875> AllocateTemporaryEntryPoints +00007FA12EB76B70 18 stub<17876> AllocateTemporaryEntryPoints +00007FA12EB76B88 30 stub<17877> AllocateTemporaryEntryPoints +00007FA12EB76BB8 18 stub<17878> AllocateTemporaryEntryPoints +00007FA12EB76BD0 18 stub<17879> AllocateTemporaryEntryPoints +00007FA128669530 bb object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method147(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,System.IServiceProvider /* MT: 0x00007FA12B194C30 */,object[])[Optimized] +00007FA12E671960 18 stub<17880> GenerateLookupStub +00007FA12780A5E0 18 stub<17881> GenerateResolveStub +00007FA1277CB820 20 stub<17882> GenerateDispatchStub +00007FA12E671980 18 stub<17883> GenerateLookupStub +00007FA12780A650 18 stub<17884> GenerateResolveStub +00007FA1277CB840 20 stub<17885> GenerateDispatchStub +00007FA12EB76BE8 18 stub<17886> AllocateTemporaryEntryPoints +00007FA1277CB860 20 stub<17887> GenerateDispatchStub +00007FA12EB76C00 18 stub<17888> AllocateTemporaryEntryPoints +00007FA12EB76C18 18 stub<17889> AllocateTemporaryEntryPoints +00007FA12EB76C30 18 stub<17890> AllocateTemporaryEntryPoints +00007FA12EB76C48 18 stub<17891> AllocateTemporaryEntryPoints +00007FA12EB76C60 18 stub<17892> AllocateTemporaryEntryPoints +00007FA12EB76C78 18 stub<17893> AllocateTemporaryEntryPoints +00007FA12EB76C90 18 stub<17894> AllocateTemporaryEntryPoints +00007FA12E6719A0 18 stub<17895> GenerateLookupStub +00007FA12EB76CA8 18 stub<17896> AllocateTemporaryEntryPoints +00007FA12EB76CC0 18 stub<17897> AllocateTemporaryEntryPoints +00007FA12EB76CD8 18 stub<17898> AllocateTemporaryEntryPoints +00007FA12EB76CF0 30 stub<17899> AllocateTemporaryEntryPoints +00007FA12EB76D20 18 stub<17900> AllocateTemporaryEntryPoints +00007FA12EB76D38 18 stub<17901> AllocateTemporaryEntryPoints +00007FA12EB76D50 18 stub<17902> AllocateTemporaryEntryPoints +00007FA12EB78000 2b8 stub<17903> AllocateTemporaryEntryPoints +00007FA12EB782B8 180 stub<17904> AllocateTemporaryEntryPoints +00007FA12EB78438 30 stub<17905> AllocateTemporaryEntryPoints +00007FA12E5ABDA0 143 void [System.Private.CoreLib] System.MemoryExtensions::Sort(valuetype System.Span`1,!!1)[QuickJitted] +00007FA12EB78468 18 stub<17906> AllocateTemporaryEntryPoints +00007FA12EB78480 18 stub<17907> AllocateTemporaryEntryPoints +00007FA12EB78498 18 stub<17908> AllocateTemporaryEntryPoints +00007FA12E5ABF00 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5ABF40 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EB784B0 60 stub<17909> AllocateTemporaryEntryPoints +00007FA12EB78510 18 stub<17910> AllocateTemporaryEntryPoints +00007FA12EB78528 18 stub<17911> AllocateTemporaryEntryPoints +00007FA12E5AC040 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5AC080 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5AC180 bf instance void [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::Push(!0)[QuickJitted] +00007FA12E5AC260 6d instance void [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::PushWithResize(!0)[QuickJitted] +00007FA12EB78540 18 stub<17912> AllocateTemporaryEntryPoints +00007FA12E5AC2F0 84 instance void [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::Grow(int32)[QuickJitted] +00007FA12EB78558 18 stub<17913> AllocateTemporaryEntryPoints +00007FA12EB78570 18 stub<17914> AllocateTemporaryEntryPoints +00007FA12E5AC390 ed void [System.Private.CoreLib] System.Array::Resize(!!0[]&,int32)[QuickJitted] +00007FA12E5AC4A0 22 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[QuickJitted] +00007FA12EB78588 18 stub<17915> AllocateTemporaryEntryPoints +00007FA12EB785A0 18 stub<17916> AllocateTemporaryEntryPoints +00007FA12EB785B8 18 stub<17917> AllocateTemporaryEntryPoints +00007FA12E5AC4E0 64 void [System.Private.CoreLib] System.Buffer::Memmove(!!0&,!!0&,native uint)[QuickJitted] +00007FA12E5AC560 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12EB785D0 18 stub<17918> AllocateTemporaryEntryPoints +00007FA12E5AC580 5a instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_0()[QuickJitted] +00007FA12EB785E8 18 stub<17919> AllocateTemporaryEntryPoints +00007FA12E5AC5F0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5AC630 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EB78600 18 stub<17920> AllocateTemporaryEntryPoints +00007FA12EB78618 18 stub<17921> AllocateTemporaryEntryPoints +00007FA12E5AC730 a66 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_0>d::MoveNext()[QuickJitted] +00007FA12E5AD1E0 47 void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::.cctor()[QuickJitted] +00007FA12E5AD240 1f instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::.ctor()[QuickJitted] +00007FA12EB78630 18 stub<17922> AllocateTemporaryEntryPoints +00007FA12EB78648 18 stub<17923> AllocateTemporaryEntryPoints +00007FA12EB78660 18 stub<17924> AllocateTemporaryEntryPoints +00007FA12EB78678 18 stub<17925> AllocateTemporaryEntryPoints +00007FA128669650 d5 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method148(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,System.IServiceProvider /* MT: 0x00007FA12B194C30 */,object[])[Optimized] +00007FA12EB78690 18 stub<17926> AllocateTemporaryEntryPoints +00007FA12EB786A8 18 stub<17927> AllocateTemporaryEntryPoints +00007FA12E6719C0 18 stub<17928> GenerateLookupStub +00007FA12EB786C0 18 stub<17929> AllocateTemporaryEntryPoints +00007FA12EB786D8 18 stub<17930> AllocateTemporaryEntryPoints +00007FA12E5AD280 67b void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::.cctor()[QuickJitted] +00007FA12780A6C0 18 stub<17931> GenerateResolveStub +00007FA1277CB880 20 stub<17932> GenerateDispatchStub +00007FA12EB786F0 60 stub<17933> AllocateTemporaryEntryPoints +00007FA12E6719E0 18 stub<17934> GenerateLookupStub +00007FA12780A730 18 stub<17935> GenerateResolveStub +00007FA1277CB8A0 20 stub<17936> GenerateDispatchStub +00007FA12E671A00 18 stub<17937> GenerateLookupStub +00007FA12780A7A0 18 stub<17938> GenerateResolveStub +00007FA1277CB8C0 20 stub<17939> GenerateDispatchStub +00007FA12EB78768 18 stub<17940> AllocateTemporaryEntryPoints +00007FA12E5AD920 3c valuetype System.Span`1 [System.Private.CoreLib] System.MemoryExtensions::AsSpan(!!0[])[QuickJitted] +00007FA12EB78780 18 stub<17941> AllocateTemporaryEntryPoints +00007FA12780A810 18 stub<17942> GenerateResolveStub +00007FA1277CB8E0 20 stub<17943> GenerateDispatchStub +00007FA12EB78798 18 stub<17944> AllocateTemporaryEntryPoints +00007FA12E5AD980 48 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_2()[QuickJitted] +00007FA12EB787B0 18 stub<17945> AllocateTemporaryEntryPoints +00007FA12E5AD9E0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5ADA20 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5ADB20 9d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_2>d::MoveNext()[QuickJitted] +00007FA12EB787C8 1e0 stub<17946> AllocateTemporaryEntryPoints +00007FA12E5ADBE0 1b instance int32 [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::get_Count()[QuickJitted] +00007FA12E5ADC10 104 instance !0 [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::Pop()[QuickJitted] +00007FA12EB789A8 d8 stub<17947> AllocateTemporaryEntryPoints +00007FA12780A880 18 stub<17948> GenerateResolveStub +00007FA1277CB900 20 stub<17949> GenerateDispatchStub +00007FA12780A8F0 18 stub<17950> GenerateResolveStub +00007FA1277CB920 20 stub<17951> GenerateDispatchStub +00007FA12780A960 18 stub<17952> GenerateResolveStub +00007FA1277CB940 20 stub<17953> GenerateDispatchStub +00007FA12780A9D0 18 stub<17954> GenerateResolveStub +00007FA1277CB960 20 stub<17955> GenerateDispatchStub +00007FA12780AA40 18 stub<17956> GenerateResolveStub +00007FA1277CB980 20 stub<17957> GenerateDispatchStub +00007FA12780AAB0 18 stub<17958> GenerateResolveStub +00007FA1277CB9A0 20 stub<17959> GenerateDispatchStub +00007FA12EB78A98 18 stub<17960> AllocateTemporaryEntryPoints +00007FA12E5ADD30 48 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_3()[QuickJitted] +00007FA12EB78AB0 18 stub<17961> AllocateTemporaryEntryPoints +00007FA12E5ADD90 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5ADDD0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5ADED0 9d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_3>d::MoveNext()[QuickJitted] +00007FA12780AB20 18 stub<17962> GenerateResolveStub +00007FA1277CB9C0 20 stub<17963> GenerateDispatchStub +00007FA1277CB9E0 20 stub<17964> GenerateDispatchStub +00007FA12780AB90 18 stub<17965> GenerateResolveStub +00007FA1277CBA00 20 stub<17966> GenerateDispatchStub +00007FA1277CBA20 20 stub<17967> GenerateDispatchStub +00007FA12EB78AC8 18 stub<17968> AllocateTemporaryEntryPoints +00007FA12EB78AE0 18 stub<17969> AllocateTemporaryEntryPoints +00007FA12EB78AF8 18 stub<17970> AllocateTemporaryEntryPoints +00007FA12EB78B10 18 stub<17971> AllocateTemporaryEntryPoints +00007FA128669790 bb object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method149(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,System.IServiceProvider /* MT: 0x00007FA12B194C30 */,object[])[Optimized] +00007FA12780AC00 18 stub<17972> GenerateResolveStub +00007FA1277CBA40 20 stub<17973> GenerateDispatchStub +00007FA12EB78B28 18 stub<17974> AllocateTemporaryEntryPoints +00007FA12E671A20 18 stub<17975> GenerateLookupStub +00007FA12EB78B40 18 stub<17976> AllocateTemporaryEntryPoints +00007FA12EB78B58 18 stub<17977> AllocateTemporaryEntryPoints +00007FA12EB78B70 18 stub<17978> AllocateTemporaryEntryPoints +00007FA12E5ADF90 5a instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_1()[QuickJitted] +00007FA12EB78B88 18 stub<17979> AllocateTemporaryEntryPoints +00007FA12E5AE000 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5AE040 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EB78BA0 18 stub<17980> AllocateTemporaryEntryPoints +00007FA12EB78BB8 18 stub<17981> AllocateTemporaryEntryPoints +00007FA12EB78BD0 18 stub<17982> AllocateTemporaryEntryPoints +00007FA12E5AE140 3452 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_1>d::MoveNext()[QuickJitted] +00007FA12EB78BE8 18 stub<17983> AllocateTemporaryEntryPoints +00007FA12EB78C00 18 stub<17984> AllocateTemporaryEntryPoints +00007FA12EB78C18 18 stub<17985> AllocateTemporaryEntryPoints +00007FA12EB78C30 18 stub<17986> AllocateTemporaryEntryPoints +00007FA1286698B0 79 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method150(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,System.IServiceProvider /* MT: 0x00007FA12B194C30 */,object[])[Optimized] +00007FA12EB78C48 a8 stub<17987> AllocateTemporaryEntryPoints +00007FA12EB78CF0 18 stub<17988> AllocateTemporaryEntryPoints +00007FA12EB78D08 18 stub<17989> AllocateTemporaryEntryPoints +00007FA12E671A40 18 stub<17990> GenerateLookupStub +00007FA12EB78D20 18 stub<17991> AllocateTemporaryEntryPoints +00007FA12EB78D38 18 stub<17992> AllocateTemporaryEntryPoints +00007FA12EB78D50 228 stub<17993> AllocateTemporaryEntryPoints +00007FA12EB7A000 138 stub<17994> AllocateTemporaryEntryPoints +00007FA12EB7A138 138 stub<17995> AllocateTemporaryEntryPoints +00007FA12EB7A270 d8 stub<17996> AllocateTemporaryEntryPoints +00007FA12EB7A348 18 stub<17997> AllocateTemporaryEntryPoints +00007FA12EB7A360 18 stub<17998> AllocateTemporaryEntryPoints +00007FA12EB7A378 18 stub<17999> AllocateTemporaryEntryPoints +00007FA12EB7A390 18 stub<18000> AllocateTemporaryEntryPoints +00007FA12EB7A3A8 18 stub<18001> AllocateTemporaryEntryPoints +00007FA12E5B1620 5a instance string [Microsoft.AspNetCore.Routing] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.AspNetCore.Http.HttpContext /* MT: 0x00007FA12E03CE98 */,Microsoft.AspNetCore.Routing.RouteValuesAddress /* MT: 0x00007FA12CE77350 */,Microsoft.AspNetCore.Routing.RouteValueDictionary /* MT: 0x00007FA12E184E38 */,Microsoft.AspNetCore.Routing.RouteValueDictionary /* MT: 0x00007FA12E184E38 */,System.Nullable`1 /* MT: 0x00007FA12840A3A0 */,Microsoft.AspNetCore.Http.FragmentString /* MT: 0x00007FA12E8FB5D8 */,Microsoft.AspNetCore.Routing.LinkOptions /* MT: 0x00007FA12EADFB18 */)[Optimized] +00007FA12EB7A3C0 18 stub<18002> AllocateTemporaryEntryPoints +00007FA12EB7A3D8 18 stub<18003> AllocateTemporaryEntryPoints +00007FA12EB7A3F0 18 stub<18004> AllocateTemporaryEntryPoints +00007FA12EB7A408 18 stub<18005> AllocateTemporaryEntryPoints +00007FA12E671A60 18 stub<18006> GenerateLookupStub +00007FA12EB7A420 18 stub<18007> AllocateTemporaryEntryPoints +00007FA12EB7A438 18 stub<18008> AllocateTemporaryEntryPoints +00007FA12EB7A450 18 stub<18009> AllocateTemporaryEntryPoints +00007FA12EB7A468 48 stub<18010> AllocateTemporaryEntryPoints +00007FA12EB7A4B0 18 stub<18011> AllocateTemporaryEntryPoints +00007FA12E671A80 18 stub<18012> GenerateLookupStub +00007FA12EB7A4C8 a8 stub<18013> AllocateTemporaryEntryPoints +00007FA12EB7A570 78 stub<18014> AllocateTemporaryEntryPoints +00007FA12EB7A5E8 6f0 stub<18015> AllocateTemporaryEntryPoints +00007FA12EB7ACD8 78 stub<18016> AllocateTemporaryEntryPoints +00007FA12EB7AD50 a8 stub<18017> AllocateTemporaryEntryPoints +00007FA12EB7ADF8 18 stub<18018> AllocateTemporaryEntryPoints +00007FA12EB7AE10 18 stub<18019> AllocateTemporaryEntryPoints +00007FA12EB7AE28 18 stub<18020> AllocateTemporaryEntryPoints +00007FA12EB7AE40 18 stub<18021> AllocateTemporaryEntryPoints +00007FA12EB7AE58 18 stub<18022> AllocateTemporaryEntryPoints +00007FA12EB7AE70 18 stub<18023> AllocateTemporaryEntryPoints +00007FA12EB7AE88 18 stub<18024> AllocateTemporaryEntryPoints +00007FA12EB7AEA0 18 stub<18025> AllocateTemporaryEntryPoints +00007FA12EB7AEB8 18 stub<18026> AllocateTemporaryEntryPoints +00007FA12EB7AED0 18 stub<18027> AllocateTemporaryEntryPoints +00007FA12EB7C000 1c8 stub<18028> AllocateTemporaryEntryPoints +00007FA12EB7C1C8 60 stub<18029> AllocateTemporaryEntryPoints +00007FA12EB7C228 90 stub<18030> AllocateTemporaryEntryPoints +00007FA12EB7C2B8 18 stub<18031> AllocateTemporaryEntryPoints +00007FA12EB7C2D0 240 stub<18032> AllocateTemporaryEntryPoints +00007FA12EB7C510 78 stub<18033> AllocateTemporaryEntryPoints +00007FA12E671AA0 18 stub<18034> GenerateLookupStub +00007FA12780AC70 18 stub<18035> GenerateResolveStub +00007FA1277CBA60 20 stub<18036> GenerateDispatchStub +00007FA12EB7C588 48 stub<18037> AllocateTemporaryEntryPoints +00007FA12EB7C5D0 18 stub<18038> AllocateTemporaryEntryPoints +00007FA12EB7C5E8 18 stub<18039> AllocateTemporaryEntryPoints +00007FA12E671AC0 18 stub<18040> GenerateLookupStub +00007FA12780ACE0 18 stub<18041> GenerateResolveStub +00007FA1277CBA80 20 stub<18042> GenerateDispatchStub +00007FA12780AD50 18 stub<18043> GenerateResolveStub +00007FA1277CBAA0 20 stub<18044> GenerateDispatchStub +00007FA12780ADC0 18 stub<18045> GenerateResolveStub +00007FA1277CBAC0 20 stub<18046> GenerateDispatchStub +00007FA12780AE30 18 stub<18047> GenerateResolveStub +00007FA1277CBAE0 20 stub<18048> GenerateDispatchStub +00007FA12EB7C600 60 stub<18049> AllocateTemporaryEntryPoints +00007FA12780AEA0 18 stub<18050> GenerateResolveStub +00007FA1277CBB00 20 stub<18051> GenerateDispatchStub +00007FA12EB7C660 60 stub<18052> AllocateTemporaryEntryPoints +00007FA12E5B1AA0 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::.ctor()[QuickJitted] +00007FA12E5B1B10 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::.cctor()[QuickJitted] +00007FA12EB7C6C0 60 stub<18053> AllocateTemporaryEntryPoints +00007FA12E5B1B50 98 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Add(!0)[QuickJitted] +00007FA12E5B1C00 6d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::AddWithResize(!0)[QuickJitted] +00007FA12E5B1C90 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Grow(int32)[QuickJitted] +00007FA12E5B1D20 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::set_Capacity(int32)[QuickJitted] +00007FA12EB7C720 30 stub<18054> AllocateTemporaryEntryPoints +00007FA12EB7C750 48 stub<18055> AllocateTemporaryEntryPoints +00007FA12EB7C798 30 stub<18056> AllocateTemporaryEntryPoints +00007FA12EB7C7C8 30 stub<18057> AllocateTemporaryEntryPoints +00007FA12EB7C7F8 30 stub<18058> AllocateTemporaryEntryPoints +00007FA12780AF10 18 stub<18059> GenerateResolveStub +00007FA1277CBB20 20 stub<18060> GenerateDispatchStub +00007FA12780AF80 18 stub<18061> GenerateResolveStub +00007FA1277CBB40 20 stub<18062> GenerateDispatchStub +00007FA12EB7C828 78 stub<18063> AllocateTemporaryEntryPoints +00007FA12EB7C8A0 30 stub<18064> AllocateTemporaryEntryPoints +00007FA12EB7C8D0 30 stub<18065> AllocateTemporaryEntryPoints +00007FA12E671AE0 18 stub<18066> GenerateLookupStub +00007FA12EB7C900 a8 stub<18067> AllocateTemporaryEntryPoints +00007FA12EB7C9A8 a8 stub<18068> AllocateTemporaryEntryPoints +00007FA12E671B00 18 stub<18069> GenerateLookupStub +00007FA12E671B20 18 stub<18070> GenerateLookupStub +00007FA12EB7E000 5e8 stub<18071> AllocateTemporaryEntryPoints +00007FA12EB7E5E8 c0 stub<18072> AllocateTemporaryEntryPoints +00007FA12EB7E6A8 90 stub<18073> AllocateTemporaryEntryPoints +00007FA12EB7E738 a8 stub<18074> AllocateTemporaryEntryPoints +00007FA12EB7E7E0 18 stub<18075> AllocateTemporaryEntryPoints +00007FA12EB7E7F8 78 stub<18076> AllocateTemporaryEntryPoints +00007FA12EB7E870 18 stub<18077> AllocateTemporaryEntryPoints +00007FA12E5B1E00 29 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::.ctor(class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E5B1E40 1bd instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E5B2020 36 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::Add(!0,!1)[QuickJitted] +00007FA12EB7E888 60 stub<18078> AllocateTemporaryEntryPoints +00007FA12E5B2070 9c1 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E5B2A50 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::Initialize(int32)[QuickJitted] +00007FA12EB7E8E8 60 stub<18079> AllocateTemporaryEntryPoints +00007FA12E5B2B50 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::GetBucket(uint32)[QuickJitted] +00007FA12780AFF0 18 stub<18080> GenerateResolveStub +00007FA1277CBB60 20 stub<18081> GenerateDispatchStub +00007FA12E671B40 18 stub<18082> GenerateLookupStub +00007FA12EB7E948 90 stub<18083> AllocateTemporaryEntryPoints +00007FA12EB7E9D8 90 stub<18084> AllocateTemporaryEntryPoints +00007FA12EB7EA68 90 stub<18085> AllocateTemporaryEntryPoints +00007FA12EB7EAF8 198 stub<18086> AllocateTemporaryEntryPoints +00007FA12EB7EC90 18 stub<18087> AllocateTemporaryEntryPoints +00007FA12EBD0000 5e8 stub<18088> AllocateTemporaryEntryPoints +00007FA12EBD05E8 18 stub<18089> AllocateTemporaryEntryPoints +00007FA12EBD0600 18 stub<18090> AllocateTemporaryEntryPoints +00007FA12EBD0618 c0 stub<18091> AllocateTemporaryEntryPoints +00007FA12EBD06D8 a8 stub<18092> AllocateTemporaryEntryPoints +00007FA12EBD0780 18 stub<18093> AllocateTemporaryEntryPoints +00007FA12EBD0798 78 stub<18094> AllocateTemporaryEntryPoints +00007FA12EBD0810 18 stub<18095> AllocateTemporaryEntryPoints +00007FA12EBD0828 a8 stub<18096> AllocateTemporaryEntryPoints +00007FA12EBD08D0 18 stub<18097> AllocateTemporaryEntryPoints +00007FA12EBD08E8 198 stub<18098> AllocateTemporaryEntryPoints +00007FA12E5B2FD0 e4 instance class System.Collections.Generic.IEnumerator`1> [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::System.Collections.Generic.IEnumerable>.GetEnumerator()[QuickJitted] +00007FA12E5B30D0 5b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::.ctor(class System.Collections.Generic.Dictionary`2,int32)[QuickJitted] +00007FA12E5B3140 1b4 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::MoveNext()[QuickJitted] +00007FA12E5B3310 3f instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::.ctor(!0,!1)[QuickJitted] +00007FA12E5B3370 3b instance valuetype System.Collections.Generic.KeyValuePair`2 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::get_Current()[QuickJitted] +00007FA12E5B33D0 1f instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::get_Key()[QuickJitted] +00007FA12E5B3410 29 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::.ctor(class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12EBD0A80 d8 stub<18099> AllocateTemporaryEntryPoints +00007FA12E5B3450 114 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12E5B3580 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::get_Default()[QuickJitted] +00007FA12E5B35C0 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::.cctor()[QuickJitted] +00007FA12EBD0B58 18 stub<18100> AllocateTemporaryEntryPoints +00007FA12EBD0B70 a8 stub<18101> AllocateTemporaryEntryPoints +00007FA12E5B3640 1f instance void [System.Private.CoreLib] System.Collections.Generic.ObjectEqualityComparer`1[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::.ctor()[QuickJitted] +00007FA12E5B3680 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::.ctor()[QuickJitted] +00007FA12EBD0C18 60 stub<18102> AllocateTemporaryEntryPoints +00007FA12E5B36C0 20 instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::get_Value()[QuickJitted] +00007FA12E5B3700 61 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::TryGetValue(!0,!1&)[QuickJitted] +00007FA12EBD0C78 60 stub<18103> AllocateTemporaryEntryPoints +00007FA12EBD0CD8 18 stub<18104> AllocateTemporaryEntryPoints +00007FA12EBD0CF0 18 stub<18105> AllocateTemporaryEntryPoints +00007FA12E671B60 18 stub<18106> GenerateLookupStub +00007FA12E671B80 18 stub<18107> GenerateLookupStub +00007FA12E5B3780 3fe instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::FindValue(!0)[QuickJitted] +00007FA12E5B3BA0 36 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::Add(!0,!1)[QuickJitted] +00007FA12EBD0D08 18 stub<18108> AllocateTemporaryEntryPoints +00007FA12E5B3BF0 69d instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[QuickJitted] +00007FA12E5B42B0 e7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::Initialize(int32)[QuickJitted] +00007FA12EBD0D20 60 stub<18109> AllocateTemporaryEntryPoints +00007FA12E5B43B0 5a instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::GetBucket(uint32)[QuickJitted] +00007FA12780B060 18 stub<18110> GenerateResolveStub +00007FA1277CBB80 20 stub<18111> GenerateDispatchStub +00007FA12780B0D0 18 stub<18112> GenerateResolveStub +00007FA1277CBBA0 20 stub<18113> GenerateDispatchStub +00007FA12780B140 18 stub<18114> GenerateResolveStub +00007FA1277CBBC0 20 stub<18115> GenerateDispatchStub +00007FA12E5B4420 18 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue]::Dispose()[QuickJitted] +00007FA12780B1B0 18 stub<18116> GenerateResolveStub +00007FA1277CBBE0 20 stub<18117> GenerateDispatchStub +00007FA12780B220 18 stub<18118> GenerateResolveStub +00007FA1277CBC00 20 stub<18119> GenerateDispatchStub +00007FA12780B290 18 stub<18120> GenerateResolveStub +00007FA1277CBC20 20 stub<18121> GenerateDispatchStub +00007FA12E5B4450 34 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::Resize()[QuickJitted] +00007FA12E5B44A0 38a instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::Resize(int32,bool)[QuickJitted] +00007FA12EBD0DB0 18 stub<18122> AllocateTemporaryEntryPoints +00007FA12EBD0DC8 78 stub<18123> AllocateTemporaryEntryPoints +00007FA12EBD0E40 78 stub<18124> AllocateTemporaryEntryPoints +00007FA12EBD0EB8 48 stub<18125> AllocateTemporaryEntryPoints +00007FA12EBD0F00 48 stub<18126> AllocateTemporaryEntryPoints +00007FA12EBD0F48 60 stub<18127> AllocateTemporaryEntryPoints +00007FA12E671BA0 18 stub<18128> GenerateLookupStub +00007FA12EBD0FA8 18 stub<18129> AllocateTemporaryEntryPoints +00007FA12EBD0FC0 18 stub<18130> AllocateTemporaryEntryPoints +00007FA12EBD0FD8 18 stub<18131> AllocateTemporaryEntryPoints +00007FA12EBD2000 258 stub<18132> AllocateTemporaryEntryPoints +00007FA12EBD2258 48 stub<18133> AllocateTemporaryEntryPoints +00007FA12E5B4850 8c class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.Enumerable::OrderByDescending(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E5B48F0 c3 instance void [System.Linq] System.Linq.OrderedEnumerable`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.Int32]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.OrderedEnumerable`1)[QuickJitted] +00007FA12E5B49D0 34 instance void [System.Linq] System.Linq.OrderedEnumerable`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12EBD22A0 18 stub<18134> AllocateTemporaryEntryPoints +00007FA12EBD22B8 90 stub<18135> AllocateTemporaryEntryPoints +00007FA12EBD2348 18 stub<18136> AllocateTemporaryEntryPoints +00007FA12EBD2360 90 stub<18137> AllocateTemporaryEntryPoints +00007FA12EBD23F0 18 stub<18138> AllocateTemporaryEntryPoints +00007FA12E5B4A20 95 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.OrderedEnumerable`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::GetEnumerator()[QuickJitted] +00007FA12E5B4AD0 2b instance void [System.Linq] System.Linq.OrderedEnumerable`1+d__17[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor(int32)[QuickJitted] +00007FA12EBD2408 258 stub<18139> AllocateTemporaryEntryPoints +00007FA12EBD2660 78 stub<18140> AllocateTemporaryEntryPoints +00007FA12EBD26D8 48 stub<18141> AllocateTemporaryEntryPoints +00007FA12EBD2720 18 stub<18142> AllocateTemporaryEntryPoints +00007FA12EBD2738 18 stub<18143> AllocateTemporaryEntryPoints +00007FA12E5B4B10 20f instance bool [System.Linq] System.Linq.OrderedEnumerable`1+d__17[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::MoveNext()[QuickJitted] +00007FA12EBD2750 48 stub<18144> AllocateTemporaryEntryPoints +00007FA12EBD2798 18 stub<18145> AllocateTemporaryEntryPoints +00007FA12EBD27B0 18 stub<18146> AllocateTemporaryEntryPoints +00007FA12EBD27C8 18 stub<18147> AllocateTemporaryEntryPoints +00007FA12EBD27E0 18 stub<18148> AllocateTemporaryEntryPoints +00007FA12E5B4D40 17f instance void [System.Linq] System.Linq.Buffer`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12EBD27F8 18 stub<18149> AllocateTemporaryEntryPoints +00007FA12EBD2810 a8 stub<18150> AllocateTemporaryEntryPoints +00007FA12EBD28B8 18 stub<18151> AllocateTemporaryEntryPoints +00007FA12EBD28D0 18 stub<18152> AllocateTemporaryEntryPoints +00007FA12EBD28E8 18 stub<18153> AllocateTemporaryEntryPoints +00007FA12EBD2900 18 stub<18154> AllocateTemporaryEntryPoints +00007FA12E5B4EE0 66e !!0[] [System.Linq] System.Collections.Generic.EnumerableHelpers::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1,int32&)[QuickJitted] +00007FA12E671BC0 18 stub<18155> GenerateLookupStub +00007FA12780B300 18 stub<18156> GenerateResolveStub +00007FA1277CBC40 20 stub<18157> GenerateDispatchStub +00007FA12EBD2918 60 stub<18158> AllocateTemporaryEntryPoints +00007FA12E671BE0 18 stub<18159> GenerateLookupStub +00007FA12780B370 18 stub<18160> GenerateResolveStub +00007FA1277CBC60 20 stub<18161> GenerateDispatchStub +00007FA12EBD2978 120 stub<18162> AllocateTemporaryEntryPoints +00007FA12EBD2A98 120 stub<18163> AllocateTemporaryEntryPoints +00007FA12E5B5580 44 instance int32[] [System.Linq] System.Linq.OrderedEnumerable`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::SortedMap(valuetype System.Linq.Buffer`1)[QuickJitted] +00007FA12E5B55E0 29 instance class System.Linq.EnumerableSorter`1 [System.Linq] System.Linq.OrderedEnumerable`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::GetEnumerableSorter()[QuickJitted] +00007FA12EBD2BB8 c0 stub<18164> AllocateTemporaryEntryPoints +00007FA12E5B5620 1ad instance class System.Linq.EnumerableSorter`1 [System.Linq] System.Linq.OrderedEnumerable`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.Int32]::GetEnumerableSorter(class System.Linq.EnumerableSorter`1)[QuickJitted] +00007FA12E5B57F0 6c instance void [System.Linq] System.Linq.EnumerableSorter`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.Int32]::.ctor(class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.EnumerableSorter`1)[QuickJitted] +00007FA12E5B5870 1f instance void [System.Linq] System.Linq.EnumerableSorter`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12E5B58B0 57 instance int32[] [System.Linq] System.Linq.EnumerableSorter`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Sort(!0[],int32)[QuickJitted] +00007FA12E5B5920 b7 instance int32[] [System.Linq] System.Linq.EnumerableSorter`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::ComputeMap(!0[],int32)[QuickJitted] +00007FA12EBD2C78 60 stub<18165> AllocateTemporaryEntryPoints +00007FA12E5B59F0 205 instance void [System.Linq] System.Linq.EnumerableSorter`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.Int32]::ComputeKeys(!0[],int32)[QuickJitted] +00007FA12EBD2CD8 48 stub<18166> AllocateTemporaryEntryPoints +00007FA12EBD2D20 48 stub<18167> AllocateTemporaryEntryPoints +00007FA12EBD2D68 60 stub<18168> AllocateTemporaryEntryPoints +00007FA12E5B5C10 e9 void [System.Linq] System.Linq.EnumerableSorter`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.cctor()[QuickJitted] +00007FA12E5B5D10 4b void [System.Linq] System.Linq.EnumerableSorter`1+<>c[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.cctor()[QuickJitted] +00007FA12E5B5D70 1f instance void [System.Linq] System.Linq.EnumerableSorter`1+<>c[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12E5B5DB0 22 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::get_Count()[QuickJitted] +00007FA12E5B5DF0 fa instance void [System.Linq] System.Linq.EnumerableSorter`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.Int32]::QuickSort(int32[],int32,int32)[QuickJitted] +00007FA12E671C00 18 stub<18169> GenerateLookupStub +00007FA12EBD2DE0 18 stub<18170> AllocateTemporaryEntryPoints +00007FA12E5B5F10 fb instance int32 [System.Linq] System.Linq.EnumerableSorter`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.Int32]::CompareAnyKeys(int32,int32)[QuickJitted] +00007FA12E671C20 18 stub<18171> GenerateLookupStub +00007FA12EBD2DF8 78 stub<18172> AllocateTemporaryEntryPoints +00007FA12EBD2E70 78 stub<18173> AllocateTemporaryEntryPoints +00007FA12EBD2EE8 18 stub<18174> AllocateTemporaryEntryPoints +00007FA12E5B6430 37 instance !0 [System.Linq] System.Linq.OrderedEnumerable`1+d__17[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::System.Collections.Generic.IEnumerator.get_Current()[QuickJitted] +00007FA12E5B6480 b0 instance valuetype System.Collections.Generic.Dictionary`2/Enumerator [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::GetEnumerator()[QuickJitted] +00007FA12E5B6550 5b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::.ctor(class System.Collections.Generic.Dictionary`2,int32)[QuickJitted] +00007FA12E5B65C0 1b4 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::MoveNext()[QuickJitted] +00007FA12E5B6790 3f instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::.ctor(!0,!1)[QuickJitted] +00007FA12E5B67F0 3b instance valuetype System.Collections.Generic.KeyValuePair`2 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::get_Current()[QuickJitted] +00007FA12E5B6850 1f instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::get_Value()[QuickJitted] +00007FA12EBD2F00 60 stub<18175> AllocateTemporaryEntryPoints +00007FA12780B3E0 18 stub<18176> GenerateResolveStub +00007FA1277CBC80 20 stub<18177> GenerateDispatchStub +00007FA12780B450 18 stub<18178> GenerateResolveStub +00007FA1277CBCA0 20 stub<18179> GenerateDispatchStub +00007FA12EBD2F78 18 stub<18180> AllocateTemporaryEntryPoints +00007FA12E5B6890 14 instance void [System.Linq] System.Linq.OrderedEnumerable`1+d__17[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::System.IDisposable.Dispose()[QuickJitted] +00007FA12E5B68C0 20 instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::get_Key()[QuickJitted] +00007FA12EBD2F90 60 stub<18181> AllocateTemporaryEntryPoints +00007FA12E671C40 18 stub<18182> GenerateLookupStub +00007FA12E5B6900 18 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[Microsoft.AspNetCore.Routing.DecisionTree.DecisionCriterionValue,System.__Canon]::Dispose()[QuickJitted] +00007FA12780B4C0 18 stub<18183> GenerateResolveStub +00007FA1277CBCC0 20 stub<18184> GenerateDispatchStub +00007FA12780B530 18 stub<18185> GenerateResolveStub +00007FA1277CBCE0 20 stub<18186> GenerateDispatchStub +00007FA12780B5A0 18 stub<18187> GenerateResolveStub +00007FA1277CBD00 20 stub<18188> GenerateDispatchStub +00007FA12E671C60 18 stub<18189> GenerateLookupStub +00007FA12EBD4000 48 stub<18190> AllocateTemporaryEntryPoints +00007FA12EBD4048 18 stub<18191> AllocateTemporaryEntryPoints +00007FA12E5B6930 39 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Sort(class System.Collections.Generic.IComparer`1)[QuickJitted] +00007FA12E5B6980 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Count()[QuickJitted] +00007FA12EBD4060 18 stub<18192> AllocateTemporaryEntryPoints +00007FA12E5B69B0 7f instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Sort(int32,int32,class System.Collections.Generic.IComparer`1)[QuickJitted] +00007FA12780B610 18 stub<18193> GenerateResolveStub +00007FA1277CBD20 20 stub<18194> GenerateDispatchStub +00007FA12E5B6A50 64 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Item(int32)[QuickJitted] +00007FA12EBD4078 18 stub<18195> AllocateTemporaryEntryPoints +00007FA12E671C80 18 stub<18196> GenerateLookupStub +00007FA12780B680 18 stub<18197> GenerateResolveStub +00007FA1277CBD40 20 stub<18198> GenerateDispatchStub +00007FA12E671CA0 18 stub<18199> GenerateLookupStub +00007FA12780B6F0 18 stub<18200> GenerateResolveStub +00007FA1277CBD60 20 stub<18201> GenerateDispatchStub +00007FA12EBD4090 198 stub<18202> AllocateTemporaryEntryPoints +00007FA12EBD4228 18 stub<18203> AllocateTemporaryEntryPoints +00007FA12EBD4240 2a0 stub<18204> AllocateTemporaryEntryPoints +00007FA12EBD44E0 18 stub<18205> AllocateTemporaryEntryPoints +00007FA12EBD44F8 18 stub<18206> AllocateTemporaryEntryPoints +00007FA12EBD4510 60 stub<18207> AllocateTemporaryEntryPoints +00007FA12EBD4570 18 stub<18208> AllocateTemporaryEntryPoints +00007FA12EBD4588 18 stub<18209> AllocateTemporaryEntryPoints +00007FA12EBD45A0 18 stub<18210> AllocateTemporaryEntryPoints +00007FA12EBD45B8 18 stub<18211> AllocateTemporaryEntryPoints +00007FA12EBD45D0 18 stub<18212> AllocateTemporaryEntryPoints +00007FA12EBD45E8 18 stub<18213> AllocateTemporaryEntryPoints +00007FA12EBD4600 18 stub<18214> AllocateTemporaryEntryPoints +00007FA12EBD4618 18 stub<18215> AllocateTemporaryEntryPoints +00007FA12EBD4630 18 stub<18216> AllocateTemporaryEntryPoints +00007FA12EBD4648 18 stub<18217> AllocateTemporaryEntryPoints +00007FA12EBD4660 18 stub<18218> AllocateTemporaryEntryPoints +00007FA12EBD4678 18 stub<18219> AllocateTemporaryEntryPoints +00007FA12EBD4690 18 stub<18220> AllocateTemporaryEntryPoints +00007FA12EBD46A8 18 stub<18221> AllocateTemporaryEntryPoints +00007FA12EBD46C0 60 stub<18222> AllocateTemporaryEntryPoints +00007FA12EBD4720 60 stub<18223> AllocateTemporaryEntryPoints +00007FA12EBD4780 18 stub<18224> AllocateTemporaryEntryPoints +00007FA12EBD4798 18 stub<18225> AllocateTemporaryEntryPoints +00007FA12E5B6AD0 121 !!0[] [System.Linq] System.Linq.Enumerable::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12EBD47B0 18 stub<18226> AllocateTemporaryEntryPoints +00007FA12EBD47C8 168 stub<18227> AllocateTemporaryEntryPoints +00007FA12E5B6C10 32b !!0[] [System.Linq] System.Collections.Generic.EnumerableHelpers::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA1277CBD80 20 stub<18228> GenerateDispatchStub +00007FA12EBD4930 f0 stub<18229> AllocateTemporaryEntryPoints +00007FA12EBD4A20 108 stub<18230> AllocateTemporaryEntryPoints +00007FA12EBD4B28 60 stub<18231> AllocateTemporaryEntryPoints +00007FA12EBD4B88 d8 stub<18232> AllocateTemporaryEntryPoints +00007FA12EBD4C60 48 stub<18233> AllocateTemporaryEntryPoints +00007FA12EBD4CA8 c0 stub<18234> AllocateTemporaryEntryPoints +00007FA12EBD4D68 18 stub<18235> AllocateTemporaryEntryPoints +00007FA12EBD4D80 18 stub<18236> AllocateTemporaryEntryPoints +00007FA12EBD4D98 c0 stub<18237> AllocateTemporaryEntryPoints +00007FA12E5B6F60 384 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Where(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E5B7300 49 instance void [System.Linq] System.Linq.Enumerable+WhereListIterator`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::.ctor(class [System.Collections]System.Collections.Generic.List`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E5B7360 2a instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA12EBD4E58 78 stub<18238> AllocateTemporaryEntryPoints +00007FA12EBD4ED0 c0 stub<18239> AllocateTemporaryEntryPoints +00007FA12EBD4F90 18 stub<18240> AllocateTemporaryEntryPoints +00007FA12EBD4FA8 18 stub<18241> AllocateTemporaryEntryPoints +00007FA12EBD6000 150 stub<18242> AllocateTemporaryEntryPoints +00007FA12EBD6150 138 stub<18243> AllocateTemporaryEntryPoints +00007FA12EBD6288 138 stub<18244> AllocateTemporaryEntryPoints +00007FA12EBD63C0 18 stub<18245> AllocateTemporaryEntryPoints +00007FA12EBD63D8 18 stub<18246> AllocateTemporaryEntryPoints +00007FA12E5B73A0 67f class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Select(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12EBD63F0 18 stub<18247> AllocateTemporaryEntryPoints +00007FA12EBD6408 18 stub<18248> AllocateTemporaryEntryPoints +00007FA12EBD6420 18 stub<18249> AllocateTemporaryEntryPoints +00007FA12EBD6438 a8 stub<18250> AllocateTemporaryEntryPoints +00007FA12EBD64E0 108 stub<18251> AllocateTemporaryEntryPoints +00007FA12EBD65E8 a8 stub<18252> AllocateTemporaryEntryPoints +00007FA12EBD6690 18 stub<18253> AllocateTemporaryEntryPoints +00007FA12EBD66A8 18 stub<18254> AllocateTemporaryEntryPoints +00007FA12EBD66C0 48 stub<18255> AllocateTemporaryEntryPoints +00007FA12E5B7A40 a7 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable+WhereListIterator`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::Select(class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12E5B7B00 5e instance void [System.Linq] System.Linq.Enumerable+WhereSelectListIterator`2[System.ValueTuple`2[System.__Canon,System.__Canon],System.ValueTuple`2[System.__Canon,System.__Canon]]::.ctor(class [System.Collections]System.Collections.Generic.List`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Func`2)[QuickJitted] +00007FA12EBD6708 18 stub<18256> AllocateTemporaryEntryPoints +00007FA12EBD6720 18 stub<18257> AllocateTemporaryEntryPoints +00007FA12E5B7B80 121 !!0[] [System.Linq] System.Linq.Enumerable::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12E671CC0 18 stub<18258> GenerateLookupStub +00007FA12EBD6738 168 stub<18259> AllocateTemporaryEntryPoints +00007FA12EBD68A0 6f0 stub<18260> AllocateTemporaryEntryPoints +00007FA12EBD8000 78 stub<18261> AllocateTemporaryEntryPoints +00007FA12EBD8078 a8 stub<18262> AllocateTemporaryEntryPoints +00007FA12EBD8120 18 stub<18263> AllocateTemporaryEntryPoints +00007FA12EBD8138 18 stub<18264> AllocateTemporaryEntryPoints +00007FA12EBD8150 18 stub<18265> AllocateTemporaryEntryPoints +00007FA12EBD8168 168 stub<18266> AllocateTemporaryEntryPoints +00007FA12EBD82D0 60 stub<18267> AllocateTemporaryEntryPoints +00007FA12EBD8330 60 stub<18268> AllocateTemporaryEntryPoints +00007FA12EBD8390 60 stub<18269> AllocateTemporaryEntryPoints +00007FA12E5B7CC0 2cd instance !1[] [System.Linq] System.Linq.Enumerable+WhereSelectListIterator`2[System.ValueTuple`2[System.__Canon,System.__Canon],System.ValueTuple`2[System.__Canon,System.__Canon]]::ToArray()[QuickJitted] +00007FA12EBD83F0 18 stub<18270> AllocateTemporaryEntryPoints +00007FA12EBD8408 18 stub<18271> AllocateTemporaryEntryPoints +00007FA12E5B7FB0 c2 instance void [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::.ctor(int32)[QuickJitted] +00007FA12EBD8420 18 stub<18272> AllocateTemporaryEntryPoints +00007FA12EBD8438 60 stub<18273> AllocateTemporaryEntryPoints +00007FA12E5B8090 bd instance !0[] [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::ToArray()[QuickJitted] +00007FA12E5B8170 43 instance bool [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::TryMove(!0[]&)[QuickJitted] +00007FA12EBD8498 18 stub<18274> AllocateTemporaryEntryPoints +00007FA12EBD84B0 18 stub<18275> AllocateTemporaryEntryPoints +00007FA12E671CE0 18 stub<18276> GenerateLookupStub +00007FA12780B760 18 stub<18277> GenerateResolveStub +00007FA1277CBDA0 20 stub<18278> GenerateDispatchStub +00007FA12EBD84C8 60 stub<18279> AllocateTemporaryEntryPoints +00007FA12EBD8528 78 stub<18280> AllocateTemporaryEntryPoints +00007FA12EBD85A0 48 stub<18281> AllocateTemporaryEntryPoints +00007FA12E671D00 18 stub<18282> GenerateLookupStub +00007FA12EBD85E8 48 stub<18283> AllocateTemporaryEntryPoints +00007FA12EBD8630 6f0 stub<18284> AllocateTemporaryEntryPoints +00007FA12EBD8D20 78 stub<18285> AllocateTemporaryEntryPoints +00007FA12EBD8D98 a8 stub<18286> AllocateTemporaryEntryPoints +00007FA12EBD8E40 18 stub<18287> AllocateTemporaryEntryPoints +00007FA12EBD8E58 18 stub<18288> AllocateTemporaryEntryPoints +00007FA12EBD8E70 18 stub<18289> AllocateTemporaryEntryPoints +00007FA12EBD8E88 60 stub<18290> AllocateTemporaryEntryPoints +00007FA12E5B85D0 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::.ctor()[QuickJitted] +00007FA12E5B8640 2a void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::.cctor()[QuickJitted] +00007FA12EBD8EE8 48 stub<18291> AllocateTemporaryEntryPoints +00007FA12E5B8680 1b instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::get_Count()[QuickJitted] +00007FA12E5B86B0 98 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::Add(!0)[QuickJitted] +00007FA12E5B8760 6d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::AddWithResize(!0)[QuickJitted] +00007FA12E5B87F0 79 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::Grow(int32)[QuickJitted] +00007FA12E5B8880 be instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::set_Capacity(int32)[QuickJitted] +00007FA12E5B8960 3b instance void [System.Private.CoreLib] System.ValueTuple`2[Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.QueryString]::.ctor(!0,!1)[QuickJitted] +00007FA12E671D20 18 stub<18292> GenerateLookupStub +00007FA12EBD8F30 18 stub<18293> AllocateTemporaryEntryPoints +00007FA12E5B89B0 61 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::Clear()[QuickJitted] +00007FA12E5B8A30 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12E5B8A50 1f instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::get_Capacity()[QuickJitted] +00007FA12EBD8F48 18 stub<18294> AllocateTemporaryEntryPoints +00007FA12EBDA000 f0 stub<18295> AllocateTemporaryEntryPoints +00007FA12EBDA0F0 228 stub<18296> AllocateTemporaryEntryPoints +00007FA12EBDA318 18 stub<18297> AllocateTemporaryEntryPoints +00007FA12EBDA330 18 stub<18298> AllocateTemporaryEntryPoints +00007FA12EBDA348 138 stub<18299> AllocateTemporaryEntryPoints +00007FA12780B7D0 18 stub<18300> GenerateResolveStub +00007FA1277CBDC0 20 stub<18301> GenerateDispatchStub +00007FA12EBDA480 270 stub<18302> AllocateTemporaryEntryPoints +00007FA12EBDA6F0 108 stub<18303> AllocateTemporaryEntryPoints +00007FA12EBDA7F8 18 stub<18304> AllocateTemporaryEntryPoints +00007FA12E5B8A90 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_4()[QuickJitted] +00007FA12EBDA810 18 stub<18305> AllocateTemporaryEntryPoints +00007FA12E5B8B00 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5B8B40 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5B8C40 d0 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_4>d::MoveNext()[QuickJitted] +00007FA12EBDA828 30 stub<18306> AllocateTemporaryEntryPoints +00007FA12780B840 18 stub<18307> GenerateResolveStub +00007FA1277CBDE0 20 stub<18308> GenerateDispatchStub +00007FA12780B8B0 18 stub<18309> GenerateResolveStub +00007FA1277CBE00 20 stub<18310> GenerateDispatchStub +00007FA12780B920 18 stub<18311> GenerateResolveStub +00007FA1277CBE20 20 stub<18312> GenerateDispatchStub +00007FA12780B990 18 stub<18313> GenerateResolveStub +00007FA1277CBE40 20 stub<18314> GenerateDispatchStub +00007FA12780BA00 18 stub<18315> GenerateResolveStub +00007FA1277CBE60 20 stub<18316> GenerateDispatchStub +00007FA12780BA70 18 stub<18317> GenerateResolveStub +00007FA1277CBE80 20 stub<18318> GenerateDispatchStub +00007FA12780BAE0 18 stub<18319> GenerateResolveStub +00007FA1277CBEA0 20 stub<18320> GenerateDispatchStub +00007FA12EBDA888 18 stub<18321> AllocateTemporaryEntryPoints +00007FA12E5B8D40 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_5()[QuickJitted] +00007FA12EBDA8A0 18 stub<18322> AllocateTemporaryEntryPoints +00007FA12E5B8DB0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5B8DF0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5B8EF0 d0 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_5>d::MoveNext()[QuickJitted] +00007FA1277CBEC0 20 stub<18323> GenerateDispatchStub +00007FA12EBDA8B8 18 stub<18324> AllocateTemporaryEntryPoints +00007FA12E5B8FF0 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_6()[QuickJitted] +00007FA12EBDA8D0 18 stub<18325> AllocateTemporaryEntryPoints +00007FA12E5B9060 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5B90A0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5B91A0 d0 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_6>d::MoveNext()[QuickJitted] +00007FA12EBDA918 18 stub<18326> AllocateTemporaryEntryPoints +00007FA12E5B92A0 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_7()[QuickJitted] +00007FA12EBDA930 18 stub<18327> AllocateTemporaryEntryPoints +00007FA12E5B9310 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5B9350 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5B9450 d0 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_7>d::MoveNext()[QuickJitted] +00007FA12780BB50 18 stub<18328> GenerateResolveStub +00007FA1277CBEE0 20 stub<18329> GenerateDispatchStub +00007FA12EBDA948 2b8 stub<18330> AllocateTemporaryEntryPoints +00007FA12EBDAC00 18 stub<18331> AllocateTemporaryEntryPoints +00007FA12EBDAC18 18 stub<18332> AllocateTemporaryEntryPoints +00007FA12EBDAC30 180 stub<18333> AllocateTemporaryEntryPoints +00007FA12EBDADB0 30 stub<18334> AllocateTemporaryEntryPoints +00007FA12E671D40 18 stub<18335> GenerateLookupStub +00007FA12E5B9550 eb void [System.Private.CoreLib] System.Array::Sort(!!0[],int32,int32,class System.Collections.Generic.IComparer`1)[QuickJitted] +00007FA12E5B9660 22 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[QuickJitted] +00007FA12E5B96A0 30 instance void [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::.ctor(!0&,int32)[QuickJitted] +00007FA12E5B96F0 27 class System.Collections.Generic.IArraySortHelper`1 [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Default()[QuickJitted] +00007FA12E5B9730 1f void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::.cctor()[QuickJitted] +00007FA12EBDADE0 18 stub<18336> AllocateTemporaryEntryPoints +00007FA12E5B9770 166 class System.Collections.Generic.IArraySortHelper`1 [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::CreateArraySortHelper()[QuickJitted] +00007FA12E5B98F0 1f instance void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::.ctor()[QuickJitted] +00007FA12EBDADF8 60 stub<18337> AllocateTemporaryEntryPoints +00007FA12EBDAE58 90 stub<18338> AllocateTemporaryEntryPoints +00007FA12E5B9930 101 instance void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Sort(valuetype System.Span`1,class System.Collections.Generic.IComparer`1)[QuickJitted] +00007FA12E5B9A60 70 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::IntrospectiveSort(valuetype System.Span`1,class System.Comparison`1)[QuickJitted] +00007FA12E5B9AF0 1b instance int32 [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Length()[QuickJitted] +00007FA12E5B9B20 22d void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::IntroSort(valuetype System.Span`1,int32,class System.Comparison`1)[QuickJitted] +00007FA12E5B9D70 ec void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::SwapIfGreater(valuetype System.Span`1,class System.Comparison`1,int32,int32)[QuickJitted] +00007FA12EBDAF00 18 stub<18339> AllocateTemporaryEntryPoints +00007FA12E5B9E80 3c instance !0& [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Item(int32)[QuickJitted] +00007FA12EBDAF18 c0 stub<18340> AllocateTemporaryEntryPoints +00007FA12780BBC0 18 stub<18341> GenerateResolveStub +00007FA1277CBF00 20 stub<18342> GenerateDispatchStub +00007FA12E671D60 18 stub<18343> GenerateLookupStub +00007FA12780BC30 18 stub<18344> GenerateResolveStub +00007FA1277CBF20 20 stub<18345> GenerateDispatchStub +00007FA12780BCA0 18 stub<18346> GenerateResolveStub +00007FA1277CBF40 20 stub<18347> GenerateDispatchStub +00007FA12EBDC000 18 stub<18348> AllocateTemporaryEntryPoints +00007FA12E5B9ED0 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_8()[QuickJitted] +00007FA12EBDC018 18 stub<18349> AllocateTemporaryEntryPoints +00007FA12E5B9F40 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5B9F80 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5BA080 d0 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_8>d::MoveNext()[QuickJitted] +00007FA12EBDC030 18 stub<18350> AllocateTemporaryEntryPoints +00007FA12E5BA180 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_9()[QuickJitted] +00007FA12EBDC048 18 stub<18351> AllocateTemporaryEntryPoints +00007FA12E5BA1F0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BA230 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5BA330 d0 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_9>d::MoveNext()[QuickJitted] +00007FA12EBDC060 18 stub<18352> AllocateTemporaryEntryPoints +00007FA12E5BA430 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_10()[QuickJitted] +00007FA12EBDC078 18 stub<18353> AllocateTemporaryEntryPoints +00007FA12E5BA4A0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BA4E0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5BA5E0 d0 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_10>d::MoveNext()[QuickJitted] +00007FA12EBDC090 18 stub<18354> AllocateTemporaryEntryPoints +00007FA12E5BA6E0 56 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_11()[QuickJitted] +00007FA12EBDC0A8 18 stub<18355> AllocateTemporaryEntryPoints +00007FA12E5BA750 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BA790 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5BA890 d0 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_11>d::MoveNext()[QuickJitted] +00007FA12EBDC0C0 18 stub<18356> AllocateTemporaryEntryPoints +00007FA12E5BA990 48 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_12()[QuickJitted] +00007FA12EBDC0D8 18 stub<18357> AllocateTemporaryEntryPoints +00007FA12E5BA9F0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BAA30 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5BAB30 9d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_12>d::MoveNext()[QuickJitted] +00007FA12EBDC0F0 18 stub<18358> AllocateTemporaryEntryPoints +00007FA12E5BABF0 48 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_13()[QuickJitted] +00007FA12EBDC108 18 stub<18359> AllocateTemporaryEntryPoints +00007FA12E5BAC50 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BAC90 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5BAD90 9d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_13>d::MoveNext()[QuickJitted] +00007FA12EBDC120 18 stub<18360> AllocateTemporaryEntryPoints +00007FA12EBDC138 18 stub<18361> AllocateTemporaryEntryPoints +00007FA12EBDC150 18 stub<18362> AllocateTemporaryEntryPoints +00007FA12EBDC168 18 stub<18363> AllocateTemporaryEntryPoints +00007FA128669990 232 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method151(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,System.IServiceProvider /* MT: 0x00007FA12B194C30 */,object[])[Optimized] +00007FA128667AF0 1a object [Microsoft.Extensions.DependencyInjection] dynamicClass::ResolveService(Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder/ILEmitResolverBuilderRuntimeContext /* MT: 0x00007FA12E03FA48 */,Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope /* MT: 0x00007FA12DBCA288 */)[Optimized] +00007FA12780BD10 18 stub<18364> GenerateResolveStub +00007FA1277CBF60 20 stub<18365> GenerateDispatchStub +00007FA12EBDC180 18 stub<18366> AllocateTemporaryEntryPoints +00007FA12E671D80 18 stub<18367> GenerateLookupStub +00007FA12EBDC198 18 stub<18368> AllocateTemporaryEntryPoints +00007FA12EBDC1B0 18 stub<18369> AllocateTemporaryEntryPoints +00007FA12E671DA0 18 stub<18370> GenerateLookupStub +00007FA12EBDC1C8 48 stub<18371> AllocateTemporaryEntryPoints +00007FA12EBDC210 60 stub<18372> AllocateTemporaryEntryPoints +00007FA12EBDC270 18 stub<18373> AllocateTemporaryEntryPoints +00007FA12EBDC288 18 stub<18374> AllocateTemporaryEntryPoints +00007FA12EBDC2A0 18 stub<18375> AllocateTemporaryEntryPoints +00007FA12EBDC2B8 18 stub<18376> AllocateTemporaryEntryPoints +00007FA12EBDC2D0 90 stub<18377> AllocateTemporaryEntryPoints +00007FA12780BD80 18 stub<18378> GenerateResolveStub +00007FA1277CBF80 20 stub<18379> GenerateDispatchStub +00007FA1277CBFA0 20 stub<18380> GenerateDispatchStub +00007FA12780BDF0 18 stub<18381> GenerateResolveStub +00007FA1277CBFC0 20 stub<18382> GenerateDispatchStub +00007FA12EBDC360 f0 stub<18383> AllocateTemporaryEntryPoints +00007FA12EBDC450 18 stub<18384> AllocateTemporaryEntryPoints +00007FA12EBDC468 18 stub<18385> AllocateTemporaryEntryPoints +00007FA12E5BAE50 48 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_14()[QuickJitted] +00007FA12EBDC480 18 stub<18386> AllocateTemporaryEntryPoints +00007FA12E5BAEB0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BAEF0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5BAFF0 9d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_14>d::MoveNext()[QuickJitted] +00007FA12EBDC498 18 stub<18387> AllocateTemporaryEntryPoints +00007FA12EBDC4B0 18 stub<18388> AllocateTemporaryEntryPoints +00007FA12EBDC4C8 18 stub<18389> AllocateTemporaryEntryPoints +00007FA12E5BB0B0 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12E5BB0F0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EBDC4E0 18 stub<18390> AllocateTemporaryEntryPoints +00007FA12EBDC4F8 18 stub<18391> AllocateTemporaryEntryPoints +00007FA12780BE60 18 stub<18392> GenerateResolveStub +00007FA1277CBFE0 20 stub<18393> GenerateDispatchStub +00007FA12EBDC510 18 stub<18394> AllocateTemporaryEntryPoints +00007FA12EBDC528 18 stub<18395> AllocateTemporaryEntryPoints +00007FA12780BED0 18 stub<18396> GenerateResolveStub +00007FA1277CC000 20 stub<18397> GenerateDispatchStub +00007FA12EBDC540 18 stub<18398> AllocateTemporaryEntryPoints +00007FA12EBDC558 198 stub<18399> AllocateTemporaryEntryPoints +00007FA12EBDC6F0 30 stub<18400> AllocateTemporaryEntryPoints +00007FA12EBDC720 48 stub<18401> AllocateTemporaryEntryPoints +00007FA12EBDC768 138 stub<18402> AllocateTemporaryEntryPoints +00007FA12EBDC8A0 60 stub<18403> AllocateTemporaryEntryPoints +00007FA12EBDC900 18 stub<18404> AllocateTemporaryEntryPoints +00007FA12EBDC918 18 stub<18405> AllocateTemporaryEntryPoints +00007FA12E5BB1F0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BB230 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EBDC930 60 stub<18406> AllocateTemporaryEntryPoints +00007FA12EBDC990 18 stub<18407> AllocateTemporaryEntryPoints +00007FA12EBDC9A8 18 stub<18408> AllocateTemporaryEntryPoints +00007FA12E5BB740 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BB780 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12784B850 e stub<18409> GenerateVTableCallStub +00007FA12780BF40 18 stub<18410> GenerateResolveStub +00007FA1277CC020 20 stub<18411> GenerateDispatchStub +00007FA12EBDC9C0 60 stub<18412> AllocateTemporaryEntryPoints +00007FA12EBDCA20 18 stub<18413> AllocateTemporaryEntryPoints +00007FA12EBDCA38 18 stub<18414> AllocateTemporaryEntryPoints +00007FA12E5BB880 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BB8C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EBDCA50 60 stub<18415> AllocateTemporaryEntryPoints +00007FA12EBDCAB0 18 stub<18416> AllocateTemporaryEntryPoints +00007FA12EBDCAC8 18 stub<18417> AllocateTemporaryEntryPoints +00007FA12E5BB9C0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BBA00 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EBDCAE0 18 stub<18418> AllocateTemporaryEntryPoints +00007FA12E5BBB00 1b instance int32 [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::get_Count()[QuickJitted] +00007FA12EBDCAF8 60 stub<18419> AllocateTemporaryEntryPoints +00007FA12EBDCB58 18 stub<18420> AllocateTemporaryEntryPoints +00007FA12EBDCB70 18 stub<18421> AllocateTemporaryEntryPoints +00007FA12E5BBB30 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12E5BBB70 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EBDCB88 18 stub<18422> AllocateTemporaryEntryPoints +00007FA12EBDCBA0 18 stub<18423> AllocateTemporaryEntryPoints +00007FA12E5BBC70 132 instance bool [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::TryPop(!0&)[QuickJitted] +00007FA12EBDCBB8 18 stub<18424> AllocateTemporaryEntryPoints +00007FA1277CC040 20 stub<18425> GenerateDispatchStub +00007FA12780BFB0 18 stub<18426> GenerateResolveStub +00007FA1277CC060 20 stub<18427> GenerateDispatchStub +00007FA12780C020 18 stub<18428> GenerateResolveStub +00007FA1277CC080 20 stub<18429> GenerateDispatchStub +00007FA12EBDCBE8 d8 stub<18430> AllocateTemporaryEntryPoints +00007FA12EBDCCC0 d8 stub<18431> AllocateTemporaryEntryPoints +00007FA12EBDCD98 60 stub<18432> AllocateTemporaryEntryPoints +00007FA12EBDCDF8 30 stub<18433> AllocateTemporaryEntryPoints +00007FA12EBDCE28 150 stub<18434> AllocateTemporaryEntryPoints +00007FA12EBDCF78 18 stub<18435> AllocateTemporaryEntryPoints +00007FA12EBDCF90 18 stub<18436> AllocateTemporaryEntryPoints +00007FA12EBDE000 78 stub<18437> AllocateTemporaryEntryPoints +00007FA12EBDE078 120 stub<18438> AllocateTemporaryEntryPoints +00007FA12EBDE198 18 stub<18439> AllocateTemporaryEntryPoints +00007FA12EBDE1B0 60 stub<18440> AllocateTemporaryEntryPoints +00007FA12780C090 18 stub<18441> GenerateResolveStub +00007FA1277CC0A0 20 stub<18442> GenerateDispatchStub +00007FA12780C100 18 stub<18443> GenerateResolveStub +00007FA1277CC0C0 20 stub<18444> GenerateDispatchStub +00007FA12EBDE210 168 stub<18445> AllocateTemporaryEntryPoints +00007FA12E5BBDC0 4b instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::Enqueue(!0)[QuickJitted] +00007FA12E5BBE20 148 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryEnqueue(!0)[QuickJitted] +00007FA12E5BBF80 90 instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::get_IsCompletedSuccessfully()[QuickJitted] +00007FA12E5BC030 78 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryDequeue(!0&)[QuickJitted] +00007FA12EBDE378 18 stub<18446> AllocateTemporaryEntryPoints +00007FA12780C170 18 stub<18447> GenerateResolveStub +00007FA1277CC0E0 20 stub<18448> GenerateDispatchStub +00007FA12780C1E0 18 stub<18449> GenerateResolveStub +00007FA1277CC100 20 stub<18450> GenerateDispatchStub +00007FA12E5BC0C0 21a instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryDequeue(!0&)[QuickJitted] +00007FA12780C250 18 stub<18451> GenerateResolveStub +00007FA1277CC120 20 stub<18452> GenerateDispatchStub +00007FA12E5BC2F0 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12780C2C0 18 stub<18453> GenerateResolveStub +00007FA1277CC140 20 stub<18454> GenerateDispatchStub +00007FA12E5BC310 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28]::MoveNext()[QuickJitted] +00007FA12E5BC350 57 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::.ctor(class System.Threading.Tasks.Sources.IValueTaskSource`1,int16)[QuickJitted] +00007FA12E5BC3C0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E5BC540 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28]::.cctor()[QuickJitted] +00007FA12E5BC5C0 27 instance void [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.IO.Pipelines.FlushResult]::.ctor(valuetype System.Threading.Tasks.TaskCreationOptions)[QuickJitted] +00007FA12EBDE3A8 18 stub<18455> AllocateTemporaryEntryPoints +00007FA12E5BC640 61 instance void [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.IO.Pipelines.FlushResult]::.ctor(object,valuetype System.Threading.Tasks.TaskCreationOptions)[QuickJitted] +00007FA12E5BC600 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E5BC6C0 32 instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.IO.Pipelines.FlushResult]::.ctor(object,valuetype System.Threading.Tasks.TaskCreationOptions)[QuickJitted] +00007FA12E5BC710 1c instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.IO.Pipelines.FlushResult]::get_Task()[QuickJitted] +00007FA12E5BC740 53 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::.ctor(class System.Threading.Tasks.Task`1)[QuickJitted] +00007FA12EBDE3C0 60 stub<18456> AllocateTemporaryEntryPoints +00007FA12EBDE420 18 stub<18457> AllocateTemporaryEntryPoints +00007FA12EBDE438 18 stub<18458> AllocateTemporaryEntryPoints +00007FA12EBDE450 4e0 stub<18459> AllocateTemporaryEntryPoints +00007FA12E5BC7B0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12EBDE930 240 stub<18460> AllocateTemporaryEntryPoints +00007FA12EBDEB70 48 stub<18461> AllocateTemporaryEntryPoints +00007FA12EBDEBB8 48 stub<18462> AllocateTemporaryEntryPoints +00007FA12EBDEC00 18 stub<18463> AllocateTemporaryEntryPoints +00007FA12E5BC7F0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12780C330 18 stub<18464> GenerateResolveStub +00007FA1277CC160 20 stub<18465> GenerateDispatchStub +00007FA12ECD0000 6f0 stub<18466> AllocateTemporaryEntryPoints +00007FA12ECD06F0 18 stub<18467> AllocateTemporaryEntryPoints +00007FA12ECD0708 78 stub<18468> AllocateTemporaryEntryPoints +00007FA12ECD0780 18 stub<18469> AllocateTemporaryEntryPoints +00007FA12ECD0798 a8 stub<18470> AllocateTemporaryEntryPoints +00007FA12ECD0840 18 stub<18471> AllocateTemporaryEntryPoints +00007FA12ECD0858 18 stub<18472> AllocateTemporaryEntryPoints +00007FA12ECD0870 18 stub<18473> AllocateTemporaryEntryPoints +00007FA12E5BC8F0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD0888 18 stub<18474> AllocateTemporaryEntryPoints +00007FA12ECD08A0 18 stub<18475> AllocateTemporaryEntryPoints +00007FA12E5BC940 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD08B8 60 stub<18476> AllocateTemporaryEntryPoints +00007FA12ECD0918 d8 stub<18477> AllocateTemporaryEntryPoints +00007FA12ECD09F0 18 stub<18478> AllocateTemporaryEntryPoints +00007FA12ECD0A08 30 stub<18479> AllocateTemporaryEntryPoints +00007FA12E5BC9A0 255 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E5BCC10 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::.ctor()[QuickJitted] +00007FA12E671DC0 18 stub<18480> GenerateLookupStub +00007FA12ECD0A38 30 stub<18481> AllocateTemporaryEntryPoints +00007FA12780C3A0 18 stub<18482> GenerateResolveStub +00007FA1277CC180 20 stub<18483> GenerateDispatchStub +00007FA12ECD0A68 48 stub<18484> AllocateTemporaryEntryPoints +00007FA12ECD0AB0 2b8 stub<18485> AllocateTemporaryEntryPoints +00007FA12ECD2000 2b8 stub<18486> AllocateTemporaryEntryPoints +00007FA12E5BCC50 1a5 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12780C410 18 stub<18487> GenerateResolveStub +00007FA1277CC1A0 20 stub<18488> GenerateDispatchStub +00007FA12ECD22B8 60 stub<18489> AllocateTemporaryEntryPoints +00007FA12ECD2318 f0 stub<18490> AllocateTemporaryEntryPoints +00007FA12ECD2408 60 stub<18491> AllocateTemporaryEntryPoints +00007FA12E5BCE90 2a valuetype System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::Create()[QuickJitted] +00007FA12ECD2468 18 stub<18492> AllocateTemporaryEntryPoints +00007FA12ECD2480 18 stub<18493> AllocateTemporaryEntryPoints +00007FA12E5BCED0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::Start(!!0&)[QuickJitted] +00007FA12E5BCE30 3c valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.Runtime.InteropServices.GCHandle]::op_Implicit(!0[])[QuickJitted] +00007FA12ECD2498 18 stub<18494> AllocateTemporaryEntryPoints +00007FA12E5BCF10 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12E5BD010 d2 instance void [System.Private.CoreLib] System.Span`1[System.Runtime.InteropServices.GCHandle]::.ctor(!0[])[QuickJitted] +00007FA12E5BD100 22 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[QuickJitted] +00007FA12ECD24B0 60 stub<18495> AllocateTemporaryEntryPoints +00007FA12E5BD140 3c valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[Interop+Sys+IOVector]::op_Implicit(!0[])[QuickJitted] +00007FA12ECD2510 18 stub<18496> AllocateTemporaryEntryPoints +00007FA12ECD2528 18 stub<18497> AllocateTemporaryEntryPoints +00007FA12ECD2540 1e0 stub<18498> AllocateTemporaryEntryPoints +00007FA12ECD2720 18 stub<18499> AllocateTemporaryEntryPoints +00007FA12E5BD1A0 d2 instance void [System.Private.CoreLib] System.Span`1[Interop+Sys+IOVector]::.ctor(!0[])[QuickJitted] +00007FA12E5BD290 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD2738 18 stub<18500> AllocateTemporaryEntryPoints +00007FA12ECD2750 18 stub<18501> AllocateTemporaryEntryPoints +00007FA12E5BD2E0 22 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[QuickJitted] +00007FA12E5BD320 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD2768 d8 stub<18502> AllocateTemporaryEntryPoints +00007FA12ECD2840 d8 stub<18503> AllocateTemporaryEntryPoints +00007FA12ECD2918 18 stub<18504> AllocateTemporaryEntryPoints +00007FA12ECD2930 18 stub<18505> AllocateTemporaryEntryPoints +00007FA12ECD2948 18 stub<18506> AllocateTemporaryEntryPoints +00007FA12E5BD380 39 instance !0& [System.Private.CoreLib] System.Span`1[Interop+Sys+IOVector]::GetPinnableReference()[QuickJitted] +00007FA12E5BD3D0 261 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E5BD650 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::.ctor()[QuickJitted] +00007FA12E5BD690 1f instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.IO.Pipelines.FlushResult]::.ctor()[QuickJitted] +00007FA12ECD2978 78 stub<18507> AllocateTemporaryEntryPoints +00007FA12E5BD6D0 24 instance int32 [DuckTypeNotVisibleAssembly.HttpResponseMessage_3] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpResponseMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpResponseMessage_3::get_StatusCode()[QuickJitted] +00007FA12E671DE0 18 stub<18508> GenerateLookupStub +00007FA1277CC1C0 20 stub<18509> GenerateDispatchStub +00007FA12ECD29F0 18 stub<18510> AllocateTemporaryEntryPoints +00007FA12ECD2A08 18 stub<18511> AllocateTemporaryEntryPoints +00007FA12ECD2A20 18 stub<18512> AllocateTemporaryEntryPoints +00007FA12E5BD710 151 void [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::SetHttpStatusCode(class Datadog.Trace.Span,int32,bool,class Datadog.Trace.Configuration.ImmutableTracerSettings)[QuickJitted] +00007FA12E5BD880 1a5 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12E5BDA60 ed void [System.Private.CoreLib] System.Array::Resize(!!0[]&,int32)[QuickJitted] +00007FA12ECD2A38 240 stub<18513> AllocateTemporaryEntryPoints +00007FA12E5BDB70 f8 string [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::ConvertStatusCodeToString(int32)[QuickJitted] +00007FA12E5BDC80 22 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[QuickJitted] +00007FA12ECD2C78 18 stub<18514> AllocateTemporaryEntryPoints +00007FA12ECD2C90 18 stub<18515> AllocateTemporaryEntryPoints +00007FA12E5BDCC0 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::set_HttpStatusCode(string)[QuickJitted] +00007FA12ECD2CA8 18 stub<18516> AllocateTemporaryEntryPoints +00007FA12ECD2CC0 18 stub<18517> AllocateTemporaryEntryPoints +00007FA12ECD4000 540 stub<18518> AllocateTemporaryEntryPoints +00007FA12E5BDD00 64 void [System.Private.CoreLib] System.Buffer::Memmove(!!0&,!!0&,native uint)[QuickJitted] +00007FA12E5BDD80 94 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::IsErrorStatusCode(int32,bool)[QuickJitted] +00007FA12E5BDE30 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12E5BDE50 1c instance bool[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_HttpClientErrorStatusCodes()[QuickJitted] +00007FA12E5BDE80 108 instance valuetype System.Threading.Tasks.ValueTask`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::get_Task()[QuickJitted] +00007FA12E5BDFB0 4b instance void [Datadog.Trace] Datadog.Trace.Scope::Dispose()[QuickJitted] +00007FA12780C480 18 stub<18519> GenerateResolveStub +00007FA12E671E00 18 stub<18520> GenerateLookupStub +00007FA1277CC1E0 20 stub<18521> GenerateDispatchStub +00007FA12E5BE020 50 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::.cctor()[QuickJitted] +00007FA12E5BE090 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::ExecuteFromThreadPool(class System.Threading.Thread)[QuickJitted] +00007FA12780C4F0 18 stub<18522> GenerateResolveStub +00007FA12E5BE0D0 50 instance void [Datadog.Trace] Datadog.Trace.Scope::Close()[QuickJitted] +00007FA1277CC200 20 stub<18523> GenerateDispatchStub +00007FA12E5BE140 41 instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.IO.Pipelines.FlushResult]::.ctor(!0)[QuickJitted] +00007FA12E5BE1A0 36 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::get_IsEmpty()[QuickJitted] +00007FA12E5BE1F0 ce instance void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::Close(class Datadog.Trace.Scope)[QuickJitted] +00007FA12ECD4540 18 stub<18524> AllocateTemporaryEntryPoints +00007FA12ECD4558 18 stub<18525> AllocateTemporaryEntryPoints +00007FA12ECD4570 18 stub<18526> AllocateTemporaryEntryPoints +00007FA12E5BE2E0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECD4588 18 stub<18527> AllocateTemporaryEntryPoints +00007FA12E5BE460 1c instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.Scope::get_Parent()[QuickJitted] +00007FA12E5BE490 7e instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::AsTask()[QuickJitted] +00007FA12ECD45A0 18 stub<18528> AllocateTemporaryEntryPoints +00007FA12E5BE5B0 1c instance class Datadog.Trace.ISpanContext [Datadog.Trace] Datadog.Trace.SpanContext::get_Parent()[QuickJitted] +00007FA12E5BE530 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::.cctor()[QuickJitted] +00007FA12ECD45B8 18 stub<18529> AllocateTemporaryEntryPoints +00007FA12E5BE5E0 e4 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryPeek(!0&,bool)[QuickJitted] +00007FA12ECD45D0 18 stub<18530> AllocateTemporaryEntryPoints +00007FA12E5BE6E0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E5BE730 6c instance void [Datadog.Trace] Datadog.Trace.Span::Finish()[QuickJitted] +00007FA12ECD45E8 18 stub<18531> AllocateTemporaryEntryPoints +00007FA12ECD4600 18 stub<18532> AllocateTemporaryEntryPoints +00007FA12E5BE7B0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E5BE7F0 2d instance valuetype [System.Runtime]System.DateTimeOffset [Datadog.Trace] Datadog.Trace.Span::get_StartTime()[QuickJitted] +00007FA12E5BE840 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD4618 d8 stub<18533> AllocateTemporaryEntryPoints +00007FA12E5BE8A0 222 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryPeek(!0&,bool)[QuickJitted] +00007FA12ECD46F0 18 stub<18534> AllocateTemporaryEntryPoints +00007FA12E5BEAF0 5b instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.TraceContext::ElapsedSince(valuetype [System.Runtime]System.DateTimeOffset)[QuickJitted] +00007FA12E5BEB60 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E5BEDD0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::.ctor()[QuickJitted] +00007FA12E5BEE10 36 instance void [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.IO.Pipelines.FlushResult]::SetResult(!0)[QuickJitted] +00007FA12E5BEE60 48 instance bool [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.IO.Pipelines.FlushResult]::TrySetResult(!0)[QuickJitted] +00007FA12E5BEEC0 33a instance void [Datadog.Trace] Datadog.Trace.Span::Finish(valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12E5BF230 a4 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.IO.Pipelines.FlushResult]::TrySetResult(!0)[QuickJitted] +00007FA12E5BF2F0 1c instance string [Datadog.Trace] Datadog.Trace.Span::get_ResourceName()[QuickJitted] +00007FA12E5BF5D0 24 instance void [Datadog.Trace] Datadog.Trace.Span::set_Duration(valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12E5BF360 75 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::ClearStateUponCompletion()[QuickJitted] +00007FA12E5BF320 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::ExecuteFromThreadPool(class System.Threading.Thread)[QuickJitted] +00007FA12E5BF3F0 1a5 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12E5BF610 1c instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.Span::get_Duration()[QuickJitted] +00007FA12ECD4708 18 stub<18535> AllocateTemporaryEntryPoints +00007FA12E5BF640 22 instance void [Datadog.Trace] Datadog.Trace.Span::set_IsFinished(bool)[QuickJitted] +00007FA12ECD4720 18 stub<18536> AllocateTemporaryEntryPoints +00007FA12E5BF680 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD4738 18 stub<18538> AllocateTemporaryEntryPoints +00007FA12E671E20 18 stub<18537> GenerateLookupStub +00007FA12E5BF6D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECD4750 18 stub<18539> AllocateTemporaryEntryPoints +00007FA12E5BF850 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD4768 d8 stub<18540> AllocateTemporaryEntryPoints +00007FA12ECD4840 18 stub<18541> AllocateTemporaryEntryPoints +00007FA12E671E40 18 stub<18542> GenerateLookupStub +00007FA12E5BF8B0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::.cctor()[QuickJitted] +00007FA12ECD4858 18 stub<18543> AllocateTemporaryEntryPoints +00007FA12E5BF930 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E5BF970 24e class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E5BFBE0 1d instance !0 [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.IO.Pipelines.FlushResult]::get_ResultOnSuccess()[QuickJitted] +00007FA12E5BFC20 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::.ctor()[QuickJitted] +00007FA12ECD4870 18 stub<18544> AllocateTemporaryEntryPoints +00007FA12ECD4888 18 stub<18545> AllocateTemporaryEntryPoints +00007FA12E5C0060 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12E5BFC60 3d2 instance void [Datadog.Trace] Datadog.Trace.TraceContext::CloseSpan(class Datadog.Trace.Span)[QuickJitted] +00007FA12ECD48A0 18 stub<18546> AllocateTemporaryEntryPoints +00007FA12E5C00B0 5d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::SetResult(!0)[QuickJitted] +00007FA12E5C0130 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E5C0190 70 instance bool [Datadog.Trace] Datadog.Trace.Span::get_IsRootSpan()[QuickJitted] +00007FA12ECD48B8 d8 stub<18547> AllocateTemporaryEntryPoints +00007FA12ECD4990 18 stub<18548> AllocateTemporaryEntryPoints +00007FA12E5C0220 4f instance void [Datadog.Trace] Datadog.Trace.Util.ArrayBuilder`1[System.__Canon]::Add(!0)[QuickJitted] +00007FA12E5C0290 8b void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::SetExistingTaskResult(class System.Threading.Tasks.Task`1,!0)[QuickJitted] +00007FA12E5C0330 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::MoveNext()[QuickJitted] +00007FA12E5C05E0 132 instance void [Datadog.Trace] Datadog.Trace.Util.ArrayBuilder`1[System.__Canon]::GrowIfNeeded()[QuickJitted] +00007FA12E5C0370 250 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E5C0730 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::.ctor()[QuickJitted] +00007FA12ECD49A8 18 stub<18549> AllocateTemporaryEntryPoints +00007FA12E5C0770 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECD49C0 18 stub<18550> AllocateTemporaryEntryPoints +00007FA12ECD49D8 4f8 stub<18551> AllocateTemporaryEntryPoints +00007FA12E5C08F0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD4ED0 18 stub<18552> AllocateTemporaryEntryPoints +00007FA12ECD4EE8 78 stub<18553> AllocateTemporaryEntryPoints +00007FA12E5C0940 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::.cctor()[QuickJitted] +00007FA12E5C09C0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD6000 a8 stub<18554> AllocateTemporaryEntryPoints +00007FA12ECD60A8 18 stub<18555> AllocateTemporaryEntryPoints +00007FA12ECD60C0 d8 stub<18556> AllocateTemporaryEntryPoints +00007FA12ECD6198 18 stub<18557> AllocateTemporaryEntryPoints +00007FA12ECD61B0 18 stub<18558> AllocateTemporaryEntryPoints +00007FA12ECD61C8 18 stub<18559> AllocateTemporaryEntryPoints +00007FA12ECD61E0 18 stub<18560> AllocateTemporaryEntryPoints +00007FA12E5C0A20 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECD61F8 18 stub<18561> AllocateTemporaryEntryPoints +00007FA12ECD6210 18 stub<18562> AllocateTemporaryEntryPoints +00007FA12E5C0A60 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::MoveNext()[QuickJitted] +00007FA12E5C0AA0 258 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12B4112D0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::.ctor()[QuickJitted] +00007FA12B4111A0 10a instance valuetype [System.Runtime]System.ArraySegment`1 [Datadog.Trace] Datadog.Trace.Util.ArrayBuilder`1[System.__Canon]::GetArray()[QuickJitted] +00007FA12ECD6228 18 stub<18563> AllocateTemporaryEntryPoints +00007FA12ECD6240 18 stub<18564> AllocateTemporaryEntryPoints +00007FA12ECF01A0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECF0020 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECD6258 18 stub<18565> AllocateTemporaryEntryPoints +00007FA12ECF01F0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF0250 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::.cctor()[QuickJitted] +00007FA12ECD6270 d8 stub<18566> AllocateTemporaryEntryPoints +00007FA12ECD6348 18 stub<18567> AllocateTemporaryEntryPoints +00007FA12ECF02D0 fe instance void [Datadog.Trace] Datadog.Trace.Tracer::Datadog.Trace.IDatadogTracer.Write(valuetype [System.Runtime]System.ArraySegment`1)[QuickJitted] +00007FA12ECD6360 18 stub<18568> AllocateTemporaryEntryPoints +00007FA12ECF03F0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::ExecutionContextCallback(object)[QuickJitted] +00007FA12E671E60 18 stub<18569> GenerateLookupStub +00007FA12ECF0430 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::MoveNext()[QuickJitted] +00007FA12E671E80 18 stub<18570> GenerateLookupStub +00007FA12ECF0470 271 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF0700 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::.ctor()[QuickJitted] +00007FA12ECD6378 18 stub<18571> AllocateTemporaryEntryPoints +00007FA12ECD6390 18 stub<18572> AllocateTemporaryEntryPoints +00007FA12ECF0AD0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECF08C0 1db instance void [Datadog.Trace] Datadog.Trace.TracerManager::WriteTrace(valuetype [System.Runtime]System.ArraySegment`1)[QuickJitted] +00007FA12ECF0740 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECD63A8 18 stub<18573> AllocateTemporaryEntryPoints +00007FA12ECF0B20 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF0B80 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::.cctor()[QuickJitted] +00007FA12ECD63C0 d8 stub<18574> AllocateTemporaryEntryPoints +00007FA12ECD6498 18 stub<18575> AllocateTemporaryEntryPoints +00007FA12ECD64B0 18 stub<18576> AllocateTemporaryEntryPoints +00007FA12ECF0C00 180 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::WriteTrace(valuetype [System.Runtime]System.ArraySegment`1)[QuickJitted] +00007FA12ECF0DB0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECF0DF0 38 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+WorkItem::.ctor(valuetype [System.Runtime]System.ArraySegment`1)[QuickJitted] +00007FA12780C560 18 stub<18577> GenerateResolveStub +00007FA1277CC220 20 stub<18578> GenerateDispatchStub +00007FA12780C5D0 18 stub<18579> GenerateResolveStub +00007FA12ECF10B0 85 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::Enqueue(!0)[QuickJitted] +00007FA12ECF0E40 251 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA1277CC240 20 stub<18580> GenerateDispatchStub +00007FA12ECF1150 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::.ctor()[QuickJitted] +00007FA12780C640 18 stub<18581> GenerateResolveStub +00007FA12ECD64C8 18 stub<18582> AllocateTemporaryEntryPoints +00007FA1277CC260 20 stub<18583> GenerateDispatchStub +00007FA12ECD64E0 18 stub<18584> AllocateTemporaryEntryPoints +00007FA12ECF12F0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECF1190 142 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::TryEnqueue(!0)[QuickJitted] +00007FA12780C6B0 18 stub<18585> GenerateResolveStub +00007FA12ECD64F8 18 stub<18586> AllocateTemporaryEntryPoints +00007FA1277CC280 20 stub<18587> GenerateDispatchStub +00007FA12ECF13C0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF1340 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::ClearStateUponCompletion()[QuickJitted] +00007FA12780C720 18 stub<18588> GenerateResolveStub +00007FA12ECD6510 d8 stub<18589> AllocateTemporaryEntryPoints +00007FA1277CC2A0 20 stub<18590> GenerateDispatchStub +00007FA12ECD65E8 18 stub<18591> AllocateTemporaryEntryPoints +00007FA12ECF1420 63 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::ClearStateUponCompletion()[QuickJitted] +00007FA12ECF14A0 8a instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::ClearStateUponCompletion()[QuickJitted] +00007FA12ECF1540 26e class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF17D0 b bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12ECF17F0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::.ctor()[QuickJitted] +00007FA12ECD6600 18 stub<18592> AllocateTemporaryEntryPoints +00007FA12ECD6618 18 stub<18593> AllocateTemporaryEntryPoints +00007FA12ECF1830 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD6630 18 stub<18594> AllocateTemporaryEntryPoints +00007FA12E671EA0 18 stub<18595> GenerateLookupStub +00007FA12ECF1880 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD6648 d8 stub<18596> AllocateTemporaryEntryPoints +00007FA12E671EC0 18 stub<18597> GenerateLookupStub +00007FA12E671EE0 18 stub<18598> GenerateLookupStub +00007FA12ECD6720 18 stub<18599> AllocateTemporaryEntryPoints +00007FA12ECD6738 18 stub<18601> AllocateTemporaryEntryPoints +00007FA12E671F00 18 stub<18600> GenerateLookupStub +00007FA12ECD6750 18 stub<18602> AllocateTemporaryEntryPoints +00007FA12ECF18E0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD6768 18 stub<18603> AllocateTemporaryEntryPoints +00007FA12ECF1930 262 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF1BB0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF1C10 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::.ctor()[QuickJitted] +00007FA12ECD6780 18 stub<18604> AllocateTemporaryEntryPoints +00007FA12ECD6798 18 stub<18605> AllocateTemporaryEntryPoints +00007FA12ECD67B0 d8 stub<18606> AllocateTemporaryEntryPoints +00007FA12ECF1C50 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD6888 18 stub<18607> AllocateTemporaryEntryPoints +00007FA12ECF1CA0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD68A0 d8 stub<18608> AllocateTemporaryEntryPoints +00007FA12ECD6978 18 stub<18609> AllocateTemporaryEntryPoints +00007FA12ECD6990 18 stub<18610> AllocateTemporaryEntryPoints +00007FA12ECF1D00 76c instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::SerializeTrace(valuetype [System.Runtime]System.ArraySegment`1)[QuickJitted] +00007FA12ECF24B0 25d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E671F20 18 stub<18611> GenerateLookupStub +00007FA12ECF29A0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::.ctor()[QuickJitted] +00007FA12ECF2730 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD69A8 18 stub<18612> AllocateTemporaryEntryPoints +00007FA12ECD69C0 18 stub<18613> AllocateTemporaryEntryPoints +00007FA12ECF2A20 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECF29E0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::.ctor()[QuickJitted] +00007FA12ECD69D8 18 stub<18614> AllocateTemporaryEntryPoints +00007FA12ECF2A70 1e5 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::RunSpanSampler(valuetype [System.Runtime]System.ArraySegment`1)[QuickJitted] +00007FA12ECD69F0 18 stub<18615> AllocateTemporaryEntryPoints +00007FA12ECD6A08 18 stub<18616> AllocateTemporaryEntryPoints +00007FA12ECF2C80 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12E671F40 18 stub<18617> GenerateLookupStub +00007FA12ECD6A20 d8 stub<18618> AllocateTemporaryEntryPoints +00007FA12ECD6AF8 18 stub<18619> AllocateTemporaryEntryPoints +00007FA12ECF2D30 8d instance bool [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::get_CanComputeStats()[QuickJitted] +00007FA12ECF2CE0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECF2DE0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::MoveNext()[QuickJitted] +00007FA12ECF2E20 24c class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF3090 29 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Agent.NullStatsAggregator::get_CanComputeStats()[QuickJitted] +00007FA12ECF30D0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::.ctor()[QuickJitted] +00007FA12ECD6B10 18 stub<18620> AllocateTemporaryEntryPoints +00007FA12ECF3150 2d instance float64 [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::GetKeepRate()[QuickJitted] +00007FA12ECD6B28 18 stub<18621> AllocateTemporaryEntryPoints +00007FA12ECF31A0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECF3320 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD6B40 18 stub<18622> AllocateTemporaryEntryPoints +00007FA12ECD6B58 18 stub<18623> AllocateTemporaryEntryPoints +00007FA12ECF3370 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::.cctor()[QuickJitted] +00007FA12ECF33F0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD6B70 18 stub<18624> AllocateTemporaryEntryPoints +00007FA12ECD6B88 d8 stub<18625> AllocateTemporaryEntryPoints +00007FA12ECF3450 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECD6C60 18 stub<18626> AllocateTemporaryEntryPoints +00007FA12ECF3490 2e instance void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::set_TracesKeepRate(valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12ECF34E0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::MoveNext()[QuickJitted] +00007FA12E671F60 18 stub<18627> GenerateLookupStub +00007FA12ECF3520 251 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF3790 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECF3CC0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::.ctor()[QuickJitted] +00007FA12ECF3D00 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::.cctor()[QuickJitted] +00007FA12ECD6C78 18 stub<18628> AllocateTemporaryEntryPoints +00007FA12ECD6C90 18 stub<18629> AllocateTemporaryEntryPoints +00007FA12ECD6CA8 18 stub<18630> AllocateTemporaryEntryPoints +00007FA12ECF3970 31b instance bool [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::TryWrite(valuetype [System.Runtime]System.ArraySegment`1,uint8[]&,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12ECF3D80 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECF3110 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::ExecuteFromThreadPool(class System.Threading.Thread)[QuickJitted] +00007FA12ECF3910 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD6CC0 60 stub<18631> AllocateTemporaryEntryPoints +00007FA12ECD6D20 d8 stub<18632> AllocateTemporaryEntryPoints +00007FA12ECD6DF8 60 stub<18633> AllocateTemporaryEntryPoints +00007FA12ECD6E58 18 stub<18634> AllocateTemporaryEntryPoints +00007FA12ECF3DC0 47 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::.ctor(valuetype [System.Runtime]System.ArraySegment`1&,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12ECD6E70 18 stub<18635> AllocateTemporaryEntryPoints +00007FA12ECD6E88 18 stub<18636> AllocateTemporaryEntryPoints +00007FA12ECD6EA0 18 stub<18637> AllocateTemporaryEntryPoints +00007FA12ECD6EB8 18 stub<18638> AllocateTemporaryEntryPoints +00007FA12ECF3FA0 93 class Datadog.Trace.TraceContext [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::GetTraceContext(valuetype [System.Runtime]System.ArraySegment`1&)[QuickJitted] +00007FA12ECF4050 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12ECF40D0 25a class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD6ED0 18 stub<18639> AllocateTemporaryEntryPoints +00007FA12ECF3E20 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12E671F80 18 stub<18640> GenerateLookupStub +00007FA12ECD6EE8 18 stub<18641> AllocateTemporaryEntryPoints +00007FA12ECF4350 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::.ctor()[QuickJitted] +00007FA12ECF4390 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::.cctor()[QuickJitted] +00007FA12ECD6F00 18 stub<18642> AllocateTemporaryEntryPoints +00007FA12ECD6F18 18 stub<18643> AllocateTemporaryEntryPoints +00007FA12ECD6F30 18 stub<18644> AllocateTemporaryEntryPoints +00007FA12ECF4410 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ECF4560 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD6F48 18 stub<18645> AllocateTemporaryEntryPoints +00007FA12ECF45B0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECD6F60 18 stub<18646> AllocateTemporaryEntryPoints +00007FA12ECF45F0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD6F78 18 stub<18647> AllocateTemporaryEntryPoints +00007FA12ECD6F90 18 stub<18648> AllocateTemporaryEntryPoints +00007FA12ECF4690 409 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::.ctor(valuetype [System.Runtime]System.ArraySegment`1&,class Datadog.Trace.TraceContext,valuetype [System.Runtime]System.Nullable`1)[QuickJitted] +00007FA12ECD8000 d8 stub<18649> AllocateTemporaryEntryPoints +00007FA12ECD80D8 18 stub<18650> AllocateTemporaryEntryPoints +00007FA12ECD80F0 18 stub<18651> AllocateTemporaryEntryPoints +00007FA12ECD8108 18 stub<18652> AllocateTemporaryEntryPoints +00007FA12ECF4AC0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD8120 4f8 stub<18653> AllocateTemporaryEntryPoints +00007FA12ECD8618 18 stub<18654> AllocateTemporaryEntryPoints +00007FA12ECD8630 18 stub<18655> AllocateTemporaryEntryPoints +00007FA12ECD8648 18 stub<18656> AllocateTemporaryEntryPoints +00007FA12ECD8660 108 stub<18657> AllocateTemporaryEntryPoints +00007FA12ECD8768 a8 stub<18658> AllocateTemporaryEntryPoints +00007FA12ECF4650 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::MoveNext()[QuickJitted] +00007FA12ECF4BA0 258 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF4B60 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::MoveNext()[QuickJitted] +00007FA12ECF4E20 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF4EC0 248 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::.ctor(valuetype [System.Runtime]System.ArraySegment`1&,class Datadog.Trace.Span)[QuickJitted] +00007FA12ECD8810 18 stub<18659> AllocateTemporaryEntryPoints +00007FA12ECF5130 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionResponseContent+<g__Impl|6_0>d]::.ctor()[QuickJitted] +00007FA12ECD8828 18 stub<18660> AllocateTemporaryEntryPoints +00007FA12ECD8840 d8 stub<18661> AllocateTemporaryEntryPoints +00007FA12ECD8918 18 stub<18662> AllocateTemporaryEntryPoints +00007FA12ECD8930 18 stub<18663> AllocateTemporaryEntryPoints +00007FA12ECD8948 18 stub<18664> AllocateTemporaryEntryPoints +00007FA12ECF5170 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD8960 18 stub<18665> AllocateTemporaryEntryPoints +00007FA12ECF5530 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF5340 1d6 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::IndexOf(uint64,int32)[QuickJitted] +00007FA12ECF51C0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECD8978 d8 stub<18666> AllocateTemporaryEntryPoints +00007FA12ECD8A50 18 stub<18668> AllocateTemporaryEntryPoints +00007FA12E671FA0 18 stub<18667> GenerateLookupStub +00007FA12ECF5590 33c class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF5970 93 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.SpanContext::get_ParentId()[QuickJitted] +00007FA12ECF58F0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::.cctor()[QuickJitted] +00007FA12ECD8A68 18 stub<18669> AllocateTemporaryEntryPoints +00007FA12780C790 18 stub<18670> GenerateResolveStub +00007FA12ECF5A20 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::.ctor()[QuickJitted] +00007FA1277CC2C0 20 stub<18671> GenerateDispatchStub +00007FA12ECD8A80 60 stub<18672> AllocateTemporaryEntryPoints +00007FA12ECF5CD0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECD8AE0 18 stub<18673> AllocateTemporaryEntryPoints +00007FA12ECD8AF8 18 stub<18674> AllocateTemporaryEntryPoints +00007FA12ECF5E90 1c instance string [Datadog.Trace] Datadog.Trace.TraceContext::get_ServiceVersion()[QuickJitted] +00007FA12ECF5A60 253 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF5EC0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::MoveNext()[QuickJitted] +00007FA12ECF5F00 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12ECF5F40 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpContent+d__63]::.ctor()[QuickJitted] +00007FA12ECF60C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ECF5F80 11a instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::Serialize(uint8[]&,int32,valuetype Datadog.Trace.Agent.MessagePack.TraceChunkModel&,class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12ECD8B10 18 stub<18675> AllocateTemporaryEntryPoints +00007FA12ECD8B28 18 stub<18676> AllocateTemporaryEntryPoints +00007FA12ECD8B40 18 stub<18677> AllocateTemporaryEntryPoints +00007FA12ECF61C0 34 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::get_SpanCount()[QuickJitted] +00007FA12ECD8B58 18 stub<18678> AllocateTemporaryEntryPoints +00007FA12ECF6210 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECF6390 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECF6430 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECD8B70 18 stub<18679> AllocateTemporaryEntryPoints +00007FA12ECD8B88 18 stub<18680> AllocateTemporaryEntryPoints +00007FA12ECD8BA0 18 stub<18681> AllocateTemporaryEntryPoints +00007FA12ECD8BB8 18 stub<18682> AllocateTemporaryEntryPoints +00007FA12ECF6500 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF6480 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::.cctor()[QuickJitted] +00007FA12ECD8BD0 d8 stub<18683> AllocateTemporaryEntryPoints +00007FA12ECD8CA8 18 stub<18684> AllocateTemporaryEntryPoints +00007FA12ECF6560 2cd instance valuetype Datadog.Trace.Agent.MessagePack.SpanModel [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::GetSpanModel(int32)[QuickJitted] +00007FA12ECD8CC0 18 stub<18685> AllocateTemporaryEntryPoints +00007FA12ECF6850 c3 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD8CD8 18 stub<18686> AllocateTemporaryEntryPoints +00007FA12ECF6930 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECF6970 93 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanModel::.ctor(class Datadog.Trace.Span,valuetype Datadog.Trace.Agent.MessagePack.TraceChunkModel&,bool,bool,bool)[QuickJitted] +00007FA12ECD8CF0 30 stub<18687> AllocateTemporaryEntryPoints +00007FA12ECD8D20 78 stub<18688> AllocateTemporaryEntryPoints +00007FA12ECF6A20 253 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF5D10 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECF6CD0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::.ctor()[QuickJitted] +00007FA12ECF6D10 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::.cctor()[QuickJitted] +00007FA12ECD8D98 60 stub<18689> AllocateTemporaryEntryPoints +00007FA12ECD8DF8 18 stub<18690> AllocateTemporaryEntryPoints +00007FA12ECD8E10 18 stub<18691> AllocateTemporaryEntryPoints +00007FA12ECD8E28 18 stub<18692> AllocateTemporaryEntryPoints +00007FA12ECD8E40 60 stub<18693> AllocateTemporaryEntryPoints +00007FA12ECF6D90 5b9 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::Serialize(uint8[]&,int32,valuetype Datadog.Trace.Agent.MessagePack.SpanModel&)[QuickJitted] +00007FA12ECF7370 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECF73B0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12ECF73F0 1c instance bool [Datadog.Trace] Datadog.Trace.Span::get_Error()[QuickJitted] +00007FA12ECD8EA0 18 stub<18694> AllocateTemporaryEntryPoints +00007FA12ECD8EB8 18 stub<18695> AllocateTemporaryEntryPoints +00007FA12ECF7420 35 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteMapHeader(uint8[]&,int32,int32)[QuickJitted] +00007FA12ECF7470 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12ECF74B0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ECF75B0 1b4 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteMapHeader(uint8[]&,int32,uint32)[QuickJitted] +00007FA12ECD8ED0 18 stub<18696> AllocateTemporaryEntryPoints +00007FA12ECD8EE8 18 stub<18697> AllocateTemporaryEntryPoints +00007FA12ECF7880 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECF7780 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ECD8F00 18 stub<18698> AllocateTemporaryEntryPoints +00007FA12ECF78D0 29a int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteStringBytes(uint8[]&,int32,uint8[])[QuickJitted] +00007FA12ECF7B80 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECD8F18 d8 stub<18699> AllocateTemporaryEntryPoints +00007FA12ECDA018 18 stub<18700> AllocateTemporaryEntryPoints +00007FA12ECF7BE0 3be int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteUInt64(uint8[]&,int32,uint64)[QuickJitted] +00007FA12ECF7FC0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::MoveNext()[QuickJitted] +00007FA12ECF8000 253 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF8270 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::.ctor()[QuickJitted] +00007FA12ECF82B0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECDA048 60 stub<18701> AllocateTemporaryEntryPoints +00007FA12ECDA0A8 18 stub<18702> AllocateTemporaryEntryPoints +00007FA12ECF8430 192 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::EnqueueSlow(!0)[QuickJitted] +00007FA12ECDA0C0 18 stub<18703> AllocateTemporaryEntryPoints +00007FA12ECF85F0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::.cctor()[QuickJitted] +00007FA12ECF8670 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12ECDA0D8 18 stub<18704> AllocateTemporaryEntryPoints +00007FA12ECF86B0 64 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::EnsureFrozenForEnqueues()[QuickJitted] +00007FA12ECF8730 1c instance string [Datadog.Trace] Datadog.Trace.Span::get_OperationName()[QuickJitted] +00007FA12ECF8760 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ECF8860 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECF88A0 21 instance int32 [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::get_FreezeOffset()[QuickJitted] +00007FA12ECDA0F0 18 stub<18705> AllocateTemporaryEntryPoints +00007FA12ECF88E0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::MoveNext()[QuickJitted] +00007FA12ECDA108 18 stub<18706> AllocateTemporaryEntryPoints +00007FA12ECF8920 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECF8970 1f instance int32 [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::get_Capacity()[QuickJitted] +00007FA12ECDA120 18 stub<18707> AllocateTemporaryEntryPoints +00007FA12ECF89B0 39e int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteString(uint8[]&,int32,string)[QuickJitted] +00007FA12ECF8D70 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF8F50 3b int64 [Datadog.Trace] Datadog.Trace.ExtensionMethods.TimeExtensions::ToUnixTimeNanoseconds(valuetype [System.Runtime]System.DateTimeOffset)[QuickJitted] +00007FA12ECDA138 d8 stub<18708> AllocateTemporaryEntryPoints +00007FA12ECF8DD0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECDA210 18 stub<18709> AllocateTemporaryEntryPoints +00007FA12ECF8FA0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::.cctor()[QuickJitted] +00007FA12ECDA228 18 stub<18710> AllocateTemporaryEntryPoints +00007FA12ECF9020 253 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF9290 767 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteInt64(uint8[]&,int32,int64)[QuickJitted] +00007FA12ECF9A10 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECF6C90 1d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12ECF9A50 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::.ctor()[QuickJitted] +00007FA12ECF9A90 2a int64 [Datadog.Trace] Datadog.Trace.ExtensionMethods.TimeExtensions::ToNanoseconds(valuetype [System.Runtime]System.TimeSpan)[QuickJitted] +00007FA12ECDA240 18 stub<18711> AllocateTemporaryEntryPoints +00007FA12ECF9AD0 1c instance class Datadog.Trace.Processors.ITagProcessor[] [Datadog.Trace] Datadog.Trace.TracerManager::get_TagProcessors()[QuickJitted] +00007FA12ECDA258 18 stub<18712> AllocateTemporaryEntryPoints +00007FA12ECF9B00 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDA270 18 stub<18713> AllocateTemporaryEntryPoints +00007FA12ECDA288 18 stub<18714> AllocateTemporaryEntryPoints +00007FA12ECDA2A0 18 stub<18715> AllocateTemporaryEntryPoints +00007FA12ECF9B50 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECF9BB0 126 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::TryDequeueSlow(!0&)[QuickJitted] +00007FA12ECDA2B8 d8 stub<18716> AllocateTemporaryEntryPoints +00007FA12ECF9D00 72 instance void [System.Private.CoreLib] System.Span`1[System.Runtime.InteropServices.GCHandle]::.ctor(void*,int32)[QuickJitted] +00007FA12ECDA390 18 stub<18717> AllocateTemporaryEntryPoints +00007FA12ECF9D90 8 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12ECDA3A8 78 stub<18718> AllocateTemporaryEntryPoints +00007FA12ECDA420 18 stub<18719> AllocateTemporaryEntryPoints +00007FA12ECDA438 18 stub<18720> AllocateTemporaryEntryPoints +00007FA12ECDA450 18 stub<18721> AllocateTemporaryEntryPoints +00007FA12ECF9DB0 264 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFA030 72 instance void [System.Private.CoreLib] System.Span`1[Interop+Sys+IOVector]::.ctor(void*,int32)[QuickJitted] +00007FA12ECFA0C0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::.ctor()[QuickJitted] +00007FA12ECFA100 8 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[QuickJitted] +00007FA12ECDA468 60 stub<18722> AllocateTemporaryEntryPoints +00007FA12ECDA4C8 18 stub<18723> AllocateTemporaryEntryPoints +00007FA12ECDA4E0 18 stub<18724> AllocateTemporaryEntryPoints +00007FA12ECFA120 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12ECFA160 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ECDA4F8 18 stub<18725> AllocateTemporaryEntryPoints +00007FA12ECDA510 18 stub<18726> AllocateTemporaryEntryPoints +00007FA12ECFA260 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDA528 18 stub<18727> AllocateTemporaryEntryPoints +00007FA12ECFA2B0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECDA540 d8 stub<18728> AllocateTemporaryEntryPoints +00007FA12ECDA618 18 stub<18729> AllocateTemporaryEntryPoints +00007FA12ECDA630 18 stub<18730> AllocateTemporaryEntryPoints +00007FA12ECDA648 90 stub<18731> AllocateTemporaryEntryPoints +00007FA12ECFA310 63 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::ClearStateUponCompletion()[QuickJitted] +00007FA12ECFA390 251 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFA600 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::.ctor()[QuickJitted] +00007FA12ECDA6D8 18 stub<18732> AllocateTemporaryEntryPoints +00007FA12ECDA6F0 18 stub<18733> AllocateTemporaryEntryPoints +00007FA12ECFA640 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDA708 18 stub<18734> AllocateTemporaryEntryPoints +00007FA12ECFA690 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECDA720 d8 stub<18735> AllocateTemporaryEntryPoints +00007FA12ECDA7F8 18 stub<18736> AllocateTemporaryEntryPoints +00007FA12ECFB440 26a class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFA6F0 d23 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteTags(uint8[]&,int32,valuetype Datadog.Trace.Agent.MessagePack.SpanModel&,class Datadog.Trace.Processors.ITagProcessor[])[QuickJitted] +00007FA12ECFB6D0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::.ctor()[QuickJitted] +00007FA12ECFB710 dc int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteMapHeaderForceMap32Block(uint8[]&,int32,uint32)[QuickJitted] +00007FA12ECDA810 60 stub<18737> AllocateTemporaryEntryPoints +00007FA12ECDA870 18 stub<18738> AllocateTemporaryEntryPoints +00007FA12ECFB800 66 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter+TagWriter::.ctor(class Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter,class Datadog.Trace.Processors.ITagProcessor[],uint8[],int32)[QuickJitted] +00007FA12ECDA888 18 stub<18739> AllocateTemporaryEntryPoints +00007FA12ECDA8A0 18 stub<18740> AllocateTemporaryEntryPoints +00007FA12ECDA8B8 18 stub<18741> AllocateTemporaryEntryPoints +00007FA12ECFB880 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12ECDA8D0 18 stub<18742> AllocateTemporaryEntryPoints +00007FA12ECDA8E8 18 stub<18743> AllocateTemporaryEntryPoints +00007FA12ECDA900 18 stub<18744> AllocateTemporaryEntryPoints +00007FA12ECFB8C0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ECDA918 18 stub<18745> AllocateTemporaryEntryPoints +00007FA12ECDA930 18 stub<18746> AllocateTemporaryEntryPoints +00007FA12ECFB9C0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDA948 18 stub<18747> AllocateTemporaryEntryPoints +00007FA12ECFBA10 4aa instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::EnumerateTags(!!0&)[QuickJitted] +00007FA12ECFBEE0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFBF40 21 instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_SpanKind()[QuickJitted] +00007FA12ECDA960 d8 stub<18748> AllocateTemporaryEntryPoints +00007FA12ECDAA38 18 stub<18749> AllocateTemporaryEntryPoints +00007FA12ECFBF80 1f9 void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::.cctor()[QuickJitted] +00007FA12ECFC400 54 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagItem`1[System.__Canon]::.ctor(string,!0,uint8[])[QuickJitted] +00007FA12ECFC190 256 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFC470 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::.ctor()[QuickJitted] +00007FA12ECFC4B0 9c instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter+TagWriter::Process(valuetype Datadog.Trace.Tagging.TagItem`1)[QuickJitted] +00007FA12ECDAA50 18 stub<18750> AllocateTemporaryEntryPoints +00007FA12E671FC0 18 stub<18751> GenerateLookupStub +00007FA12ECFC560 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDAA68 18 stub<18752> AllocateTemporaryEntryPoints +00007FA12ECFC5B0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECDAA80 120 stub<18753> AllocateTemporaryEntryPoints +00007FA12ECDABA0 d8 stub<18754> AllocateTemporaryEntryPoints +00007FA12ECDAC78 18 stub<18755> AllocateTemporaryEntryPoints +00007FA12ECDAC90 60 stub<18756> AllocateTemporaryEntryPoints +00007FA12ECDACF0 18 stub<18757> AllocateTemporaryEntryPoints +00007FA12ECDAD08 18 stub<18758> AllocateTemporaryEntryPoints +00007FA12ECFC610 278 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFC8B0 22d instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.__Canon,System.Double]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,!1,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12ECFCB00 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::.ctor()[QuickJitted] +00007FA12ECFCB40 54 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]::.ctor(class Microsoft.Extensions.Logging.LogValuesFormatter,!0,!1)[QuickJitted] +00007FA12ECDAD20 18 stub<18759> AllocateTemporaryEntryPoints +00007FA12ECDAD50 18 stub<18761> AllocateTemporaryEntryPoints +00007FA12ECDAD38 18 stub<18760> AllocateTemporaryEntryPoints +00007FA12ECDAD68 18 stub<18762> AllocateTemporaryEntryPoints +00007FA12ECDAD80 18 stub<18763> AllocateTemporaryEntryPoints +00007FA12ECDAD98 18 stub<18764> AllocateTemporaryEntryPoints +00007FA12ECDADB0 18 stub<18765> AllocateTemporaryEntryPoints +00007FA12ECDADC8 48 stub<18766> AllocateTemporaryEntryPoints +00007FA12ECFCBB0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDAE10 18 stub<18767> AllocateTemporaryEntryPoints +00007FA12ECDAE28 18 stub<18768> AllocateTemporaryEntryPoints +00007FA12ECFCC50 e9 void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]::.cctor()[QuickJitted] +00007FA12ECDAE40 18 stub<18769> AllocateTemporaryEntryPoints +00007FA12ECFCD50 4b void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2+<>c[System.__Canon,System.Double]::.cctor()[QuickJitted] +00007FA12ECFCDB0 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECDAE58 18 stub<18770> AllocateTemporaryEntryPoints +00007FA12ECFCE50 1f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2+<>c[System.__Canon,System.Double]::.ctor()[QuickJitted] +00007FA12ECDAE70 18 stub<18771> AllocateTemporaryEntryPoints +00007FA12ECDAE88 d8 stub<18772> AllocateTemporaryEntryPoints +00007FA12ECDAF60 18 stub<18773> AllocateTemporaryEntryPoints +00007FA12ECDAF78 18 stub<18774> AllocateTemporaryEntryPoints +00007FA12ECFCE90 6f instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12ED767D0 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12ECFCF20 d7 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12ECDAF90 18 stub<18775> AllocateTemporaryEntryPoints +00007FA12ECDAFA8 18 stub<18776> AllocateTemporaryEntryPoints +00007FA12ECFD010 35b class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECDAFC0 18 stub<18777> AllocateTemporaryEntryPoints +00007FA12ECFD390 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::.ctor()[QuickJitted] +00007FA12ECFD3D0 6f instance void [Microsoft.Extensions.Logging] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12ED767D0 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12ECDAFD8 18 stub<18778> AllocateTemporaryEntryPoints +00007FA12ECDC000 18 stub<18779> AllocateTemporaryEntryPoints +00007FA12ECDC018 18 stub<18780> AllocateTemporaryEntryPoints +00007FA12ECDC048 18 stub<18782> AllocateTemporaryEntryPoints +00007FA12ECDC030 18 stub<18781> AllocateTemporaryEntryPoints +00007FA12ECDC060 18 stub<18783> AllocateTemporaryEntryPoints +00007FA12ECFD460 142 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteTag(uint8[]&,int32&,uint8[],string,class Datadog.Trace.Processors.ITagProcessor[])[QuickJitted] +00007FA12ECFD5C0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDC078 18 stub<18784> AllocateTemporaryEntryPoints +00007FA12ECFD660 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_HttpMethod()[QuickJitted] +00007FA12ECDC090 18 stub<18785> AllocateTemporaryEntryPoints +00007FA12ECDC0A8 18 stub<18786> AllocateTemporaryEntryPoints +00007FA12ECFD690 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_HttpUrl()[QuickJitted] +00007FA12ECFD890 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_HttpClientHandlerType()[QuickJitted] +00007FA12ECFD6C0 1ac instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12ECFD8C0 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFD960 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_HttpStatusCode()[QuickJitted] +00007FA12ECDC0C0 18 stub<18787> AllocateTemporaryEntryPoints +00007FA12ECDC0D8 18 stub<18788> AllocateTemporaryEntryPoints +00007FA12ECDC0F0 d8 stub<18789> AllocateTemporaryEntryPoints +00007FA12ECDC1C8 18 stub<18790> AllocateTemporaryEntryPoints +00007FA12ECDC1E0 18 stub<18791> AllocateTemporaryEntryPoints +00007FA12ECFD990 23c instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::EnumerateTags(!!0&)[QuickJitted] +00007FA12ECFDC00 160 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[QuickJitted] +00007FA12ECDC1F8 18 stub<18792> AllocateTemporaryEntryPoints +00007FA12ECDC210 18 stub<18793> AllocateTemporaryEntryPoints +00007FA12ECDC228 18 stub<18794> AllocateTemporaryEntryPoints +00007FA12ECFDD90 33a class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFE0F0 128 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteTag(uint8[]&,int32&,string,string,class Datadog.Trace.Processors.ITagProcessor[])[QuickJitted] +00007FA12ECFE230 6f instance void [Microsoft.Extensions.Logging.Console] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12ED767D0 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12E671FE0 18 stub<18795> GenerateLookupStub +00007FA12ECFE2C0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__237`1[System.__Canon]]::.ctor()[QuickJitted] +00007FA12ECDC240 a8 stub<18796> AllocateTemporaryEntryPoints +00007FA12ECDC2E8 18 stub<18797> AllocateTemporaryEntryPoints +00007FA12ECDC300 18 stub<18798> AllocateTemporaryEntryPoints +00007FA12ECFE300 cb instance bool [Datadog.Trace] Datadog.Trace.Span::get_IsTopLevel()[QuickJitted] +00007FA12ECDC318 18 stub<18799> AllocateTemporaryEntryPoints +00007FA12ECDC330 18 stub<18800> AllocateTemporaryEntryPoints +00007FA12ECDC348 18 stub<18801> AllocateTemporaryEntryPoints +00007FA12ECFE3E0 49 uint8[] [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache::GetOriginBytes(string)[QuickJitted] +00007FA12ECDC360 18 stub<18802> AllocateTemporaryEntryPoints +00007FA12ECFE440 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDC378 18 stub<18803> AllocateTemporaryEntryPoints +00007FA12ECDC390 18 stub<18804> AllocateTemporaryEntryPoints +00007FA12ECDC3A8 18 stub<18805> AllocateTemporaryEntryPoints +00007FA12ECDC3C0 18 stub<18806> AllocateTemporaryEntryPoints +00007FA12ECFE4E0 b6 uint8[] [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache::GetBytes(string,valuetype Datadog.Trace.Agent.MessagePack.MessagePackStringCache/CachedBytes&)[QuickJitted] +00007FA12ECFE5B0 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFE650 49 uint8[] [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache::GetEnvironmentBytes(string)[QuickJitted] +00007FA12ECDC3D8 18 stub<18807> AllocateTemporaryEntryPoints +00007FA12ECDC3F0 18 stub<18808> AllocateTemporaryEntryPoints +00007FA12ECDC408 18 stub<18809> AllocateTemporaryEntryPoints +00007FA12ECDC420 18 stub<18810> AllocateTemporaryEntryPoints +00007FA12ECDC438 18 stub<18811> AllocateTemporaryEntryPoints +00007FA12ECDC450 d8 stub<18812> AllocateTemporaryEntryPoints +00007FA12ECDC528 18 stub<18813> AllocateTemporaryEntryPoints +00007FA12ECDC540 18 stub<18814> AllocateTemporaryEntryPoints +00007FA12ECDC558 18 stub<18815> AllocateTemporaryEntryPoints +00007FA12ECFE6B0 396 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12ECDC570 18 stub<18816> AllocateTemporaryEntryPoints +00007FA12E672000 18 stub<18817> GenerateLookupStub +00007FA12ECFEB10 345 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECFEE80 35 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Formatters.NullableStringFormatter::Serialize(uint8[]&,int32,string,class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[QuickJitted] +00007FA12ECFEA70 8c instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12ECDC588 18 stub<18818> AllocateTemporaryEntryPoints +00007FA12ECDC5A0 18 stub<18819> AllocateTemporaryEntryPoints +00007FA12ECFEED0 3b instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache+CachedBytes::.ctor(string,uint8[])[QuickJitted] +00007FA12ECDC5B8 18 stub<18820> AllocateTemporaryEntryPoints +00007FA12ECFEF60 54 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteRaw(uint8[]&,int32,uint8[])[QuickJitted] +00007FA12ECFEF20 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.HttpConnection+d__12`1[System.__Canon]]::.ctor()[QuickJitted] +00007FA12ECDC5D0 18 stub<18821> AllocateTemporaryEntryPoints +00007FA12ECDC5E8 18 stub<18822> AllocateTemporaryEntryPoints +00007FA12ECDC600 18 stub<18823> AllocateTemporaryEntryPoints +00007FA12ECDC618 18 stub<18824> AllocateTemporaryEntryPoints +00007FA12ECDC630 18 stub<18825> AllocateTemporaryEntryPoints +00007FA12ECDC648 18 stub<18826> AllocateTemporaryEntryPoints +00007FA12ECDC660 18 stub<18827> AllocateTemporaryEntryPoints +00007FA12ECFF3D0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ECDC678 18 stub<18828> AllocateTemporaryEntryPoints +00007FA12ECDC690 18 stub<18829> AllocateTemporaryEntryPoints +00007FA12ECDC6A8 18 stub<18830> AllocateTemporaryEntryPoints +00007FA12ECFF470 36a instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteMetrics(uint8[]&,int32,valuetype Datadog.Trace.Agent.MessagePack.SpanModel&,class Datadog.Trace.Processors.ITagProcessor[])[QuickJitted] +00007FA12ECFF810 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ECDC6C0 18 stub<18831> AllocateTemporaryEntryPoints +00007FA12ECDC6D8 18 stub<18832> AllocateTemporaryEntryPoints +00007FA12ECDC6F0 18 stub<18833> AllocateTemporaryEntryPoints +00007FA12ECDC708 18 stub<18834> AllocateTemporaryEntryPoints +00007FA12ECDC720 d8 stub<18835> AllocateTemporaryEntryPoints +00007FA12ECFF8B0 3c6 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[QuickJitted] +00007FA12ECDC7F8 18 stub<18836> AllocateTemporaryEntryPoints +00007FA12ECDC810 18 stub<18837> AllocateTemporaryEntryPoints +00007FA12ECDC828 18 stub<18838> AllocateTemporaryEntryPoints +00007FA12ECFFCA0 20 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_Formatter()[QuickJitted] +00007FA12ECFFCE0 12a instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::EnumerateMetrics(!!0&)[QuickJitted] +00007FA12ECFFE30 38 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_State()[QuickJitted] +00007FA12ECFFE80 2e instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::get_AnalyticsSampleRate()[QuickJitted] +00007FA12ECDC840 18 stub<18839> AllocateTemporaryEntryPoints +00007FA12ECFFED0 20 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_Exception()[QuickJitted] +00007FA12ECDC858 18 stub<18840> AllocateTemporaryEntryPoints +00007FA12ECDC870 18 stub<18841> AllocateTemporaryEntryPoints +00007FA12ECFFF10 346 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ED00280 78 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2+<>c[System.__Canon,System.Double]::<.cctor>b__13_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`2,class [System.Runtime]System.Exception)[QuickJitted] +00007FA12ED00310 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.KestrelConnection`1+d__6[System.__Canon]]::.ctor()[QuickJitted] +00007FA12ECDC888 18 stub<18842> AllocateTemporaryEntryPoints +00007FA12ED00350 225 instance void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::EnumerateMetrics(!!0&)[QuickJitted] +00007FA12ED005B0 2e instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::get_SamplingLimitDecision()[QuickJitted] +00007FA12ED00600 7c instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]::ToString()[QuickJitted] +00007FA12ED006A0 2e instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::get_TracesKeepRate()[QuickJitted] +00007FA12ED006F0 b6 void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::.cctor()[QuickJitted] +00007FA12ED007C0 1f instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_LogLevel()[QuickJitted] +00007FA12ECDC8A0 18 stub<18843> AllocateTemporaryEntryPoints +00007FA12ED00800 51 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagItem`1[System.Double]::.ctor(string,!0,uint8[])[QuickJitted] +00007FA12ED00870 a1 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter+TagWriter::Process(valuetype Datadog.Trace.Tagging.TagItem`1)[QuickJitted] +00007FA12E672020 18 stub<18844> GenerateLookupStub +00007FA12ED00930 147 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteMetric(uint8[]&,int32&,uint8[],float64,class Datadog.Trace.Processors.ITagProcessor[])[QuickJitted] +00007FA12ED00AA0 3fd instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[QuickJitted] +00007FA12ED00ED0 227 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::EnumerateMetrics(!!0&)[QuickJitted] +00007FA12ED01130 37 instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_EventId()[QuickJitted] +00007FA12ED01180 1f instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_Category()[QuickJitted] +00007FA12ED011C0 65 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::get_Item(int32)[QuickJitted] +00007FA12ECDC8B8 18 stub<18845> AllocateTemporaryEntryPoints +00007FA12ECDC8D0 18 stub<18846> AllocateTemporaryEntryPoints +00007FA12ECDC8E8 18 stub<18847> AllocateTemporaryEntryPoints +00007FA12ED01240 6f instance void [Microsoft.Extensions.Logging.Debug] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12ED767D0 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12ED012D0 12d instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteMetric(uint8[]&,int32&,string,float64,class Datadog.Trace.Processors.ITagProcessor[])[QuickJitted] +00007FA12ED01670 101 instance bool [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::EnsureCapacity(int32)[QuickJitted] +00007FA12ED01420 22a instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12ECDC900 18 stub<18848> AllocateTemporaryEntryPoints +00007FA12ED01790 1b instance int32 [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::get_SpanCount()[QuickJitted] +00007FA12ECDC918 18 stub<18849> AllocateTemporaryEntryPoints +00007FA12ECDC930 18 stub<18850> AllocateTemporaryEntryPoints +00007FA12ED017C0 6f instance void [Microsoft.Extensions.Logging.EventSource] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12ED767D0 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12ED01850 5a2 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[QuickJitted] +00007FA12ED01E10 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::MoveNext()[QuickJitted] +00007FA12ED01E50 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED01FD0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::.cctor()[QuickJitted] +00007FA12ECDC948 18 stub<18851> AllocateTemporaryEntryPoints +00007FA12ED02050 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED02090 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::MoveNext()[QuickJitted] +00007FA12ED020D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED02250 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::.cctor()[QuickJitted] +00007FA12ECDC960 18 stub<18852> AllocateTemporaryEntryPoints +00007FA12ED022D0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECDC978 78 stub<18853> AllocateTemporaryEntryPoints +00007FA12ED02310 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::MoveNext()[QuickJitted] +00007FA12ED02350 252 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECDC9F0 18 stub<18854> AllocateTemporaryEntryPoints +00007FA12ED025C0 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::.cctor()[QuickJitted] +00007FA12ECDCA08 18 stub<18855> AllocateTemporaryEntryPoints +00007FA12ECDCA20 18 stub<18856> AllocateTemporaryEntryPoints +00007FA12ED02670 88 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED02710 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::MoveNext()[QuickJitted] +00007FA12ED02750 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED028D0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::.cctor()[QuickJitted] +00007FA12ECDCA38 18 stub<18857> AllocateTemporaryEntryPoints +00007FA12ED02950 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECDCA50 90 stub<18858> AllocateTemporaryEntryPoints +00007FA12780C800 18 stub<18859> GenerateResolveStub +00007FA1277CC2E0 20 stub<18860> GenerateDispatchStub +00007FA12ECDCAE0 90 stub<18861> AllocateTemporaryEntryPoints +00007FA12ED02990 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::MoveNext()[QuickJitted] +00007FA12ED029D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED02B50 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::.cctor()[QuickJitted] +00007FA12ECDCB70 18 stub<18862> AllocateTemporaryEntryPoints +00007FA12ED02BD0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED02C10 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::MoveNext()[QuickJitted] +00007FA12ED02C50 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED02DD0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::.cctor()[QuickJitted] +00007FA12ECDCB88 18 stub<18863> AllocateTemporaryEntryPoints +00007FA12ED02E50 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECDCBA0 90 stub<18864> AllocateTemporaryEntryPoints +00007FA12ECDCC30 90 stub<18865> AllocateTemporaryEntryPoints +00007FA12ED02E90 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::MoveNext()[QuickJitted] +00007FA12ED02ED0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED03050 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::.cctor()[QuickJitted] +00007FA12ECDCCC0 18 stub<18866> AllocateTemporaryEntryPoints +00007FA12ED030D0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12784B860 11 stub<18867> GenerateVTableCallStub +00007FA12ECDCCD8 18 stub<18868> AllocateTemporaryEntryPoints +00007FA12ECDCCF0 18 stub<18869> AllocateTemporaryEntryPoints +00007FA12ED03110 6f instance void [Microsoft.Extensions.Logging.Abstractions] dynamicClass::IL_STUB_InstantiatingStub(Microsoft.Extensions.Logging.LogLevel /* MT: 0x00007FA12C5C08F8 */,Microsoft.Extensions.Logging.EventId /* MT: 0x00007FA12DD99A38 */,Microsoft.Extensions.Logging.LoggerMessage/LogValues`2 /* MT: 0x00007FA12ED767D0 */,System.Exception /* MT: 0x00007FA1285328B8 */,System.Func`3 /* MT: 0x00007FA12A45B318 */)[Optimized] +00007FA12ECDCD08 90 stub<18870> AllocateTemporaryEntryPoints +00007FA12E672040 18 stub<18871> GenerateLookupStub +00007FA12E672060 18 stub<18872> GenerateLookupStub +00007FA12ED031A0 440 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnMvcAfterAction(object)[QuickJitted] +00007FA12780C870 18 stub<18873> GenerateResolveStub +00007FA1277CC300 20 stub<18874> GenerateDispatchStub +00007FA12ED03630 bf instance bool [Datadog.Trace] Datadog.Trace.TraceContext::g__ShouldTriggerPartialFlush|45_0()[QuickJitted] +00007FA12ED03710 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::MoveNext()[QuickJitted] +00007FA12ED03750 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED038D0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::.cctor()[QuickJitted] +00007FA12ECDCD98 18 stub<18875> AllocateTemporaryEntryPoints +00007FA12ED03950 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED03990 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::MoveNext()[QuickJitted] +00007FA12ED039D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED03B50 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::.cctor()[QuickJitted] +00007FA12ECDCDB0 18 stub<18876> AllocateTemporaryEntryPoints +00007FA12ED03BD0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED03C10 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::MoveNext()[QuickJitted] +00007FA12ED03C50 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED03DD0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::.cctor()[QuickJitted] +00007FA12ECDCDC8 18 stub<18877> AllocateTemporaryEntryPoints +00007FA12ED03E50 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED03E90 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::MoveNext()[QuickJitted] +00007FA12ED03ED0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED04050 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::.cctor()[QuickJitted] +00007FA12ECDCDE0 18 stub<18878> AllocateTemporaryEntryPoints +00007FA12ED040D0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED04110 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::MoveNext()[QuickJitted] +00007FA12ED04150 252 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ECDCDF8 18 stub<18879> AllocateTemporaryEntryPoints +00007FA12ED043C0 96 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::.cctor()[QuickJitted] +00007FA12ECDCE10 18 stub<18880> AllocateTemporaryEntryPoints +00007FA12ECDCE28 18 stub<18881> AllocateTemporaryEntryPoints +00007FA12ED04470 88 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECDCE58 60 stub<18882> AllocateTemporaryEntryPoints +00007FA12ECDCEB8 18 stub<18883> AllocateTemporaryEntryPoints +00007FA12ECDCED0 18 stub<18884> AllocateTemporaryEntryPoints +00007FA12ED04510 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12ED04550 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ED04650 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::MoveNext()[QuickJitted] +00007FA12ED04690 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionResponseContent+<g__Impl|6_0>d]::MoveNext()[QuickJitted] +00007FA12ED046D0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionResponseContent+<g__Impl|6_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED04850 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionResponseContent+<g__Impl|6_0>d]::.cctor()[QuickJitted] +00007FA12ECDCEE8 18 stub<18885> AllocateTemporaryEntryPoints +00007FA12ED048D0 48f instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Return(!0[],bool)[QuickJitted] +00007FA12ED04D80 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionResponseContent+<g__Impl|6_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECDCF00 48 stub<18886> AllocateTemporaryEntryPoints +00007FA12ECDCF48 48 stub<18887> AllocateTemporaryEntryPoints +00007FA12ED04DC0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpContent+d__63]::MoveNext()[QuickJitted] +00007FA12ED04E00 161 instance valuetype System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/ThreadLocalArray[] [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::InitializeTlsBucketsAndTrimming()[QuickJitted] +00007FA12ED04F80 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpContent+d__63]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED05100 47 void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+<>c[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.cctor()[QuickJitted] +00007FA12ED05160 1f instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+<>c[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.ctor()[QuickJitted] +00007FA12ED051A0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpContent+d__63]::.cctor()[QuickJitted] +00007FA12ECDCF90 18 stub<18888> AllocateTemporaryEntryPoints +00007FA12ED05220 2e instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.ctor(!0[])[QuickJitted] +00007FA12ED05270 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpContent+d__63]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECDCFA8 18 stub<18889> AllocateTemporaryEntryPoints +00007FA12ECDCFC0 18 stub<18890> AllocateTemporaryEntryPoints +00007FA12ED052B0 ab instance class System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1/PerCoreLockedStacks [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::CreatePerCoreLockedStacks(int32)[QuickJitted] +00007FA12ED05380 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::MoveNext()[QuickJitted] +00007FA12ECDE000 60 stub<18891> AllocateTemporaryEntryPoints +00007FA12ED053C0 e0 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.ctor()[QuickJitted] +00007FA12ED054C0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED05640 2d void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.cctor()[QuickJitted] +00007FA12ECDE060 60 stub<18892> AllocateTemporaryEntryPoints +00007FA12ED05690 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::.cctor()[QuickJitted] +00007FA12ED05710 43 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.ctor()[QuickJitted] +00007FA12ECDE0C0 18 stub<18893> AllocateTemporaryEntryPoints +00007FA12ED05770 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED057B0 d4 instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::TryPush(!0[])[QuickJitted] +00007FA12ED058A0 8f instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::TryPush(!0[])[QuickJitted] +00007FA12ECDE0D8 18 stub<18894> AllocateTemporaryEntryPoints +00007FA12ECDE0F0 18 stub<18895> AllocateTemporaryEntryPoints +00007FA12E672080 18 stub<18896> GenerateLookupStub +00007FA12ECDE108 90 stub<18897> AllocateTemporaryEntryPoints +00007FA12ECDE198 c0 stub<18898> AllocateTemporaryEntryPoints +00007FA12ECDE258 1e0 stub<18899> AllocateTemporaryEntryPoints +00007FA12ECDE438 48 stub<18900> AllocateTemporaryEntryPoints +00007FA12ECDE480 60 stub<18901> AllocateTemporaryEntryPoints +00007FA12ECDE4E0 60 stub<18902> AllocateTemporaryEntryPoints +00007FA12ECDE540 18 stub<18903> AllocateTemporaryEntryPoints +00007FA12ECDE558 18 stub<18904> AllocateTemporaryEntryPoints +00007FA12ECDE588 18 stub<18905> AllocateTemporaryEntryPoints +00007FA12ECDE5A0 18 stub<18906> AllocateTemporaryEntryPoints +00007FA12ED05950 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[QuickJitted] +00007FA12ECDE5B8 18 stub<18907> AllocateTemporaryEntryPoints +00007FA12ECDE5D0 18 stub<18908> AllocateTemporaryEntryPoints +00007FA12780C8E0 18 stub<18909> GenerateResolveStub +00007FA1277CC320 20 stub<18910> GenerateDispatchStub +00007FA12ED059D0 124 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12ECDE5E8 18 stub<18911> AllocateTemporaryEntryPoints +00007FA12780C950 18 stub<18912> GenerateResolveStub +00007FA1277CC340 20 stub<18913> GenerateDispatchStub +00007FA12ECDE600 120 stub<18914> AllocateTemporaryEntryPoints +00007FA12ECDE720 120 stub<18915> AllocateTemporaryEntryPoints +00007FA12ECDE840 18 stub<18916> AllocateTemporaryEntryPoints +00007FA12ECDE858 30 stub<18917> AllocateTemporaryEntryPoints +00007FA12ECDE888 18 stub<18918> AllocateTemporaryEntryPoints +00007FA12ECDE8A0 120 stub<18919> AllocateTemporaryEntryPoints +00007FA12ECDE9C0 30 stub<18920> AllocateTemporaryEntryPoints +00007FA12ECDE9F0 a8 stub<18921> AllocateTemporaryEntryPoints +00007FA12ECDEA98 18 stub<18922> AllocateTemporaryEntryPoints +00007FA12ECDEAB0 a8 stub<18923> AllocateTemporaryEntryPoints +00007FA12ECDEB58 18 stub<18924> AllocateTemporaryEntryPoints +00007FA12ED05B20 2e3 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnHostingHttpRequestInStop(object)[QuickJitted] +00007FA12ECDEB70 18 stub<18925> AllocateTemporaryEntryPoints +00007FA12ED05E20 1f !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::DuckCast(object)[QuickJitted] +00007FA12ECDEB88 a8 stub<18926> AllocateTemporaryEntryPoints +00007FA12ED05E60 1f !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::Create(object)[QuickJitted] +00007FA12ECDEC30 18 stub<18927> AllocateTemporaryEntryPoints +00007FA12ED05EA0 71 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInStopStruct]::Create(object)[QuickJitted] +00007FA12ED05F30 17e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInStopStruct]::GetProxy(class [System.Runtime]System.Type)[QuickJitted] +00007FA12ED060D0 69 void [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInStopStruct]::.cctor()[QuickJitted] +00007FA12ED06560 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__7]::MoveNext()[QuickJitted] +00007FA12ED065A0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__7]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA128669C30 18 object [System.Private.CoreLib] dynamicClass::InvokeStub_DuckAttributeBase.set_BindingFlags(object,object,native int*)[Optimized] +00007FA12ED06720 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__7]::.cctor()[QuickJitted] +00007FA12ECDEC48 18 stub<18928> AllocateTemporaryEntryPoints +00007FA12ECDEC60 d8 stub<18929> AllocateTemporaryEntryPoints +00007FA12ED067A0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__7]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ECDED38 60 stub<18930> AllocateTemporaryEntryPoints +00007FA12780C9C0 18 stub<18931> GenerateResolveStub +00007FA1277CC360 20 stub<18932> GenerateDispatchStub +00007FA12780CA30 18 stub<18933> GenerateResolveStub +00007FA1277CC380 20 stub<18934> GenerateDispatchStub +00007FA12ED067E0 6c instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA12780CAA0 18 stub<18935> GenerateResolveStub +00007FA1277CC3A0 20 stub<18936> GenerateDispatchStub +00007FA12780CB10 18 stub<18937> GenerateResolveStub +00007FA1277CC3C0 20 stub<18938> GenerateDispatchStub +00007FA12780CB80 18 stub<18939> GenerateResolveStub +00007FA1277CC3E0 20 stub<18940> GenerateDispatchStub +00007FA12780CBF0 18 stub<18941> GenerateResolveStub +00007FA1277CC400 20 stub<18942> GenerateDispatchStub +00007FA12780CC60 18 stub<18943> GenerateResolveStub +00007FA1277CC420 20 stub<18944> GenerateDispatchStub +00007FA128669CB0 3b Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/HttpRequestInStopStruct /* MT: 0x00007FA12ED7DFF0 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12780CCD0 18 stub<18945> GenerateResolveStub +00007FA1277CC440 20 stub<18946> GenerateDispatchStub +00007FA12E6720A0 18 stub<18947> GenerateLookupStub +00007FA12780CD40 18 stub<18948> GenerateResolveStub +00007FA1277CC460 20 stub<18949> GenerateDispatchStub +00007FA12ED06860 8f bool [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::HasHttpStatusCode(class Datadog.Trace.Span)[QuickJitted] +00007FA12ED06910 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpStatusCode()[QuickJitted] +00007FA12780CDB0 18 stub<18950> GenerateResolveStub +00007FA1277CC480 20 stub<18951> GenerateDispatchStub +00007FA12ED06940 2a instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpStatusCode(string)[QuickJitted] +00007FA12ED06980 1c instance bool[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_HttpServerErrorStatusCodes()[QuickJitted] +00007FA12ECDED98 18 stub<18952> AllocateTemporaryEntryPoints +00007FA12ED069B0 206 void [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::SetHeaderTags(class Datadog.Trace.ISpan,!!0,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,string)[QuickJitted] +00007FA12ECDEDB0 18 stub<18953> AllocateTemporaryEntryPoints +00007FA12ED06BF0 242 instance bool [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::RemoveTag(string)[QuickJitted] +00007FA12ED06E60 136 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::SetEndpoint(uint64,string)[QuickJitted] +00007FA12780CE20 18 stub<18954> GenerateResolveStub +00007FA12ED06FC0 2e void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.NativeInterop::SetEndpoint(string,uint64,string)[QuickJitted] +00007FA1277CC4A0 20 stub<18955> GenerateDispatchStub +00007FA12ECDEDC8 18 stub<18956> AllocateTemporaryEntryPoints +00007FA12ED07010 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED070A0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27]::MoveNext()[QuickJitted] +00007FA12ED070E0 276 void [Samples.BuggyBits] dynamicClass::IL_STUB_PInvoke(string,uint64,string)[Optimized] +00007FA12ED073A0 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpContent+d__63]::ClearStateUponCompletion()[QuickJitted] +00007FA12780CE90 18 stub<18957> GenerateResolveStub +00007FA1277CC4C0 20 stub<18958> GenerateDispatchStub +00007FA12ED07430 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12780CF00 18 stub<18959> GenerateResolveStub +00007FA12ED075B0 75 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionResponseContent+<g__Impl|6_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA1277CC4E0 20 stub<18960> GenerateDispatchStub +00007FA12ED07640 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27]::.cctor()[QuickJitted] +00007FA12ECDEDE0 18 stub<18961> AllocateTemporaryEntryPoints +00007FA12ED076C0 7c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED07750 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27]::ExecutionContextCallback(object)[QuickJitted] +00007FA1277CC500 20 stub<18962> GenerateDispatchStub +00007FA12780CF70 18 stub<18963> GenerateResolveStub +00007FA1277CC520 20 stub<18964> GenerateDispatchStub +00007FA12780CFE0 18 stub<18965> GenerateResolveStub +00007FA1277CC540 20 stub<18966> GenerateDispatchStub +00007FA12ED07790 96 instance void [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Clear()[QuickJitted] +00007FA12ED07840 63 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::Clear()[QuickJitted] +00007FA12780D050 18 stub<18967> GenerateResolveStub +00007FA1277CC560 20 stub<18968> GenerateDispatchStub +00007FA12780D0C0 18 stub<18969> GenerateResolveStub +00007FA1277CC580 20 stub<18970> GenerateDispatchStub +00007FA12780D130 18 stub<18971> GenerateResolveStub +00007FA1277CC5A0 20 stub<18972> GenerateDispatchStub +00007FA12EDA0000 540 stub<18973> AllocateTemporaryEntryPoints +00007FA12EDA0540 18 stub<18974> AllocateTemporaryEntryPoints +00007FA12EDA0558 18 stub<18975> AllocateTemporaryEntryPoints +00007FA12EDA0570 18 stub<18976> AllocateTemporaryEntryPoints +00007FA12EDA0588 18 stub<18977> AllocateTemporaryEntryPoints +00007FA12EDA05A0 18 stub<18978> AllocateTemporaryEntryPoints +00007FA12EDA05B8 18 stub<18979> AllocateTemporaryEntryPoints +00007FA12EDA05D0 18 stub<18980> AllocateTemporaryEntryPoints +00007FA12EDA05E8 18 stub<18981> AllocateTemporaryEntryPoints +00007FA12EDA0600 18 stub<18982> AllocateTemporaryEntryPoints +00007FA12EDA0618 18 stub<18983> AllocateTemporaryEntryPoints +00007FA12EDA0630 540 stub<18984> AllocateTemporaryEntryPoints +00007FA12EDA0B70 18 stub<18985> AllocateTemporaryEntryPoints +00007FA12EDA0B88 18 stub<18986> AllocateTemporaryEntryPoints +00007FA12ED078C0 192 bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.StringUtilities::BytesOrdinalEqualsStringAndAscii(string,valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12780D1A0 18 stub<18987> GenerateResolveStub +00007FA1277CC5C0 20 stub<18988> GenerateDispatchStub +00007FA12780D210 18 stub<18989> GenerateResolveStub +00007FA1277CC5E0 20 stub<18990> GenerateDispatchStub +00007FA12780D280 18 stub<18991> GenerateResolveStub +00007FA1277CC600 20 stub<18992> GenerateDispatchStub +00007FA12780D2F0 18 stub<18993> GenerateResolveStub +00007FA1277CC620 20 stub<18994> GenerateDispatchStub +00007FA1277CC640 20 stub<18995> GenerateDispatchStub +00007FA1277CC660 20 stub<18996> GenerateDispatchStub +00007FA1277CC680 20 stub<18997> GenerateDispatchStub +00007FA12780D360 18 stub<18998> GenerateResolveStub +00007FA1277CC6A0 20 stub<18999> GenerateDispatchStub +00007FA12780D3D0 18 stub<19000> GenerateResolveStub +00007FA1277CC6C0 20 stub<19001> GenerateDispatchStub +00007FA12780D440 18 stub<19002> GenerateResolveStub +00007FA1277CC6E0 20 stub<19003> GenerateDispatchStub +00007FA12780D4B0 18 stub<19004> GenerateResolveStub +00007FA1277CC700 20 stub<19005> GenerateDispatchStub +00007FA12780D520 18 stub<19006> GenerateResolveStub +00007FA1277CC720 20 stub<19007> GenerateDispatchStub +00007FA128669D50 4ba int32 [Anonymously Hosted DynamicMethods Assembly] dynamicClass::GetDestination(string,int32,int32)[Optimized] +00007FA12780D590 18 stub<19008> GenerateResolveStub +00007FA1277CC740 20 stub<19009> GenerateDispatchStub +00007FA12780D600 18 stub<19010> GenerateResolveStub +00007FA1277CC760 20 stub<19011> GenerateDispatchStub +00007FA12780D670 18 stub<19012> GenerateResolveStub +00007FA12780D6E0 18 stub<19013> GenerateResolveStub +00007FA1277CC780 20 stub<19014> GenerateDispatchStub +00007FA1277CC7A0 20 stub<19015> GenerateDispatchStub +00007FA1277CC7C0 20 stub<19016> GenerateDispatchStub +00007FA12EDA0BA0 d8 stub<19017> AllocateTemporaryEntryPoints +00007FA12ED07A80 6c instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[QuickJitted] +00007FA12866A270 3d Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/RoutePatternContentPartStruct /* MT: 0x00007FA12E9911B8 */ [Datadog.Trace] dynamicClass::CreateStructInstance(object)[Optimized] +00007FA12780D750 18 stub<19018> GenerateResolveStub +00007FA1277CC7E0 20 stub<19019> GenerateDispatchStub +00007FA12780D7C0 18 stub<19020> GenerateResolveStub +00007FA1277CC800 20 stub<19021> GenerateDispatchStub +00007FA12780D830 18 stub<19022> GenerateResolveStub +00007FA1277CC820 20 stub<19023> GenerateDispatchStub +00007FA12780D8A0 18 stub<19024> GenerateResolveStub +00007FA1277CC840 20 stub<19025> GenerateDispatchStub +00007FA12780D910 18 stub<19026> GenerateResolveStub +00007FA1277CC860 20 stub<19027> GenerateDispatchStub +00007FA12780D980 18 stub<19028> GenerateResolveStub +00007FA1277CC880 20 stub<19029> GenerateDispatchStub +00007FA12866A310 32 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method152(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object[])[Optimized] +00007FA12780D9F0 18 stub<19030> GenerateResolveStub +00007FA1277CC8A0 20 stub<19031> GenerateDispatchStub +00007FA12780DA60 18 stub<19032> GenerateResolveStub +00007FA1277CC8C0 20 stub<19033> GenerateDispatchStub +00007FA12866A3A0 8c object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method153(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,System.IServiceProvider /* MT: 0x00007FA12B194C30 */,object[])[Optimized] +00007FA12780DAD0 18 stub<19034> GenerateResolveStub +00007FA1277CC8E0 20 stub<19035> GenerateDispatchStub +00007FA12780DB40 18 stub<19036> GenerateResolveStub +00007FA1277CC900 20 stub<19037> GenerateDispatchStub +00007FA12780DBB0 18 stub<19038> GenerateResolveStub +00007FA1277CC920 20 stub<19039> GenerateDispatchStub +00007FA12780DC20 18 stub<19040> GenerateResolveStub +00007FA1277CC940 20 stub<19041> GenerateDispatchStub +00007FA12780DC90 18 stub<19042> GenerateResolveStub +00007FA1277CC960 20 stub<19043> GenerateDispatchStub +00007FA1277CC980 20 stub<19044> GenerateDispatchStub +00007FA12780DD00 18 stub<19045> GenerateResolveStub +00007FA1277CC9A0 20 stub<19046> GenerateDispatchStub +00007FA12780DD70 18 stub<19047> GenerateResolveStub +00007FA1277CC9C0 20 stub<19048> GenerateDispatchStub +00007FA12780DDE0 18 stub<19049> GenerateResolveStub +00007FA1277CC9E0 20 stub<19050> GenerateDispatchStub +00007FA1277CCA00 20 stub<19051> GenerateDispatchStub +00007FA12ED07B00 3d3 instance class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult [Samples.BuggyBits] BuggyBits.Controllers.ProductsController::Sales()[QuickJitted] +00007FA12ED07F00 e8 instance class [System.Collections]System.Collections.Generic.List`1 [Samples.BuggyBits] BuggyBits.Models.DataLayer::GetProductsOnSale()[QuickJitted] +00007FA12ED08010 11f instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer::ApplyDiscount(class BuggyBits.Models.Product)[QuickJitted] +00007FA12ED08170 35 void [System.Private.CoreLib] System.Number::ThrowOverflowOrFormatException(valuetype System.Number/ParsingStatus,valuetype System.ReadOnlySpan`1,valuetype System.TypeCode)[QuickJitted] +00007FA12ED081C0 39 instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer+PriceException::.ctor(string,string)[QuickJitted] +00007FA12ED08210 2a instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer+PriceException::set_Price(string)[QuickJitted] +00007FA1277CCA20 20 stub<19052> GenerateDispatchStub +00007FA12780DE50 18 stub<19053> GenerateResolveStub +00007FA1277CCA40 20 stub<19054> GenerateDispatchStub +00007FA12780DEC0 18 stub<19055> GenerateResolveStub +00007FA1277CCA60 20 stub<19056> GenerateDispatchStub +00007FA12780DF30 18 stub<19057> GenerateResolveStub +00007FA1277CCA80 20 stub<19058> GenerateDispatchStub +00007FA12EDA0CD8 18 stub<19059> AllocateTemporaryEntryPoints +00007FA12EDA0CF0 18 stub<19060> AllocateTemporaryEntryPoints +00007FA12EDA0D08 18 stub<19061> AllocateTemporaryEntryPoints +00007FA12ED08250 322 instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::EnumerateTags(!!0&)[QuickJitted] +00007FA12ED08590 1f instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::get_AspNetCoreController()[QuickJitted] +00007FA12ED085D0 156 void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::.cctor()[QuickJitted] +00007FA12ED08740 1f instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::get_AspNetCoreAction()[QuickJitted] +00007FA12ED08780 1f instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::get_AspNetCoreArea()[QuickJitted] +00007FA12ED087C0 1f instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::get_AspNetCorePage()[QuickJitted] +00007FA12EDA0D20 18 stub<19062> AllocateTemporaryEntryPoints +00007FA12EDA0D38 18 stub<19063> AllocateTemporaryEntryPoints +00007FA12ED08800 19e instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::EnumerateTags(!!0&)[QuickJitted] +00007FA12ED089C0 1f instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::get_InstrumentationName()[QuickJitted] +00007FA12ED08A00 b6 void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::.cctor()[QuickJitted] +00007FA12ED08AD0 1f instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::get_AspNetCoreRoute()[QuickJitted] +00007FA12EDA0D50 18 stub<19064> AllocateTemporaryEntryPoints +00007FA12ED08B10 62e instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::EnumerateTags(!!0&)[QuickJitted] +00007FA12ED09160 21 instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_SpanKind()[QuickJitted] +00007FA12ED091A0 2a2 void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::.cctor()[QuickJitted] +00007FA12ED09460 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpUserAgent()[QuickJitted] +00007FA12ED09490 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpRequestHeadersHost()[QuickJitted] +00007FA12ED094C0 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpUrl()[QuickJitted] +00007FA12ED094F0 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_NetworkClientIp()[QuickJitted] +00007FA12ED09520 1c instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpClientIp()[QuickJitted] +00007FA12780DFA0 18 stub<19065> GenerateResolveStub +00007FA1277CCAA0 20 stub<19066> GenerateDispatchStub +00007FA12ED09550 49 uint8[] [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache::GetVersionBytes(string)[QuickJitted] +00007FA12780E010 18 stub<19067> GenerateResolveStub +00007FA1277CCAC0 20 stub<19068> GenerateDispatchStub +00007FA12EDA0D68 18 stub<19069> AllocateTemporaryEntryPoints +00007FA12EDA0D80 18 stub<19070> AllocateTemporaryEntryPoints +00007FA12ED095B0 e4 instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::EnumerateTags(!!0&)[QuickJitted] +00007FA12ED096B0 1f instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::get_AspNetCoreEndpoint()[QuickJitted] +00007FA12ED096F0 66 void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::.cctor()[QuickJitted] +00007FA12ED09770 17e void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::FastResize(uint8[]&,int32)[QuickJitted] +00007FA12ED09910 10 bool [System.Private.CoreLib] System.Char::IsAsciiDigit(char)[OptimizedTier1] +00007FA12ED09930 3d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::Grow(int32)[OptimizedTier1] +00007FA12ED09990 10a instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::set_Capacity(int32)[OptimizedTier1] +00007FA12ED09AC0 66 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::Add(!0)[OptimizedTier1] +00007FA12ED09B40 4 instance bool [System.Private.CoreLib] System.Nullable`1[System.Boolean]::get_HasValue()[OptimizedTier1] +00007FA12ED09B60 9 instance bool [System.Private.CoreLib] System.Object::Equals(object)[OptimizedTier1] +00007FA12ED09B80 4 class System.Type [System.Private.CoreLib] System.Type::GetTypeFromHandle(valuetype System.RuntimeTypeHandle)[OptimizedTier1] +00007FA12EDA6078 18 stub<19071> AllocateTemporaryEntryPoints +00007FA12ED09BA0 1e instance !!0 [System.Private.CoreLib] System.SZArrayHelper::get_Item(int32)[OptimizedTier1] +00007FA12ED09BE0 db int32 [System.Private.CoreLib] System.Collections.HashHelpers::GetPrime(int32)[OptimizedTier1] +00007FA12ED09CE0 8c instance bool [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueue::TryStartProcessingHighPriorityWorkItemsAndDequeue(class System.Threading.ThreadPoolWorkQueueThreadLocals,object&)[OptimizedTier1] +00007FA12ED09D90 75 instance bool [System.Private.CoreLib] System.Type::get_IsValueType()[OptimizedTier1] +00007FA12ED09E20 41 instance bool [System.Private.CoreLib] System.RuntimeType::IsValueTypeImpl()[OptimizedTier1] +00007FA12ED09E80 8e instance void [System.Private.CoreLib] System.IO.StringWriter::Write(char)[OptimizedTier1] +00007FA12ED09F30 44 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Append(char)[OptimizedTier1] +00007FA12ED09F90 54 bool [System.Linq.Expressions] System.Dynamic.Utils.TypeUtils::IsNullableType(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED0A000 39 instance bool [System.Private.CoreLib] System.RuntimeType::get_IsConstructedGenericType()[OptimizedTier1] +00007FA12ED0A060 15 void [System.Private.CoreLib] System.ArgumentNullException::ThrowIfNull(object,string)[OptimizedTier1] +00007FA12ED0A090 56 instance bool [System.Linq.Expressions] System.Linq.Expressions.StackGuard::TryEnterOnCurrentStack()[OptimizedTier1] +00007FA12ED0A100 5 instance int32 [System.Private.CoreLib] System.Object::GetHashCode()[OptimizedTier1] +00007FA12ED0A120 89 instance class System.Type [System.Private.CoreLib] System.Type::GetRootElementType()[OptimizedTier1] +00007FA12ED0A1D0 73 bool [System.Private.CoreLib] System.Type::op_Equality(class System.Type,class System.Type)[OptimizedTier1] +00007FA12ED0A260 131 instance bool [System.Private.CoreLib] System.RuntimeType::IsAssignableFrom(class System.Type)[OptimizedTier1] +00007FA12EDA6090 18 stub<19072> AllocateTemporaryEntryPoints +00007FA12EDA60A8 18 stub<19073> AllocateTemporaryEntryPoints +00007FA12EDA60C0 18 stub<19074> AllocateTemporaryEntryPoints +00007FA12EDA60D8 18 stub<19075> AllocateTemporaryEntryPoints +00007FA12EDA60F0 18 stub<19076> AllocateTemporaryEntryPoints +00007FA12ED0A3B0 116 instance void [System.Private.CoreLib] System.RuntimeType+ListBuilder`1[System.__Canon]::Add(!0)[OptimizedTier1] +00007FA12ED0A4F0 4 instance int32 [System.Private.CoreLib] System.SZArrayHelper::get_Count()[OptimizedTier1] +00007FA12EDA6108 18 stub<19077> AllocateTemporaryEntryPoints +00007FA12EDA6120 18 stub<19078> AllocateTemporaryEntryPoints +00007FA12EDA6138 18 stub<19079> AllocateTemporaryEntryPoints +00007FA12EDA6150 18 stub<19080> AllocateTemporaryEntryPoints +00007FA12EDA6168 18 stub<19081> AllocateTemporaryEntryPoints +00007FA12EDA6180 18 stub<19082> AllocateTemporaryEntryPoints +00007FA12EDA6198 18 stub<19083> AllocateTemporaryEntryPoints +00007FA12EDA61B0 18 stub<19084> AllocateTemporaryEntryPoints +00007FA12EDA61C8 18 stub<19085> AllocateTemporaryEntryPoints +00007FA12ED0A510 256 instance valuetype System.RuntimeTypeHandle [System.Private.CoreLib] System.ModuleHandle::ResolveTypeHandle(int32,valuetype System.RuntimeTypeHandle[],valuetype System.RuntimeTypeHandle[])[OptimizedTier1] +00007FA12ED0A7C0 100 instance bool [System.Private.CoreLib] System.RuntimeType::get_ContainsGenericParameters()[OptimizedTier1] +00007FA12ED0A8E0 5d instance class System.RuntimeType [System.Private.CoreLib] System.RuntimeTypeHandle::GetTypeChecked()[OptimizedTier1] +00007FA12ED0A960 40 !!0[] [System.Private.CoreLib] System.Array::Empty()[OptimizedTier1] +00007FA12ED0A9C0 226 instance class System.Type [System.Private.CoreLib] System.Reflection.RuntimeModule::ResolveType(int32,class System.Type[],class System.Type[])[OptimizedTier1] +00007FA12EDA61E0 18 stub<19086> AllocateTemporaryEntryPoints +00007FA12ED0AC20 d9 !!0[] [System.Linq] System.Linq.Enumerable::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12ED0AD20 277 !!0[] [System.Linq] System.Collections.Generic.EnumerableHelpers::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12ED0AFC0 3f instance bool [System.Private.CoreLib] System.Type::get_IsInterface()[OptimizedTier1] +00007FA12EDA61F8 18 stub<19087> AllocateTemporaryEntryPoints +00007FA12EDA6210 d8 stub<19088> AllocateTemporaryEntryPoints +00007FA12EDA62E8 18 stub<19089> AllocateTemporaryEntryPoints +00007FA12EDA6300 18 stub<19090> AllocateTemporaryEntryPoints +00007FA12ED0B020 98 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Cast(class [System.Runtime]System.Collections.IEnumerable)[OptimizedTier1] +00007FA12E6720C0 18 stub<19091> GenerateLookupStub +00007FA12EDA6318 18 stub<19092> AllocateTemporaryEntryPoints +00007FA12ED0B0E0 5ba bool [System.Private.CoreLib] System.Reflection.CustomAttribute::FilterCustomAttributeRecord(valuetype System.Reflection.MetadataToken,valuetype System.Reflection.MetadataImport&,class System.Reflection.RuntimeModule,valuetype System.Reflection.MetadataToken,class System.RuntimeType,bool,valuetype System.RuntimeType/ListBuilder`1&,class System.RuntimeType&,class System.IRuntimeMethodInfo&,bool&)[OptimizedTier1] +00007FA12ED0B6C0 9b bool [System.Private.CoreLib] System.Reflection.CustomAttribute::MatchesTypeFilter(class System.RuntimeType,class System.RuntimeType)[OptimizedTier1] +00007FA12ED0B780 4e instance bool [System.Private.CoreLib] System.RuntimeType::IsAssignableFrom(class System.Reflection.TypeInfo)[OptimizedTier1] +00007FA12EDA6330 30 stub<19093> AllocateTemporaryEntryPoints +00007FA12EDA6360 18 stub<19094> AllocateTemporaryEntryPoints +00007FA12ED0B800 11e valuetype System.Reflection.CustomAttributeRecord[] [System.Private.CoreLib] System.Reflection.RuntimeCustomAttributeData::GetCustomAttributeRecords(class System.Reflection.RuntimeModule,int32)[OptimizedTier1] +00007FA12ED0B940 14 bool [System.Private.CoreLib] System.Type::op_Inequality(class System.Type,class System.Type)[OptimizedTier1] +00007FA12ED0B970 84 instance void [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.__Canon]::.ctor()[OptimizedTier1] +00007FA12ED0BA10 85 instance void [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.__Canon]::.ctor(int32)[OptimizedTier1] +00007FA12ED0BAC0 155 instance bool [System.Linq] System.Linq.Enumerable+d__67`1[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12EDA6378 18 stub<19095> AllocateTemporaryEntryPoints +00007FA12ED0BC40 27 instance bool [System.Private.CoreLib] System.ArrayEnumerator::MoveNext()[OptimizedTier1] +00007FA12ED0BC80 109 instance !0[] [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.__Canon]::ToArray()[OptimizedTier1] +00007FA12EDA6390 18 stub<19096> AllocateTemporaryEntryPoints +00007FA12EDA63A8 18 stub<19097> AllocateTemporaryEntryPoints +00007FA12ED0BDC0 64d void [System.Private.CoreLib] System.Reflection.CustomAttribute::AddCustomAttributes(valuetype System.RuntimeType/ListBuilder`1&,class System.Reflection.RuntimeModule,int32,class System.RuntimeType,bool,valuetype System.RuntimeType/ListBuilder`1)[OptimizedTier1] +00007FA12ED0C460 152 instance class System.RuntimeType [System.Private.CoreLib] System.RuntimeType::GetBaseType()[OptimizedTier1] +00007FA12EDA63C0 18 stub<19098> AllocateTemporaryEntryPoints +00007FA12EDA63D8 18 stub<19099> AllocateTemporaryEntryPoints +00007FA12ED0C5E0 172 instance void [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.__Canon]::AddRange(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12E6720E0 18 stub<19100> GenerateLookupStub +00007FA12ED0C790 35a class [System.Runtime]System.Attribute[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetAttributes(object,class [System.Runtime]System.Type,bool)[OptimizedTier1] +00007FA12ED0CB20 2bb object[] [System.Private.CoreLib] System.Reflection.CustomAttribute::GetCustomAttributes(class System.RuntimeType,class System.RuntimeType,bool)[OptimizedTier1] +00007FA12ED0CE00 125 void [System.Private.CoreLib] System.Reflection.PseudoCustomAttribute::GetCustomAttributes(class System.RuntimeType,class System.RuntimeType,valuetype System.RuntimeType/ListBuilder`1&)[OptimizedTier1] +00007FA12EDA63F0 18 stub<19101> AllocateTemporaryEntryPoints +00007FA12ED0CF60 2ec object[] [System.Private.CoreLib] System.Reflection.CustomAttribute::CreateAttributeArrayHelper(class System.RuntimeType,int32)[OptimizedTier1] +00007FA12ED0D270 69 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::CastIterator(class [System.Runtime]System.Collections.IEnumerable)[OptimizedTier1] +00007FA12ED0D300 61 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.Enumerable+d__67`1[System.__Canon]::System.Collections.Generic.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12ED0D380 38 instance class System.Collections.IEnumerator [System.Private.CoreLib] System.Array::GetEnumerator()[OptimizedTier1] +00007FA12ED0D3D0 37 instance void [System.Linq] System.Linq.Enumerable+d__67`1[System.__Canon]::<>m__Finally1()[OptimizedTier1] +00007FA12ED0D420 1b instance void [System.Linq] System.Linq.Enumerable+d__67`1[System.__Canon]::System.IDisposable.Dispose()[OptimizedTier1] +00007FA12EDA6408 18 stub<19102> AllocateTemporaryEntryPoints +00007FA12ED0D450 4b !!0 [System.Linq] System.Linq.Enumerable::FirstOrDefault(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12ED0D4C0 2b1 !!0 [System.Linq] System.Linq.Enumerable::TryGetFirst(class [System.Runtime]System.Collections.Generic.IEnumerable`1,bool&)[OptimizedTier1] +00007FA12ED0D7B0 9f !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetAttribute(object,bool)[OptimizedTier1] +00007FA12ED0D870 e0 !!0[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetAttributes(object,bool)[OptimizedTier1] +00007FA12ED0D970 db instance object[] [System.Private.CoreLib] System.RuntimeType::GetCustomAttributes(class System.Type,bool)[OptimizedTier1] +00007FA12EDA6420 60 stub<19103> AllocateTemporaryEntryPoints +00007FA12ED0DA80 297 instance int32 [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::FindItemIndex(!0)[OptimizedTier1] +00007FA12ED0DD40 51 instance object[] [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache::GetEmptyArray()[OptimizedTier1] +00007FA12ED0DDB0 53 instance bool [System.Private.CoreLib] System.Collections.Generic.ObjectEqualityComparer`1[System.__Canon]::Equals(!0,!0)[OptimizedTier1] +00007FA12ED0DE20 133 instance class System.Type [System.Private.CoreLib] System.RuntimeType::GetGenericTypeDefinition()[OptimizedTier1] +00007FA12ED0DF80 dd class System.RuntimeType [System.Private.CoreLib] System.RuntimeTypeHandle::GetGenericTypeDefinition(class System.RuntimeType)[OptimizedTier1] +00007FA12ED0E080 1a8 class System.AttributeUsageAttribute [System.Private.CoreLib] System.Reflection.CustomAttribute::GetAttributeUsage(class System.RuntimeType)[OptimizedTier1] +00007FA12ED0E250 158 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED0E3D0 55 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::.ctor()[OptimizedTier1] +00007FA12ED0E440 39 valuetype System.Reflection.BindingFlags [System.Private.CoreLib] System.RuntimeType::FilterPreCalculate(bool,bool,bool)[OptimizedTier1] +00007FA12ED0E4A0 23f bool [System.Private.CoreLib] System.RuntimeType::FilterApplyMethodBase(class System.Reflection.MethodBase,valuetype System.Reflection.BindingFlags,valuetype System.Reflection.BindingFlags,valuetype System.Reflection.CallingConventions,class System.Type[])[OptimizedTier1] +00007FA12ED0E700 e7 void [System.Private.CoreLib] System.Array::Copy(class System.Array,class System.Array,int32)[OptimizedTier1] +00007FA12ED0E810 4d7 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::IsValidCallback(class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Reflection.ParameterInfo[],class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.MethodInfo,class [System.Runtime]System.Type&)[OptimizedTier1] +00007FA12ED0ED10 db instance bool [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::IsDefined(class System.Type,bool)[OptimizedTier1] +00007FA12ED0EE20 c5 bool [System.Private.CoreLib] System.Reflection.CustomAttribute::IsDefined(class System.Reflection.RuntimeMethodInfo,class System.RuntimeType,bool)[OptimizedTier1] +00007FA12ED0EF10 ea bool [System.Private.CoreLib] System.Reflection.PseudoCustomAttribute::IsDefined(class System.Reflection.RuntimeMethodInfo,class System.RuntimeType)[OptimizedTier1] +00007FA12ED0F020 25d bool [System.Private.CoreLib] System.Reflection.CustomAttribute::IsCustomAttributeDefined(class System.Reflection.RuntimeModule,int32,class System.RuntimeType,int32,bool)[OptimizedTier1] +00007FA12ED0F2B0 6c instance class System.Reflection.ParameterInfo[] [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::FetchNonReturnParameters()[OptimizedTier1] +00007FA12EDA6480 18 stub<19104> AllocateTemporaryEntryPoints +00007FA12ED0F340 22e instance bool [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::get_ContainsGenericParameters()[OptimizedTier1] +00007FA12ED0F590 a5 instance class System.Reflection.ParameterInfo[] [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::GetParameters()[OptimizedTier1] +00007FA12EDA6498 18 stub<19105> AllocateTemporaryEntryPoints +00007FA12ED0F660 45 instance class System.Signature [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::g__LazyCreateSignature|25_0()[OptimizedTier1] +00007FA12EDA64B0 18 stub<19106> AllocateTemporaryEntryPoints +00007FA12ED0F6C0 570 class System.Reflection.ParameterInfo[] [System.Private.CoreLib] System.Reflection.RuntimeParameterInfo::GetParameters(class System.IRuntimeMethodInfo,class System.Reflection.MemberInfo,class System.Signature,class System.Reflection.ParameterInfo&,bool)[OptimizedTier1] +00007FA12ED0FC60 6b class [System.Runtime]System.Type [System.Linq.Expressions] System.Dynamic.Utils.TypeUtils::GetNonNullableType(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED0FCF0 35 instance bool [System.Private.CoreLib] System.RuntimeType::IsEquivalentTo(class System.Type)[OptimizedTier1] +00007FA12EDA64C8 18 stub<19107> AllocateTemporaryEntryPoints +00007FA12EDA64E0 18 stub<19108> AllocateTemporaryEntryPoints +00007FA12EDA64F8 18 stub<19109> AllocateTemporaryEntryPoints +00007FA12EDA6510 18 stub<19110> AllocateTemporaryEntryPoints +00007FA12ED0FD40 15f void [System.Private.CoreLib] System.Array::Resize(!!0[]&,int32)[OptimizedTier1] +00007FA12ED0FEC0 10 instance int32 [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::System.Linq.Expressions.IParameterProvider.get_ParameterCount()[OptimizedTier1] +00007FA12ED0FEF0 6 instance int32 [System.Linq.Expressions] System.Linq.Expressions.Expression1`1[System.__Canon]::get_ParameterCount()[OptimizedTier1] +00007FA12ED0FF10 5 instance int32 [System.Private.CoreLib] System.RuntimeType::GetHashCode()[OptimizedTier1] +00007FA12ED0FF30 4f instance int32 [System.Private.CoreLib] System.Collections.ObjectModel.ReadOnlyCollection`1[System.__Canon]::get_Count()[OptimizedTier1] +00007FA12ED0FFA0 c1 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::Initialize(int32)[OptimizedTier1] +00007FA12ED10080 a instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::.ctor()[OptimizedTier1] +00007FA12ED100A0 9c instance bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterList+d__6::MoveNext()[OptimizedTier1] +00007FA12EDA6528 300 stub<19111> AllocateTemporaryEntryPoints +00007FA12EDA6828 78 stub<19112> AllocateTemporaryEntryPoints +00007FA12EDA68A0 a8 stub<19113> AllocateTemporaryEntryPoints +00007FA12EDA6948 18 stub<19114> AllocateTemporaryEntryPoints +00007FA12EDA6960 18 stub<19115> AllocateTemporaryEntryPoints +00007FA12EDA6978 18 stub<19116> AllocateTemporaryEntryPoints +00007FA12ED10160 9f instance class System.Linq.Expressions.ParameterExpression [System.Linq.Expressions] System.Linq.Expressions.Expression1`1[System.__Canon]::GetParameter(int32)[OptimizedTier1] +00007FA12ED10220 96 !!0 [System.Linq.Expressions] System.Dynamic.Utils.ExpressionUtils::ReturnObject(object)[OptimizedTier1] +00007FA12ED102E0 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyContract()[OptimizedTier1] +00007FA12ED10300 1b bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringUtils::IsNullOrEmpty(string)[OptimizedTier1] +00007FA12ED10330 8 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_Properties()[OptimizedTier1] +00007FA12ED10350 47 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::get_Item(int32)[OptimizedTier1] +00007FA12ED103B0 72 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::RemoveAt(int32)[OptimizedTier1] +00007FA12ED10440 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12ED10460 69 instance void [System.Private.CoreLib] System.Text.StringBuilder::Append(char&,int32)[OptimizedTier1] +00007FA12ED104F0 75 instance void [System.Private.CoreLib] System.IO.StringWriter::Write(string)[OptimizedTier1] +00007FA12ED10580 85 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Append(string)[OptimizedTier1] +00007FA12ED10630 4 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPrimitiveContract::get_TypeCode()[OptimizedTier1] +00007FA12EDA6990 90 stub<19117> AllocateTemporaryEntryPoints +00007FA12ED10650 f5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteReference(object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EDA6A20 18 stub<19118> AllocateTemporaryEntryPoints +00007FA12EDA6A38 18 stub<19119> AllocateTemporaryEntryPoints +00007FA12E672100 18 stub<19120> GenerateLookupStub +00007FA12EDA6A50 18 stub<19121> AllocateTemporaryEntryPoints +00007FA12ED10770 52d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeValue(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EDA6A68 18 stub<19122> AllocateTemporaryEntryPoints +00007FA12EDA6A80 18 stub<19123> AllocateTemporaryEntryPoints +00007FA12ED10CE0 4f3 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::CheckForCircularReference(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12ED11210 5 instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_UnderlyingType()[OptimizedTier1] +00007FA12ED11240 89 class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(class [System.Runtime]System.Collections.Generic.IList`1,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED112F0 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_Converter()[OptimizedTier1] +00007FA12ED11310 a instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::GetMatchingConverter(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED11330 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_InternalConverter()[OptimizedTier1] +00007FA12ED11350 4 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Peek()[OptimizedTier1] +00007FA12ED11370 8 instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemConverter()[OptimizedTier1] +00007FA12ED11390 317 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::CalculatePropertyValues(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract&,object&)[OptimizedTier1] +00007FA12ED116D0 5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Ignored()[OptimizedTier1] +00007FA12ED116F0 5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Readable()[OptimizedTier1] +00007FA12ED11710 152 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldSerialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[OptimizedTier1] +00007FA12ED11890 5 instance class [System.Runtime]System.Predicate`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ShouldSerialize()[OptimizedTier1] +00007FA12ED118B0 152 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::IsSpecified(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[OptimizedTier1] +00007FA12ED11A30 5 instance class [System.Runtime]System.Predicate`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_GetIsSpecified()[OptimizedTier1] +00007FA12ED11A50 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IValueProvider [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ValueProvider()[OptimizedTier1] +00007FA12EDA6A98 18 stub<19124> AllocateTemporaryEntryPoints +00007FA12ED11A70 110 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExpressionValueProvider::GetValue(object)[OptimizedTier1] +00007FA12ED11BC0 93 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteProperty(object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12ED11C70 8 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_DefaultValueHandling()[OptimizedTier1] +00007FA12ED11C90 c instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling]::GetValueOrDefault(!0)[OptimizedTier1] +00007FA12ED11CB0 a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling)[OptimizedTier1] +00007FA12ED11CD0 37 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::WritePropertyName(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter)[OptimizedTier1] +00007FA12ED11D20 5 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyName()[OptimizedTier1] +00007FA12ED11D40 124 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WritePropertyName(string,bool)[OptimizedTier1] +00007FA12ED11E80 19 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValueDelimiter()[OptimizedTier1] +00007FA12ED11EB0 9 instance bool [System.Private.CoreLib] System.RuntimeType::Equals(object)[OptimizedTier1] +00007FA12ED11ED0 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Converter()[OptimizedTier1] +00007FA12ED11F00 66 object [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::ChkCastInterface(void*,object)[OptimizedTier1] +00007FA12ED11F80 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameHandling]::get_HasValue()[OptimizedTier1] +00007FA12ED11FA0 d0 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializePrimitive(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPrimitiveContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12ED120A0 ebb void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.PrimitiveTypeCode,object)[OptimizedTier1] +00007FA12ED13060 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ItemConverter()[OptimizedTier1] +00007FA12ED13080 56 instance !0 [System.Private.CoreLib] System.Collections.ObjectModel.ReadOnlyCollection`1[System.__Canon]::get_Item(int32)[OptimizedTier1] +00007FA12ED13100 2d void [System.Private.CoreLib] System.Buffer::Memmove(!!0&,!!0&,native uint)[OptimizedTier1] +00007FA12ED13150 f instance class System.Linq.Expressions.ParameterExpression [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::System.Linq.Expressions.IParameterProvider.GetParameter(int32)[OptimizedTier1] +00007FA12ED13180 2f instance bool [System.Private.CoreLib] System.Type::get_IsByRef()[OptimizedTier1] +00007FA12EDA6AB0 18 stub<19125> AllocateTemporaryEntryPoints +00007FA12EDA6AC8 18 stub<19126> AllocateTemporaryEntryPoints +00007FA12EDA6AE0 18 stub<19127> AllocateTemporaryEntryPoints +00007FA12EDA6AF8 18 stub<19128> AllocateTemporaryEntryPoints +00007FA12EDA6B10 18 stub<19129> AllocateTemporaryEntryPoints +00007FA12EDA6B28 18 stub<19130> AllocateTemporaryEntryPoints +00007FA12EDA6B40 18 stub<19131> AllocateTemporaryEntryPoints +00007FA12EDA6B58 18 stub<19132> AllocateTemporaryEntryPoints +00007FA12ED131D0 fc instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::InternalEmit(valuetype System.Reflection.Emit.OpCode)[OptimizedTier1] +00007FA12EDA6B70 108 stub<19133> AllocateTemporaryEntryPoints +00007FA12EDA8000 7f8 stub<19134> AllocateTemporaryEntryPoints +00007FA12EDA87F8 780 stub<19135> AllocateTemporaryEntryPoints +00007FA12EDAA000 7f8 stub<19136> AllocateTemporaryEntryPoints +00007FA12EDAA7F8 7f8 stub<19137> AllocateTemporaryEntryPoints +00007FA12EDAC000 78 stub<19138> AllocateTemporaryEntryPoints +00007FA12ED132F0 1f5 void [System.Linq.Expressions] System.Dynamic.Utils.ExpressionUtils::RequiresCanRead(class System.Linq.Expressions.Expression,string,int32)[OptimizedTier1] +00007FA12ED13510 55 void [System.Linq.Expressions] System.Dynamic.Utils.ContractUtils::RequiresNotNull(object,string,int32)[OptimizedTier1] +00007FA12ED13590 26 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsValueType(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EDAC078 18 stub<19139> AllocateTemporaryEntryPoints +00007FA12EDAC090 18 stub<19140> AllocateTemporaryEntryPoints +00007FA12EDAC0A8 18 stub<19141> AllocateTemporaryEntryPoints +00007FA12ED135D0 d0 instance bool [System.Linq.Expressions] System.Dynamic.Utils.CacheDict`2[System.__Canon,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12ED136C0 1b instance class System.Type [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::get_ReturnType()[OptimizedTier1] +00007FA12ED136F0 6 instance valuetype System.Linq.Expressions.ExpressionType [System.Linq.Expressions] System.Linq.Expressions.MemberExpression::get_NodeType()[OptimizedTier1] +00007FA12EDAC0C0 48 stub<19142> AllocateTemporaryEntryPoints +00007FA12EDAC108 18 stub<19143> AllocateTemporaryEntryPoints +00007FA12EDAC120 18 stub<19144> AllocateTemporaryEntryPoints +00007FA12ED13710 135 instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.Compiler.VariableBinder::Visit(class System.Linq.Expressions.Expression)[OptimizedTier1] +00007FA12ED13870 5e instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::AddElementType(valuetype System.Reflection.CorElementType)[OptimizedTier1] +00007FA12ED138F0 4 instance valuetype System.Linq.Expressions.ExpressionType [System.Linq.Expressions] System.Linq.Expressions.UnaryExpression::get_NodeType()[OptimizedTier1] +00007FA12ED13910 18 uint32 [System.Private.CoreLib] System.Collections.HashHelpers::FastMod(uint32,uint32,uint64)[OptimizedTier1] +00007FA12ED13940 10 instance class System.Type [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::get_PropertyType()[OptimizedTier1] +00007FA12ED13970 a3 instance class System.Signature [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::get_Signature()[OptimizedTier1] +00007FA12ED13A30 2d instance class System.RuntimeType [System.Private.CoreLib] System.Reflection.Emit.DynamicResolver::GetJitContext(int32&)[OptimizedTier1] +00007FA12ED13A80 38 instance string [System.Private.CoreLib] System.RuntimeType::GetCachedName(valuetype System.TypeNameKind)[OptimizedTier1] +00007FA12ED13AD0 1de instance string [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache::GetName(valuetype System.TypeNameKind)[OptimizedTier1] +00007FA12ED13CE0 44 instance string [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache::ConstructName(string&,valuetype System.TypeNameFormatFlags)[OptimizedTier1] +00007FA12ED13D40 10 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::IsGenericType(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED13D70 5 instance bool [System.Private.CoreLib] System.RuntimeType::get_IsGenericType()[OptimizedTier1] +00007FA12ED13D90 3d bool [System.Private.CoreLib] System.String::Equals(string,string)[OptimizedTier1] +00007FA12ED13DF0 3d bool [System.Private.CoreLib] System.String::op_Equality(string,string)[OptimizedTier1] +00007FA12ED13E50 1d instance !1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ThreadSafeStore`2[System.__Canon,System.__Canon]::Get(!0)[OptimizedTier1] +00007FA12ED13E90 124 instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::GetOrAdd(!0,class [System.Private.CoreLib]System.Func`2)[OptimizedTier1] +00007FA12EDAC138 18 stub<19145> AllocateTemporaryEntryPoints +00007FA12ED13FE0 13a instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::TryGetValueInternal(!0,int32,!1&)[OptimizedTier1] +00007FA12ED14140 74 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,System.__Canon]::GetBucket(int32)[OptimizedTier1] +00007FA12ED141D0 1a1 bool [System.Private.CoreLib] System.String::Equals(string,string,valuetype System.StringComparison)[OptimizedTier1] +00007FA12ED143B0 47 int32 [System.Private.CoreLib] System.HashCode::Combine(!!0,!!1)[OptimizedTier1] +00007FA12ED14410 215 void [System.Linq.Expressions] System.Dynamic.Utils.TypeUtils::ValidateType(class [System.Runtime]System.Type,string,bool,bool)[OptimizedTier1] +00007FA12ED14650 113 bool [System.Linq.Expressions] System.Dynamic.Utils.TypeUtils::ValidateType(class [System.Runtime]System.Type,string,int32)[OptimizedTier1] +00007FA12EDAC150 228 stub<19146> AllocateTemporaryEntryPoints +00007FA12EDAC378 18 stub<19147> AllocateTemporaryEntryPoints +00007FA12EDAC390 18 stub<19148> AllocateTemporaryEntryPoints +00007FA12ED14780 78 instance class System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache::GetMemberCache(class System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1&)[OptimizedTier1] +00007FA12EDAC3A8 60 stub<19149> AllocateTemporaryEntryPoints +00007FA12ED14820 131 instance !0[] [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::GetMemberList(valuetype System.RuntimeType/MemberListType,string,valuetype System.RuntimeType/RuntimeTypeCache/CacheType)[OptimizedTier1] +00007FA12ED14970 b instance string [System.Private.CoreLib] System.RuntimeType::get_FullName()[OptimizedTier1] +00007FA12ED14990 37 instance bool [System.Private.CoreLib] System.Reflection.MethodBase::get_IsStatic()[OptimizedTier1] +00007FA12EDAC408 60 stub<19150> AllocateTemporaryEntryPoints +00007FA12EDAC468 18 stub<19151> AllocateTemporaryEntryPoints +00007FA12EDAC480 90 stub<19152> AllocateTemporaryEntryPoints +00007FA12EDAC510 30 stub<19153> AllocateTemporaryEntryPoints +00007FA12EDAC540 18 stub<19154> AllocateTemporaryEntryPoints +00007FA12EDAC558 18 stub<19155> AllocateTemporaryEntryPoints +00007FA12EDAC570 48 stub<19156> AllocateTemporaryEntryPoints +00007FA12EDAC5B8 c0 stub<19157> AllocateTemporaryEntryPoints +00007FA12EDAC678 a8 stub<19158> AllocateTemporaryEntryPoints +00007FA12EDAC720 c0 stub<19159> AllocateTemporaryEntryPoints +00007FA12ED149E0 399 instance valuetype System.Linq.Expressions.Compiler.StackSpiller/Result [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller::RewriteExpression(class System.Linq.Expressions.Expression,valuetype System.Linq.Expressions.Compiler.StackSpiller/Stack)[OptimizedTier1] +00007FA12ED14F00 38 instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::GetBucket(uint32)[OptimizedTier1] +00007FA12EDAC7E0 18 stub<19160> AllocateTemporaryEntryPoints +00007FA12EDAC7F8 18 stub<19161> AllocateTemporaryEntryPoints +00007FA12ED14F50 191 instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::AddData(int32)[OptimizedTier1] +00007FA12EDAC810 a8 stub<19162> AllocateTemporaryEntryPoints +00007FA12EDAC8B8 18 stub<19163> AllocateTemporaryEntryPoints +00007FA12ED15110 ee class [System.Runtime]System.Collections.Generic.IReadOnlyList`1 [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::GetVariables(object)[OptimizedTier1] +00007FA12ED15220 36 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterList::GetEnumerator()[OptimizedTier1] +00007FA12ED15270 1 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterList+d__6::System.IDisposable.Dispose()[OptimizedTier1] +00007FA12EDAC8D0 90 stub<19164> AllocateTemporaryEntryPoints +00007FA12EDAC960 18 stub<19165> AllocateTemporaryEntryPoints +00007FA12EDAC978 120 stub<19166> AllocateTemporaryEntryPoints +00007FA12EDACA98 78 stub<19167> AllocateTemporaryEntryPoints +00007FA12EDACB10 d8 stub<19168> AllocateTemporaryEntryPoints +00007FA12EDACBE8 90 stub<19169> AllocateTemporaryEntryPoints +00007FA12ED15290 4fa instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitExpression(class System.Linq.Expressions.Expression,valuetype System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags)[OptimizedTier1] +00007FA12EDACC78 f0 stub<19170> AllocateTemporaryEntryPoints +00007FA12EDACD68 78 stub<19171> AllocateTemporaryEntryPoints +00007FA12E672120 18 stub<19172> GenerateLookupStub +00007FA12EDACDE0 90 stub<19173> AllocateTemporaryEntryPoints +00007FA12E672140 18 stub<19174> GenerateLookupStub +00007FA12ED15920 302 instance bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::TryPushLabelBlock(class System.Linq.Expressions.Expression)[OptimizedTier1] +00007FA12ED15C90 10 instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_Type()[OptimizedTier1] +00007FA12ED15CC0 26 instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.Expression`1[System.__Canon]::get_TypeCore()[OptimizedTier1] +00007FA12ED15D00 3d instance object [System.Private.CoreLib] System.Reflection.Emit.DynamicScope::get_Item(int32)[OptimizedTier1] +00007FA12EDACE70 18 stub<19175> AllocateTemporaryEntryPoints +00007FA12EDACE88 18 stub<19176> AllocateTemporaryEntryPoints +00007FA12ED15D60 77 instance bool [System.Private.CoreLib] System.RuntimeType::get_IsEnum()[OptimizedTier1] +00007FA12EDACEA0 f0 stub<19177> AllocateTemporaryEntryPoints +00007FA12ED15E00 cf void [System.Private.CoreLib] System.RuntimeType::FilterHelper(valuetype System.Reflection.BindingFlags,string&,bool,bool&,bool&,valuetype System.RuntimeType/MemberListType&)[OptimizedTier1] +00007FA12ED15EF0 5d instance valuetype System.RuntimeTypeHandle [System.Private.CoreLib] System.RuntimeTypeHandle::GetNativeHandle()[OptimizedTier1] +00007FA12ED15F70 3d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::Add(!0)[OptimizedTier1] +00007FA12ED15FD0 6 instance class System.Type [System.Private.CoreLib] System.RuntimeType::get_BaseType()[OptimizedTier1] +00007FA12ED15FF0 64 bool [System.Private.CoreLib] System.Reflection.Associates::IncludeAccessor(class System.Reflection.MethodInfo,bool)[OptimizedTier1] +00007FA12ED16070 5 instance class System.Type [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::get_DeclaringType()[OptimizedTier1] +00007FA12ED16090 26 instance class System.Reflection.RuntimeMethodInfo [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::GetGetMethod(bool)[OptimizedTier1] +00007FA12ED160D0 34 bool [System.Private.CoreLib] System.Reflection.MethodInfo::op_Equality(class System.Reflection.MethodInfo,class System.Reflection.MethodInfo)[OptimizedTier1] +00007FA12EDACF90 18 stub<19178> AllocateTemporaryEntryPoints +00007FA12EDACFA8 30 stub<19179> AllocateTemporaryEntryPoints +00007FA12EDACFD8 18 stub<19180> AllocateTemporaryEntryPoints +00007FA12EDAE000 18 stub<19181> AllocateTemporaryEntryPoints +00007FA12EDAE018 18 stub<19182> AllocateTemporaryEntryPoints +00007FA12ED16120 1eb instance !1 [System.Private.CoreLib] System.Reflection.CerHashtable`2[System.__Canon,System.__Canon]::get_Item(!0)[OptimizedTier1] +00007FA12ED16340 b8 int32 [System.Private.CoreLib] System.Reflection.CerHashtable`2[System.__Canon,System.__Canon]::GetHashCodeHelper(!0)[OptimizedTier1] +00007FA12ED16410 ae bool [System.Linq.Expressions] System.Dynamic.Utils.TypeUtils::AreReferenceAssignable(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED164E0 691 instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::AddOneArgTypeHelperWorker(class System.Type,bool)[OptimizedTier1] +00007FA12ED16BA0 33 bool [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::IsSimpleType(valuetype System.Reflection.CorElementType)[OptimizedTier1] +00007FA12ED16C00 312 instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::AddOneArgTypeHelper(class System.Type,class System.Type[],class System.Type[])[OptimizedTier1] +00007FA12ED16F40 6 instance valuetype System.Linq.Expressions.ExpressionType [System.Linq.Expressions] System.Linq.Expressions.ParameterExpression::get_NodeType()[OptimizedTier1] +00007FA12ED16F60 1c valuetype System.TypeCode [System.Private.CoreLib] System.Type::GetTypeCode(class System.Type)[OptimizedTier1] +00007FA12ED16F90 216 instance valuetype System.TypeCode [System.Private.CoreLib] System.RuntimeType::GetTypeCodeImpl()[OptimizedTier1] +00007FA12ED17200 f6 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute(object)[OptimizedTier1] +00007FA12ED17320 a6 instance bool [System.Private.CoreLib] System.RuntimeType::IsSubclassOf(class System.Type)[OptimizedTier1] +00007FA12ED173E0 e0 object[] [System.Private.CoreLib] System.Reflection.CustomAttribute::GetCustomAttributes(class System.Reflection.RuntimeModule,int32,int32,class System.RuntimeType)[OptimizedTier1] +00007FA12EDAE030 18 stub<19183> AllocateTemporaryEntryPoints +00007FA12ED174E0 107 instance !0[] [System.Private.CoreLib] System.RuntimeType+ListBuilder`1[System.__Canon]::ToArray()[OptimizedTier1] +00007FA12ED17600 a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameHandling,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameHandling)[OptimizedTier1] +00007FA12ED17620 2d instance int32 [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::GetHashCode()[OptimizedTier1] +00007FA12ED17670 86 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::AddWithResize(!0)[OptimizedTier1] +00007FA12ED17720 251 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::FindValue(!0)[OptimizedTier1] +00007FA12ED179A0 5 instance class System.Linq.Expressions.ParameterExpression [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterList+d__6::System.Collections.Generic.IEnumerator.get_Current()[OptimizedTier1] +00007FA12EDAE048 18 stub<19184> AllocateTemporaryEntryPoints +00007FA12EDAE060 18 stub<19185> AllocateTemporaryEntryPoints +00007FA12EDAE078 18 stub<19186> AllocateTemporaryEntryPoints +00007FA12EDAE090 228 stub<19187> AllocateTemporaryEntryPoints +00007FA12EDAE2B8 18 stub<19188> AllocateTemporaryEntryPoints +00007FA12ED179C0 40c instance valuetype System.RuntimeType/ListBuilder`1 [System.Private.CoreLib] System.RuntimeType::GetMethodCandidates(string,int32,valuetype System.Reflection.BindingFlags,valuetype System.Reflection.CallingConventions,class System.Type[],bool)[OptimizedTier1] +00007FA12EDAE2D0 18 stub<19189> AllocateTemporaryEntryPoints +00007FA12ED17DF0 3b2 void [System.Private.CoreLib] System.Buffer::BlockCopy(class System.Array,int32,class System.Array,int32,int32)[OptimizedTier1] +00007FA12EDAE2E8 18 stub<19190> AllocateTemporaryEntryPoints +00007FA12EDAE300 18 stub<19191> AllocateTemporaryEntryPoints +00007FA12ED181D0 d6 class [System.Runtime]System.Reflection.ParameterInfo[] [System.Linq.Expressions] System.Dynamic.Utils.TypeExtensions::GetParametersCached(class [System.Runtime]System.Reflection.MethodBase)[OptimizedTier1] +00007FA12ED182D0 c0 void [System.Private.CoreLib] System.Array::Clear(class System.Array,int32,int32)[OptimizedTier1] +00007FA12EDAE318 18 stub<19192> AllocateTemporaryEntryPoints +00007FA12EDAE330 18 stub<19193> AllocateTemporaryEntryPoints +00007FA12ED183C0 77 void [System.Private.CoreLib] System.SpanHelpers::ClearWithReferences(native int&,native uint)[OptimizedTier1] +00007FA12ED18450 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.ReferenceLoopHandling]::get_HasValue()[OptimizedTier1] +00007FA12ED18470 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::InternalWriteStart(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12ED184C0 115 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Push(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12ED18600 64 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ResolveIsReference(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12ED18680 6 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_IsReference()[OptimizedTier1] +00007FA12ED186A0 a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.PreserveReferencesHandling,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.PreserveReferencesHandling)[OptimizedTier1] +00007FA12ED186C0 57 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::EnsureWriteBuffer()[OptimizedTier1] +00007FA12EDAE348 18 stub<19194> AllocateTemporaryEntryPoints +00007FA12EDAE360 18 stub<19195> AllocateTemporaryEntryPoints +00007FA12EDAE378 18 stub<19196> AllocateTemporaryEntryPoints +00007FA12EDAE390 18 stub<19197> AllocateTemporaryEntryPoints +00007FA12ED18730 d2 int32 [System.Private.CoreLib] System.Array::IndexOf(!!0[],!!0,int32,int32)[OptimizedTier1] +00007FA12ED18820 9 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemIsReference()[OptimizedTier1] +00007FA12ED18840 d6 instance int32 [System.Private.CoreLib] System.Collections.Generic.ObjectEqualityComparer`1[System.__Canon]::IndexOf(!0[],!0,int32,int32)[OptimizedTier1] +00007FA12ED18940 6a instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::RemoveAt(int32)[OptimizedTier1] +00007FA12ED189D0 6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::InternalWriteEnd(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12ED18A00 a1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::AutoCompleteClose(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12ED18AC0 c1 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::CalculateLevelsToComplete(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12ED18BA0 92 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Pop()[OptimizedTier1] +00007FA12ED18C50 c8 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::GetCloseTokenForType(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12ED18D40 dd instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::UpdateCurrentState()[OptimizedTier1] +00007FA12ED18E50 62 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveContract(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED18ED0 4 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_StringEscapeHandling()[OptimizedTier1] +00007FA12ED18EF0 d6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(string)[OptimizedTier1] +00007FA12ED18FE0 99 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteEscapedString(string,bool)[OptimizedTier1] +00007FA12ED190A0 9bb void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptString(class [System.Runtime]System.IO.TextWriter,string,char,bool,bool[],valuetype Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling,class Datadog.Trace.Vendors.Newtonsoft.Json.IArrayPool`1,char[]&)[OptimizedTier1] +00007FA12ED19AC0 69 int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JavaScriptUtils::FirstCharToEscape(string,bool[],valuetype Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling)[OptimizedTier1] +00007FA12ED19B40 4b class System.Threading.ExecutionContext [System.Private.CoreLib] System.Threading.ExecutionContext::Capture()[OptimizedTier1] +00007FA12ED19BA0 63 bool [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::get_TrackAsyncMethodCompletion()[OptimizedTier1] +00007FA12ED19C20 41 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::FinishContinuations()[OptimizedTier1] +00007FA12EDAE3A8 18 stub<19198> AllocateTemporaryEntryPoints +00007FA12ED19C80 4a3 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::RunContinuations(object)[OptimizedTier1] +00007FA12ED1A160 2c void [System.Private.CoreLib] System.Threading.Tasks.Task::LogFinishCompletionNotification()[OptimizedTier1] +00007FA12ED1A1A0 e class System.Threading.Tasks.Task [System.Private.CoreLib] System.Threading.Tasks.Task::get_CompletedTask()[OptimizedTier1] +00007FA12EDAE3C0 18 stub<19199> AllocateTemporaryEntryPoints +00007FA12EDAE3D8 18 stub<19200> AllocateTemporaryEntryPoints +00007FA12EDAE3F0 5e8 stub<19201> AllocateTemporaryEntryPoints +00007FA12EDAE9D8 c0 stub<19202> AllocateTemporaryEntryPoints +00007FA12EDAEA98 90 stub<19203> AllocateTemporaryEntryPoints +00007FA12EDAEB28 a8 stub<19204> AllocateTemporaryEntryPoints +00007FA12EDAEBD0 18 stub<19205> AllocateTemporaryEntryPoints +00007FA12EDAEBE8 78 stub<19206> AllocateTemporaryEntryPoints +00007FA12EDAEC60 18 stub<19207> AllocateTemporaryEntryPoints +00007FA12EDAEC78 18 stub<19208> AllocateTemporaryEntryPoints +00007FA12ED1A1C0 ba instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::TryGetAndParseHeaderInfo(valuetype System.Net.Http.Headers.HeaderDescriptor,class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo&)[OptimizedTier1] +00007FA12EDE0000 5e8 stub<19209> AllocateTemporaryEntryPoints +00007FA12EDE05E8 c0 stub<19210> AllocateTemporaryEntryPoints +00007FA12EDE06A8 90 stub<19211> AllocateTemporaryEntryPoints +00007FA12EDE0738 a8 stub<19212> AllocateTemporaryEntryPoints +00007FA12EDE07E0 18 stub<19213> AllocateTemporaryEntryPoints +00007FA12EDE07F8 78 stub<19214> AllocateTemporaryEntryPoints +00007FA12EDE0870 18 stub<19215> AllocateTemporaryEntryPoints +00007FA12ED1A2A0 ea instance object& [System.Net.Http] System.Net.Http.Headers.HttpHeaders::GetValueRefOrNullRef(valuetype System.Net.Http.Headers.HeaderDescriptor)[OptimizedTier1] +00007FA12ED1A3B0 12d void [System.Private.CoreLib] System.Threading.ExecutionContext::RunInternal(class System.Threading.ExecutionContext,class System.Threading.ContextCallback,object)[OptimizedTier1] +00007FA12ED1A510 15 void [System.Private.CoreLib] System.ObjectDisposedException::ThrowIf(bool,object)[OptimizedTier1] +00007FA12ED1A540 a4 bool [System.Private.CoreLib] System.Threading.Tasks.AwaitTaskContinuation::get_IsValidLocationForInlining()[OptimizedTier1] +00007FA12ED1A600 31 class System.Threading.Tasks.TaskScheduler [System.Private.CoreLib] System.Threading.Tasks.TaskScheduler::get_InternalCurrent()[OptimizedTier1] +00007FA12ED1A650 17 instance class [System.Runtime]System.Globalization.CultureInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_Culture()[OptimizedTier1] +00007FA12ED1A680 4 instance !0 [System.Private.CoreLib] System.Nullable`1[System.Int32]::GetValueOrDefault()[OptimizedTier1] +00007FA12EDE0888 d8 stub<19216> AllocateTemporaryEntryPoints +00007FA12E672160 18 stub<19217> GenerateLookupStub +00007FA12ED1A6A0 1f6 void [System.Private.CoreLib] System.Threading.Tasks.AwaitTaskContinuation::RunOrScheduleAction(class System.Runtime.CompilerServices.IAsyncStateMachineBox,bool)[OptimizedTier1] +00007FA12ED1A8E0 75 void [System.Private.CoreLib] System.Runtime.CompilerServices.TaskAwaiter::UnsafeOnCompletedInternal(class System.Threading.Tasks.Task,class System.Runtime.CompilerServices.IAsyncStateMachineBox,bool)[OptimizedTier1] +00007FA12ED1A970 225 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::UnsafeSetContinuationForAwait(class System.Runtime.CompilerServices.IAsyncStateMachineBox,bool)[OptimizedTier1] +00007FA12ED1ABC0 87 bool [System.Private.CoreLib] System.Threading.PortableThreadPool+WorkerThread::ShouldStopProcessingWorkNow(class System.Threading.PortableThreadPool)[OptimizedTier1] +00007FA12ED1AC60 cd instance bool [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.__Canon]::TrySetResult(!0)[OptimizedTier1] +00007FA12ED1AD50 85 instance bool [System.Private.CoreLib] System.Threading.TimerQueue::EnsureTimerFiresBy(uint32)[OptimizedTier1] +00007FA12ED1AE00 82 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.__Canon]::TryEnqueue(!0)[OptimizedTier1] +00007FA12EDE2000 6f0 stub<19218> AllocateTemporaryEntryPoints +00007FA12EDE26F0 78 stub<19219> AllocateTemporaryEntryPoints +00007FA12EDE2768 a8 stub<19220> AllocateTemporaryEntryPoints +00007FA12EDE2810 18 stub<19221> AllocateTemporaryEntryPoints +00007FA12EDE2828 18 stub<19222> AllocateTemporaryEntryPoints +00007FA12EDE2840 18 stub<19223> AllocateTemporaryEntryPoints +00007FA12ED1AEA0 65 int32 [System.Net.Http] System.Net.Http.Headers.HttpHeaders::g__Count|59_0(object)[OptimizedTier1] +00007FA12EDE2858 6f0 stub<19224> AllocateTemporaryEntryPoints +00007FA12EDE2F48 78 stub<19225> AllocateTemporaryEntryPoints +00007FA12EDE4000 a8 stub<19226> AllocateTemporaryEntryPoints +00007FA12EDE40A8 18 stub<19227> AllocateTemporaryEntryPoints +00007FA12EDE40C0 18 stub<19228> AllocateTemporaryEntryPoints +00007FA12EDE40D8 18 stub<19229> AllocateTemporaryEntryPoints +00007FA12EDE40F0 120 stub<19230> AllocateTemporaryEntryPoints +00007FA12EDE4210 18 stub<19231> AllocateTemporaryEntryPoints +00007FA12EDE4228 18 stub<19232> AllocateTemporaryEntryPoints +00007FA12ED1AF20 220 void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::ReadStoreValues(valuetype [System.Runtime]System.Span`1,object,class System.Net.Http.Headers.HttpHeaderParser,int32&)[OptimizedTier1] +00007FA12ED1B180 13f class Datadog.Trace.Tracer [Datadog.Trace] Datadog.Trace.Tracer::get_Instance()[OptimizedTier1] +00007FA12ED1B2F0 16 void [System.Private.CoreLib] System.Diagnostics.Debugger::NotifyOfCrossThreadDependency()[OptimizedTier1] +00007FA12ED1B320 6c instance valuetype System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.__Canon]::ConfigureAwait(bool)[OptimizedTier1] +00007FA12ED1B3B0 24 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1[System.__Canon]::.ctor(class System.Threading.Tasks.Task`1,bool)[OptimizedTier1] +00007FA12ED1B3F0 8 instance valuetype System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1[System.__Canon]::GetAwaiter()[OptimizedTier1] +00007FA12ED1B410 11 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1+ConfiguredTaskAwaiter[System.__Canon]::get_IsCompleted()[OptimizedTier1] +00007FA12ED1B440 40 instance void [System.Private.CoreLib] System.Threading.TimerQueue::DeleteTimer(class System.Threading.TimerQueueTimer)[OptimizedTier1] +00007FA12ED1B4A0 27 instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1+ConfiguredTaskAwaiter[System.__Canon]::GetResult()[OptimizedTier1] +00007FA12ED1B4E0 3 valuetype System.Runtime.CompilerServices.AsyncTaskMethodBuilder [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Create()[OptimizedTier1] +00007FA12ED1B500 44 instance class System.Net.Http.HttpContent [System.Net.Http] System.Net.Http.HttpResponseMessage::get_Content()[OptimizedTier1] +00007FA12EDE4240 18 stub<19233> AllocateTemporaryEntryPoints +00007FA12EDE4258 18 stub<19234> AllocateTemporaryEntryPoints +00007FA12EDE4270 18 stub<19235> AllocateTemporaryEntryPoints +00007FA12ED1B560 2c6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseReadString(char,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[OptimizedTier1] +00007FA12ED1B870 4 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_DateTimeZoneHandling()[OptimizedTier1] +00007FA12ED1B890 5 instance string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_DateFormatString()[OptimizedTier1] +00007FA12ED1B8B0 1d2 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTime(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling,string,class [System.Runtime]System.Globalization.CultureInfo,valuetype [System.Runtime]System.DateTime&)[OptimizedTier1] +00007FA12ED1BAB0 6d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(string)[OptimizedTier1] +00007FA12ED1BB40 17 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(string)[OptimizedTier1] +00007FA12ED1BB70 16 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(string)[OptimizedTier1] +00007FA12ED1BBA0 6 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JArray::get_Type()[OptimizedTier1] +00007FA12ED1BBC0 72 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReferenceExtensions::StartsWith(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringReference,string)[OptimizedTier1] +00007FA12ED1BC50 1f instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::EnsureChars(int32,bool)[OptimizedTier1] +00007FA12ED1BC80 30 bool [System.Private.CoreLib] System.Char::IsDigit(char)[OptimizedTier1] +00007FA12ED1BCD0 6 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::get_Type()[OptimizedTier1] +00007FA12ED1BCF0 49 bool [System.Private.CoreLib] System.Char::IsNumber(char)[OptimizedTier1] +00007FA12ED1BD60 e3 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadNumberIntoBuffer()[OptimizedTier1] +00007FA12EDE4288 f0 stub<19236> AllocateTemporaryEntryPoints +00007FA12EDE4378 18 stub<19237> AllocateTemporaryEntryPoints +00007FA12ED1BE60 cd2 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseReadNumber(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType,char,int32)[OptimizedTier1] +00007FA12ED1CC10 b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteEndObject()[OptimizedTier1] +00007FA12ED1CC30 58 class System.Collections.Generic.IEqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.NonRandomizedStringEqualityComparer::GetStringComparer(object)[OptimizedTier1] +00007FA12ED1CCA0 4 instance int64 [System.Private.CoreLib] System.Int64::System.IConvertible.ToInt64(class System.IFormatProvider)[OptimizedTier1] +00007FA12ED1CCC0 76 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(int64)[OptimizedTier1] +00007FA12ED1CD60 17 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(int64)[OptimizedTier1] +00007FA12ED1CD90 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(int64)[OptimizedTier1] +00007FA12ED1CDD0 1f0 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Push(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType)[OptimizedTier1] +00007FA12ED1CFE0 21 instance void [System.Private.CoreLib] System.Collections.ObjectModel.Collection`1[System.__Canon]::.ctor(class System.Collections.Generic.IList`1)[OptimizedTier1] +00007FA12ED1D020 e3 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::ValidateEnd(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12ED1D130 c6 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Pop()[OptimizedTier1] +00007FA12ED1D210 b9 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonContainerType [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::GetTypeForCloseToken(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12ED1D300 6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteEnd(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12ED1D320 5a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::RemoveParent()[OptimizedTier1] +00007FA12ED1D3A0 5 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::get_Value()[OptimizedTier1] +00007FA12ED1D3C0 186 !!1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Convert(!!0)[OptimizedTier1] +00007FA12ED1D570 209 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12ED1D7B0 5 instance !1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::System.Collections.Generic.IEnumerator.get_Current()[OptimizedTier1] +00007FA12ED1D7D0 45 instance string [System.Private.CoreLib] System.String::InternalSubString(int32,int32)[OptimizedTier1] +00007FA12ED1D840 20 instance string [System.Private.CoreLib] System.String::Trim(char)[OptimizedTier1] +00007FA12ED1D880 113 instance string [System.Private.CoreLib] System.String::TrimHelper(char*,int32,valuetype System.Text.TrimType)[OptimizedTier1] +00007FA12ED1D9B0 33 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetResult()[OptimizedTier1] +00007FA12ED1DA00 f instance class System.Threading.Tasks.Task [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::get_Task()[OptimizedTier1] +00007FA12EDE4390 18 stub<19238> AllocateTemporaryEntryPoints +00007FA12ED1DA20 32e instance class System.RuntimeType/RuntimeTypeCache [System.Private.CoreLib] System.RuntimeType::InitializeCache()[OptimizedTier1] +00007FA12ED1DD70 82 instance void [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache::.ctor(class System.RuntimeType)[OptimizedTier1] +00007FA12ED1DE10 df instance class System.RuntimeType [System.Private.CoreLib] System.Reflection.RuntimeModule::get_RuntimeType()[OptimizedTier1] +00007FA12ED1DF10 a6 class System.RuntimeType [System.Private.CoreLib] System.ModuleHandle::GetModuleType(class System.Reflection.RuntimeModule)[OptimizedTier1] +00007FA12ED1DFE0 f8 class System.Type [System.Private.CoreLib] System.Nullable::GetUnderlyingType(class System.Type)[OptimizedTier1] +00007FA12ED1E0F0 5 instance class [System.Runtime]System.Type [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ServiceDescriptor::get_ServiceType()[OptimizedTier1] +00007FA12ED1E110 4 !!0 [System.Private.CoreLib] System.Threading.Volatile::Read(!!0&)[OptimizedTier1] +00007FA12ED1E130 54 instance class System.Type [System.Private.CoreLib] System.Reflection.RuntimeParameterInfo::get_ParameterType()[OptimizedTier1] +00007FA12ED1E1A0 6 int32 [System.Private.CoreLib] System.IntPtr::get_Size()[OptimizedTier1] +00007FA12ED1E1C0 18 uint32 [System.Collections.Concurrent] System.Collections.HashHelpers::FastMod(uint32,uint32,uint64)[OptimizedTier1] +00007FA12ED1E1F0 38 instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::GetBucket(uint32)[OptimizedTier1] +00007FA12ED1E240 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12ED1E260 38 instance int32 [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey::GetHashCode()[OptimizedTier1] +00007FA12ED1E2C0 163 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12ED1E450 74 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::GetBucket(int32)[OptimizedTier1] +00007FA12EDE43A8 18 stub<19239> AllocateTemporaryEntryPoints +00007FA12ED1E4E0 488 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[OptimizedTier1] +00007FA12ED1E9A0 85 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,System.__Canon]::GetBucketAndLock(int32,uint32&)[OptimizedTier1] +00007FA12EDE43C0 318 stub<19240> AllocateTemporaryEntryPoints +00007FA12ED1EA50 252 instance class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory::TryCreateExact(class [Microsoft.Extensions.DependencyInjection.Abstractions]Microsoft.Extensions.DependencyInjection.ServiceDescriptor,class [System.Runtime]System.Type,class Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain,int32)[OptimizedTier1] +00007FA12ED1ECD0 27f instance !0[] [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::Populate(string,valuetype System.RuntimeType/MemberListType,valuetype System.RuntimeType/RuntimeTypeCache/CacheType)[OptimizedTier1] +00007FA12ED1EF80 358 instance !0[] [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::GetListByName(char*,int32,uint8*,int32,valuetype System.RuntimeType/MemberListType,valuetype System.RuntimeType/RuntimeTypeCache/CacheType)[OptimizedTier1] +00007FA12EDE46D8 18 stub<19241> AllocateTemporaryEntryPoints +00007FA12ED1F340 2ba instance void [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::Insert(!0[]&,string,valuetype System.RuntimeType/MemberListType)[OptimizedTier1] +00007FA12ED1F650 a5 instance class System.Reflection.ParameterInfo[] [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::GetParameters()[OptimizedTier1] +00007FA12ED1F720 6c instance class System.Reflection.ParameterInfo[] [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::GetParametersNoCopy()[OptimizedTier1] +00007FA12ED1F7B0 205 instance class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory::TryCreateOpenGeneric(class [Microsoft.Extensions.DependencyInjection.Abstractions]Microsoft.Extensions.DependencyInjection.ServiceDescriptor,class [System.Runtime]System.Type,class Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain,int32,bool)[OptimizedTier1] +00007FA12ED1FA00 5e instance class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory::GetCallSite(class [System.Runtime]System.Type,class Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain)[OptimizedTier1] +00007FA12ED1FA80 15 instance class System.Type [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::get_DeclaringType()[OptimizedTier1] +00007FA12ED1FAB0 31 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12ED1FB00 251 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::FindValue(!0)[OptimizedTier1] +00007FA12ED1FD80 38 instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+ServiceDescriptorCacheItem]::GetBucket(uint32)[OptimizedTier1] +00007FA12ED1FDD0 56 instance bool [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.StackGuard::TryEnterOnCurrentStack()[OptimizedTier1] +00007FA12ED1FE40 cb instance void [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::MergeWithGlobalListInOrder(!0[])[OptimizedTier1] +00007FA12ED1FF30 26 instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.__Canon]::MoveNextRare()[OptimizedTier1] +00007FA12ED1FF70 1 instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.__Canon]::Dispose()[OptimizedTier1] +00007FA12EDE46F0 18 stub<19242> AllocateTemporaryEntryPoints +00007FA12ED1FFA0 e1 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.RuntimeTypeHandle::CopyRuntimeTypeHandles(valuetype System.RuntimeTypeHandle[],valuetype System.Span`1)[OptimizedTier1] +00007FA12ED200B0 5 instance valuetype System.RuntimeMethodHandleInternal [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::System.IRuntimeMethodInfo.get_Value()[OptimizedTier1] +00007FA12ED200D0 96 void [System.Private.CoreLib] System.Array::Copy(class System.Array,int32,class System.Array,int32,int32)[OptimizedTier1] +00007FA12ED20180 1d8 valuetype System.RuntimeMethodHandleInternal [System.Private.CoreLib] System.ModuleHandle::ResolveMethodHandleInternal(class System.Reflection.RuntimeModule,int32,valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED203C0 bb bool [System.Private.CoreLib] System.Reflection.CustomAttribute::AttributeUsageCheck(class System.RuntimeType,bool,valuetype System.RuntimeType/ListBuilder`1&)[OptimizedTier1] +00007FA12EDE4708 18 stub<19243> AllocateTemporaryEntryPoints +00007FA12ED204A0 26f instance valuetype System.RuntimeMethodHandle [System.Private.CoreLib] System.ModuleHandle::ResolveMethodHandle(int32,valuetype System.RuntimeTypeHandle[],valuetype System.RuntimeTypeHandle[])[OptimizedTier1] +00007FA12ED20730 20 instance bool [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12ED20760 411 void [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::CheckCanCreateInstance(class System.Type,bool)[OptimizedTier1] +00007FA12ED20B90 1 instance void [System.Private.CoreLib] System.Attribute::.ctor()[OptimizedTier1] +00007FA12ED20BB0 24 instance !0 [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.__Canon]::get_Current()[OptimizedTier1] +00007FA12EDE4720 60 stub<19244> AllocateTemporaryEntryPoints +00007FA12ED20BF0 6d instance bool [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.MessageLogger::IsEnabled(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel)[OptimizedTier1] +00007FA12ED20C80 b instance int32 [System.Private.CoreLib] System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer::GetHashCode(string)[OptimizedTier1] +00007FA12ED20CA0 ed instance int32 [System.Private.CoreLib] System.String::GetNonRandomizedHashCodeOrdinalIgnoreCase()[OptimizedTier1] +00007FA12ED20DB0 5 instance class [System.Runtime]System.Type [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ServiceDescriptor::get_ImplementationType()[OptimizedTier1] +00007FA12ED20DD0 d void [System.Private.CoreLib] System.Threading.Volatile::Write(!!0&,!!0)[OptimizedTier1] +00007FA12ED20DF0 2b instance void [System.Private.CoreLib] System.MulticastDelegate::CtorClosed(object,native int)[OptimizedTier1] +00007FA12ED20E40 6 void [System.Private.CoreLib] System.ThrowHelper::ThrowForUnsupportedNumericsVectorBaseType()[OptimizedTier1] +00007FA12ED20E60 b bool [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::get_IsSupported()[OptimizedTier1] +00007FA12ED20E80 4 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetReference(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED20EA0 12 !!0 [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::ReadUnaligned(uint8&)[OptimizedTier1] +00007FA12ED20ED0 1b instance valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::Slice(int32)[OptimizedTier1] +00007FA12ED20F00 a instance bool [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::get_IsEmpty()[OptimizedTier1] +00007FA12ED20F20 25 instance void [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::.ctor(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED20F60 4 instance int32 [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::get_Length()[OptimizedTier1] +00007FA12ED20F80 25 instance void [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::.ctor(valuetype System.Span`1)[OptimizedTier1] +00007FA12ED20FC0 6 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.Span`1[System.UInt32]::op_Implicit(valuetype System.Span`1)[OptimizedTier1] +00007FA12ED20FE0 25 instance void [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::.ctor(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED21020 4 instance int32 [System.Private.CoreLib] System.ReadOnlySpan`1[System.UInt32]::get_Length()[OptimizedTier1] +00007FA12ED21040 4 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetReference(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED21060 20 instance void [System.Private.CoreLib] System.Numerics.Vector`1[System.UInt32]::CopyTo(valuetype System.Span`1)[OptimizedTier1] +00007FA12ED210A0 4 instance int32 [System.Private.CoreLib] System.Span`1[System.UInt32]::get_Length()[OptimizedTier1] +00007FA12ED210C0 4 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetReference(valuetype System.Span`1)[OptimizedTier1] +00007FA12ED210E0 11 void [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::WriteUnaligned(uint8&,!!0)[OptimizedTier1] +00007FA12EDE4780 18 stub<19245> AllocateTemporaryEntryPoints +00007FA12ED21110 1f instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.UInt32]::Slice(int32)[OptimizedTier1] +00007FA12ED21150 3 instance int32 [System.Private.CoreLib] System.Text.Rune::get_Value()[OptimizedTier1] +00007FA12ED21170 23 instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.Char]::Slice(int32,int32)[OptimizedTier1] +00007FA12ED211B0 1f instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.Char]::Slice(int32)[OptimizedTier1] +00007FA12ED211F0 26 instance void [System.Private.CoreLib] System.Text.Rune::.ctor(int32)[OptimizedTier1] +00007FA12ED21230 11 bool [System.Private.CoreLib] System.Text.Rune::IsControl(valuetype System.Text.Rune)[OptimizedTier1] +00007FA12ED21260 d int32 [System.Private.CoreLib] System.Numerics.BitOperations::Log2(uint32)[OptimizedTier1] +00007FA12ED21280 4 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetReference(valuetype System.Span`1)[OptimizedTier1] +00007FA12EDE4798 18 stub<19246> AllocateTemporaryEntryPoints +00007FA12EDE47B0 18 stub<19247> AllocateTemporaryEntryPoints +00007FA12EDE47C8 18 stub<19248> AllocateTemporaryEntryPoints +00007FA12EDE47E0 18 stub<19249> AllocateTemporaryEntryPoints +00007FA12ED212A0 4e instance void [System.Private.CoreLib] System.Span`1[System.Char]::Clear()[OptimizedTier1] +00007FA12ED21310 64 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::set_Item(!0,!1)[OptimizedTier1] +00007FA12ED213A0 497 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[OptimizedTier1] +00007FA12ED21870 85 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::GetBucketAndLock(int32,uint32&)[OptimizedTier1] +00007FA12ED21920 60 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[OptimizedTier1] +00007FA12EDE47F8 60 stub<19250> AllocateTemporaryEntryPoints +00007FA12EDE4858 60 stub<19251> AllocateTemporaryEntryPoints +00007FA12EDE48B8 18 stub<19252> AllocateTemporaryEntryPoints +00007FA12EDE48D0 18 stub<19253> AllocateTemporaryEntryPoints +00007FA12EDE48E8 18 stub<19254> AllocateTemporaryEntryPoints +00007FA12EDE4900 18 stub<19255> AllocateTemporaryEntryPoints +00007FA12EDE4918 18 stub<19256> AllocateTemporaryEntryPoints +00007FA12EDE4930 18 stub<19257> AllocateTemporaryEntryPoints +00007FA12ED219A0 1e7 instance !1 [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext,System.__Canon]::VisitCallSite(class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite,!0)[OptimizedTier1] +00007FA12ED21BC0 5d instance string [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::get_Name()[OptimizedTier1] +00007FA12ED21C40 7d instance int32 [System.Private.CoreLib] System.Array::GetLowerBound(int32)[OptimizedTier1] +00007FA12ED21CE0 11a valuetype System.Reflection.CustomAttributeType [System.Private.CoreLib] System.Reflection.RuntimeCustomAttributeData::InitCustomAttributeType(class System.RuntimeType)[OptimizedTier1] +00007FA12ED21E20 362 valuetype System.Reflection.CustomAttributeEncoding [System.Private.CoreLib] System.Reflection.RuntimeCustomAttributeData::TypeToCustomAttributeEncoding(class System.RuntimeType)[OptimizedTier1] +00007FA12ED221A0 81 instance bool [System.Private.CoreLib] System.RuntimeType::TryByRefFastPath(object&,bool&)[OptimizedTier1] +00007FA12ED22240 265 instance bool [System.Private.CoreLib] System.RuntimeType::CheckValue(object&,valuetype System.Reflection.ParameterCopyBackAction&,class System.Reflection.Binder,class System.Globalization.CultureInfo,valuetype System.Reflection.BindingFlags)[OptimizedTier1] +00007FA12ED224D0 fe instance object [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver::VisitRootCache(class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite,valuetype Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext)[OptimizedTier1] +00007FA12ED22610 1fa instance !1 [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext,System.__Canon]::VisitCallSiteMain(class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite,!0)[OptimizedTier1] +00007FA12ED22860 ea int32 [System.Private.CoreLib] System.Marvin::ComputeHash32(uint8&,uint32,uint32,uint32)[OptimizedTier1] +00007FA12ED22960 36 instance bool [System.Private.CoreLib] System.String::Equals(string)[OptimizedTier1] +00007FA12ED229C0 126 bool [System.Private.CoreLib] System.SpanHelpers::SequenceEqual(uint8&,uint8&,native uint)[OptimizedTier1] +00007FA12EDE4948 18 stub<19258> AllocateTemporaryEntryPoints +00007FA12ED22B20 149 bool [System.Private.CoreLib] System.Globalization.Ordinal::EqualsIgnoreCase(char&,char&,int32)[OptimizedTier1] +00007FA12ED22C90 2f instance bool [System.Private.CoreLib] System.Type::get_IsPointer()[OptimizedTier1] +00007FA12ED22CE0 45 instance class System.Signature [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::g__LazyCreateSignature|21_0()[OptimizedTier1] +00007FA12EDE4960 300 stub<19259> AllocateTemporaryEntryPoints +00007FA12EDE4C60 18 stub<19260> AllocateTemporaryEntryPoints +00007FA12EDE4C78 78 stub<19261> AllocateTemporaryEntryPoints +00007FA12EDE4CF0 a8 stub<19262> AllocateTemporaryEntryPoints +00007FA12EDE4D98 18 stub<19263> AllocateTemporaryEntryPoints +00007FA12EDE4DB0 18 stub<19264> AllocateTemporaryEntryPoints +00007FA12EDE4DC8 18 stub<19265> AllocateTemporaryEntryPoints +00007FA12EDE6000 390 stub<19266> AllocateTemporaryEntryPoints +00007FA12EDE6390 18 stub<19267> AllocateTemporaryEntryPoints +00007FA12EDE63A8 18 stub<19268> AllocateTemporaryEntryPoints +00007FA12ED22D40 1ee class [System.Runtime]System.Collections.ObjectModel.ReadOnlyCollection`1 [System.Linq.Expressions] System.Dynamic.Utils.CollectionExtensions::ToReadOnly(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12ED22F60 492 instance class System.Reflection.MethodInfo [System.Private.CoreLib] System.RuntimeType::GetMethodImplCommon(string,int32,valuetype System.Reflection.BindingFlags,class System.Reflection.Binder,valuetype System.Reflection.CallingConventions,class System.Type[],valuetype System.Reflection.ParameterModifier[])[OptimizedTier1] +00007FA12ED23420 2e6 instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicResolver::ResolveToken(int32,native int&,native int&,native int&)[OptimizedTier1] +00007FA12EDE63C0 18 stub<19269> AllocateTemporaryEntryPoints +00007FA12EDE63D8 18 stub<19270> AllocateTemporaryEntryPoints +00007FA12ED23740 3b1 instance valuetype System.RuntimeType/ListBuilder`1 [System.Private.CoreLib] System.RuntimeType::GetConstructorCandidates(string,valuetype System.Reflection.BindingFlags,valuetype System.Reflection.CallingConventions,class System.Type[],bool)[OptimizedTier1] +00007FA12ED23B20 53 instance void [System.Collections] System.Collections.Generic.Stack`1[System.__Canon]::.ctor()[OptimizedTier1] +00007FA12ED23B90 ec instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED23CA0 4b instance void [System.Collections] System.Collections.Generic.Stack`1[System.__Canon]::Push(!0)[OptimizedTier1] +00007FA12ED23D10 bc instance void [System.Collections] System.Collections.Generic.Stack`1[System.__Canon]::PushWithResize(!0)[OptimizedTier1] +00007FA12ED23DF0 92 instance void [System.Collections] System.Collections.Generic.Stack`1[System.__Canon]::Grow(int32)[OptimizedTier1] +00007FA12EDE63F0 3a8 stub<19271> AllocateTemporaryEntryPoints +00007FA12ED23EA0 52 instance !0 [System.Collections] System.Collections.Generic.Stack`1[System.__Canon]::Pop()[OptimizedTier1] +00007FA12ED23F10 81 instance class System.Reflection.MethodInfo [System.Private.CoreLib] System.Type::GetMethod(string,valuetype System.Reflection.BindingFlags)[OptimizedTier1] +00007FA12ED23FB0 110 instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::Init(class System.Reflection.Module,valuetype System.Reflection.MdSigCallingConvention,int32)[OptimizedTier1] +00007FA12ED240E0 b8 instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::Init(class System.Reflection.Module)[OptimizedTier1] +00007FA12ED241B0 74 instance !1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::get_Item(!0)[OptimizedTier1] +00007FA12ED24240 9e instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_ReturnType()[OptimizedTier1] +00007FA12ED24300 52 instance bool [System.Private.CoreLib] System.String::Equals(object)[OptimizedTier1] +00007FA12EDE6798 c0 stub<19272> AllocateTemporaryEntryPoints +00007FA12EDE6858 150 stub<19273> AllocateTemporaryEntryPoints +00007FA12ED24370 2e0 instance valuetype System.RuntimeMethodHandle [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::GetMethodDescriptor()[OptimizedTier1] +00007FA12ED24690 26 instance int32 [System.Private.CoreLib] System.String::GetHashCode()[OptimizedTier1] +00007FA12ED246D0 28 instance void [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain::Add(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED24710 7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::get_Count()[OptimizedTier1] +00007FA12ED24730 13 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::set_Item(!0,!1)[OptimizedTier1] +00007FA12ED24760 4cd instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12EDE69A8 18 stub<19274> AllocateTemporaryEntryPoints +00007FA12EDE69C0 48 stub<19275> AllocateTemporaryEntryPoints +00007FA12EDE6A08 48 stub<19276> AllocateTemporaryEntryPoints +00007FA12EDE6A50 48 stub<19277> AllocateTemporaryEntryPoints +00007FA12EDE6A98 60 stub<19278> AllocateTemporaryEntryPoints +00007FA12EDE6AF8 2a0 stub<19279> AllocateTemporaryEntryPoints +00007FA12EDE6D98 18 stub<19280> AllocateTemporaryEntryPoints +00007FA12EDE6DB0 18 stub<19281> AllocateTemporaryEntryPoints +00007FA12EDE6DC8 18 stub<19282> AllocateTemporaryEntryPoints +00007FA12EDE6DE0 60 stub<19283> AllocateTemporaryEntryPoints +00007FA12ED24C50 290 instance class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory::CreateCallSite(class [System.Runtime]System.Type,class Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain)[OptimizedTier1] +00007FA12EDE6E40 90 stub<19284> AllocateTemporaryEntryPoints +00007FA12ED24F20 65 instance void [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain::CheckCircularDependency(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED24FB0 15 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::ContainsKey(!0)[OptimizedTier1] +00007FA12ED24FE0 251 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::FindValue(!0)[OptimizedTier1] +00007FA12ED25260 256 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain+ChainItemInfo]::Remove(!0)[OptimizedTier1] +00007FA12ED254E0 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12ED25500 21 instance void [System.Private.CoreLib] System.Collections.ObjectModel.ReadOnlyCollection`1[System.__Canon]::.ctor(class System.Collections.Generic.IList`1)[OptimizedTier1] +00007FA12ED25540 3 !!0 [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::ReadUnaligned(void*)[OptimizedTier1] +00007FA12EDE6ED0 120 stub<19285> AllocateTemporaryEntryPoints +00007FA12EDE8000 18 stub<19286> AllocateTemporaryEntryPoints +00007FA12EDE8018 240 stub<19287> AllocateTemporaryEntryPoints +00007FA12EDE8258 18 stub<19288> AllocateTemporaryEntryPoints +00007FA12EDE8270 18 stub<19289> AllocateTemporaryEntryPoints +00007FA12ED25560 4a instance valuetype System.Collections.Generic.Stack`1/Enumerator [System.Collections] System.Collections.Generic.Stack`1[System.__Canon]::GetEnumerator()[OptimizedTier1] +00007FA12ED255D0 118 instance bool [System.Collections] System.Collections.Generic.Stack`1+Enumerator[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12ED25700 1b instance !0 [System.Collections] System.Collections.Generic.Stack`1+Enumerator[System.__Canon]::get_Current()[OptimizedTier1] +00007FA12ED25730 8 instance void [System.Collections] System.Collections.Generic.Stack`1+Enumerator[System.__Canon]::Dispose()[OptimizedTier1] +00007FA12EDE8288 60 stub<19290> AllocateTemporaryEntryPoints +00007FA12ED25750 fa instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Int32]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED25870 89 instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::AddArgument(class System.Type,class System.Type[],class System.Type[])[OptimizedTier1] +00007FA12ED25920 6 instance valuetype System.Linq.Expressions.ExpressionType [System.Linq.Expressions] System.Linq.Expressions.NewExpression::get_NodeType()[OptimizedTier1] +00007FA12ED25940 c bool [System.Private.CoreLib] System.Text.ASCIIUtility::AllBytesInUInt32AreAscii(uint32)[OptimizedTier1] +00007FA12EDE82E8 18 stub<19291> AllocateTemporaryEntryPoints +00007FA12ED25960 c6 instance class System.RuntimeType[] [System.Private.CoreLib] System.RuntimeTypeHandle::GetInstantiationInternal()[OptimizedTier1] +00007FA12EDE8300 18 stub<19292> AllocateTemporaryEntryPoints +00007FA12EDE8318 18 stub<19293> AllocateTemporaryEntryPoints +00007FA12EDE8330 18 stub<19294> AllocateTemporaryEntryPoints +00007FA12ED25A60 50e class System.Reflection.MethodBase [System.Private.CoreLib] System.RuntimeType::GetMethodBase(class System.RuntimeType,valuetype System.RuntimeMethodHandleInternal)[OptimizedTier1] +00007FA12ED25FA0 3b0 instance class System.Reflection.MethodBase [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::AddMethod(class System.RuntimeType,valuetype System.RuntimeMethodHandleInternal,valuetype System.RuntimeType/RuntimeTypeCache/CacheType)[OptimizedTier1] +00007FA12EDE8348 18 stub<19295> AllocateTemporaryEntryPoints +00007FA12EDE8360 18 stub<19296> AllocateTemporaryEntryPoints +00007FA12ED26380 2dd instance void [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::MergeWithGlobalList(!0[])[OptimizedTier1] +00007FA12EDE8378 18 stub<19297> AllocateTemporaryEntryPoints +00007FA12ED26680 1d void [System.Private.CoreLib] System.Text.ASCIIUtility::WidenFourAsciiBytesToUtf16AndWriteToBuffer(char&,uint32)[OptimizedTier1] +00007FA12EDE8390 18 stub<19298> AllocateTemporaryEntryPoints +00007FA12ED266C0 833 instance void [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::PopulateProperties(valuetype System.RuntimeType/RuntimeTypeCache/Filter,class System.RuntimeType,class System.Collections.Generic.Dictionary`2>,valuetype System.Span`1,bool,valuetype System.RuntimeType/ListBuilder`1&)[OptimizedTier1] +00007FA12ED26F20 287 class System.Reflection.RuntimeMethodInfo [System.Private.CoreLib] System.Reflection.Associates::AssignAssociates(int32,class System.RuntimeType,class System.RuntimeType)[OptimizedTier1] +00007FA12ED271D0 20a string [System.Private.CoreLib] System.String::CreateStringFromEncoding(uint8*,int32,class System.Text.Encoding)[OptimizedTier1] +00007FA12ED27400 d5 native uint [System.Private.CoreLib] System.Text.ASCIIUtility::WidenAsciiToUtf16(uint8*,char*,native uint)[OptimizedTier1] +00007FA12EDE83A8 18 stub<19299> AllocateTemporaryEntryPoints +00007FA12ED27500 785 valuetype System.Buffers.OperationStatus [System.Private.CoreLib] System.Text.Unicode.Utf8Utility::TranscodeToUtf16(uint8*,int32,char*,int32,uint8*&,char*&)[OptimizedTier1] +00007FA12ED27CB0 125 instance void [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::.ctor(int32,class System.RuntimeType,class System.RuntimeType/RuntimeTypeCache,bool&)[OptimizedTier1] +00007FA12ED27E00 499 void [System.Private.CoreLib] System.Reflection.Associates::AssignAssociates(valuetype System.Reflection.MetadataImport,int32,class System.RuntimeType,class System.RuntimeType,class System.Reflection.RuntimeMethodInfo&,class System.Reflection.RuntimeMethodInfo&,class System.Reflection.RuntimeMethodInfo&,class System.Reflection.RuntimeMethodInfo&,class System.Reflection.RuntimeMethodInfo&,class System.Reflection.MethodInfo[]&,bool&,valuetype System.Reflection.BindingFlags&)[OptimizedTier1] +00007FA12ED282C0 42e uint8* [System.Private.CoreLib] System.Text.Unicode.Utf8Utility::GetPointerToFirstInvalidByte(uint8*,int32,int32&,int32&)[OptimizedTier1] +00007FA12EDE83C0 c0 stub<19300> AllocateTemporaryEntryPoints +00007FA12ED28720 16f native uint [System.Private.CoreLib] System.Text.ASCIIUtility::GetIndexOfFirstNonAsciiByte_Intrinsified(uint8*,native uint)[OptimizedTier1] +00007FA12ED288B0 d3 instance int32 [System.Private.CoreLib] System.Text.UTF8Encoding::GetChars(uint8*,int32,char*,int32)[OptimizedTier1] +00007FA12ED289B0 15 instance class System.Type [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::get_DeclaringType()[OptimizedTier1] +00007FA12ED289E0 71 instance bool [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::Equals(object)[OptimizedTier1] +00007FA12ED28A70 91 void [System.Private.CoreLib] System.RuntimeType::ThrowIfTypeNeverValidGenericArgument(class System.RuntimeType)[OptimizedTier1] +00007FA12EDE8480 18 stub<19301> AllocateTemporaryEntryPoints +00007FA12ED28B20 4f instance bool [System.Private.CoreLib] System.RuntimeType::IsDelegate()[OptimizedTier1] +00007FA12ED28B90 8b class System.Array [System.Private.CoreLib] System.Array::CreateInstance(class System.Type,int32)[OptimizedTier1] +00007FA12ED28C30 5e instance class System.Reflection.ParameterInfo[] [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::GetIndexParameters()[OptimizedTier1] +00007FA12ED28CC0 1ed instance class System.Reflection.ParameterInfo[] [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::GetIndexParametersNoCopy()[OptimizedTier1] +00007FA12EDE8498 18 stub<19302> AllocateTemporaryEntryPoints +00007FA12EDE84B0 18 stub<19303> AllocateTemporaryEntryPoints +00007FA12ED28EE0 390 instance valuetype System.RuntimeType/ListBuilder`1 [System.Private.CoreLib] System.RuntimeType::GetPropertyCandidates(string,valuetype System.Reflection.BindingFlags,class System.Type[],bool)[OptimizedTier1] +00007FA12ED292A0 26 instance class System.Reflection.RuntimeMethodInfo [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::GetSetMethod(bool)[OptimizedTier1] +00007FA12EDE84C8 18 stub<19304> AllocateTemporaryEntryPoints +00007FA12EDE84E0 18 stub<19305> AllocateTemporaryEntryPoints +00007FA12EDE84F8 18 stub<19306> AllocateTemporaryEntryPoints +00007FA12EDE8510 18 stub<19307> AllocateTemporaryEntryPoints +00007FA12EDE8528 18 stub<19308> AllocateTemporaryEntryPoints +00007FA12ED292E0 650 instance void [System.Private.CoreLib] System.Reflection.MethodBase::CheckArguments(valuetype System.Span`1,native int*,valuetype System.Span`1,valuetype System.ReadOnlySpan`1,class System.RuntimeType[],class System.Reflection.Binder,class System.Globalization.CultureInfo,valuetype System.Reflection.BindingFlags)[OptimizedTier1] +00007FA12ED29950 234 instance class System.Reflection.PropertyInfo [System.Private.CoreLib] System.RuntimeType::GetPropertyImpl(string,valuetype System.Reflection.BindingFlags,class System.Reflection.Binder,class System.Type,class System.Type[],valuetype System.Reflection.ParameterModifier[])[OptimizedTier1] +00007FA12ED29BB0 16 instance object [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory+<>c::b__16_0(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED29BE0 e class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey]::get_Default()[OptimizedTier1] +00007FA12ED29C00 2f instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey]::Equals(!0,!0)[OptimizedTier1] +00007FA12ED29C50 32 instance bool [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey::Equals(valuetype Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey)[OptimizedTier1] +00007FA12EDE8540 18 stub<19309> AllocateTemporaryEntryPoints +00007FA12EDE8558 18 stub<19310> AllocateTemporaryEntryPoints +00007FA12ED29CA0 274 instance class System.Reflection.RuntimeConstructorInfo[] [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::PopulateConstructors(valuetype System.RuntimeType/RuntimeTypeCache/Filter)[OptimizedTier1] +00007FA12EDE8570 18 stub<19311> AllocateTemporaryEntryPoints +00007FA12ED29F40 20b instance object [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope::CaptureDisposable(object)[OptimizedTier1] +00007FA12ED2A180 4 instance valuetype System.Reflection.MethodAttributes [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::get_Attributes()[OptimizedTier1] +00007FA12ED2A1A0 8f instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.__Canon]::Equals(!0,!0)[OptimizedTier1] +00007FA12ED2A250 505 void [System.Private.CoreLib] System.Array::Copy(class System.Array,int32,class System.Array,int32,int32,bool)[OptimizedTier1] +00007FA12ED2A780 c7 instance void [System.Private.CoreLib] System.Array::CopyTo(class System.Array,int32)[OptimizedTier1] +00007FA12EDE8588 18 stub<19312> AllocateTemporaryEntryPoints +00007FA12ED2A860 c7 instance string [System.Private.CoreLib] System.RuntimeTypeHandle::ConstructName(valuetype System.TypeNameFormatFlags)[OptimizedTier1] +00007FA12ED2A950 25 instance void [System.Private.CoreLib] System.ValueTuple`2[System.__Canon,System.__Canon]::.ctor(!0,!1)[OptimizedTier1] +00007FA12EDE85A0 18 stub<19313> AllocateTemporaryEntryPoints +00007FA12EDE85B8 300 stub<19314> AllocateTemporaryEntryPoints +00007FA12EDE88B8 78 stub<19315> AllocateTemporaryEntryPoints +00007FA12EDE8930 a8 stub<19316> AllocateTemporaryEntryPoints +00007FA12EDE89D8 18 stub<19317> AllocateTemporaryEntryPoints +00007FA12EDE89F0 18 stub<19318> AllocateTemporaryEntryPoints +00007FA12EDE8A08 18 stub<19319> AllocateTemporaryEntryPoints +00007FA12EDE8A20 60 stub<19320> AllocateTemporaryEntryPoints +00007FA12ED2A9A0 158 instance class System.Collections.Generic.IList`1 [System.Private.CoreLib] System.Reflection.RuntimeCustomAttributeData::get_ConstructorArguments()[OptimizedTier1] +00007FA12ED2AB20 4 instance valuetype Microsoft.Extensions.DependencyInjection.ServiceLifetime [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ServiceDescriptor::get_Lifetime()[OptimizedTier1] +00007FA12ED2AB40 5c instance void [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ResultCache::.ctor(valuetype [Microsoft.Extensions.DependencyInjection.Abstractions]Microsoft.Extensions.DependencyInjection.ServiceLifetime,class [System.Runtime]System.Type,int32)[OptimizedTier1] +00007FA12ED2ABE0 2aa instance class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite[] [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory::CreateArgumentCallSites(class [System.Runtime]System.Type,class Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain,class [System.Runtime]System.Reflection.ParameterInfo[],bool)[OptimizedTier1] +00007FA12EDE8A80 18 stub<19321> AllocateTemporaryEntryPoints +00007FA12EDE8A98 18 stub<19322> AllocateTemporaryEntryPoints +00007FA12EDE8AB0 2b8 stub<19323> AllocateTemporaryEntryPoints +00007FA12EDE8D68 180 stub<19324> AllocateTemporaryEntryPoints +00007FA12EDE8EE8 30 stub<19325> AllocateTemporaryEntryPoints +00007FA12ED2AEC0 75a instance class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory::CreateConstructorCallSite(valuetype Microsoft.Extensions.DependencyInjection.ServiceLookup.ResultCache,class [System.Runtime]System.Type,class [System.Runtime]System.Type,class Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain)[OptimizedTier1] +00007FA12ED2B660 29f instance class System.Reflection.ConstructorInfo[] [System.Private.CoreLib] System.Type::GetConstructors()[OptimizedTier1] +00007FA12ED2B920 5 instance class [System.Runtime]System.Func`2 [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ServiceDescriptor::get_ImplementationFactory()[OptimizedTier1] +00007FA12ED2B940 e6 instance void [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ConstructorCallSite::.ctor(valuetype Microsoft.Extensions.DependencyInjection.ServiceLookup.ResultCache,class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.ConstructorInfo,class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite[])[OptimizedTier1] +00007FA12ED2BA50 5 instance object [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ServiceDescriptor::get_ImplementationInstance()[OptimizedTier1] +00007FA12EDE8F18 18 stub<19326> AllocateTemporaryEntryPoints +00007FA12ED2BA80 d6 instance object [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver::VisitConstructor(class Microsoft.Extensions.DependencyInjection.ServiceLookup.ConstructorCallSite,valuetype Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext)[OptimizedTier1] +00007FA12ED2BB80 469 instance object [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::Invoke(valuetype System.Reflection.BindingFlags,class System.Reflection.Binder,object[],class System.Globalization.CultureInfo)[OptimizedTier1] +00007FA12ED2C020 138 instance void [System.Private.CoreLib] System.Reflection.ConstructorInvoker::.ctor(class System.Reflection.RuntimeConstructorInfo)[OptimizedTier1] +00007FA12ED2C180 390 valuetype System.Reflection.InvocationFlags [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::ComputeAndUpdateInvocationFlags(class System.Reflection.ConstructorInfo,valuetype System.Reflection.InvocationFlags&)[OptimizedTier1] +00007FA12ED2C530 144 instance object [System.Private.CoreLib] System.Reflection.ConstructorInvoker::Invoke(object,native int*,valuetype System.Reflection.BindingFlags)[OptimizedTier1] +00007FA12ED2C6B0 1d instance !0 [Microsoft.Extensions.Options] Microsoft.Extensions.Options.OptionsMonitor`1[System.__Canon]::get_CurrentValue()[OptimizedTier1] +00007FA12EDE8F30 30 stub<19327> AllocateTemporaryEntryPoints +00007FA12EDE8F60 30 stub<19328> AllocateTemporaryEntryPoints +00007FA12EDEA000 a8 stub<19329> AllocateTemporaryEntryPoints +00007FA12EDEA0A8 60 stub<19330> AllocateTemporaryEntryPoints +00007FA12EDEA108 48 stub<19331> AllocateTemporaryEntryPoints +00007FA12EDEA150 18 stub<19332> AllocateTemporaryEntryPoints +00007FA12EDEA168 18 stub<19333> AllocateTemporaryEntryPoints +00007FA12EDEA180 18 stub<19334> AllocateTemporaryEntryPoints +00007FA12EDEA198 18 stub<19335> AllocateTemporaryEntryPoints +00007FA12EDEA1B0 60 stub<19336> AllocateTemporaryEntryPoints +00007FA12EDEA210 30 stub<19337> AllocateTemporaryEntryPoints +00007FA12EDEA240 60 stub<19338> AllocateTemporaryEntryPoints +00007FA12ED2C6F0 2fc instance !0 [Microsoft.Extensions.Options] Microsoft.Extensions.Options.OptionsMonitor`1[System.__Canon]::Get(string)[OptimizedTier1] +00007FA12EDEA2A0 30 stub<19339> AllocateTemporaryEntryPoints +00007FA12EDEA2D0 30 stub<19340> AllocateTemporaryEntryPoints +00007FA12EDEA300 48 stub<19341> AllocateTemporaryEntryPoints +00007FA12EDEA348 60 stub<19342> AllocateTemporaryEntryPoints +00007FA12EDEA3A8 2a0 stub<19343> AllocateTemporaryEntryPoints +00007FA12EDEA648 18 stub<19344> AllocateTemporaryEntryPoints +00007FA12EDEA660 18 stub<19345> AllocateTemporaryEntryPoints +00007FA12EDEA678 18 stub<19346> AllocateTemporaryEntryPoints +00007FA12EDEA690 228 stub<19347> AllocateTemporaryEntryPoints +00007FA12EDEA8B8 18 stub<19348> AllocateTemporaryEntryPoints +00007FA12EDEA8D0 18 stub<19349> AllocateTemporaryEntryPoints +00007FA12EDEA8E8 60 stub<19350> AllocateTemporaryEntryPoints +00007FA12EDEA948 30 stub<19351> AllocateTemporaryEntryPoints +00007FA12EDEA978 60 stub<19352> AllocateTemporaryEntryPoints +00007FA12ED2CA10 311 instance !0 [Microsoft.Extensions.Options] Microsoft.Extensions.Options.OptionsCache`1[System.__Canon]::GetOrAdd(string,class [System.Runtime]System.Func`3,!!0)[OptimizedTier1] +00007FA12ED2CD50 136 instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::GetOrAdd(!0,class [System.Private.CoreLib]System.Func`3,!!0)[OptimizedTier1] +00007FA12ED2CEB0 12 instance !0 [System.Private.CoreLib] System.Lazy`1[System.__Canon]::get_Value()[OptimizedTier1] +00007FA12ED2CEE0 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.Extensions.Logging.LoggerFactory+ProviderRegistration]::get_Count()[OptimizedTier1] +00007FA12ED2CF00 be instance !0[] [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::ToArray()[OptimizedTier1] +00007FA12ED2CFE0 50 instance bool [System.Private.CoreLib] System.Diagnostics.Tracing.EventSource::IsEnabled(valuetype System.Diagnostics.Tracing.EventLevel,valuetype System.Diagnostics.Tracing.EventKeywords)[OptimizedTier1] +00007FA12EDEA9D8 18 stub<19353> AllocateTemporaryEntryPoints +00007FA12EDEA9F0 18 stub<19354> AllocateTemporaryEntryPoints +00007FA12ED2D060 348 instance valuetype System.RuntimeType/ListBuilder`1 [System.Private.CoreLib] System.RuntimeType::GetFieldCandidates(string,valuetype System.Reflection.BindingFlags,bool)[OptimizedTier1] +00007FA12ED2D3D0 46 instance valuetype System.Collections.Generic.List`1/Enumerator [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::GetEnumerator()[OptimizedTier1] +00007FA12ED2D440 4 instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]::get_Key()[OptimizedTier1] +00007FA12ED2D460 111 instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::InternalAddRuntimeType(class System.Type)[OptimizedTier1] +00007FA12ED2D590 6d instance !1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::get_Item(!0)[OptimizedTier1] +00007FA12ED2D620 68 int32 [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterProviderExtensions::IndexOf(class System.Linq.Expressions.IParameterProvider,class System.Linq.Expressions.ParameterExpression)[OptimizedTier1] +00007FA12ED2D6B0 12 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::Add(!0,!1)[OptimizedTier1] +00007FA12ED2D6E0 8b instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.Int32]::MoveNext()[OptimizedTier1] +00007FA12ED2D7A0 78 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection+Enumerator[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12ED2D830 46 bool [System.Private.CoreLib] System.Reflection.MethodInfo::op_Inequality(class System.Reflection.MethodInfo,class System.Reflection.MethodInfo)[OptimizedTier1] +00007FA12ED2D890 3b instance bool [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::CacheEquals(object)[OptimizedTier1] +00007FA12EDEC000 630 stub<19355> AllocateTemporaryEntryPoints +00007FA12ED2D8E0 6a8 instance class System.Type [System.Private.CoreLib] System.RuntimeType::MakeGenericType(class System.Type[])[OptimizedTier1] +00007FA12ED2DFE0 1d5 instance class System.RuntimeType[] [System.Private.CoreLib] System.RuntimeType::GetGenericArgumentsInternal()[OptimizedTier1] +00007FA12EDEC630 60 stub<19356> AllocateTemporaryEntryPoints +00007FA12EDEC690 18 stub<19357> AllocateTemporaryEntryPoints +00007FA12ED2E1E0 181 instance void [System.Private.CoreLib] System.Reflection.CerHashtable`2+Table[System.__Canon,System.__Canon]::Insert(!0,!1)[OptimizedTier1] +00007FA12ED2E390 15 instance class System.Reflection.MethodInfo [System.Private.CoreLib] System.Reflection.PropertyInfo::get_SetMethod()[OptimizedTier1] +00007FA12ED2E3C0 f0 instance bool [System.Private.CoreLib] System.Reflection.RuntimePropertyInfo::IsDefined(class System.Type,bool)[OptimizedTier1] +00007FA12ED2E4E0 613 instance object [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::Invoke(object,valuetype System.Reflection.BindingFlags,class System.Reflection.Binder,object[],class System.Globalization.CultureInfo)[OptimizedTier1] +00007FA12ED2EB20 13c instance void [System.Private.CoreLib] System.Reflection.MethodBase::ValidateInvokeTarget(object)[OptimizedTier1] +00007FA12ED2EC80 101 instance object [System.Private.CoreLib] System.Reflection.MethodInvoker::Invoke(object,native int*,valuetype System.Reflection.BindingFlags)[OptimizedTier1] +00007FA12ED2EDC0 86 instance bool [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.PropertyActivator`1+<>c__DisplayClass9_0[System.__Canon]::b__0(class [System.Runtime]System.Reflection.PropertyInfo)[OptimizedTier1] +00007FA12ED2EE60 b bool [System.Private.CoreLib] System.Reflection.CustomAttributeExtensions::IsDefined(class System.Reflection.MemberInfo,class System.Type)[OptimizedTier1] +00007FA12ED2EE80 2f6 bool [System.Private.CoreLib] System.Attribute::IsDefined(class System.Reflection.MemberInfo,class System.Type,bool)[OptimizedTier1] +00007FA12ED2F1A0 f2 bool [System.Private.CoreLib] System.Attribute::InternalIsDefined(class System.Reflection.PropertyInfo,class System.Type,bool)[OptimizedTier1] +00007FA12ED2F2C0 e6 class System.Type[] [System.Private.CoreLib] System.Attribute::GetIndexParameterTypes(class System.Reflection.PropertyInfo)[OptimizedTier1] +00007FA12ED2F3D0 191 class System.Reflection.PropertyInfo [System.Private.CoreLib] System.Attribute::GetParentDefinition(class System.Reflection.PropertyInfo,class System.Type[])[OptimizedTier1] +00007FA12ED2F590 db instance class System.Reflection.RuntimeMethodInfo [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::GetParentDefinition()[OptimizedTier1] +00007FA12ED2F6A0 18f void [System.Private.CoreLib] System.RuntimeType::SanityCheckGenericArguments(class System.RuntimeType[],class System.RuntimeType[])[OptimizedTier1] +00007FA12ED2F850 1a4 instance class System.Delegate [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::CreateDelegateInternal(class System.Type,object,valuetype System.DelegateBindingFlags)[OptimizedTier1] +00007FA12ED2FA10 86 instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::Emit(valuetype System.Reflection.Emit.OpCode)[OptimizedTier1] +00007FA12ED2FAB0 2a6 instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,class System.Type)[OptimizedTier1] +00007FA12ED2FD80 83 instance int32 [System.Private.CoreLib] System.Reflection.Emit.DynamicScope::GetTokenFor(valuetype System.RuntimeTypeHandle)[OptimizedTier1] +00007FA12ED2FE20 661 instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,int32)[OptimizedTier1] +00007FA12ED304E0 168 instance int32 [System.Private.CoreLib] System.Reflection.Emit.DynamicScope::GetTokenFor(valuetype System.RuntimeMethodHandle)[OptimizedTier1] +00007FA12ED30670 786 instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,class System.Reflection.MethodInfo)[OptimizedTier1] +00007FA12ED30E20 11d native uint [System.Private.CoreLib] System.Text.ASCIIUtility::NarrowUtf16ToAscii(char*,uint8*,native uint)[OptimizedTier1] +00007FA12EDEC6A8 18 stub<19358> AllocateTemporaryEntryPoints +00007FA12EDEC6C0 18 stub<19359> AllocateTemporaryEntryPoints +00007FA12EDEC6D8 78 stub<19360> AllocateTemporaryEntryPoints +00007FA12EDEC750 18 stub<19361> AllocateTemporaryEntryPoints +00007FA12EDEC768 18 stub<19362> AllocateTemporaryEntryPoints +00007FA12EDEC780 18 stub<19363> AllocateTemporaryEntryPoints +00007FA12EDEC798 18 stub<19364> AllocateTemporaryEntryPoints +00007FA12EDEC7B0 18 stub<19365> AllocateTemporaryEntryPoints +00007FA12EDEC7C8 18 stub<19366> AllocateTemporaryEntryPoints +00007FA12ED30F60 5b6 valuetype System.Buffers.OperationStatus [System.Private.CoreLib] System.Text.Unicode.Utf8Utility::TranscodeToUtf8(char*,int32,uint8*,int32,char*&,uint8*&)[OptimizedTier1] +00007FA12ED31550 4dd instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,class System.Reflection.Emit.LocalBuilder)[OptimizedTier1] +00007FA12ED31A70 369 instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,class System.Reflection.FieldInfo)[OptimizedTier1] +00007FA12ED31E00 97 instance int32 [System.Private.CoreLib] System.Reflection.Emit.DynamicScope::GetTokenFor(valuetype System.RuntimeFieldHandle,valuetype System.RuntimeTypeHandle)[OptimizedTier1] +00007FA12ED31EC0 14 bool [System.Private.CoreLib] System.String::EqualsOrdinalIgnoreCaseNoLengthCheck(string,string)[OptimizedTier1] +00007FA12ED31EF0 35 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.MemoryExtensions::AsSpan(string,int32,int32)[OptimizedTier1] +00007FA12E672180 18 stub<19367> GenerateLookupStub +00007FA12ED31F40 18 instance bool [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.IsEnabled(valuetype Microsoft.Extensions.Logging.LogLevel)[OptimizedTier1] +00007FA12ED31F80 c1 instance bool [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::IsEnabled(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel)[OptimizedTier1] +00007FA12ED32070 2d instance int32 [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::GetHashCode()[OptimizedTier1] +00007FA12EDEC7E0 18 stub<19368> AllocateTemporaryEntryPoints +00007FA12ED320C0 484 instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::Init(string,valuetype System.Reflection.MethodAttributes,valuetype System.Reflection.CallingConventions,class System.Type,class System.Type[],class System.Type,class System.Reflection.Module,bool,bool)[OptimizedTier1] +00007FA12ED32570 149 void [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::CheckConsistency(valuetype System.Reflection.MethodAttributes,valuetype System.Reflection.CallingConventions)[OptimizedTier1] +00007FA12ED326E0 59b instance class System.Reflection.Emit.ILGenerator [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::GetILGenerator(int32)[OptimizedTier1] +00007FA12ED32CA0 23a class System.Reflection.Emit.SignatureHelper [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::GetMethodSigHelper(class System.Reflection.Module,valuetype System.Reflection.CallingConventions,int32,class System.Type,class System.Type[],class System.Type[],class System.Type[],class System.Type[][],class System.Type[][])[OptimizedTier1] +00007FA12ED32F00 2ed instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::AddArguments(class System.Type[],class System.Type[][],class System.Type[][])[OptimizedTier1] +00007FA12ED33210 c2 instance uint8[] [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::GetSignature(bool)[OptimizedTier1] +00007FA12ED332F0 128 instance void [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::SetNumberOfSignatureElements(bool)[OptimizedTier1] +00007FA12ED33440 196 instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::.ctor(class System.Reflection.MethodInfo,int32)[OptimizedTier1] +00007FA12ED33600 7d instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicScope::.ctor()[OptimizedTier1] +00007FA12ED336A0 58 instance int32 [System.Private.CoreLib] System.Reflection.Emit.DynamicScope::GetTokenFor(uint8[])[OptimizedTier1] +00007FA12ED33710 3 instance int32 [System.Linq.Expressions] System.Linq.Expressions.Expression0`1[System.__Canon]::get_ParameterCount()[OptimizedTier1] +00007FA12ED33730 1b6 instance class System.Delegate [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::CreateDelegate(class System.Type,object)[OptimizedTier1] +00007FA12ED33910 253 instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicILGenerator::GetCallableMethod(class System.Reflection.RuntimeModule,class System.Reflection.Emit.DynamicMethod)[OptimizedTier1] +00007FA12ED33B90 b3 instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicResolver::.ctor(class System.Reflection.Emit.DynamicILGenerator)[OptimizedTier1] +00007FA12ED33C60 1e instance int32 [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::GetMaxStackSize()[OptimizedTier1] +00007FA12ED33CA0 9c instance class System.Reflection.Emit.__ExceptionInfo[] [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::GetExceptions()[OptimizedTier1] +00007FA12ED33D60 28e instance uint8[] [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::BakeByteArray()[OptimizedTier1] +00007FA12ED34010 1a5 instance uint8[] [System.Private.CoreLib] System.Reflection.Emit.SignatureHelper::InternalGetSignatureArray()[OptimizedTier1] +00007FA12ED341E0 263 class System.Delegate [System.Private.CoreLib] System.Delegate::CreateDelegateNoSecurityCheck(class System.Type,object,valuetype System.RuntimeMethodHandle)[OptimizedTier1] +00007FA12ED34470 5 instance valuetype System.RuntimeMethodHandleInternal [System.Private.CoreLib] System.RuntimeMethodInfoStub::System.IRuntimeMethodInfo.get_Value()[OptimizedTier1] +00007FA12ED34490 3d instance void [System.Private.CoreLib] System.MulticastDelegate::StoreDynamicMethod(class System.Reflection.MethodInfo)[OptimizedTier1] +00007FA12ED344F0 b5 instance void [System.Private.CoreLib] System.HashCode::Add(int32)[OptimizedTier1] +00007FA12ED345C0 e class System.StringComparer [System.Private.CoreLib] System.StringComparer::get_Ordinal()[OptimizedTier1] +00007FA12ED345E0 11 instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::Add(!0)[OptimizedTier1] +00007FA12ED34620 415 instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::AddIfNotPresent(!0,int32&)[OptimizedTier1] +00007FA12ED34A60 15 uint64 [System.Private.CoreLib] System.Collections.HashHelpers::GetFastModMultiplier(uint32)[OptimizedTier1] +00007FA12ED34A90 ac instance class System.Linq.Expressions.ParameterExpression [System.Linq.Expressions] System.Linq.Expressions.Expression2`1[System.__Canon]::GetParameter(int32)[OptimizedTier1] +00007FA12ED34B60 6 instance int32 [System.Linq.Expressions] System.Linq.Expressions.Expression2`1[System.__Canon]::get_ParameterCount()[OptimizedTier1] +00007FA12ED34B80 a3 bool [System.Linq.Expressions] System.Dynamic.Utils.TypeUtils::IsConvertible(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EDEC7F8 60 stub<19369> AllocateTemporaryEntryPoints +00007FA12EDEC858 18 stub<19370> AllocateTemporaryEntryPoints +00007FA12ED34C40 c instance void [System.Private.CoreLib] System.SZArrayHelper::CopyTo(!!0[],int32)[OptimizedTier1] +00007FA12ED34C60 3 instance bool [System.Linq.Expressions] System.Linq.Expressions.ParameterExpression::GetIsByRef()[OptimizedTier1] +00007FA12ED34C80 c int32 [System.Private.CoreLib] System.Threading.Interlocked::Increment(int32&)[OptimizedTier1] +00007FA12ED34CA0 4 !!0 [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::ReadUnaligned(void*)[OptimizedTier1] +00007FA12ED34CC0 26 int32 [System.Private.CoreLib] System.Collections.HashHelpers::ExpandPrime(int32)[OptimizedTier1] +00007FA12EDEC870 d8 stub<19371> AllocateTemporaryEntryPoints +00007FA12EDEC948 48 stub<19372> AllocateTemporaryEntryPoints +00007FA12ED34D00 2d8 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Where(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12ED35000 11f class System.AttributeUsageAttribute [System.Private.CoreLib] System.Attribute::InternalGetAttributeUsage(class System.Type)[OptimizedTier1] +00007FA12ED35140 8 instance void [System.Private.CoreLib] System.AttributeUsageAttribute::.ctor(valuetype System.AttributeTargets)[OptimizedTier1] +00007FA12ED35160 5 instance void [System.Private.CoreLib] System.AttributeUsageAttribute::set_AllowMultiple(bool)[OptimizedTier1] +00007FA12ED35180 5 instance void [System.Private.CoreLib] System.AttributeUsageAttribute::set_Inherited(bool)[OptimizedTier1] +00007FA12ED351A0 4 instance class Microsoft.AspNetCore.Http.Features.IFeatureCollection [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::get_Collection()[OptimizedTier1] +00007FA12ED351C0 134 instance uint8[] [System.Private.CoreLib] System.Reflection.Emit.DynamicResolver::GetCodeInfo(int32&,int32&,int32&)[OptimizedTier1] +00007FA12ED35320 2a int32 [System.Private.CoreLib] System.Reflection.Emit.DynamicResolver::CalculateNumberOfExceptions(class System.Reflection.Emit.__ExceptionInfo[])[OptimizedTier1] +00007FA12ED35360 5 instance uint8[] [System.Private.CoreLib] System.Reflection.Emit.DynamicResolver::GetLocalsSignature()[OptimizedTier1] +00007FA12ED35380 5 instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.TypedParameterExpression::get_Type()[OptimizedTier1] +00007FA12ED353A0 6 instance valuetype System.Linq.Expressions.ExpressionType [System.Linq.Expressions] System.Linq.Expressions.ConstantExpression::get_NodeType()[OptimizedTier1] +00007FA12ED353C0 8 instance string [System.Private.CoreLib] System.Int32::ToString()[OptimizedTier1] +00007FA12EDEC990 150 stub<19373> AllocateTemporaryEntryPoints +00007FA12ED353E0 136 string [System.Private.CoreLib] System.Number::Int32ToDecStr(int32)[OptimizedTier1] +00007FA12ED35540 111 string [System.Private.CoreLib] System.Number::UInt32ToDecStr(uint32)[OptimizedTier1] +00007FA12EDECAE0 18 stub<19374> AllocateTemporaryEntryPoints +00007FA12EDECAF8 18 stub<19375> AllocateTemporaryEntryPoints +00007FA12EDECB10 18 stub<19376> AllocateTemporaryEntryPoints +00007FA12EDECB28 18 stub<19377> AllocateTemporaryEntryPoints +00007FA12EDECB40 18 stub<19378> AllocateTemporaryEntryPoints +00007FA12EDECB58 270 stub<19379> AllocateTemporaryEntryPoints +00007FA12EDECDC8 18 stub<19380> AllocateTemporaryEntryPoints +00007FA12EDECDE0 18 stub<19381> AllocateTemporaryEntryPoints +00007FA12ED35680 1303 instance void [System.Private.CoreLib] System.Reflection.RuntimeCustomAttributeData::.ctor(class System.Reflection.RuntimeModule,valuetype System.Reflection.MetadataToken,valuetype System.Reflection.ConstArray&)[OptimizedTier1] +00007FA12ED369D0 5b class System.Reflection.MethodBase [System.Private.CoreLib] System.RuntimeType::GetMethodBase(class System.Reflection.RuntimeModule,int32)[OptimizedTier1] +00007FA12ED36A50 46 class System.Reflection.MethodBase [System.Private.CoreLib] System.RuntimeType::GetMethodBase(class System.RuntimeType,class System.IRuntimeMethodInfo)[OptimizedTier1] +00007FA12ED36AB0 79 void [System.Private.CoreLib] System.Reflection.CustomAttributeEncodedArgument::ParseAttributeArguments(valuetype System.Reflection.ConstArray,valuetype System.Reflection.CustomAttributeCtorParameter[]&,valuetype System.Reflection.CustomAttributeNamedParameter[]&,class System.Reflection.RuntimeModule)[OptimizedTier1] +00007FA12ED36B40 56 instance !0 [System.Private.CoreLib] System.Collections.ObjectModel.ReadOnlyCollection`1[System.__Canon]::System.Collections.Generic.IList.get_Item(int32)[OptimizedTier1] +00007FA12ED36BC0 58 instance class System.Type [System.Private.CoreLib] System.Reflection.CustomAttributeData::get_AttributeType()[OptimizedTier1] +00007FA12ED36C30 46 bool [System.Private.CoreLib] System.Reflection.ConstructorInfo::op_Inequality(class System.Reflection.ConstructorInfo,class System.Reflection.ConstructorInfo)[OptimizedTier1] +00007FA12ED36C90 341 class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Dynamic.Utils.ExpressionUtils::ValidateOneArgument(class [System.Runtime]System.Reflection.MethodBase,valuetype System.Linq.Expressions.ExpressionType,class System.Linq.Expressions.Expression,class [System.Runtime]System.Reflection.ParameterInfo,string,string,int32)[OptimizedTier1] +00007FA12ED37000 81 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller+ChildRewriter::Add(class System.Linq.Expressions.Expression)[OptimizedTier1] +00007FA12ED370A0 8d instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.MethodCallExpression4::GetArgument(int32)[OptimizedTier1] +00007FA12ED37160 d4 instance bool [System.Private.CoreLib] System.RuntimeType::get_IsCollectible()[OptimizedTier1] +00007FA12EDECDF8 18 stub<19382> AllocateTemporaryEntryPoints +00007FA12EDECE10 18 stub<19383> AllocateTemporaryEntryPoints +00007FA12ED37260 16c instance void [System.Linq.Expressions] System.Dynamic.Utils.CacheDict`2[System.__Canon,System.__Canon]::Add(!0,!1)[OptimizedTier1] +00007FA12ED373F0 22 instance object [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver::Resolve(class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite,class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope)[OptimizedTier1] +00007FA12ED37440 314 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::Resize(int32,bool)[OptimizedTier1] +00007FA12ED37780 7 instance int32 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IFeatureCollection.get_Revision()[OptimizedTier1] +00007FA12ED377A0 5 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ActionContext::get_HttpContext()[OptimizedTier1] +00007FA12ED377C0 c1 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::Fetch(!!0&,!!1,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12ED378B0 4 instance int32 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::get_Revision()[OptimizedTier1] +00007FA12ED378D0 2a instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.ConstantExpression::get_Type()[OptimizedTier1] +00007FA12ED37910 d9 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::.ctor(class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED37A10 5 instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.TypedConstantExpression::get_Type()[OptimizedTier1] +00007FA12ED37A30 5 instance bool [System.Private.CoreLib] System.RuntimeType::get_IsGenericParameter()[OptimizedTier1] +00007FA12ED37A50 76 instance class System.Collections.Generic.Dictionary`2/ValueCollection [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::get_Values()[OptimizedTier1] +00007FA12ED37AE0 1 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection+Enumerator[System.__Canon,System.__Canon]::Dispose()[OptimizedTier1] +00007FA12ED37B00 31 instance object [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope::GetService(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED37B50 81 instance object [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceProvider::GetService(class [System.Runtime]System.Type,class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope)[OptimizedTier1] +00007FA12ED37BF0 98 instance void [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.DependencyInjectionEventSource::ServiceResolved(class Microsoft.Extensions.DependencyInjection.ServiceProvider,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EDECE28 18 stub<19384> AllocateTemporaryEntryPoints +00007FA12EDECE40 18 stub<19385> AllocateTemporaryEntryPoints +00007FA12ED37CC0 1f7 instance class System.Type[] [System.Private.CoreLib] System.RuntimeType::GetGenericArguments()[OptimizedTier1] +00007FA12ED37EE0 c3 instance class System.Type[] [System.Private.CoreLib] System.RuntimeTypeHandle::GetInstantiationPublic()[OptimizedTier1] +00007FA12ED37FD0 34 bool [System.Private.CoreLib] System.Reflection.Emit.OpCodes::TakesSingleByteArgument(valuetype System.Reflection.Emit.OpCode)[OptimizedTier1] +00007FA12ED38020 e3 instance object[] [System.Private.CoreLib] System.Reflection.RuntimeParameterInfo::GetCustomAttributes(class System.Type,bool)[OptimizedTier1] +00007FA12ED38120 84 object[] [System.Private.CoreLib] System.Reflection.CustomAttribute::GetCustomAttributes(class System.Reflection.RuntimeParameterInfo,class System.RuntimeType)[OptimizedTier1] +00007FA12ED381C0 1d6 void [System.Private.CoreLib] System.Reflection.PseudoCustomAttribute::GetCustomAttributes(class System.Reflection.RuntimeParameterInfo,class System.RuntimeType,valuetype System.RuntimeType/ListBuilder`1&)[OptimizedTier1] +00007FA12ED383C0 87 instance class System.Reflection.RuntimeModule [System.Private.CoreLib] System.Reflection.RuntimeParameterInfo::GetRuntimeModule()[OptimizedTier1] +00007FA12ED38460 8 instance valuetype System.Reflection.MethodAttributes [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::get_Attributes()[OptimizedTier1] +00007FA12ED38480 a5 object [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::IsInstance_Helper(void*,object)[OptimizedTier1] +00007FA12ED38540 1b4 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12ED38720 5 instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]::get_Value()[OptimizedTier1] +00007FA12ED38740 25 instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]::.ctor(!0,!1)[OptimizedTier1] +00007FA12ED38780 61 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::TryAdd(!0,!1)[OptimizedTier1] +00007FA12ED38800 5 instance class Microsoft.AspNetCore.Http.EndpointMetadataCollection [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.Endpoint::get_Metadata()[OptimizedTier1] +00007FA12EDECE58 18 stub<19386> AllocateTemporaryEntryPoints +00007FA12EDECE70 18 stub<19387> AllocateTemporaryEntryPoints +00007FA12EDECE88 60 stub<19388> AllocateTemporaryEntryPoints +00007FA12EDECEE8 18 stub<19389> AllocateTemporaryEntryPoints +00007FA12ED38820 e6 instance !!0 [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.EndpointMetadataCollection::GetMetadata()[OptimizedTier1] +00007FA12EDECF00 18 stub<19390> AllocateTemporaryEntryPoints +00007FA12ED38930 74 instance !!0 [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.EndpointMetadataCollection::GetMetadataSlow()[OptimizedTier1] +00007FA12EDEE000 6f0 stub<19391> AllocateTemporaryEntryPoints +00007FA12EDEE6F0 78 stub<19392> AllocateTemporaryEntryPoints +00007FA12EDEE768 a8 stub<19393> AllocateTemporaryEntryPoints +00007FA12EDEE810 18 stub<19394> AllocateTemporaryEntryPoints +00007FA12EDEE828 18 stub<19395> AllocateTemporaryEntryPoints +00007FA12EDEE840 18 stub<19396> AllocateTemporaryEntryPoints +00007FA12EDEE858 18 stub<19397> AllocateTemporaryEntryPoints +00007FA12ED389C0 165 instance !!0[] [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.EndpointMetadataCollection::GetOrderedMetadataSlow()[OptimizedTier1] +00007FA12EDEE870 318 stub<19398> AllocateTemporaryEntryPoints +00007FA12ED38B60 18b instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::Add(string,object)[OptimizedTier1] +00007FA12ED38D20 8f instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12ED38DD0 5 instance !0 [System.Linq] System.Linq.Enumerable+Iterator`1[System.__Canon]::get_Current()[OptimizedTier1] +00007FA12EDEEB88 270 stub<19399> AllocateTemporaryEntryPoints +00007FA12ED38DF0 80 instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary+Enumerator::MoveNext()[OptimizedTier1] +00007FA12ED38E90 8e instance bool [System.Linq] System.Linq.Enumerable+SelectArrayIterator`2[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12ED38F40 40 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Empty()[OptimizedTier1] +00007FA12ED38FA0 c instance valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2 [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary+Enumerator::get_Current()[OptimizedTier1] +00007FA12ED38FC0 cc instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::.ctor(int32)[OptimizedTier1] +00007FA12ED390B0 5e instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary+Enumerator::.ctor(class Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12ED39130 1 instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary+Enumerator::Dispose()[OptimizedTier1] +00007FA12ED39150 e class System.StringComparer [System.Private.CoreLib] System.StringComparer::get_OrdinalIgnoreCase()[OptimizedTier1] +00007FA12ED39170 3c instance int32 [System.Private.CoreLib] System.OrdinalIgnoreCaseComparer::GetHashCode(string)[OptimizedTier1] +00007FA12EDEEDF8 18 stub<19400> AllocateTemporaryEntryPoints +00007FA12ED391C0 ce int32 [System.Private.CoreLib] System.Marvin::ComputeHash32OrdinalIgnoreCase(char&,int32,uint32,uint32)[OptimizedTier1] +00007FA12ED392B0 8c instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::.ctor()[OptimizedTier1] +00007FA12ED39360 11 instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::Contains(!0)[OptimizedTier1] +00007FA12ED39390 c instance bool [System.Private.CoreLib] System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalIgnoreCaseComparer::Equals(string,string)[OptimizedTier1] +00007FA12ED393B0 3c bool [System.Private.CoreLib] System.String::EqualsOrdinalIgnoreCase(string,string)[OptimizedTier1] +00007FA12ED39400 c1 instance int32 [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::Initialize(int32)[OptimizedTier1] +00007FA12ED394E0 b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::.ctor(class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED39500 40 !!0[] [System.Private.CoreLib] System.Array::Empty()[OptimizedTier1] +00007FA12ED39560 7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::get_Count()[OptimizedTier1] +00007FA12ED39580 a4 instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary+Enumerator::MoveNextRare()[OptimizedTier1] +00007FA12ED39640 5 instance class System.Collections.Generic.IList`1 [System.Private.CoreLib] System.Collections.ObjectModel.ReadOnlyCollection`1[System.__Canon]::get_Items()[OptimizedTier1] +00007FA12EDEEE10 60 stub<19401> AllocateTemporaryEntryPoints +00007FA12ED39660 82 instance object [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.PropertyActivator`1[System.__Canon]::Activate(object,!0)[OptimizedTier1] +00007FA12EDEEE70 60 stub<19402> AllocateTemporaryEntryPoints +00007FA12ED39700 50 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.PropertyHelper::CallPropertySetter(class [System.Runtime]System.Action`2,object,object)[OptimizedTier1] +00007FA12EDEEED0 18 stub<19403> AllocateTemporaryEntryPoints +00007FA12EDEEEE8 18 stub<19404> AllocateTemporaryEntryPoints +00007FA12ED39770 78 !!0 [System.Private.CoreLib] System.Threading.LazyInitializer::EnsureInitialized(!!0&,bool&,object&,class System.Func`1)[OptimizedTier1] +00007FA12ED39820 110 instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::TryGetValue(string,object&)[OptimizedTier1] +00007FA12ED39950 8d instance valuetype Microsoft.AspNetCore.Routing.RouteValueDictionary/Enumerator [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::GetEnumerator()[OptimizedTier1] +00007FA12ED39A00 33 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::Clear()[OptimizedTier1] +00007FA12ED39A50 5 instance object [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceProvider+<>c__DisplayClass25_0::b__1(class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope)[OptimizedTier1] +00007FA12E6721A0 18 stub<19405> GenerateLookupStub +00007FA12ED39A70 a3 instance class [System.ComponentModel]System.IServiceProvider [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::get_RequestServices()[OptimizedTier1] +00007FA12E6721C0 18 stub<19406> GenerateLookupStub +00007FA12E6721E0 18 stub<19407> GenerateLookupStub +00007FA12ED39B40 7f instance class [System.ComponentModel]System.IServiceProvider [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.Features.RequestServicesFeature::get_RequestServices()[OptimizedTier1] +00007FA12ED39BE0 7 instance int32 [System.Private.CoreLib] System.Text.StringBuilder::get_Length()[OptimizedTier1] +00007FA12ED39C00 4 instance valuetype System.Runtime.CompilerServices.TaskAwaiter [System.Private.CoreLib] System.Threading.Tasks.Task::GetAwaiter()[OptimizedTier1] +00007FA12ED39C20 11 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.TaskAwaiter::get_IsCompleted()[OptimizedTier1] +00007FA12ED39C50 19 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.TaskAwaiter::GetResult()[OptimizedTier1] +00007FA12EDEEF00 60 stub<19408> AllocateTemporaryEntryPoints +00007FA12ED39C80 273 instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::EnsureCapacitySlow(int32)[OptimizedTier1] +00007FA12ED39F20 4 instance class Microsoft.AspNetCore.Http.Features.IFeatureCollection [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::get_Collection()[OptimizedTier1] +00007FA12E672200 18 stub<19409> GenerateLookupStub +00007FA12ED39F40 c6 string [System.Private.CoreLib] System.Convert::ToString(object,class System.IFormatProvider)[OptimizedTier1] +00007FA12ED3A020 85 instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::.ctor(string)[OptimizedTier1] +00007FA12E672220 18 stub<19410> GenerateLookupStub +00007FA12E672240 18 stub<19411> GenerateLookupStub +00007FA12ED3A0C0 c9 instance class Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPart [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Patterns.RoutePattern::GetParameter(string)[OptimizedTier1] +00007FA12ED3A1B0 e !!0 [System.Private.CoreLib] System.Threading.Interlocked::CompareExchange(!!0&,!!0,!!0)[OptimizedTier1] +00007FA12ED3A1E0 d1 instance string [System.Private.CoreLib] System.Text.StringBuilder::ToString()[OptimizedTier1] +00007FA12E672260 18 stub<19412> GenerateLookupStub +00007FA12ED3A2D0 a3 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::get_Items()[OptimizedTier1] +00007FA12EDEEF60 18 stub<19413> AllocateTemporaryEntryPoints +00007FA12ED3A3A0 6c instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::Fetch(!!0&,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12ED3A430 5 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.Features.ItemsFeature::get_Items()[OptimizedTier1] +00007FA12ED3A450 a1 instance class System.Collections.Generic.IEnumerator`1 [System.Private.CoreLib] System.SZArrayHelper::GetEnumerator()[OptimizedTier1] +00007FA12ED3A510 1 instance void [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.__Canon]::Dispose()[OptimizedTier1] +00007FA12ED3A530 1dc class System.Linq.Expressions.ParameterExpression [System.Linq.Expressions] System.Linq.Expressions.Expression::Parameter(class [System.Runtime]System.Type,string)[OptimizedTier1] +00007FA12ED3A730 1f7 void [System.Linq.Expressions] System.Linq.Expressions.Expression::Validate(class [System.Runtime]System.Type,bool)[OptimizedTier1] +00007FA12ED3A940 37b class System.Linq.Expressions.ParameterExpression [System.Linq.Expressions] System.Linq.Expressions.ParameterExpression::Make(class [System.Runtime]System.Type,string,bool)[OptimizedTier1] +00007FA12ED3AD30 8 class System.Linq.Expressions.UnaryExpression [System.Linq.Expressions] System.Linq.Expressions.Expression::Convert(class System.Linq.Expressions.Expression,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED3AD50 4a8 class System.Linq.Expressions.UnaryExpression [System.Linq.Expressions] System.Linq.Expressions.Expression::Convert(class System.Linq.Expressions.Expression,class [System.Runtime]System.Type,class [System.Runtime]System.Reflection.MethodInfo)[OptimizedTier1] +00007FA12ED3B220 215 bool [System.Linq.Expressions] System.Dynamic.Utils.TypeUtils::HasIdentityPrimitiveOrNullableConversionTo(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED3B460 14 instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.MethodCallExpression::get_Type()[OptimizedTier1] +00007FA12ED3B490 1a5 bool [System.Linq.Expressions] System.Dynamic.Utils.TypeUtils::HasReferenceConversionTo(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED3B660 6 instance valuetype System.Linq.Expressions.ExpressionType [System.Linq.Expressions] System.Linq.Expressions.MethodCallExpression::get_NodeType()[OptimizedTier1] +00007FA12ED3B680 af instance valuetype System.Linq.Expressions.Compiler.StackSpiller/Result [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller::RewriteUnaryExpression(class System.Linq.Expressions.Expression,valuetype System.Linq.Expressions.Compiler.StackSpiller/Stack)[OptimizedTier1] +00007FA12ED3B750 3 instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.MethodCallExpression::GetInstance()[OptimizedTier1] +00007FA12ED3B770 6 instance int32 [System.Linq.Expressions] System.Linq.Expressions.MethodCallExpression4::get_ArgumentCount()[OptimizedTier1] +00007FA12ED3B790 8b instance valuetype System.Linq.Expressions.Compiler.StackSpiller/Result [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller+ChildRewriter::Finish(class System.Linq.Expressions.Expression)[OptimizedTier1] +00007FA12ED3B840 15b instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller+ChildRewriter::EnsureDone()[OptimizedTier1] +00007FA12E672280 18 stub<19414> GenerateLookupStub +00007FA12E6722A0 18 stub<19415> GenerateLookupStub +00007FA12E6722C0 18 stub<19416> GenerateLookupStub +00007FA12E6722E0 18 stub<19417> GenerateLookupStub +00007FA12ED3B9C0 e6 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller+ChildRewriter::AddArguments(class System.Linq.Expressions.IArgumentProvider)[OptimizedTier1] +00007FA12ED3BAD0 12 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::Add(!0,!1)[OptimizedTier1] +00007FA12ED3BB00 44c instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12ED3BF70 192 instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.UnaryExpression::Accept(class System.Linq.Expressions.ExpressionVisitor)[OptimizedTier1] +00007FA12ED3C130 15c instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.Compiler.VariableBinder::VisitUnary(class System.Linq.Expressions.UnaryExpression)[OptimizedTier1] +00007FA12ED3C2C0 200 instance bool [System.Private.CoreLib] System.Type::get_IsVisible()[OptimizedTier1] +00007FA12ED3C4F0 2b instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.ParameterExpression::Accept(class System.Linq.Expressions.ExpressionVisitor)[OptimizedTier1] +00007FA12EDEEF78 30 stub<19418> AllocateTemporaryEntryPoints +00007FA12EDEEFA8 18 stub<19419> AllocateTemporaryEntryPoints +00007FA12EDEEFC0 18 stub<19420> AllocateTemporaryEntryPoints +00007FA12EE20000 5e8 stub<19421> AllocateTemporaryEntryPoints +00007FA12EE205E8 c0 stub<19422> AllocateTemporaryEntryPoints +00007FA12EE206A8 90 stub<19423> AllocateTemporaryEntryPoints +00007FA12EE20738 a8 stub<19424> AllocateTemporaryEntryPoints +00007FA12EE207E0 18 stub<19425> AllocateTemporaryEntryPoints +00007FA12EE207F8 78 stub<19426> AllocateTemporaryEntryPoints +00007FA12EE20870 18 stub<19427> AllocateTemporaryEntryPoints +00007FA12EE20888 18 stub<19428> AllocateTemporaryEntryPoints +00007FA12ED3C540 158 instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.Compiler.VariableBinder::VisitParameter(class System.Linq.Expressions.ParameterExpression)[OptimizedTier1] +00007FA12ED3C6E0 222 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.VariableBinder::Reference(class System.Linq.Expressions.ParameterExpression,valuetype System.Linq.Expressions.Compiler.VariableStorageKind)[OptimizedTier1] +00007FA12ED3C940 15 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::ContainsKey(!0)[OptimizedTier1] +00007FA12ED3C970 20 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Int32]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EE208A0 18 stub<19429> AllocateTemporaryEntryPoints +00007FA12EE208B8 18 stub<19430> AllocateTemporaryEntryPoints +00007FA12ED3C9C0 256 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Int32]::FindValue(!0)[OptimizedTier1] +00007FA12ED3CC40 12 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Int32]::set_Item(!0,!1)[OptimizedTier1] +00007FA1277CCAE0 20 stub<19431> GenerateDispatchStub +00007FA12ED3CC80 51d instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Int32]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12ED3D1C0 31 instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.ConstantExpression::Accept(class System.Linq.Expressions.ExpressionVisitor)[OptimizedTier1] +00007FA12EE208D0 18 stub<19432> AllocateTemporaryEntryPoints +00007FA12ED3D210 110 instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.Compiler.VariableBinder::VisitConstant(class System.Linq.Expressions.ConstantExpression)[OptimizedTier1] +00007FA12ED3D340 97 bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.ILGen::CanEmitConstant(object,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED3D3F0 4b bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.ILGen::CanEmitILConstant(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED3D460 1bc class System.Linq.Expressions.Expression[] [System.Linq.Expressions] System.Dynamic.Utils.ExpressionVisitorUtils::VisitArguments(class System.Linq.Expressions.ExpressionVisitor,class System.Linq.Expressions.IArgumentProvider)[OptimizedTier1] +00007FA12ED3D640 23 instance bool [System.Linq.Expressions] System.Linq.Expressions.ParameterExpression::get_IsByRef()[OptimizedTier1] +00007FA12EE208E8 18 stub<19433> AllocateTemporaryEntryPoints +00007FA12ED3D680 46 instance bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::b__22_0(class System.Linq.Expressions.ParameterExpression)[OptimizedTier1] +00007FA12ED3D6E0 68 instance int32 [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::GetLambdaArgument(int32)[OptimizedTier1] +00007FA12ED3D770 202 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitConvert(class System.Linq.Expressions.UnaryExpression,valuetype System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags)[OptimizedTier1] +00007FA12ED3D990 3cd void [System.Linq.Expressions] System.Linq.Expressions.Compiler.ILGen::EmitConvertToType(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,class [System.Runtime]System.Type,class [System.Runtime]System.Type,bool,class System.Linq.Expressions.Compiler.ILocalCache)[OptimizedTier1] +00007FA12ED3DD80 1ad void [System.Linq.Expressions] System.Linq.Expressions.Compiler.ILGen::EmitCastToType(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,class [System.Runtime]System.Type,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EE20900 3a8 stub<19434> AllocateTemporaryEntryPoints +00007FA12ED3DF50 bd instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitParameterExpression(class System.Linq.Expressions.Expression)[OptimizedTier1] +00007FA12EE20CA8 18 stub<19435> AllocateTemporaryEntryPoints +00007FA12E672300 18 stub<19436> GenerateLookupStub +00007FA12ED3E040 15a instance class System.Linq.Expressions.Compiler.CompilerScope/Storage [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::ResolveVariable(class System.Linq.Expressions.ParameterExpression,class System.Linq.Expressions.Compiler.HoistedLocals)[OptimizedTier1] +00007FA12ED3E1C0 23 void [System.Linq.Expressions] System.Linq.Expressions.Compiler.ILGen::EmitLoadArg(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,int32)[OptimizedTier1] +00007FA12ED3E200 bc instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitConstantExpression(class System.Linq.Expressions.Expression)[OptimizedTier1] +00007FA12ED3E2E0 22e bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.ILGen::TryEmitConstant(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,object,class [System.Runtime]System.Type,class System.Linq.Expressions.Compiler.ILocalCache)[OptimizedTier1] +00007FA12ED3E530 33a bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.ILGen::TryEmitILConstant(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,object,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EE20CC0 60 stub<19437> AllocateTemporaryEntryPoints +00007FA12ED3E8D0 3b instance bool [System.Linq] System.Linq.Utilities+<>c__DisplayClass1_0`1[System.__Canon]::b__0(!0)[OptimizedTier1] +00007FA12ED3E930 5d class System.IRuntimeMethodInfo [System.Private.CoreLib] System.RuntimeMethodHandle::EnsureNonNullMethodInfo(class System.IRuntimeMethodInfo)[OptimizedTier1] +00007FA12ED3E9B0 c6 instance class Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCallSite [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory::TryCreateOpenGeneric(class [System.Runtime]System.Type,class Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteChain)[OptimizedTier1] +00007FA12EE22000 540 stub<19438> AllocateTemporaryEntryPoints +00007FA12ED3EAA0 9a class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.Task::FromResult(!!0)[OptimizedTier1] +00007FA12ED3EB60 14 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task::get_IsCompletedSuccessfully()[OptimizedTier1] +00007FA12EE22540 18 stub<19439> AllocateTemporaryEntryPoints +00007FA12EE22558 18 stub<19440> AllocateTemporaryEntryPoints +00007FA12ED3EB90 53 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,!!1,int32,string)[QuickJitted] +00007FA12ED3EC00 f0 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,!!1,int32,string)[QuickJitted] +00007FA12ED3ED10 1f5 instance void [System.Private.CoreLib] System.String::CopyTo(int32,char[],int32,int32)[OptimizedTier1] +00007FA12ED3EF20 69 instance valuetype [System.Runtime]System.ArraySegment`1 [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::get_Data()[QuickJitted] +00007FA12780E080 18 stub<19441> GenerateResolveStub +00007FA1277CCB00 20 stub<19442> GenerateDispatchStub +00007FA12EE22588 18 stub<19443> AllocateTemporaryEntryPoints +00007FA12ED3EFA0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12EE225A0 18 stub<19444> AllocateTemporaryEntryPoints +00007FA12ED3EFF0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12EE225B8 d8 stub<19445> AllocateTemporaryEntryPoints +00007FA12EE22690 18 stub<19446> AllocateTemporaryEntryPoints +00007FA12ED3F050 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ED3F2C0 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::.ctor()[QuickJitted] +00007FA12EE226A8 18 stub<19447> AllocateTemporaryEntryPoints +00007FA12ED3F300 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12EE226C0 18 stub<19448> AllocateTemporaryEntryPoints +00007FA12ED3F350 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12EE226D8 d8 stub<19449> AllocateTemporaryEntryPoints +00007FA12EE227B0 18 stub<19450> AllocateTemporaryEntryPoints +00007FA12ED3F3B0 253 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ED3F620 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::.ctor()[QuickJitted] +00007FA12EE227C8 18 stub<19451> AllocateTemporaryEntryPoints +00007FA12ED3F660 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12EE227E0 18 stub<19452> AllocateTemporaryEntryPoints +00007FA12ED3F6B0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12EE227F8 d8 stub<19453> AllocateTemporaryEntryPoints +00007FA12EE228D0 18 stub<19454> AllocateTemporaryEntryPoints +00007FA12ED3F710 24e class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ED3F980 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::.ctor()[QuickJitted] +00007FA12EE228E8 18 stub<19455> AllocateTemporaryEntryPoints +00007FA12ED3F9C0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12ED3FA10 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12866A490 46 object [System.Private.CoreLib] dynamicClass::InvokeStub_ApiResponse.set_RateByService(object,object,native int*)[Optimized] +00007FA12780E0F0 18 stub<19456> GenerateResolveStub +00007FA1277CCB20 20 stub<19457> GenerateDispatchStub +00007FA12780E160 18 stub<19458> GenerateResolveStub +00007FA1277CCB40 20 stub<19459> GenerateDispatchStub +00007FA1277CCB60 20 stub<19460> GenerateDispatchStub +00007FA12ED3FA70 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::MoveNext()[QuickJitted] +00007FA12ED3FAB0 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED3FC30 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::.cctor()[QuickJitted] +00007FA12EE22918 18 stub<19461> AllocateTemporaryEntryPoints +00007FA12ED3FCB0 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED3FCF0 4c instance void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::IncrementKeeps(int32)[QuickJitted] +00007FA12ED3FD50 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::MoveNext()[QuickJitted] +00007FA12ED3FD90 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED3FF10 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::.cctor()[QuickJitted] +00007FA12EE22930 18 stub<19462> AllocateTemporaryEntryPoints +00007FA12ED3FF90 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED3FFD0 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::MoveNext()[QuickJitted] +00007FA12ED40010 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12ED40190 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::.cctor()[QuickJitted] +00007FA12EE22948 18 stub<19463> AllocateTemporaryEntryPoints +00007FA12ED40210 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::ExecutionContextCallback(object)[QuickJitted] +00007FA12ED40250 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED402D0 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED40360 63 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED403E0 bf instance class [System.Collections]System.Collections.Generic.List`1 [Samples.BuggyBits] BuggyBits.Models.DataLayer::GetProductsOnSale()[OptimizedTier1OSR] +00007FA12780E1D0 18 stub<19464> GenerateResolveStub +00007FA1277CCB80 20 stub<19465> GenerateDispatchStub +00007FA12780E240 18 stub<19466> GenerateResolveStub +00007FA1277CCBA0 20 stub<19467> GenerateDispatchStub +00007FA12780E2B0 18 stub<19468> GenerateResolveStub +00007FA1277CCBC0 20 stub<19469> GenerateDispatchStub +00007FA12780E320 18 stub<19470> GenerateResolveStub +00007FA1277CCBE0 20 stub<19471> GenerateDispatchStub +00007FA12780E390 18 stub<19472> GenerateResolveStub +00007FA1277CCC00 20 stub<19473> GenerateDispatchStub +00007FA12780E400 18 stub<19474> GenerateResolveStub +00007FA1277CCC20 20 stub<19475> GenerateDispatchStub +00007FA12780E470 18 stub<19476> GenerateResolveStub +00007FA1277CCC40 20 stub<19477> GenerateDispatchStub +00007FA12780E4E0 18 stub<19478> GenerateResolveStub +00007FA1277CCC60 20 stub<19479> GenerateDispatchStub +00007FA12780E550 18 stub<19480> GenerateResolveStub +00007FA1277CCC80 20 stub<19481> GenerateDispatchStub +00007FA12780E5C0 18 stub<19482> GenerateResolveStub +00007FA1277CCCA0 20 stub<19483> GenerateDispatchStub +00007FA12780E630 18 stub<19484> GenerateResolveStub +00007FA1277CCCC0 20 stub<19485> GenerateDispatchStub +00007FA12780E6A0 18 stub<19486> GenerateResolveStub +00007FA1277CCCE0 20 stub<19487> GenerateDispatchStub +00007FA12780E710 18 stub<19488> GenerateResolveStub +00007FA1277CCD00 20 stub<19489> GenerateDispatchStub +00007FA12780E780 18 stub<19490> GenerateResolveStub +00007FA1277CCD20 20 stub<19491> GenerateDispatchStub +00007FA12780E7F0 18 stub<19492> GenerateResolveStub +00007FA1277CCD40 20 stub<19493> GenerateDispatchStub +00007FA12ED404D0 67 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey]::Equals(!0,!0)[QuickJitted] +00007FA12780E860 18 stub<19494> GenerateResolveStub +00007FA1277CCD60 20 stub<19495> GenerateDispatchStub +00007FA12780E8D0 18 stub<19496> GenerateResolveStub +00007FA1277CCD80 20 stub<19497> GenerateDispatchStub +00007FA1277CCDA0 20 stub<19498> GenerateDispatchStub +00007FA1277CCDC0 20 stub<19499> GenerateDispatchStub +00007FA12780E940 18 stub<19500> GenerateResolveStub +00007FA1277CCDE0 20 stub<19501> GenerateDispatchStub +00007FA12780E9B0 18 stub<19502> GenerateResolveStub +00007FA1277CCE00 20 stub<19503> GenerateDispatchStub +00007FA12780EA20 18 stub<19504> GenerateResolveStub +00007FA1277CCE20 20 stub<19505> GenerateDispatchStub +00007FA12780EA90 18 stub<19506> GenerateResolveStub +00007FA1277CCE40 20 stub<19507> GenerateDispatchStub +00007FA12780EB00 18 stub<19508> GenerateResolveStub +00007FA1277CCE60 20 stub<19509> GenerateDispatchStub +00007FA12780EB70 18 stub<19510> GenerateResolveStub +00007FA1277CCE80 20 stub<19511> GenerateDispatchStub +00007FA12780EBE0 18 stub<19512> GenerateResolveStub +00007FA1277CCEA0 20 stub<19513> GenerateDispatchStub +00007FA12ED40550 e3 instance !0[] [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::TryPop()[QuickJitted] +00007FA12ED40650 99 instance !0[] [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::TryPop()[QuickJitted] +00007FA1277CCEC0 20 stub<19514> GenerateDispatchStub +00007FA12866A540 15f object [Microsoft.Extensions.DependencyInjection] dynamicClass::ResolveService(Microsoft.Extensions.DependencyInjection.ServiceLookup.ILEmitResolverBuilder/ILEmitResolverBuilderRuntimeContext /* MT: 0x00007FA12E03FA48 */,Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope /* MT: 0x00007FA12DBCA288 */)[Optimized] +00007FA12780EC50 18 stub<19515> GenerateResolveStub +00007FA1277CCEE0 20 stub<19516> GenerateDispatchStub +00007FA12780ECC0 18 stub<19517> GenerateResolveStub +00007FA1277CCF00 20 stub<19518> GenerateDispatchStub +00007FA12780ED30 18 stub<19519> GenerateResolveStub +00007FA1277CCF20 20 stub<19520> GenerateDispatchStub +00007FA12780EDA0 18 stub<19521> GenerateResolveStub +00007FA1277CCF40 20 stub<19522> GenerateDispatchStub +00007FA12780EE10 18 stub<19523> GenerateResolveStub +00007FA1277CCF60 20 stub<19524> GenerateDispatchStub +00007FA12780EE80 18 stub<19525> GenerateResolveStub +00007FA1277CCF80 20 stub<19526> GenerateDispatchStub +00007FA12780EEF0 18 stub<19527> GenerateResolveStub +00007FA1277CCFA0 20 stub<19528> GenerateDispatchStub +00007FA1277CCFC0 20 stub<19529> GenerateDispatchStub +00007FA12780EF60 18 stub<19530> GenerateResolveStub +00007FA1277CCFE0 20 stub<19531> GenerateDispatchStub +00007FA12780EFD0 18 stub<19532> GenerateResolveStub +00007FA1277CD000 20 stub<19533> GenerateDispatchStub +00007FA12780F040 18 stub<19534> GenerateResolveStub +00007FA1277CD020 20 stub<19535> GenerateDispatchStub +00007FA12780F0B0 18 stub<19536> GenerateResolveStub +00007FA1277CD040 20 stub<19537> GenerateDispatchStub +00007FA12780F120 18 stub<19538> GenerateResolveStub +00007FA1277CD060 20 stub<19539> GenerateDispatchStub +00007FA12ED40700 a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED407C0 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12E672320 18 stub<19540> GenerateLookupStub +00007FA12E672340 18 stub<19541> GenerateLookupStub +00007FA12EE22A68 18 stub<19542> AllocateTemporaryEntryPoints +00007FA12ED40850 8a instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED408F0 15d instance bool [Datadog.Trace] Datadog.Trace.Sampling.SpanSampler::MakeSamplingDecision(class Datadog.Trace.Span)[QuickJitted] +00007FA12ED40A70 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12780F190 18 stub<19543> GenerateResolveStub +00007FA1277CD080 20 stub<19544> GenerateDispatchStub +00007FA12ED40AF0 8a instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::ClearStateUponCompletion()[QuickJitted] +00007FA1277CD0A0 20 stub<19545> GenerateDispatchStub +00007FA12ED40B90 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12780F200 18 stub<19546> GenerateResolveStub +00007FA12ED40C20 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA1277CD0C0 20 stub<19547> GenerateDispatchStub +00007FA12780F270 18 stub<19548> GenerateResolveStub +00007FA1277CD0E0 20 stub<19549> GenerateDispatchStub +00007FA12ED40CB0 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED40D40 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED40DD0 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA12780F2E0 18 stub<19550> GenerateResolveStub +00007FA1277CD100 20 stub<19551> GenerateDispatchStub +00007FA12ED40E50 63 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::ClearStateUponCompletion()[QuickJitted] +00007FA1277CD120 20 stub<19552> GenerateDispatchStub +00007FA1277CD140 20 stub<19553> GenerateDispatchStub +00007FA1277CD160 20 stub<19554> GenerateDispatchStub +00007FA12780F350 18 stub<19555> GenerateResolveStub +00007FA1277CD180 20 stub<19556> GenerateDispatchStub +00007FA12ED40ED0 7c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED40F60 83 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::ClearStateUponCompletion()[QuickJitted] +00007FA12780F3C0 18 stub<19557> GenerateResolveStub +00007FA1277CD1A0 20 stub<19558> GenerateDispatchStub +00007FA12780F430 18 stub<19559> GenerateResolveStub +00007FA1277CD1C0 20 stub<19560> GenerateDispatchStub +00007FA12ED41000 98 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::ClearStateUponCompletion()[QuickJitted] +00007FA12EE22BA0 18 stub<19561> AllocateTemporaryEntryPoints +00007FA12EE22BB8 18 stub<19562> AllocateTemporaryEntryPoints +00007FA12ED410B0 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::ClearStateUponCompletion()[QuickJitted] +00007FA12EE22BD0 18 stub<19563> AllocateTemporaryEntryPoints +00007FA12EE22BE8 18 stub<19564> AllocateTemporaryEntryPoints +00007FA12ED41130 98 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED411E0 81 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12EE22C00 18 stub<19565> AllocateTemporaryEntryPoints +00007FA12ED41280 75 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::ClearStateUponCompletion()[QuickJitted] +00007FA12ED41310 87 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12ED413B0 6e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::ClearStateUponCompletion()[QuickJitted] +00007FA12780F4A0 18 stub<19566> GenerateResolveStub +00007FA1277CD1E0 20 stub<19567> GenerateDispatchStub +00007FA12ED41440 27 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::ExecuteFromThreadPool(class System.Threading.Thread)[QuickJitted] +00007FA12866A730 55f int32 [Anonymously Hosted DynamicMethods Assembly] dynamicClass::GetDestination(string,int32,int32)[Optimized] +00007FA1277CD200 20 stub<19568> GenerateDispatchStub +00007FA1277CD220 20 stub<19569> GenerateDispatchStub +00007FA1277CD240 20 stub<19570> GenerateDispatchStub +00007FA12866ACF0 32 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method154(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object,object[])[Optimized] +00007FA1277CD260 20 stub<19571> GenerateDispatchStub +00007FA12866AD80 8c object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method155(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,System.IServiceProvider /* MT: 0x00007FA12B194C30 */,object[])[Optimized] +00007FA1277CD280 20 stub<19572> GenerateDispatchStub +00007FA12E672360 18 stub<19573> GenerateLookupStub +00007FA12E672380 18 stub<19574> GenerateLookupStub +00007FA12ED41480 48b instance class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult [Samples.BuggyBits] BuggyBits.Controllers.ProductsController::ParallelLock()[QuickJitted] +00007FA12EE22C18 d8 stub<19575> AllocateTemporaryEntryPoints +00007FA12EE22CF0 60 stub<19576> AllocateTemporaryEntryPoints +00007FA12EE24000 510 stub<19577> AllocateTemporaryEntryPoints +00007FA12EE24510 30 stub<19578> AllocateTemporaryEntryPoints +00007FA12ED41940 27c instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Samples.BuggyBits] BuggyBits.Models.DataLayer::GetAllProductsInParallelWithLock(string)[QuickJitted] +00007FA12ED41BE0 1f instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer+<>c__DisplayClass12_0::.ctor()[QuickJitted] +00007FA12ED41C20 30 instance string [Samples.BuggyBits] BuggyBits.Models.DataLayer::GetProductInfoRoot(string)[QuickJitted] +00007FA12EE24540 18 stub<19579> AllocateTemporaryEntryPoints +00007FA12EE24558 18 stub<19580> AllocateTemporaryEntryPoints +00007FA12EE24570 a8 stub<19581> AllocateTemporaryEntryPoints +00007FA12EE24618 78 stub<19582> AllocateTemporaryEntryPoints +00007FA12EE24690 30 stub<19583> AllocateTemporaryEntryPoints +00007FA12EE246C0 30 stub<19584> AllocateTemporaryEntryPoints +00007FA12EE246F0 60 stub<19585> AllocateTemporaryEntryPoints +00007FA12EE24750 30 stub<19586> AllocateTemporaryEntryPoints +00007FA12EE24780 48 stub<19587> AllocateTemporaryEntryPoints +00007FA12EE247C8 48 stub<19588> AllocateTemporaryEntryPoints +00007FA12EE24810 60 stub<19589> AllocateTemporaryEntryPoints +00007FA12EE24870 c0 stub<19590> AllocateTemporaryEntryPoints +00007FA12866AE70 19 object [System.Private.CoreLib] dynamicClass::InvokeStub_EventSourceAttribute.set_Name(object,object,native int*)[Optimized] +00007FA12EE24930 48 stub<19591> AllocateTemporaryEntryPoints +00007FA12EE24978 18 stub<19592> AllocateTemporaryEntryPoints +00007FA12EE24990 90 stub<19593> AllocateTemporaryEntryPoints +00007FA12EE24A20 48 stub<19594> AllocateTemporaryEntryPoints +00007FA12EE24A68 48 stub<19595> AllocateTemporaryEntryPoints +00007FA12EE24AB0 60 stub<19596> AllocateTemporaryEntryPoints +00007FA12EE24B10 60 stub<19597> AllocateTemporaryEntryPoints +00007FA12EE24B70 18 stub<19598> AllocateTemporaryEntryPoints +00007FA12EE24B88 120 stub<19599> AllocateTemporaryEntryPoints +00007FA12EE24CC0 90 stub<19600> AllocateTemporaryEntryPoints +00007FA12EE24D50 60 stub<19601> AllocateTemporaryEntryPoints +00007FA12EE24DB0 18 stub<19602> AllocateTemporaryEntryPoints +00007FA12EE24DC8 18 stub<19603> AllocateTemporaryEntryPoints +00007FA12ED41C70 b4 instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer+<>c__DisplayClass12_0::b__0(int32)[QuickJitted] +00007FA12780F510 18 stub<19604> GenerateResolveStub +00007FA1277CD2A0 20 stub<19605> GenerateDispatchStub +00007FA12EE260D8 60 stub<19606> AllocateTemporaryEntryPoints +00007FA12EE26138 18 stub<19607> AllocateTemporaryEntryPoints +00007FA12ED41D60 3e5 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Int32,System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12ED42170 1b1 string [System.Private.CoreLib] System.String::Concat(string,string,string)[OptimizedTier1] +00007FA12ED42350 e class System.Text.Encoding [System.Private.CoreLib] System.Text.Encoding::get_ASCII()[OptimizedTier1] +00007FA12ED42370 7f instance uint8[] [System.Private.CoreLib] System.Text.Encoding::GetBytes(string)[OptimizedTier1] +00007FA12ED42410 c8 instance int32 [System.Private.CoreLib] System.Text.ASCIIEncoding::GetByteCount(string)[OptimizedTier1] +00007FA12ED42500 14e instance int32 [System.Private.CoreLib] System.Text.ASCIIEncoding::GetBytes(string,int32,int32,uint8[],int32)[OptimizedTier1] +00007FA12ED42670 28 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Int32,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EE26150 18 stub<19608> AllocateTemporaryEntryPoints +00007FA12EE26168 18 stub<19609> AllocateTemporaryEntryPoints +00007FA12ED426C0 164 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Int32,System.__Canon]::FindValue(!0)[OptimizedTier1] +00007FA12ED42850 4c instance string [System.Private.CoreLib] System.Int32::ToString(class System.IFormatProvider)[OptimizedTier1] +00007FA12ED428C0 c bool [System.Private.CoreLib] System.Text.ASCIIUtility::AllCharsInUInt32AreAscii(uint32)[OptimizedTier1] +00007FA12ED428E0 b void [System.Private.CoreLib] System.Text.ASCIIUtility::NarrowTwoUtf16CharsToAsciiAndWriteToBuffer(uint8&,uint32)[OptimizedTier1] +00007FA12ED42900 4 instance int32 [System.Private.CoreLib] System.Memory`1[System.Byte]::get_Length()[OptimizedTier1] +00007FA12ED42920 1b instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.Byte]::Slice(int32)[OptimizedTier1] +00007FA12EE26180 2b8 stub<19610> AllocateTemporaryEntryPoints +00007FA12EE26438 18 stub<19611> AllocateTemporaryEntryPoints +00007FA12EE26450 18 stub<19612> AllocateTemporaryEntryPoints +00007FA12ED42950 29 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::CopyTo(valuetype System.Span`1)[OptimizedTier1] +00007FA12ED42990 1f instance valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::Slice(int32,int32)[OptimizedTier1] +00007FA12EE26468 18 stub<19613> AllocateTemporaryEntryPoints +00007FA12EE26480 18 stub<19614> AllocateTemporaryEntryPoints +00007FA12EE26498 2b8 stub<19615> AllocateTemporaryEntryPoints +00007FA12EE26750 30 stub<19616> AllocateTemporaryEntryPoints +00007FA12EE26780 f0 stub<19617> AllocateTemporaryEntryPoints +00007FA12EE26870 18 stub<19618> AllocateTemporaryEntryPoints +00007FA12EE26888 f0 stub<19619> AllocateTemporaryEntryPoints +00007FA12EE26978 18 stub<19620> AllocateTemporaryEntryPoints +00007FA12EE26990 f0 stub<19621> AllocateTemporaryEntryPoints +00007FA12EE26A80 18 stub<19622> AllocateTemporaryEntryPoints +00007FA12EE26A98 18 stub<19623> AllocateTemporaryEntryPoints +00007FA12EE26AB0 18 stub<19624> AllocateTemporaryEntryPoints +00007FA12EE26AC8 18 stub<19625> AllocateTemporaryEntryPoints +00007FA12EE26AE0 60 stub<19626> AllocateTemporaryEntryPoints +00007FA12EE26B40 18 stub<19627> AllocateTemporaryEntryPoints +00007FA12EE26B58 18 stub<19628> AllocateTemporaryEntryPoints +00007FA12ED429D0 65 instance valuetype System.Span`1 [System.Private.CoreLib] System.Memory`1[System.Byte]::get_Span()[OptimizedTier1] +00007FA12ED42A50 4 instance int32 [System.Private.CoreLib] System.ReadOnlyMemory`1[System.Byte]::get_Length()[OptimizedTier1] +00007FA12ED42A70 4 instance int32 [System.Private.CoreLib] System.ArraySegment`1[System.Byte]::get_Count()[OptimizedTier1] +00007FA12ED42A90 4 instance !0[] [System.Private.CoreLib] System.ArraySegment`1[System.Byte]::get_Array()[OptimizedTier1] +00007FA12ED42AB0 4 instance int32 [System.Private.CoreLib] System.ArraySegment`1[System.Byte]::get_Offset()[OptimizedTier1] +00007FA12ED42AD0 66 instance void [System.Private.CoreLib] System.ReadOnlyMemory`1[System.Byte]::.ctor(!0[],int32,int32)[OptimizedTier1] +00007FA12ED42B60 134 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::SetExistingTaskResult(class System.Threading.Tasks.Task`1,!0)[OptimizedTier1] +00007FA12ED42CB0 23 instance void [System.Memory] System.Buffers.ReadOnlySequenceSegment`1[System.Byte]::set_Memory(valuetype [System.Private.CoreLib]System.ReadOnlyMemory`1)[OptimizedTier1] +00007FA12ED42CF0 b instance void [System.Memory] System.Buffers.ReadOnlySequenceSegment`1[System.Byte]::set_Next(class System.Buffers.ReadOnlySequenceSegment`1)[OptimizedTier1] +00007FA12ED42D10 5 instance void [System.Memory] System.Buffers.ReadOnlySequenceSegment`1[System.Byte]::set_RunningIndex(int64)[OptimizedTier1] +00007FA12ED42D30 10 instance class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.Tracer::get_TracerManager()[OptimizedTier1] +00007FA12ED42D50 ac class Datadog.Trace.TracerManager [Datadog.Trace] Datadog.Trace.TracerManager::get_Instance()[OptimizedTier1] +00007FA12ED42E20 4 instance int64 [System.Private.CoreLib] System.TimeSpan::get_Ticks()[OptimizedTier1] +00007FA12EE26B70 18 stub<19629> AllocateTemporaryEntryPoints +00007FA12EE26B88 240 stub<19630> AllocateTemporaryEntryPoints +00007FA12EE26DC8 18 stub<19631> AllocateTemporaryEntryPoints +00007FA12EE26DE0 18 stub<19632> AllocateTemporaryEntryPoints +00007FA12ED42E40 2c valuetype System.ReadOnlyMemory`1 [System.Private.CoreLib] System.Memory`1[System.Byte]::op_Implicit(valuetype System.Memory`1)[OptimizedTier1] +00007FA12ED42E90 50 instance valuetype System.Memory`1 [System.Private.CoreLib] System.Memory`1[System.Byte]::Slice(int32,int32)[OptimizedTier1] +00007FA12ED42F00 c instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeWriter::Advance(int32)[OptimizedTier1] +00007FA12EE28000 300 stub<19633> AllocateTemporaryEntryPoints +00007FA12ED42F20 f8 instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::Advance(int32)[OptimizedTier1] +00007FA12ED43050 51 instance valuetype System.Memory`1 [System.Private.CoreLib] System.Memory`1[System.Byte]::Slice(int32)[OptimizedTier1] +00007FA12ED430C0 16c instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::AllocateWriteHeadSynchronized(int32)[OptimizedTier1] +00007FA12ED43260 40 instance void [System.IO.Pipelines] System.IO.Pipelines.BufferSegment::set_End(int32)[OptimizedTier1] +00007FA12ED432C0 5 instance int64 [System.Memory] System.Buffers.ReadOnlySequenceSegment`1[System.Byte]::get_RunningIndex()[OptimizedTier1] +00007FA12ED432E0 3a instance class System.IO.Pipelines.BufferSegment [System.IO.Pipelines] System.IO.Pipelines.Pipe::CreateSegmentUnsynchronized()[OptimizedTier1] +00007FA12ED43330 3b instance bool [System.IO.Pipelines] System.IO.Pipelines.BufferSegmentStack::TryPop(class System.IO.Pipelines.BufferSegment&)[OptimizedTier1] +00007FA12E6723A0 18 stub<19634> GenerateLookupStub +00007FA12ED43380 154 instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::RentMemory(class System.IO.Pipelines.BufferSegment,int32)[OptimizedTier1] +00007FA12ED434F0 4 instance int32 [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] System.Buffers.PinnedBlockMemoryPool::get_MaxBufferSize()[OptimizedTier1] +00007FA12ED43510 1f instance int32 [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetSegmentSize(int32,int32)[OptimizedTier1] +00007FA12EE28300 198 stub<19635> AllocateTemporaryEntryPoints +00007FA12EE28498 60 stub<19636> AllocateTemporaryEntryPoints +00007FA12EE284F8 18 stub<19637> AllocateTemporaryEntryPoints +00007FA12EE28510 288 stub<19638> AllocateTemporaryEntryPoints +00007FA12EE28798 18 stub<19639> AllocateTemporaryEntryPoints +00007FA12ED43550 112 instance class [System.Runtime]System.Buffers.IMemoryOwner`1 [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] System.Buffers.PinnedBlockMemoryPool::Rent(int32)[OptimizedTier1] +00007FA12ED43680 21 instance valuetype [System.Runtime]System.Memory`1 [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] System.Buffers.MemoryPoolBlock::get_Memory()[OptimizedTier1] +00007FA12EE287B0 240 stub<19640> AllocateTemporaryEntryPoints +00007FA12EE289F0 18 stub<19641> AllocateTemporaryEntryPoints +00007FA12EE28A08 4f8 stub<19642> AllocateTemporaryEntryPoints +00007FA12EE28F00 78 stub<19643> AllocateTemporaryEntryPoints +00007FA12EE2A000 a8 stub<19644> AllocateTemporaryEntryPoints +00007FA12EE2A0A8 18 stub<19645> AllocateTemporaryEntryPoints +00007FA12EE2A0C0 18 stub<19646> AllocateTemporaryEntryPoints +00007FA12EE2A0D8 18 stub<19647> AllocateTemporaryEntryPoints +00007FA12EE2A0F0 f0 stub<19648> AllocateTemporaryEntryPoints +00007FA12EE2A1E0 18 stub<19649> AllocateTemporaryEntryPoints +00007FA12EE2A1F8 18 stub<19650> AllocateTemporaryEntryPoints +00007FA12EE2A210 60 stub<19651> AllocateTemporaryEntryPoints +00007FA12EE2A270 18 stub<19652> AllocateTemporaryEntryPoints +00007FA12ED436C0 148 bool [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::TryGetArray(valuetype System.ReadOnlyMemory`1,valuetype System.ArraySegment`1&)[OptimizedTier1] +00007FA12ED43830 51 instance valuetype System.ReadOnlyMemory`1 [System.Private.CoreLib] System.ReadOnlyMemory`1[System.Byte]::Slice(int32)[OptimizedTier1] +00007FA12ED438A0 fe instance void [System.Private.CoreLib] System.Runtime.InteropServices.GCHandle::.ctor(object,valuetype System.Runtime.InteropServices.GCHandleType)[OptimizedTier1] +00007FA12ED439C0 b5 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.__Canon]::Enqueue(!0)[OptimizedTier1] +00007FA12ED43AA0 1d instance void [System.IO.Pipelines] System.IO.Pipelines.BufferSegment::Reset()[OptimizedTier1] +00007FA12ED43AE0 6f instance void [System.IO.Pipelines] System.IO.Pipelines.BufferSegment::ResetMemory()[OptimizedTier1] +00007FA12ED43B70 42 instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] System.Buffers.MemoryPoolBlock::Dispose()[OptimizedTier1] +00007FA12ED43BE0 197 instance void [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueue::Enqueue(object,bool)[OptimizedTier1] +00007FA12ED43DA0 b void [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::WriteInt64(native int,int64)[OptimizedTier1] +00007FA12EE2A288 18 stub<19653> AllocateTemporaryEntryPoints +00007FA12ED43DC0 59 void [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::WriteInt64(native int,int32,int64)[OptimizedTier1] +00007FA12EE2A2A0 18 stub<19654> AllocateTemporaryEntryPoints +00007FA12EE2A2B8 270 stub<19655> AllocateTemporaryEntryPoints +00007FA12EE2A528 f0 stub<19656> AllocateTemporaryEntryPoints +00007FA12EE2A618 18 stub<19657> AllocateTemporaryEntryPoints +00007FA12EE2A630 18 stub<19658> AllocateTemporaryEntryPoints +00007FA12EE2A648 18 stub<19659> AllocateTemporaryEntryPoints +00007FA12EE2A660 2b8 stub<19660> AllocateTemporaryEntryPoints +00007FA12EE2A918 18 stub<19661> AllocateTemporaryEntryPoints +00007FA12EE2A930 60 stub<19662> AllocateTemporaryEntryPoints +00007FA12EE2A990 18 stub<19663> AllocateTemporaryEntryPoints +00007FA12EE2A9A8 18 stub<19664> AllocateTemporaryEntryPoints +00007FA12ED43E50 65 instance valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.ReadOnlyMemory`1[System.Byte]::get_Span()[OptimizedTier1] +00007FA12ED43ED0 17 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::.ctor(void*,int32)[OptimizedTier1] +00007FA12ED43F00 1c instance void [System.Private.CoreLib] System.Threading.CancellationToken::ThrowIfCancellationRequested()[OptimizedTier1] +00007FA12ED43F30 51 instance class System.Net.Http.Headers.HttpContentHeaders [System.Net.Http] System.Net.Http.HttpContent::get_Headers()[OptimizedTier1] +00007FA12ED43FA0 17 instance bool [System.Private.CoreLib] System.Threading.CancellationToken::get_IsCancellationRequested()[OptimizedTier1] +00007FA12ED43FD0 8e instance !0 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::get_Result()[OptimizedTier1] +00007FA12ED44080 6 void [System.Private.CoreLib] System.Threading.Thread::MemoryBarrier()[OptimizedTier1] +00007FA12EE2A9C0 150 stub<19665> AllocateTemporaryEntryPoints +00007FA12EE2AB10 138 stub<19666> AllocateTemporaryEntryPoints +00007FA12EE2AC48 48 stub<19667> AllocateTemporaryEntryPoints +00007FA12E6723C0 18 stub<19668> GenerateLookupStub +00007FA12ED440A0 6b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable+ConfiguredValueTaskAwaiter::GetResult()[OptimizedTier1] +00007FA12ED44130 5 instance native int [System.Private.CoreLib] System.Runtime.InteropServices.SafeHandle::DangerousGetHandle()[OptimizedTier1] +00007FA12ED44150 5 instance !0 [System.Private.CoreLib] System.Threading.AsyncLocalValueChangedArgs`1[System.__Canon]::get_CurrentValue()[OptimizedTier1] +00007FA12ED44170 7 native int [System.Private.CoreLib] System.IntPtr::op_Addition(native int,int32)[OptimizedTier1] +00007FA12ED44190 37 instance valuetype System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable [System.Private.CoreLib] System.Threading.Tasks.ValueTask::ConfigureAwait(bool)[OptimizedTier1] +00007FA12ED441E0 20 instance valuetype System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable/ConfiguredValueTaskAwaiter [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable::GetAwaiter()[OptimizedTier1] +00007FA12E6723E0 18 stub<19669> GenerateLookupStub +00007FA12ED44220 67 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable+ConfiguredValueTaskAwaiter::get_IsCompleted()[OptimizedTier1] +00007FA12ED442A0 5 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.Span::get_Context()[OptimizedTier1] +00007FA12ED442C0 8 instance void [System.Private.CoreLib] System.Runtime.InteropServices.SafeHandle::DangerousRelease()[OptimizedTier1] +00007FA12EE2AC90 18 stub<19670> AllocateTemporaryEntryPoints +00007FA12EE2ACA8 18 stub<19671> AllocateTemporaryEntryPoints +00007FA12EE2C000 660 stub<19672> AllocateTemporaryEntryPoints +00007FA12EE2C660 600 stub<19673> AllocateTemporaryEntryPoints +00007FA12EE2E000 618 stub<19674> AllocateTemporaryEntryPoints +00007FA12EE2E618 18 stub<19675> AllocateTemporaryEntryPoints +00007FA12EE2E630 18 stub<19676> AllocateTemporaryEntryPoints +00007FA12EE2E648 18 stub<19677> AllocateTemporaryEntryPoints +00007FA12EE2E660 18 stub<19678> AllocateTemporaryEntryPoints +00007FA12EE2E678 18 stub<19679> AllocateTemporaryEntryPoints +00007FA12EE2E690 18 stub<19680> AllocateTemporaryEntryPoints +00007FA12EE2E6A8 2d0 stub<19681> AllocateTemporaryEntryPoints +00007FA12EE2E978 18 stub<19682> AllocateTemporaryEntryPoints +00007FA12EE2E990 2d0 stub<19683> AllocateTemporaryEntryPoints +00007FA12EE2EC60 18 stub<19684> AllocateTemporaryEntryPoints +00007FA12EE2EC78 18 stub<19685> AllocateTemporaryEntryPoints +00007FA12EE2EC90 2d0 stub<19686> AllocateTemporaryEntryPoints +00007FA12EE2EF60 18 stub<19687> AllocateTemporaryEntryPoints +00007FA12EE2EF78 18 stub<19688> AllocateTemporaryEntryPoints +00007FA12EE2EF90 18 stub<19689> AllocateTemporaryEntryPoints +00007FA12EE2EFA8 18 stub<19690> AllocateTemporaryEntryPoints +00007FA12EE2EFC0 18 stub<19691> AllocateTemporaryEntryPoints +00007FA12EEC0000 2d0 stub<19692> AllocateTemporaryEntryPoints +00007FA12EEC02D0 18 stub<19693> AllocateTemporaryEntryPoints +00007FA12EEC02E8 18 stub<19694> AllocateTemporaryEntryPoints +00007FA12EEC0300 2d0 stub<19695> AllocateTemporaryEntryPoints +00007FA12EEC05D0 18 stub<19696> AllocateTemporaryEntryPoints +00007FA12EEC05E8 18 stub<19697> AllocateTemporaryEntryPoints +00007FA12EEC0600 18 stub<19698> AllocateTemporaryEntryPoints +00007FA12EEC0618 18 stub<19699> AllocateTemporaryEntryPoints +00007FA12EEC0630 2d0 stub<19700> AllocateTemporaryEntryPoints +00007FA12EEC0900 18 stub<19701> AllocateTemporaryEntryPoints +00007FA12EEC0918 18 stub<19702> AllocateTemporaryEntryPoints +00007FA12ED442E0 e0 native uint [System.Private.CoreLib] System.Text.ASCIIUtility::NarrowUtf16ToAscii_Intrinsified(char*,uint8*,native uint)[OptimizedTier1] +00007FA12ED44410 14 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::.ctor(!0)[OptimizedTier1] +00007FA12ED44440 1d instance int64 [System.Private.CoreLib] System.IO.MemoryStream::get_Length()[OptimizedTier1] +00007FA12ED44480 3 void [System.Private.CoreLib] System.Threading.Volatile::Write(int32&,int32)[OptimizedTier1] +00007FA12ED444A0 a int64 [System.Private.CoreLib] System.Threading.Interlocked::Read(int64&)[OptimizedTier1] +00007FA12EEC2000 7f8 stub<19703> AllocateTemporaryEntryPoints +00007FA12EEC27F8 378 stub<19704> AllocateTemporaryEntryPoints +00007FA12ED444C0 40 instance void [System.Net.Http] System.Net.Http.HttpContent+LimitMemoryStream::CheckSize(int32)[OptimizedTier1] +00007FA12EEC2B70 18 stub<19705> AllocateTemporaryEntryPoints +00007FA12ED44520 56 instance class System.Net.Sockets.SocketAsyncContext [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::get_AsyncContext()[OptimizedTier1] +00007FA12ED445A0 a instance bool [System.Private.CoreLib] System.Threading.CancellationToken::get_CanBeCanceled()[OptimizedTier1] +00007FA12EEC4000 630 stub<19706> AllocateTemporaryEntryPoints +00007FA12ED445C0 28 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::StartConfiguring()[OptimizedTier1] +00007FA12ED44600 52 valuetype System.TimeSpan [System.Private.CoreLib] System.TimeSpan::IntervalFromDoubleTicks(float64)[OptimizedTier1] +00007FA12ED44680 20 instance valuetype System.Runtime.CompilerServices.ValueTaskAwaiter`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::GetAwaiter()[OptimizedTier1] +00007FA12ED446C0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.FlushResult]::.ctor(valuetype System.Threading.Tasks.ValueTask`1&)[OptimizedTier1] +00007FA12ED446E0 8e instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.FlushResult]::GetResult()[OptimizedTier1] +00007FA12ED44790 23 valuetype System.TimeSpan [System.Private.CoreLib] System.TimeSpan::FromSeconds(float64)[OptimizedTier1] +00007FA12EEC4630 1c8 stub<19707> AllocateTemporaryEntryPoints +00007FA12ED447E0 207 instance int32 [System.Private.CoreLib] System.Text.EncoderNLS::GetBytes(char*,int32,uint8*,int32,bool)[OptimizedTier1] +00007FA12ED44A10 34 instance bool [System.Private.CoreLib] System.Text.EncoderNLS::get_HasLeftoverData()[OptimizedTier1] +00007FA12ED44A60 8 instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.Threading.Tasks.VoidTaskResult]::.ctor()[OptimizedTier1] +00007FA12EEC47F8 18 stub<19708> AllocateTemporaryEntryPoints +00007FA12EEC4810 18 stub<19709> AllocateTemporaryEntryPoints +00007FA12EEC4828 18 stub<19710> AllocateTemporaryEntryPoints +00007FA12EEC4840 18 stub<19711> AllocateTemporaryEntryPoints +00007FA12ED44A80 60 !!0 [System.Private.CoreLib] System.Threading.LazyInitializer::EnsureInitialized(!!0&,class System.Func`1)[OptimizedTier1] +00007FA12ED44B00 5 instance class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.Scope::get_Span()[OptimizedTier1] +00007FA12ED44B20 9 instance uint64 [Datadog.Trace] Datadog.Trace.Span::get_SpanId()[OptimizedTier1] +00007FA12ED44B40 5 instance uint64 [Datadog.Trace] Datadog.Trace.SpanContext::get_SpanId()[OptimizedTier1] +00007FA12ED44B60 c instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeWriter::FlushAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12ED44B80 eb instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.IO.Pipelines] System.IO.Pipelines.Pipe::FlushAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12ED44CA0 2c3 instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::PrepareFlushUnsynchronized(valuetype System.IO.Pipelines.CompletionData&,valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1&,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12ED44F90 aa instance bool [System.IO.Pipelines] System.IO.Pipelines.Pipe::CommitUnsynchronized()[OptimizedTier1] +00007FA12ED45060 62 instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetFlushResult(valuetype System.IO.Pipelines.FlushResult&)[OptimizedTier1] +00007FA12ED450E0 9 instance bool [System.IO.Pipelines] System.IO.Pipelines.FlushResult::get_IsCompleted()[OptimizedTier1] +00007FA12ED45100 48 void [System.Private.CoreLib] System.Threading.ExecutionContext::RestoreChangedContextToThread(class System.Threading.Thread,class System.Threading.ExecutionContext,class System.Threading.ExecutionContext)[OptimizedTier1] +00007FA12EEC4858 48 stub<19712> AllocateTemporaryEntryPoints +00007FA12E672400 18 stub<19713> GenerateLookupStub +00007FA12E672420 18 stub<19714> GenerateLookupStub +00007FA12EEC48A0 60 stub<19715> AllocateTemporaryEntryPoints +00007FA12ED45160 330 void [System.Private.CoreLib] System.Threading.ExecutionContext::OnValuesChanged(class System.Threading.ExecutionContext,class System.Threading.ExecutionContext)[OptimizedTier1] +00007FA12EEC4900 60 stub<19716> AllocateTemporaryEntryPoints +00007FA12ED454D0 84 instance void [System.Private.CoreLib] System.Threading.AsyncLocal`1[System.__Canon]::System.Threading.IAsyncLocal.OnValueChanged(object,object,bool)[OptimizedTier1] +00007FA12ED45570 6a void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::OnScopeChanged(valuetype [System.Threading]System.Threading.AsyncLocalValueChangedArgs`1)[OptimizedTier1] +00007FA12EEC4960 18 stub<19717> AllocateTemporaryEntryPoints +00007FA12EEC4978 18 stub<19718> AllocateTemporaryEntryPoints +00007FA12EEC4990 60 stub<19719> AllocateTemporaryEntryPoints +00007FA12EEC49F0 18 stub<19720> AllocateTemporaryEntryPoints +00007FA12ED45600 ec class Datadog.Trace.ContinuousProfiler.Profiler [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler::get_Instance()[OptimizedTier1] +00007FA12ED45710 5 instance class Datadog.Trace.ContinuousProfiler.IContextTracker [Datadog.Trace] Datadog.Trace.ContinuousProfiler.Profiler::get_ContextTracker()[OptimizedTier1] +00007FA12ED45730 13e instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::WriteToNative(valuetype Datadog.Trace.ContinuousProfiler.ContextTracker/SpanContext&)[OptimizedTier1] +00007FA12ED458A0 34 instance bool [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::get_IsEnabled()[OptimizedTier1] +00007FA12ED458F0 4c instance bool [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ProfilerStatus::get_IsProfilerReady()[OptimizedTier1] +00007FA12ED45960 ff instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ProfilerStatus::EnsureNativeIsIntialized()[OptimizedTier1] +00007FA12ED45A90 9 bool [System.Private.CoreLib] System.IntPtr::op_Inequality(native int,native int)[OptimizedTier1] +00007FA12ED45AB0 8 uint8 [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::ReadByte(native int)[OptimizedTier1] +00007FA12ED45AD0 4c uint8 [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::ReadByte(native int,int32)[OptimizedTier1] +00007FA12ED45B50 117 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::EnsureIsInitialized()[OptimizedTier1] +00007FA12ED45CA0 c5 instance bool [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::get_IsValueCreated()[OptimizedTier1] +00007FA12ED45D80 6d instance !0 [System.Private.CoreLib] System.Threading.ThreadLocal`1[System.IntPtr]::get_Value()[OptimizedTier1] +00007FA12ED45E10 9 bool [System.Private.CoreLib] System.IntPtr::op_Equality(native int,native int)[OptimizedTier1] +00007FA12ED45E30 5b instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker+SpanContext::Write(native int)[OptimizedTier1] +00007FA12ED45EB0 67 instance bool [System.Private.CoreLib] System.Threading.AsyncLocalValueMap+ThreeElementAsyncLocalValueMap::TryGetValue(class System.Threading.IAsyncLocal,object&)[OptimizedTier1] +00007FA12ED45F30 f9 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::SetExistingTaskResult(class System.Threading.Tasks.Task`1,!0)[OptimizedTier1] +00007FA12ED46050 a9 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.Threading.Tasks.VoidTaskResult]::TrySetResult(!0)[OptimizedTier1] +00007FA12ED46120 41 instance void [System.Private.CoreLib] System.Threading.CancellationTokenRegistration::Dispose()[OptimizedTier1] +00007FA12ED46180 89 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::StartOperationCommon(class System.Net.Sockets.Socket,valuetype System.Net.Sockets.SocketAsyncOperation)[OptimizedTier1] +00007FA12EEC4A08 150 stub<19721> AllocateTemporaryEntryPoints +00007FA12EEC4B58 18 stub<19722> AllocateTemporaryEntryPoints +00007FA12EEC4B70 18 stub<19723> AllocateTemporaryEntryPoints +00007FA12ED46230 3df instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::FinishOperationSyncSuccess(int32,valuetype System.Net.Sockets.SocketFlags)[OptimizedTier1] +00007FA12ED466A0 1d8 bool [System.Private.CoreLib] System.Threading.ThreadPool::UnsafeQueueUserWorkItem(class System.Threading.IThreadPoolWorkItem,bool)[OptimizedTier1] +00007FA12ED468A0 6c instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::SetHandleNonBlocking()[OptimizedTier1] +00007FA12EEC4B88 18 stub<19724> AllocateTemporaryEntryPoints +00007FA12EEC4BA0 18 stub<19725> AllocateTemporaryEntryPoints +00007FA12EEC4BB8 18 stub<19726> AllocateTemporaryEntryPoints +00007FA12ED46930 32 instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+OperationQueue`1[System.__Canon]::IsReady(class System.Net.Sockets.SocketAsyncContext,int32&)[OptimizedTier1] +00007FA12ED46980 69 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::TryDequeue(!0&)[OptimizedTier1] +00007FA12ED46A20 112 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::TryDequeue(!0&)[OptimizedTier1] +00007FA12ED46B60 51 instance class [System.Runtime]System.Action`5 [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::get_TransferCompletionCallback()[OptimizedTier1] +00007FA12ED46BD0 50 int32 [System.Private.CoreLib] System.Threading.ProcessorIdCache::RefreshCurrentProcessorId()[OptimizedTier1] +00007FA12ED46C40 5 instance class Datadog.Trace.TraceContext [Datadog.Trace] Datadog.Trace.SpanContext::get_TraceContext()[OptimizedTier1] +00007FA12EEC4BD0 60 stub<19727> AllocateTemporaryEntryPoints +00007FA12EEC4C30 18 stub<19728> AllocateTemporaryEntryPoints +00007FA12ED46C60 537 instance valuetype [System.Runtime]System.Nullable`1> [System.Net.Http] System.Net.Http.HttpConnection+ChunkedEncodingReadStream::ReadChunkFromConnectionBuffer(int32,valuetype [System.Runtime]System.Threading.CancellationTokenRegistration)[OptimizedTier1] +00007FA12EEC4C48 18 stub<19729> AllocateTemporaryEntryPoints +00007FA12ED47210 12 !!0 [System.Private.CoreLib] System.Threading.Interlocked::Exchange(!!0&,!!0)[OptimizedTier1] +00007FA12ED47240 55 instance valuetype System.ReadOnlyMemory`1 [System.Private.CoreLib] System.ReadOnlyMemory`1[System.Byte]::Slice(int32,int32)[OptimizedTier1] +00007FA12ED472B0 4d instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::FinishOperationSync(valuetype [System.Net.Primitives]System.Net.Sockets.SocketError,int32,valuetype System.Net.Sockets.SocketFlags)[OptimizedTier1] +00007FA12ED47320 3 valuetype System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Create()[OptimizedTier1] +00007FA12ED47340 33 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::SetResult()[OptimizedTier1] +00007FA12ED47390 5 instance bool [System.Private.CoreLib] System.IO.MemoryStream::get_CanWrite()[OptimizedTier1] +00007FA12ED473B0 ba instance valuetype System.Threading.Tasks.ValueTask [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::get_Task()[OptimizedTier1] +00007FA12ED474A0 1e0 instance void [System.Private.CoreLib] System.IO.MemoryStream::Write(uint8[],int32,int32)[OptimizedTier1] +00007FA12ED476A0 154 bool [System.Net.Sockets] System.Net.Sockets.SocketPal::TryCompleteReceive(class System.Net.Sockets.SafeSocketHandle,valuetype [System.Runtime]System.Span`1,valuetype System.Net.Sockets.SocketFlags,int32&,valuetype [System.Net.Primitives]System.Net.Sockets.SocketError&)[OptimizedTier1] +00007FA12ED47820 4 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetReference(valuetype System.Span`1)[OptimizedTier1] +00007FA12ED47840 f4 valuetype Interop/Error [System.Net.Sockets] Interop+Sys::Receive(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,uint8*,int32,valuetype System.Net.Sockets.SocketFlags,int32*)[OptimizedTier1] +00007FA12ED47960 6e instance void [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::Release()[OptimizedTier1] +00007FA12ED479F0 5a instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpContent+LimitMemoryStream::WriteAsync(valuetype [System.Runtime]System.ReadOnlyMemory`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EEC4C60 18 stub<19730> AllocateTemporaryEntryPoints +00007FA12ED47A70 1d2 instance valuetype System.Threading.Tasks.ValueTask [System.Private.CoreLib] System.IO.MemoryStream::WriteAsync(valuetype System.ReadOnlyMemory`1,valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12ED47C90 3f instance void [System.Net.Http] System.Net.Http.HttpContent+LimitMemoryStream::Write(uint8[],int32,int32)[OptimizedTier1] +00007FA12ED47CF0 131 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::SetBuffer(valuetype [System.Runtime]System.Memory`1)[OptimizedTier1] +00007FA12EEC4C78 18 stub<19731> AllocateTemporaryEntryPoints +00007FA12EEC4C90 18 stub<19732> AllocateTemporaryEntryPoints +00007FA12EEC4CA8 18 stub<19733> AllocateTemporaryEntryPoints +00007FA12EEC4CC0 240 stub<19734> AllocateTemporaryEntryPoints +00007FA12EEC4F00 18 stub<19735> AllocateTemporaryEntryPoints +00007FA12EEC4F18 18 stub<19736> AllocateTemporaryEntryPoints +00007FA12EEC4F30 18 stub<19737> AllocateTemporaryEntryPoints +00007FA12EEC4F48 18 stub<19738> AllocateTemporaryEntryPoints +00007FA12ED47E50 232 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Sockets] System.Net.Sockets.NetworkStream::ReadAsync(valuetype [System.Runtime]System.Memory`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12ED480D0 5 instance bool [System.Net.Sockets] System.Net.Sockets.NetworkStream::get_CanRead()[OptimizedTier1] +00007FA12ED480F0 12f instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Sockets] System.Net.Sockets.Socket::ReceiveAsync(valuetype [System.Runtime]System.Memory`1,valuetype System.Net.Sockets.SocketFlags,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EEC4F60 18 stub<19739> AllocateTemporaryEntryPoints +00007FA12EEC4F78 18 stub<19740> AllocateTemporaryEntryPoints +00007FA12EEC6000 240 stub<19741> AllocateTemporaryEntryPoints +00007FA12EEC6240 18 stub<19742> AllocateTemporaryEntryPoints +00007FA12ED48250 f5 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::ReceiveAsync(class System.Net.Sockets.Socket,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12ED48370 106 instance bool [System.Net.Sockets] System.Net.Sockets.Socket::ReceiveAsync(class System.Net.Sockets.SocketAsyncEventArgs,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12ED484A0 292 instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::DoOperationReceive(class System.Net.Sockets.SafeSocketHandle,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EEC6258 18 stub<19743> AllocateTemporaryEntryPoints +00007FA12EEC6270 18 stub<19744> AllocateTemporaryEntryPoints +00007FA12EEC6288 18 stub<19745> AllocateTemporaryEntryPoints +00007FA12EEC62A0 18 stub<19746> AllocateTemporaryEntryPoints +00007FA12ED48760 22c instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::ReceiveAsync(valuetype [System.Runtime]System.Memory`1,valuetype System.Net.Sockets.SocketFlags,int32&,class [System.Runtime]System.Action`5,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EEC62B8 150 stub<19747> AllocateTemporaryEntryPoints +00007FA12EEC6408 c0 stub<19748> AllocateTemporaryEntryPoints +00007FA12EEC64C8 150 stub<19749> AllocateTemporaryEntryPoints +00007FA12EEC6618 c0 stub<19750> AllocateTemporaryEntryPoints +00007FA12EEC66D8 138 stub<19751> AllocateTemporaryEntryPoints +00007FA12EEC6810 150 stub<19752> AllocateTemporaryEntryPoints +00007FA12EEC6960 150 stub<19753> AllocateTemporaryEntryPoints +00007FA12EEC6AB0 60 stub<19754> AllocateTemporaryEntryPoints +00007FA12EEC6B10 150 stub<19755> AllocateTemporaryEntryPoints +00007FA12EEC6C60 c0 stub<19756> AllocateTemporaryEntryPoints +00007FA12EEC6D20 138 stub<19757> AllocateTemporaryEntryPoints +00007FA12EEC6E58 48 stub<19758> AllocateTemporaryEntryPoints +00007FA12EEC6EA0 48 stub<19759> AllocateTemporaryEntryPoints +00007FA12E672440 18 stub<19760> GenerateLookupStub +00007FA12ED489B0 85 instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1+ConfiguredValueTaskAwaiter[System.Int32]::GetResult()[OptimizedTier1] +00007FA12EEC6EE8 30 stub<19761> AllocateTemporaryEntryPoints +00007FA12ED48A60 47 instance valuetype System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.Int32]::ConfigureAwait(bool)[OptimizedTier1] +00007FA12EEC6F18 d8 stub<19762> AllocateTemporaryEntryPoints +00007FA12ED48AC0 20 instance valuetype System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1[System.Int32]::GetAwaiter()[OptimizedTier1] +00007FA12E672460 18 stub<19763> GenerateLookupStub +00007FA12ED48B00 67 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1+ConfiguredValueTaskAwaiter[System.Int32]::get_IsCompleted()[OptimizedTier1] +00007FA12ED48B80 d instance int32 [System.Private.CoreLib] System.IntPtr::GetHashCode()[OptimizedTier1] +00007FA12EEC8000 18 stub<19764> AllocateTemporaryEntryPoints +00007FA12EEC8018 240 stub<19765> AllocateTemporaryEntryPoints +00007FA12EEC8258 48 stub<19766> AllocateTemporaryEntryPoints +00007FA12EEC82A0 60 stub<19767> AllocateTemporaryEntryPoints +00007FA12EEC8300 a8 stub<19768> AllocateTemporaryEntryPoints +00007FA12EEC83A8 18 stub<19769> AllocateTemporaryEntryPoints +00007FA12EEC83C0 390 stub<19770> AllocateTemporaryEntryPoints +00007FA12EEC8750 30 stub<19771> AllocateTemporaryEntryPoints +00007FA12EEC8780 18 stub<19772> AllocateTemporaryEntryPoints +00007FA12EEC8798 30 stub<19773> AllocateTemporaryEntryPoints +00007FA12EEC87C8 30 stub<19774> AllocateTemporaryEntryPoints +00007FA12EEC87F8 30 stub<19775> AllocateTemporaryEntryPoints +00007FA12EEC8828 18 stub<19776> AllocateTemporaryEntryPoints +00007FA12EEC8840 30 stub<19777> AllocateTemporaryEntryPoints +00007FA12EEC8870 30 stub<19778> AllocateTemporaryEntryPoints +00007FA12EEC88A0 30 stub<19779> AllocateTemporaryEntryPoints +00007FA12EEC88D0 30 stub<19780> AllocateTemporaryEntryPoints +00007FA12EEC8900 18 stub<19781> AllocateTemporaryEntryPoints +00007FA12EEC8918 30 stub<19782> AllocateTemporaryEntryPoints +00007FA12EEC8948 30 stub<19783> AllocateTemporaryEntryPoints +00007FA12EEC8978 18 stub<19784> AllocateTemporaryEntryPoints +00007FA12ED48BA0 9 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.IntPtr]::Equals(!0,!0)[OptimizedTier1] +00007FA12ED48BC0 221 instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncEngine+SocketEventHandler::HandleSocketEvents(int32)[OptimizedTier1] +00007FA12ED48E10 17 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[Interop+Sys+SocketEvent]::.ctor(void*,int32)[OptimizedTier1] +00007FA12ED48E40 3 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12ED48E60 16b instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12ED48FF0 3b instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::GetBucket(int32)[OptimizedTier1] +00007FA12ED49040 e class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.IntPtr]::get_Default()[OptimizedTier1] +00007FA12ED49060 4f instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::Enqueue(!0)[OptimizedTier1] +00007FA12ED490E0 aa instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[System.Net.Sockets.SocketAsyncEngine+SocketIOEvent]::TryEnqueue(!0)[OptimizedTier1] +00007FA12ED491B0 6ea instance void [System.Net.Http] System.Net.Http.HttpConnection+d__99::MoveNext()[OptimizedTier1] +00007FA12ED498E0 79 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::FillAsync(bool)[OptimizedTier1] +00007FA12ED49980 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12ED499A0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12ED49B00 66 instance void [System.Private.CoreLib] System.Memory`1[System.Byte]::.ctor(!0[],int32,int32)[OptimizedTier1] +00007FA12ED49B90 13 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.Int32]::.ctor(!0)[OptimizedTier1] +00007FA12EEC8990 18 stub<19785> AllocateTemporaryEntryPoints +00007FA12EEC89A8 18 stub<19786> AllocateTemporaryEntryPoints +00007FA1277CD2C0 20 stub<19787> GenerateDispatchStub +00007FA12ED49BC0 195 instance bool [System.Net.Http] System.Net.Http.HttpConnection::TryReadNextChunkedLine(bool,valuetype [System.Runtime]System.ReadOnlySpan`1&)[OptimizedTier1] +00007FA12ED49D80 3e instance void [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::.ctor(!0[],int32,int32)[OptimizedTier1] +00007FA12ED49DE0 15 int32 [System.Private.CoreLib] System.MemoryExtensions::IndexOf(valuetype System.ReadOnlySpan`1,!!0)[OptimizedTier1] +00007FA12ED49E10 4 bool [System.Private.CoreLib] System.Threading.Volatile::Read(bool&)[OptimizedTier1] +00007FA12ED49E30 115 instance class System.Net.Sockets.SocketAsyncContext/AsyncOperation [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+OperationQueue`1[System.__Canon]::ProcessSyncEventOrGetAsyncEvent(class System.Net.Sockets.SocketAsyncContext,bool)[OptimizedTier1] +00007FA12ED49F90 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12ED49FB0 233 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::HandleEvents(valuetype Interop/Sys/SocketEvents)[OptimizedTier1] +00007FA12EEC89C0 18 stub<19788> AllocateTemporaryEntryPoints +00007FA12ED4A220 50 bool [System.Private.CoreLib] System.Buffers.Text.Utf8Parser::TryParse(valuetype System.ReadOnlySpan`1,uint64&,int32&,char)[OptimizedTier1] +00007FA12EEC89D8 168 stub<19789> AllocateTemporaryEntryPoints +00007FA12ED4A2A0 111 bool [System.Private.CoreLib] System.Buffers.Text.Utf8Parser::TryParseUInt64X(valuetype System.ReadOnlySpan`1,uint64&,int32&)[OptimizedTier1] +00007FA12ED4A3D0 5 instance class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.TraceContext::get_RootSpan()[OptimizedTier1] +00007FA12ED4A3F0 4 instance bool [System.Private.CoreLib] System.Nullable`1[System.UInt64]::get_HasValue()[OptimizedTier1] +00007FA12ED4A410 5 instance !0 [System.Private.CoreLib] System.Nullable`1[System.UInt64]::GetValueOrDefault()[OptimizedTier1] +00007FA12ED4A430 1c4 void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::EnsureCapacity(uint8[]&,int32,int32)[OptimizedTier1] +00007FA12ED4A620 12 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.MemoryExtensions::AsSpan(string)[OptimizedTier1] +00007FA12ED4A650 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::get_Count()[OptimizedTier1] +00007FA12ED4A670 19 instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource+Registrations::EnterLock()[OptimizedTier1] +00007FA12ED4A6A0 28 instance void [System.Private.CoreLib] System.MulticastDelegate::CtorOpened(object,native int,native int)[OptimizedTier1] +00007FA12ED4A6E0 65 void [System.Private.CoreLib] System.Array::Clear(class System.Array)[OptimizedTier1] +00007FA12EEC8B40 18 stub<19790> AllocateTemporaryEntryPoints +00007FA12ED4A760 7c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::SetResult(!0)[OptimizedTier1] +00007FA12ED4A800 3a bool [System.Private.CoreLib] System.Reflection.Emit.TypeNameBuilder::IsTypeNameReservedChar(char)[OptimizedTier1] +00007FA12EEC8B58 30 stub<19791> AllocateTemporaryEntryPoints +00007FA12ED4A880 181 char* [System.Private.CoreLib] System.Text.Unicode.Utf16Utility::GetPointerToFirstInvalidChar(char*,int32,int64&,int32&)[OptimizedTier1] +00007FA12ED4AA70 6 native uint [System.Private.CoreLib] System.Text.ASCIIUtility::GetIndexOfFirstNonAsciiChar(char*,native uint)[OptimizedTier1] +00007FA12ED4AAA0 1af native uint [System.Private.CoreLib] System.Text.ASCIIUtility::GetIndexOfFirstNonAsciiChar_Intrinsified(char*,native uint)[OptimizedTier1] +00007FA12EEC8B88 18 stub<19792> AllocateTemporaryEntryPoints +00007FA12EEC8BA0 18 stub<19793> AllocateTemporaryEntryPoints +00007FA12ED4ACA0 25 instance string [System.Private.CoreLib] System.Span`1[System.Char]::ToString()[OptimizedTier1] +00007FA12ED4ACE0 46f instance valuetype System.Reflection.AssemblyNameParser/Token [System.Private.CoreLib] System.Reflection.AssemblyNameParser::GetNextToken(string&)[OptimizedTier1] +00007FA12EEC8BB8 18 stub<19794> AllocateTemporaryEntryPoints +00007FA12ED4B170 30 instance object [System.Private.CoreLib] System.Reflection.RuntimeAssembly::get_SyncRoot()[OptimizedTier1] +00007FA12ED4B1C0 d3 instance int32 [System.Private.CoreLib] System.Text.UTF8Encoding::GetBytes(char*,int32,uint8*,int32)[OptimizedTier1] +00007FA12EEC8BD0 18 stub<19795> AllocateTemporaryEntryPoints +00007FA12ED4B2C0 6a instance void [System.Private.CoreLib] System.Reflection.CerHashtable`2[System.__Canon,System.__Canon]::set_Item(!0,!1)[OptimizedTier1] +00007FA12ED4B350 8 instance void [System.Private.CoreLib] System.Nullable`1[System.UInt64]::.ctor(!0)[OptimizedTier1] +00007FA12ED4B370 44 instance uint64 [Datadog.Trace] Datadog.Trace.Span::get_RootSpanId()[OptimizedTier1] +00007FA12ED4B3D0 1f instance class System.Uri/UriInfo [System.Private.Uri] System.Uri::EnsureUriInfo()[OptimizedTier1] +00007FA12EEC8BE8 60 stub<19796> AllocateTemporaryEntryPoints +00007FA12EEC8C48 18 stub<19797> AllocateTemporaryEntryPoints +00007FA12ED4B410 67 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection::WriteTwoBytesAsync(uint8,uint8,bool)[OptimizedTier1] +00007FA12ED4B490 76 valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.__Canon]::op_Implicit(!0[])[OptimizedTier1] +00007FA12ED4B530 12 instance !0 [System.Private.CoreLib] System.Lazy`1[System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]]::get_Value()[OptimizedTier1] +00007FA12ED4B560 8 instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.__Canon]::.ctor()[OptimizedTier1] +00007FA12ED4B580 3 valuetype System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Create()[OptimizedTier1] +00007FA12ED4B5A0 1c instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::get_Task()[OptimizedTier1] +00007FA12ED4B5D0 4 instance int32 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_CurrentSpanIndex()[OptimizedTier1] +00007FA12ED4B5F0 4 instance object [System.Memory] System.SequencePosition::GetObject()[OptimizedTier1] +00007FA12ED4B610 4 instance int32 [System.Memory] System.SequencePosition::GetInteger()[OptimizedTier1] +00007FA12ED4B630 b instance bool [System.Diagnostics.DiagnosticSource] System.Diagnostics.DiagnosticListener::IsEnabled()[OptimizedTier1] +00007FA12EEC8C60 18 stub<19798> AllocateTemporaryEntryPoints +00007FA12ED4B650 6c instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::Fetch(!!0&,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12ED4B6E0 c1 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::Fetch(!!0&,!!1,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12ED4B7D0 4 instance int32 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::get_Revision()[OptimizedTier1] +00007FA12ED4B7F0 90 instance string [System.Private.CoreLib] System.String::Substring(int32,int32)[OptimizedTier1] +00007FA12ED4B8A0 2b instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::Set(uint64,uint64)[OptimizedTier1] +00007FA12ED4B8E0 8 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker+SpanContext::.ctor(uint64,uint64)[OptimizedTier1] +00007FA12ED4B900 19 instance class Datadog.Trace.Configuration.ImmutableTracerSettings [Datadog.Trace] Datadog.Trace.Tracer::get_Settings()[OptimizedTier1] +00007FA12ED4B930 5 instance class Datadog.Trace.Configuration.ImmutableTracerSettings [Datadog.Trace] Datadog.Trace.TracerManager::get_Settings()[OptimizedTier1] +00007FA12ED4B950 5 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::get_Request()[OptimizedTier1] +00007FA12ED4B970 b instance int32 [System.Private.CoreLib] System.Text.StringBuilder::get_Capacity()[OptimizedTier1] +00007FA12ED4B990 19a instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,valuetype System.Reflection.Emit.Label)[OptimizedTier1] +00007FA12EEC8C78 18 stub<19799> AllocateTemporaryEntryPoints +00007FA12EEC8C90 18 stub<19800> AllocateTemporaryEntryPoints +00007FA12ED4BB50 13d instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::AddFixup(valuetype System.Reflection.Emit.Label,int32,int32)[OptimizedTier1] +00007FA12EEC8CA8 18 stub<19801> AllocateTemporaryEntryPoints +00007FA12ED4BCB0 9c instance valuetype System.Reflection.Emit.Label [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::DefineLabel(int32)[OptimizedTier1] +00007FA12ED4BD70 11e instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::MarkLabel(valuetype System.Reflection.Emit.Label)[OptimizedTier1] +00007FA12ED4BEB0 b instance valuetype System.Reflection.Emit.Label [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::DefineLabel()[OptimizedTier1] +00007FA12ED4BED0 20 instance bool [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.ValueTuple`2[System.__Canon,System.Int32]]::MoveNext()[OptimizedTier1] +00007FA12EEC8CC0 18 stub<19802> AllocateTemporaryEntryPoints +00007FA12EEC8CD8 18 stub<19803> AllocateTemporaryEntryPoints +00007FA12EEC8CF0 18 stub<19804> AllocateTemporaryEntryPoints +00007FA12ED4BF00 da instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,int64)[OptimizedTier1] +00007FA12ED4C000 aa instance void [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,int8)[OptimizedTier1] +00007FA12ED4C0D0 31 instance !0 [System.Private.CoreLib] System.SZGenericArrayEnumerator`1[System.ValueTuple`2[System.__Canon,System.Int32]]::get_Current()[OptimizedTier1] +00007FA12ED4C120 c0 instance int32 [System.Private.CoreLib] System.Reflection.Emit.ILGenerator::GetLabelPos(valuetype System.Reflection.Emit.Label)[OptimizedTier1] +00007FA12ED4C200 17 instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::Reset()[OptimizedTier1] +00007FA12ED4C230 7c instance string [System.Private.CoreLib] System.Text.ValueStringBuilder::ToString()[OptimizedTier1] +00007FA12ED4C2D0 69 instance class System.RuntimeType [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache::GetEnclosingType()[OptimizedTier1] +00007FA12ED4C360 1e instance int32 [System.Private.CoreLib] System.String::IndexOf(char)[OptimizedTier1] +00007FA12ED4C3A0 52 instance bool [System.Private.CoreLib] System.Collections.Generic.NonRandomizedStringEqualityComparer+OrdinalComparer::Equals(string,string)[OptimizedTier1] +00007FA12ED4C410 5c instance void [System.Private.CoreLib] System.Reflection.Emit.TypeBuilder::ThrowIfCreated()[OptimizedTier1] +00007FA12ED4C490 d8 instance int32 [System.Private.CoreLib] System.Reflection.Emit.ModuleBuilder::GetTypeTokenInternal(class System.Type,bool)[OptimizedTier1] +00007FA12EEC8D08 18 stub<19805> AllocateTemporaryEntryPoints +00007FA12EEC8D20 60 stub<19806> AllocateTemporaryEntryPoints +00007FA12ED4C5A0 4ce instance int32 [System.Private.CoreLib] System.Reflection.Emit.ModuleBuilder::GetTypeTokenWorkerNoLock(class System.Type,bool)[OptimizedTier1] +00007FA12ED4CA90 282 instance int32 [System.Private.CoreLib] System.Reflection.Emit.ModuleBuilder::GetTypeRefNested(class System.Type,class System.Reflection.Module)[OptimizedTier1] +00007FA12ED4CD40 4e class System.Reflection.RuntimeModule [System.Private.CoreLib] System.Reflection.Emit.ModuleBuilder::GetRuntimeModuleFromModule(class System.Reflection.Module)[OptimizedTier1] +00007FA12ED4CDB0 76 instance void [System.Private.CoreLib] System.Reflection.Emit.MethodBuilder::ThrowIfShouldNotHaveBody()[OptimizedTier1] +00007FA12ED4CE40 46 instance void [System.Private.CoreLib] System.Reflection.Emit.MethodBuilder::ThrowIfGeneric()[OptimizedTier1] +00007FA12ED4CEA0 b instance class System.Reflection.Emit.ILGenerator [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::GetILGenerator()[OptimizedTier1] +00007FA12ED4CEC0 4ae instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicILGenerator::Emit(valuetype System.Reflection.Emit.OpCode,class System.Reflection.ConstructorInfo)[OptimizedTier1] +00007FA12ED4D390 130 instance class System.RuntimeType [System.Private.CoreLib] System.RuntimeTypeHandle::Instantiate(class System.RuntimeType)[OptimizedTier1] +00007FA12ED4D4E0 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::get_Count()[OptimizedTier1] +00007FA12ED4D500 17b void [System.Linq.Expressions] System.Dynamic.Utils.ExpressionUtils::ValidateArgumentCount(class [System.Runtime]System.Reflection.MethodBase,valuetype System.Linq.Expressions.ExpressionType,int32,class [System.Runtime]System.Reflection.ParameterInfo[])[OptimizedTier1] +00007FA12ED4D6A0 381 instance class [System.Collections]System.Collections.Generic.List`1 [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitArguments(class [System.Runtime]System.Reflection.MethodBase,class System.Linq.Expressions.IArgumentProvider,int32)[OptimizedTier1] +00007FA12EEC8D80 18 stub<19807> AllocateTemporaryEntryPoints +00007FA12ED4DA60 c4 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitWriteBack(class [System.Collections]System.Collections.Generic.List`1)[OptimizedTier1] +00007FA12ED4DB40 153 class System.Reflection.RuntimeModule [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::GetDynamicMethodsModule()[OptimizedTier1] +00007FA12ED4DCC0 d0 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.PropertyActivator`1[System.__Canon]::.ctor(class [System.Runtime]System.Reflection.PropertyInfo,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12ED4DDB0 151 class [System.Runtime]System.Action`2 [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.PropertyHelper::MakeFastPropertySetter(class [System.Runtime]System.Reflection.PropertyInfo)[OptimizedTier1] +00007FA12ED4DF40 272 instance class System.RuntimeType [System.Private.CoreLib] System.RuntimeTypeHandle::Instantiate(class System.Type[])[OptimizedTier1] +00007FA12ED4E1E0 123 native int[] [System.Private.CoreLib] System.RuntimeTypeHandle::CopyRuntimeTypeHandles(class System.Type[],int32&)[OptimizedTier1] +00007FA12ED4E330 d instance class System.Delegate [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::CreateDelegate(class System.Type)[OptimizedTier1] +00007FA12EECA000 288 stub<19808> AllocateTemporaryEntryPoints +00007FA12ED4E360 2ea instance class System.Reflection.MethodInfo [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::MakeGenericMethod(class System.Type[])[OptimizedTier1] +00007FA12ED4E690 d5 class System.RuntimeType[] [System.Private.CoreLib] System.RuntimeMethodHandle::GetMethodInstantiationInternal(class System.IRuntimeMethodInfo)[OptimizedTier1] +00007FA12EECA288 18 stub<19809> AllocateTemporaryEntryPoints +00007FA12EECA2A0 18 stub<19810> AllocateTemporaryEntryPoints +00007FA12EECA2B8 18 stub<19811> AllocateTemporaryEntryPoints +00007FA12ED4E7A0 55b instance class System.Reflection.MethodInfo [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache::GetGenericMethodInfo(valuetype System.RuntimeMethodHandleInternal)[OptimizedTier1] +00007FA12ED4ED40 b instance class System.Delegate [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::CreateDelegate(class System.Type,object)[OptimizedTier1] +00007FA12ED4ED60 48 instance void [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.__Canon]::Add(!0)[OptimizedTier1] +00007FA12ED4EDC0 b2 instance !0 [System.Private.CoreLib] System.Threading.AsyncLocal`1[System.__Canon]::get_Value()[OptimizedTier1] +00007FA12ED4EE90 96 object [System.Private.CoreLib] System.Threading.ExecutionContext::GetLocalValue(class System.Threading.IAsyncLocal)[OptimizedTier1] +00007FA12ED4EF40 82 instance void [System.Private.CoreLib] System.Text.ValueStringBuilder::Append(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED4EFE0 201 instance void [System.Private.CoreLib] System.Text.StringBuilder::set_Length(int32)[OptimizedTier1] +00007FA12ED4F200 6 instance bool [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticObserver::IsEventEnabled(string)[OptimizedTier1] +00007FA12ED4F220 5 instance class Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ActionContext::get_ActionDescriptor()[OptimizedTier1] +00007FA12E672480 18 stub<19812> GenerateLookupStub +00007FA12ED4F240 46 instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.DiagnosticListener::Write(string,object)[OptimizedTier1] +00007FA12ED4F2B0 138 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.DiagnosticObserver::System.IObserver>.OnNext(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[OptimizedTier1] +00007FA12ED4F420 3ed instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnNext(string,object)[OptimizedTier1] +00007FA12ED4F9C0 4a instance bool [System.Diagnostics.DiagnosticSource] System.Diagnostics.DiagnosticListener::IsEnabled(string)[OptimizedTier1] +00007FA12ED4FA30 12 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.String::op_Implicit(string)[OptimizedTier1] +00007FA12ED4FA60 117 bool [System.Private.CoreLib] System.Number::TryUInt32ToDecStr(uint32,int32,valuetype System.Span`1,int32&)[OptimizedTier1] +00007FA12ED4FB90 e string [System.Private.CoreLib] System.Environment::get_NewLine()[OptimizedTier1] +00007FA12ED4FBB0 8e instance void [System.Private.CoreLib] System.Text.ValueStringBuilder::AppendSlow(string)[OptimizedTier1] +00007FA12ED4FC60 78 instance valuetype System.Number/DiyFp [System.Private.CoreLib] System.Number+DiyFp::Multiply(valuetype System.Number/DiyFp&)[OptimizedTier1] +00007FA12ED4FCF0 bb class System.Globalization.NumberFormatInfo [System.Private.CoreLib] System.Globalization.NumberFormatInfo::g__GetProviderNonNull|44_0(class System.IFormatProvider)[OptimizedTier1] +00007FA12ED4FDE0 7d char* [System.Private.CoreLib] System.Number::MatchChars(char*,char*,string)[OptimizedTier1] +00007FA12ED4FE80 57 instance string [System.Private.CoreLib] System.Globalization.CultureInfo::get_Name()[OptimizedTier1] +00007FA12ED4FEF0 b instance void [Samples.BuggyBits] BuggyBits.Models.Product::set_Price(string)[OptimizedTier1] +00007FA12EECA2D0 30 stub<19813> AllocateTemporaryEntryPoints +00007FA12ED4FF10 17 instance valuetype System.Number/DiyFp [System.Private.CoreLib] System.Number+DiyFp::Normalize()[OptimizedTier1] +00007FA12EECA300 78 stub<19814> AllocateTemporaryEntryPoints +00007FA12EECA378 18 stub<19815> AllocateTemporaryEntryPoints +00007FA12EECA390 18 stub<19816> AllocateTemporaryEntryPoints +00007FA12EECA3A8 18 stub<19817> AllocateTemporaryEntryPoints +00007FA12EECA3C0 18 stub<19818> AllocateTemporaryEntryPoints +00007FA12EECA3D8 18 stub<19819> AllocateTemporaryEntryPoints +00007FA12EECA3F0 18 stub<19820> AllocateTemporaryEntryPoints +00007FA12ED4FF40 55d bool [System.Private.CoreLib] System.Number::TryParseDouble(valuetype System.ReadOnlySpan`1,valuetype System.Globalization.NumberStyles,class System.Globalization.NumberFormatInfo,float64&)[OptimizedTier1] +00007FA12ED504C0 9b bool [System.Private.CoreLib] System.Number::TryStringToNumber(valuetype System.ReadOnlySpan`1,valuetype System.Globalization.NumberStyles,valuetype System.Number/NumberBuffer&,class System.Globalization.NumberFormatInfo)[OptimizedTier1] +00007FA12ED50580 b86 bool [System.Private.CoreLib] System.Number::TryParseNumber(char*&,char*,valuetype System.Globalization.NumberStyles,valuetype System.Number/NumberBuffer&,class System.Globalization.NumberFormatInfo)[OptimizedTier1] +00007FA12ED51130 125 bool [System.Private.CoreLib] System.MemoryExtensions::StartsWith(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.StringComparison)[OptimizedTier1] +00007FA12ED51290 11c instance class BuggyBits.Models.Product [Samples.BuggyBits] BuggyBits.Models.DataLayer::GetProduct(int32)[OptimizedTier1] +00007FA12ED513D0 1 instance void [Samples.BuggyBits] BuggyBits.Models.Product::.ctor()[OptimizedTier1] +00007FA12ED513F0 b instance void [Samples.BuggyBits] BuggyBits.Models.Product::set_ProductName(string)[OptimizedTier1] +00007FA12ED51410 b instance void [Samples.BuggyBits] BuggyBits.Models.Product::set_Description(string)[OptimizedTier1] +00007FA12ED51430 df string [System.Private.CoreLib] System.String::FormatHelper(class System.IFormatProvider,string,valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EECA408 18 stub<19821> AllocateTemporaryEntryPoints +00007FA12EECA420 a8 stub<19822> AllocateTemporaryEntryPoints +00007FA12EECA4C8 18 stub<19823> AllocateTemporaryEntryPoints +00007FA12EECA4E0 60 stub<19824> AllocateTemporaryEntryPoints +00007FA12EECA540 30 stub<19825> AllocateTemporaryEntryPoints +00007FA12EECA570 18 stub<19826> AllocateTemporaryEntryPoints +00007FA12EECA588 390 stub<19827> AllocateTemporaryEntryPoints +00007FA12EECA918 30 stub<19828> AllocateTemporaryEntryPoints +00007FA12EECA948 18 stub<19829> AllocateTemporaryEntryPoints +00007FA12EECA960 30 stub<19830> AllocateTemporaryEntryPoints +00007FA12EECA990 30 stub<19831> AllocateTemporaryEntryPoints +00007FA12EECA9C0 18 stub<19832> AllocateTemporaryEntryPoints +00007FA12EECA9D8 30 stub<19833> AllocateTemporaryEntryPoints +00007FA12EECAA08 18 stub<19834> AllocateTemporaryEntryPoints +00007FA12EECAA20 30 stub<19835> AllocateTemporaryEntryPoints +00007FA12EECAA50 30 stub<19836> AllocateTemporaryEntryPoints +00007FA12EECAA80 30 stub<19837> AllocateTemporaryEntryPoints +00007FA12EECAAB0 30 stub<19838> AllocateTemporaryEntryPoints +00007FA12EECAAE0 18 stub<19839> AllocateTemporaryEntryPoints +00007FA12EECAAF8 30 stub<19840> AllocateTemporaryEntryPoints +00007FA12EECAB28 18 stub<19841> AllocateTemporaryEntryPoints +00007FA12EECAB40 18 stub<19842> AllocateTemporaryEntryPoints +00007FA12EECAB58 18 stub<19843> AllocateTemporaryEntryPoints +00007FA12EECAB70 18 stub<19844> AllocateTemporaryEntryPoints +00007FA12EECAB88 18 stub<19845> AllocateTemporaryEntryPoints +00007FA12EECABA0 18 stub<19846> AllocateTemporaryEntryPoints +00007FA12EECABB8 18 stub<19847> AllocateTemporaryEntryPoints +00007FA12EECABD0 18 stub<19848> AllocateTemporaryEntryPoints +00007FA12EECABE8 48 stub<19849> AllocateTemporaryEntryPoints +00007FA12EECAC30 48 stub<19850> AllocateTemporaryEntryPoints +00007FA12EECAC78 18 stub<19851> AllocateTemporaryEntryPoints +00007FA12ED51540 9b3 instance void [System.Private.CoreLib] System.Text.ValueStringBuilder::AppendFormatHelper(class System.IFormatProvider,string,valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EECAC90 18 stub<19852> AllocateTemporaryEntryPoints +00007FA12ED51F20 4e class System.Globalization.CultureInfo [System.Private.CoreLib] System.Globalization.CultureInfo::get_CurrentCulture()[OptimizedTier1] +00007FA12ED51F90 a9 class System.Globalization.NumberFormatInfo [System.Private.CoreLib] System.Globalization.NumberFormatInfo::get_CurrentInfo()[OptimizedTier1] +00007FA12ED52060 144 char [System.Private.CoreLib] System.Number::ParseFormatSpecifier(valuetype System.ReadOnlySpan`1,int32&)[OptimizedTier1] +00007FA12ED521C0 71 float64 [System.Private.CoreLib] System.Number::NumberToDouble(valuetype System.Number/NumberBuffer&)[OptimizedTier1] +00007FA12ED52270 181 uint64 [System.Private.CoreLib] System.Number::NumberToDoubleFloatingPointBits(valuetype System.Number/NumberBuffer&,valuetype System.Number/FloatingPointInfo&)[OptimizedTier1] +00007FA12ED52420 b1 uint64 [System.Private.CoreLib] System.Number::DigitsToUInt64(uint8*,int32)[OptimizedTier1] +00007FA12ED524F0 249 string [System.Private.CoreLib] System.Number::FormatDouble(valuetype System.Text.ValueStringBuilder&,float64,valuetype System.ReadOnlySpan`1,class System.Globalization.NumberFormatInfo)[OptimizedTier1] +00007FA12ED52770 19a int32 [System.Private.CoreLib] System.Number::GetFloatingPointMaxDigitsAndPrecision(char,int32&,class System.Globalization.NumberFormatInfo,bool&)[OptimizedTier1] +00007FA12ED52980 2b1 bool [System.Private.CoreLib] System.Number+Grisu3::TryRunDouble(float64,int32,valuetype System.Number/NumberBuffer&)[OptimizedTier1] +00007FA12ED52C70 4b uint64 [System.Private.CoreLib] System.Number::ExtractFractionAndBiasedExponent(float64,int32&)[OptimizedTier1] +00007FA12ED52CD0 96 valuetype System.Number/DiyFp [System.Private.CoreLib] System.Number+Grisu3::GetCachedPowerForBinaryExponentRange(int32,int32,int32&)[OptimizedTier1] +00007FA12ED52D90 4f uint32 [System.Private.CoreLib] System.Number+Grisu3::BiggestPowerTen(uint32,int32,int32&)[OptimizedTier1] +00007FA12ED52E00 ba void [System.Private.CoreLib] System.Number::RoundNumber(valuetype System.Number/NumberBuffer&,int32,bool)[OptimizedTier1] +00007FA12EECACA8 18 stub<19853> AllocateTemporaryEntryPoints +00007FA12ED52ED0 25 instance string [System.Private.CoreLib] System.ReadOnlySpan`1[System.Char]::ToString()[OptimizedTier1] +00007FA12ED52F10 81 instance void [System.Private.CoreLib] System.Number+DiyFp::GetBoundaries(int32,valuetype System.Number/DiyFp&,valuetype System.Number/DiyFp&)[OptimizedTier1] +00007FA12ED52FB0 c8 bool [System.Private.CoreLib] System.Number+Grisu3::TryRunShortest(valuetype System.Number/DiyFp&,valuetype System.Number/DiyFp&,valuetype System.Number/DiyFp&,valuetype System.Span`1,int32&,int32&)[OptimizedTier1] +00007FA12ED530A0 205 bool [System.Private.CoreLib] System.Number+Grisu3::TryDigitGenShortest(valuetype System.Number/DiyFp&,valuetype System.Number/DiyFp&,valuetype System.Number/DiyFp&,valuetype System.Span`1,int32&,int32&)[OptimizedTier1] +00007FA12ED532E0 ec bool [System.Private.CoreLib] System.Number+Grisu3::TryRoundWeedShortest(valuetype System.Span`1,int32,uint64,uint64,uint64,uint64,uint64)[OptimizedTier1] +00007FA12ED533F0 40f void [System.Private.CoreLib] System.Number::NumberToString(valuetype System.Text.ValueStringBuilder&,valuetype System.Number/NumberBuffer&,char,int32,class System.Globalization.NumberFormatInfo)[OptimizedTier1] +00007FA12ED53880 2e6 void [System.Private.CoreLib] System.Number::FormatGeneral(valuetype System.Text.ValueStringBuilder&,valuetype System.Number/NumberBuffer&,int32,class System.Globalization.NumberFormatInfo,char,bool)[OptimizedTier1] +00007FA12ED53BA0 38 int32 [System.Private.CoreLib] System.Resources.FastResourceComparer::HashFunction(string)[OptimizedTier1] +00007FA12ED53BF0 9 instance int32 [System.Private.CoreLib] System.Resources.FastResourceComparer::GetHashCode(string)[OptimizedTier1] +00007FA12ED53C10 83 string [System.Private.CoreLib] System.Number::FormatDouble(float64,string,class System.Globalization.NumberFormatInfo)[OptimizedTier1] +00007FA12EECACC0 18 stub<19854> AllocateTemporaryEntryPoints +00007FA12EECACD8 18 stub<19855> AllocateTemporaryEntryPoints +00007FA12EECACF0 18 stub<19856> AllocateTemporaryEntryPoints +00007FA12EECAD08 a8 stub<19857> AllocateTemporaryEntryPoints +00007FA12EECADB0 18 stub<19858> AllocateTemporaryEntryPoints +00007FA12EECADC8 60 stub<19859> AllocateTemporaryEntryPoints +00007FA12EECAE28 30 stub<19860> AllocateTemporaryEntryPoints +00007FA12EECAE58 18 stub<19861> AllocateTemporaryEntryPoints +00007FA12EECC000 390 stub<19862> AllocateTemporaryEntryPoints +00007FA12EECC390 30 stub<19863> AllocateTemporaryEntryPoints +00007FA12EECC3C0 18 stub<19864> AllocateTemporaryEntryPoints +00007FA12EECC3D8 30 stub<19865> AllocateTemporaryEntryPoints +00007FA12EECC408 30 stub<19866> AllocateTemporaryEntryPoints +00007FA12EECC438 18 stub<19867> AllocateTemporaryEntryPoints +00007FA12EECC450 30 stub<19868> AllocateTemporaryEntryPoints +00007FA12EECC480 18 stub<19869> AllocateTemporaryEntryPoints +00007FA12EECC498 30 stub<19870> AllocateTemporaryEntryPoints +00007FA12EECC4C8 30 stub<19871> AllocateTemporaryEntryPoints +00007FA12EECC4F8 30 stub<19872> AllocateTemporaryEntryPoints +00007FA12EECC528 30 stub<19873> AllocateTemporaryEntryPoints +00007FA12EECC558 18 stub<19874> AllocateTemporaryEntryPoints +00007FA12EECC570 30 stub<19875> AllocateTemporaryEntryPoints +00007FA12EECC5A0 18 stub<19876> AllocateTemporaryEntryPoints +00007FA12EECC5B8 18 stub<19877> AllocateTemporaryEntryPoints +00007FA12EECC5D0 18 stub<19878> AllocateTemporaryEntryPoints +00007FA12EECC5E8 18 stub<19879> AllocateTemporaryEntryPoints +00007FA12EECC600 18 stub<19880> AllocateTemporaryEntryPoints +00007FA12EECC618 18 stub<19881> AllocateTemporaryEntryPoints +00007FA12EECC630 18 stub<19882> AllocateTemporaryEntryPoints +00007FA12EECC648 18 stub<19883> AllocateTemporaryEntryPoints +00007FA12EECC660 18 stub<19884> AllocateTemporaryEntryPoints +00007FA12EECC678 18 stub<19885> AllocateTemporaryEntryPoints +00007FA12EECC690 48 stub<19886> AllocateTemporaryEntryPoints +00007FA12EECC6D8 48 stub<19887> AllocateTemporaryEntryPoints +00007FA12EECC720 48 stub<19888> AllocateTemporaryEntryPoints +00007FA12EECC768 18 stub<19889> AllocateTemporaryEntryPoints +00007FA12EECC780 48 stub<19890> AllocateTemporaryEntryPoints +00007FA12EECC7C8 48 stub<19891> AllocateTemporaryEntryPoints +00007FA12EECC810 18 stub<19892> AllocateTemporaryEntryPoints +00007FA12ED53CB0 35 bool [System.Private.CoreLib] System.Number::TrailingZeros(valuetype System.ReadOnlySpan`1,int32)[OptimizedTier1] +00007FA12EECC828 d8 stub<19893> AllocateTemporaryEntryPoints +00007FA12EECC900 30 stub<19894> AllocateTemporaryEntryPoints +00007FA12EECC930 18 stub<19895> AllocateTemporaryEntryPoints +00007FA12EECC948 18 stub<19896> AllocateTemporaryEntryPoints +00007FA12EECC960 240 stub<19897> AllocateTemporaryEntryPoints +00007FA12EECCBA0 48 stub<19898> AllocateTemporaryEntryPoints +00007FA12EECCBE8 60 stub<19899> AllocateTemporaryEntryPoints +00007FA12EECCC48 a8 stub<19900> AllocateTemporaryEntryPoints +00007FA12EECCCF0 18 stub<19901> AllocateTemporaryEntryPoints +00007FA12EECE000 390 stub<19902> AllocateTemporaryEntryPoints +00007FA12EECE390 30 stub<19903> AllocateTemporaryEntryPoints +00007FA12EECE3C0 18 stub<19904> AllocateTemporaryEntryPoints +00007FA12EECE3D8 30 stub<19905> AllocateTemporaryEntryPoints +00007FA12EECE408 30 stub<19906> AllocateTemporaryEntryPoints +00007FA12EECE438 30 stub<19907> AllocateTemporaryEntryPoints +00007FA12EECE468 18 stub<19908> AllocateTemporaryEntryPoints +00007FA12EECE480 30 stub<19909> AllocateTemporaryEntryPoints +00007FA12EECE4B0 30 stub<19910> AllocateTemporaryEntryPoints +00007FA12EECE4E0 30 stub<19911> AllocateTemporaryEntryPoints +00007FA12EECE510 30 stub<19912> AllocateTemporaryEntryPoints +00007FA12EECE540 18 stub<19913> AllocateTemporaryEntryPoints +00007FA12EECE558 30 stub<19914> AllocateTemporaryEntryPoints +00007FA12EECE588 30 stub<19915> AllocateTemporaryEntryPoints +00007FA12ED53D00 27 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfAnyExcept(!!0&,!!0,int32)[OptimizedTier1] +00007FA12ED53D40 cd valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.MemoryExtensions::Trim(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED53E30 45 string [System.Private.CoreLib] System.SR::GetResourceString(string)[OptimizedTier1] +00007FA12EECE5B8 18 stub<19916> AllocateTemporaryEntryPoints +00007FA12EECE5D0 18 stub<19917> AllocateTemporaryEntryPoints +00007FA12EECE5E8 18 stub<19918> AllocateTemporaryEntryPoints +00007FA12ED53EA0 51b string [System.Private.CoreLib] System.SR::InternalGetResourceString(string)[OptimizedTier1] +00007FA12ED54420 59 class System.Resources.ResourceManager [System.Private.CoreLib] System.SR::get_ResourceManager()[OptimizedTier1] +00007FA12E6724A0 18 stub<19919> GenerateLookupStub +00007FA12ED544A0 324 instance string [System.Private.CoreLib] System.Resources.ResourceManager::GetString(string,class System.Globalization.CultureInfo)[OptimizedTier1] +00007FA12ED54820 4e class System.Globalization.CultureInfo [System.Private.CoreLib] System.Globalization.CultureInfo::get_CurrentUICulture()[OptimizedTier1] +00007FA12ED54890 19 class System.Globalization.CultureInfo [System.Private.CoreLib] System.Globalization.CultureInfo::get_UserDefaultUICulture()[OptimizedTier1] +00007FA12EECE600 18 stub<19920> AllocateTemporaryEntryPoints +00007FA12ED548C0 4a5 instance class System.Resources.ResourceSet [System.Private.CoreLib] System.Resources.ResourceManager::GetFirstResourceSet(class System.Globalization.CultureInfo)[OptimizedTier1] +00007FA12EECE618 18 stub<19921> AllocateTemporaryEntryPoints +00007FA12ED54DE0 3eb instance object [System.Private.CoreLib] System.Resources.RuntimeResourceSet::GetObject(string,bool,bool)[OptimizedTier1] +00007FA12ED55210 2e instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Resources.ResourceLocator]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EECE630 60 stub<19922> AllocateTemporaryEntryPoints +00007FA12EECE690 18 stub<19923> AllocateTemporaryEntryPoints +00007FA12EECE6A8 18 stub<19924> AllocateTemporaryEntryPoints +00007FA12EECE6C0 18 stub<19925> AllocateTemporaryEntryPoints +00007FA12ED55260 242 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Resources.ResourceLocator]::FindValue(!0)[OptimizedTier1] +00007FA12ED554D0 19 instance void [System.Private.CoreLib] System.Exception::.ctor(string)[OptimizedTier1] +00007FA12ED55500 7f instance valuetype System.DateTime [System.Private.CoreLib] System.DateTimeOffset::get_ClockDateTime()[OptimizedTier1] +00007FA12ED555A0 41 valuetype System.DateTime [System.Private.CoreLib] System.DateTime::op_Addition(valuetype System.DateTime,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12ED55600 8 instance int32 [System.Private.CoreLib] System.Text.EncoderReplacementFallback::get_MaxCharCount()[OptimizedTier1] +00007FA12ED55620 169 instance int32 [System.Private.CoreLib] System.Text.UTF8Encoding::GetBytes(string,int32,int32,uint8[],int32)[OptimizedTier1] +00007FA12ED557B0 132 instance int32 [System.Private.CoreLib] System.Text.UTF8Encoding::GetMaxByteCount(int32)[OptimizedTier1] +00007FA12ED55900 136 instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer::ApplyDiscount(class BuggyBits.Models.Product)[OptimizedTier1] +00007FA12ED55A80 8e float64 [System.Private.CoreLib] System.Double::Parse(string,valuetype System.Globalization.NumberStyles,class System.IFormatProvider)[OptimizedTier1] +00007FA12ED55B30 31 instance string [System.Private.CoreLib] System.Double::ToString()[OptimizedTier1] +00007FA12ED55B80 25 void [System.Private.CoreLib] System.Number::ThrowOverflowOrFormatException(valuetype System.Number/ParsingStatus,valuetype System.ReadOnlySpan`1,valuetype System.TypeCode)[OptimizedTier1] +00007FA12ED55BC0 a4 class System.Exception [System.Private.CoreLib] System.Number::GetException(valuetype System.Number/ParsingStatus,valuetype System.ReadOnlySpan`1,valuetype System.TypeCode)[OptimizedTier1] +00007FA12ED55C80 52 instance bool [System.Private.CoreLib] System.Resources.FastResourceComparer::Equals(string,string)[OptimizedTier1] +00007FA12EECE6D8 18 stub<19926> AllocateTemporaryEntryPoints +00007FA12EECE6F0 18 stub<19927> AllocateTemporaryEntryPoints +00007FA12EECE708 18 stub<19928> AllocateTemporaryEntryPoints +00007FA12ED55CF0 1f string [System.Private.CoreLib] System.SR::Format(string,object)[OptimizedTier1] +00007FA12ED55D30 34 instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer+PriceException::.ctor(string,string)[OptimizedTier1] +00007FA12ED55D80 b instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer+PriceException::set_Price(string)[OptimizedTier1] +00007FA12ED55DA0 5 instance !0 [System.Private.CoreLib] System.Nullable`1[System.Boolean]::GetValueOrDefault()[OptimizedTier1] +00007FA12ED55DC0 45 instance class System.Net.Http.Headers.HttpRequestHeaders [System.Net.Http] System.Net.Http.HttpRequestMessage::get_Headers()[OptimizedTier1] +00007FA12EECE720 18 stub<19929> AllocateTemporaryEntryPoints +00007FA12EECE738 18 stub<19930> AllocateTemporaryEntryPoints +00007FA12ED55E20 159 instance object& [System.Net.Http] System.Net.Http.Headers.HttpHeaders::GetValueRefOrAddDefault(valuetype System.Net.Http.Headers.HeaderDescriptor)[OptimizedTier1] +00007FA12ED55FA0 61 object [System.Net.Http] System.Net.Http.Headers.HttpHeaders::CloneStringHeaderInfoValues(object)[OptimizedTier1] +00007FA12ED56020 5 instance class Datadog.Trace.IScopeManager [Datadog.Trace] Datadog.Trace.TracerManager::get_ScopeManager()[OptimizedTier1] +00007FA12ED56040 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]::get_HasValue()[OptimizedTier1] +00007FA12ED56060 e class Datadog.Trace.ClrProfiler.IDistributedTracer [Datadog.Trace] Datadog.Trace.ClrProfiler.DistributedTracer::get_Instance()[OptimizedTier1] +00007FA12ED56080 3e2 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEngine::System.Threading.IThreadPoolWorkItem.Execute()[OptimizedTier1] +00007FA12EECE750 60 stub<19931> AllocateTemporaryEntryPoints +00007FA12EECE7B0 18 stub<19932> AllocateTemporaryEntryPoints +00007FA12ED564A0 d1 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection::WriteStringAsync(string,bool)[OptimizedTier1] +00007FA12ED56590 70 int32 [System.Net.Http] System.Net.Http.Headers.HttpHeaders::GetValueCount(class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo)[OptimizedTier1] +00007FA12ED56620 68 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1> [System.Net.Http] System.Net.Http.HttpConnection::ReadNextResponseHeaderLineAsync(bool,bool)[OptimizedTier1] +00007FA12ED566B0 11 valuetype System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ReadOnlyMemory`1[System.Byte]]::Create()[OptimizedTier1] +00007FA12ED566E0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ReadOnlyMemory`1[System.Byte]]::Start(!!0&)[OptimizedTier1] +00007FA12ED56700 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EECE7C8 18 stub<19933> AllocateTemporaryEntryPoints +00007FA12EECE7E0 1e0 stub<19934> AllocateTemporaryEntryPoints +00007FA12EECE9C0 18 stub<19935> AllocateTemporaryEntryPoints +00007FA12EECE9D8 18 stub<19936> AllocateTemporaryEntryPoints +00007FA12EECE9F0 18 stub<19937> AllocateTemporaryEntryPoints +00007FA12ED56860 6b7 instance void [System.Net.Http] System.Net.Http.HttpConnection+d__95::MoveNext()[OptimizedTier1] +00007FA12ED56F70 5d int32 [System.Private.CoreLib] System.Array::IndexOf(!!0[],!!0,int32,int32)[OptimizedTier1] +00007FA12ED56FF0 9f instance void [System.Net.Http] System.Net.Http.HttpConnection::ThrowIfExceededAllowedReadLineBytes()[OptimizedTier1] +00007FA12ED570B0 59 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ReadOnlyMemory`1[System.Byte]]::SetResult(!0)[OptimizedTier1] +00007FA12ED57120 101 instance valuetype System.Threading.Tasks.ValueTask`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ReadOnlyMemory`1[System.Byte]]::get_Task()[OptimizedTier1] +00007FA12ED57250 6c instance valuetype System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.ReadOnlyMemory`1[System.Byte]]::ConfigureAwait(bool)[OptimizedTier1] +00007FA12ED572E0 35 instance valuetype System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1[System.ReadOnlyMemory`1[System.Byte]]::GetAwaiter()[OptimizedTier1] +00007FA12EECEA08 48 stub<19938> AllocateTemporaryEntryPoints +00007FA12EECEA50 18 stub<19939> AllocateTemporaryEntryPoints +00007FA12E6724C0 18 stub<19940> GenerateLookupStub +00007FA12ED57330 67 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1+ConfiguredValueTaskAwaiter[System.ReadOnlyMemory`1[System.Byte]]::get_IsCompleted()[OptimizedTier1] +00007FA12E6724E0 18 stub<19941> GenerateLookupStub +00007FA12ED573B0 bd instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1+ConfiguredValueTaskAwaiter[System.ReadOnlyMemory`1[System.Byte]]::GetResult()[OptimizedTier1] +00007FA12ED574A0 177 void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::ParseRawHeaderValues(valuetype System.Net.Http.Headers.HeaderDescriptor,class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo)[OptimizedTier1] +00007FA12ED57650 85 instance string [System.Private.CoreLib] System.String::Substring(int32)[OptimizedTier1] +00007FA12ED57700 46 instance float64 [System.Private.CoreLib] System.TimeSpan::get_TotalMilliseconds()[OptimizedTier1] +00007FA12ED57780 1f instance void [System.Private.CoreLib] System.Text.StringBuilder+AppendInterpolatedStringHandler::AppendLiteral(string)[OptimizedTier1] +00007FA12ED577C0 39 instance void [System.Private.CoreLib] System.Text.StringBuilder+AppendInterpolatedStringHandler::AppendFormatted(string)[OptimizedTier1] +00007FA12ED57810 1b instance void [System.Private.CoreLib] System.Text.StringBuilder+AppendInterpolatedStringHandler::.ctor(int32,int32,class System.Text.StringBuilder)[OptimizedTier1] +00007FA12ED57840 183 instance void [System.Private.CoreLib] System.Text.StringBuilder::ExpandByABlock(int32)[OptimizedTier1] +00007FA12EECEA68 18 stub<19942> AllocateTemporaryEntryPoints +00007FA12ED579E0 15e instance void [System.Private.CoreLib] System.Text.StringBuilder::AppendWithExpansion(char&,int32)[OptimizedTier1] +00007FA12EECEA80 270 stub<19943> AllocateTemporaryEntryPoints +00007FA12EECECF0 18 stub<19944> AllocateTemporaryEntryPoints +00007FA12EECED08 18 stub<19945> AllocateTemporaryEntryPoints +00007FA12EECED20 18 stub<19946> AllocateTemporaryEntryPoints +00007FA12EECED38 18 stub<19947> AllocateTemporaryEntryPoints +00007FA12EECED50 18 stub<19948> AllocateTemporaryEntryPoints +00007FA12ED57B60 23 bool [System.Private.CoreLib] System.MemoryExtensions::SequenceEqual(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED57BA0 74 instance valuetype System.Threading.Tasks.TaskStatus [System.Private.CoreLib] System.Threading.Tasks.Task::get_Status()[OptimizedTier1] +00007FA12ED57C30 4 instance class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.MessageLogger::get_Logger()[OptimizedTier1] +00007FA12ED57C50 4 instance class Microsoft.AspNetCore.Http.Features.IFeatureCollection [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::get_Collection()[OptimizedTier1] +00007FA12EECED68 18 stub<19949> AllocateTemporaryEntryPoints +00007FA12EECED80 18 stub<19950> AllocateTemporaryEntryPoints +00007FA12EECED98 18 stub<19951> AllocateTemporaryEntryPoints +00007FA12EECEDB0 18 stub<19952> AllocateTemporaryEntryPoints +00007FA12EECEDC8 18 stub<19953> AllocateTemporaryEntryPoints +00007FA12EECEDE0 18 stub<19954> AllocateTemporaryEntryPoints +00007FA12EECEDF8 18 stub<19955> AllocateTemporaryEntryPoints +00007FA12EECEE10 18 stub<19956> AllocateTemporaryEntryPoints +00007FA12EECEE28 18 stub<19957> AllocateTemporaryEntryPoints +00007FA12EECEE40 18 stub<19958> AllocateTemporaryEntryPoints +00007FA12EECEE58 18 stub<19959> AllocateTemporaryEntryPoints +00007FA12EECEE70 18 stub<19960> AllocateTemporaryEntryPoints +00007FA12EECEE88 18 stub<19961> AllocateTemporaryEntryPoints +00007FA12EECEEA0 18 stub<19962> AllocateTemporaryEntryPoints +00007FA12EECEEB8 18 stub<19963> AllocateTemporaryEntryPoints +00007FA12EECEED0 18 stub<19964> AllocateTemporaryEntryPoints +00007FA12EECEEE8 18 stub<19965> AllocateTemporaryEntryPoints +00007FA12EECEF00 18 stub<19966> AllocateTemporaryEntryPoints +00007FA12EECEF18 18 stub<19967> AllocateTemporaryEntryPoints +00007FA12EECEF30 18 stub<19968> AllocateTemporaryEntryPoints +00007FA12EECEF48 18 stub<19969> AllocateTemporaryEntryPoints +00007FA12EECEF60 18 stub<19970> AllocateTemporaryEntryPoints +00007FA12EECEF78 18 stub<19971> AllocateTemporaryEntryPoints +00007FA12EECEF90 18 stub<19972> AllocateTemporaryEntryPoints +00007FA12EECEFA8 18 stub<19973> AllocateTemporaryEntryPoints +00007FA12EECEFC0 18 stub<19974> AllocateTemporaryEntryPoints +00007FA12EECEFD8 18 stub<19975> AllocateTemporaryEntryPoints +00007FA12EEF0000 18 stub<19976> AllocateTemporaryEntryPoints +00007FA12EEF0018 18 stub<19977> AllocateTemporaryEntryPoints +00007FA12EEF0030 18 stub<19978> AllocateTemporaryEntryPoints +00007FA12EEF0048 18 stub<19979> AllocateTemporaryEntryPoints +00007FA12EEF0060 18 stub<19980> AllocateTemporaryEntryPoints +00007FA12EEF0078 18 stub<19981> AllocateTemporaryEntryPoints +00007FA12EEF0090 18 stub<19982> AllocateTemporaryEntryPoints +00007FA12EEF00A8 18 stub<19983> AllocateTemporaryEntryPoints +00007FA12EEF00C0 18 stub<19984> AllocateTemporaryEntryPoints +00007FA12EEF00D8 18 stub<19985> AllocateTemporaryEntryPoints +00007FA12EEF00F0 18 stub<19986> AllocateTemporaryEntryPoints +00007FA12EEF0108 18 stub<19987> AllocateTemporaryEntryPoints +00007FA12EEF0120 18 stub<19988> AllocateTemporaryEntryPoints +00007FA12EEF0138 18 stub<19989> AllocateTemporaryEntryPoints +00007FA12EEF0150 18 stub<19990> AllocateTemporaryEntryPoints +00007FA12EEF0168 18 stub<19991> AllocateTemporaryEntryPoints +00007FA12EEF0180 18 stub<19992> AllocateTemporaryEntryPoints +00007FA12EEF0198 18 stub<19993> AllocateTemporaryEntryPoints +00007FA12EEF01B0 18 stub<19994> AllocateTemporaryEntryPoints +00007FA12EEF01C8 18 stub<19995> AllocateTemporaryEntryPoints +00007FA12EEF01E0 18 stub<19996> AllocateTemporaryEntryPoints +00007FA12EEF01F8 18 stub<19997> AllocateTemporaryEntryPoints +00007FA12EEF0210 18 stub<19998> AllocateTemporaryEntryPoints +00007FA12EEF0228 18 stub<19999> AllocateTemporaryEntryPoints +00007FA12EEF0240 18 stub<20000> AllocateTemporaryEntryPoints +00007FA12EEF0258 18 stub<20001> AllocateTemporaryEntryPoints +00007FA12EEF0270 18 stub<20002> AllocateTemporaryEntryPoints +00007FA12EEF0288 18 stub<20003> AllocateTemporaryEntryPoints +00007FA12EEF02A0 18 stub<20004> AllocateTemporaryEntryPoints +00007FA12EEF02B8 18 stub<20005> AllocateTemporaryEntryPoints +00007FA12EEF02D0 18 stub<20006> AllocateTemporaryEntryPoints +00007FA12EEF02E8 18 stub<20007> AllocateTemporaryEntryPoints +00007FA12EEF0300 18 stub<20008> AllocateTemporaryEntryPoints +00007FA12EEF0318 18 stub<20009> AllocateTemporaryEntryPoints +00007FA12EEF0330 18 stub<20010> AllocateTemporaryEntryPoints +00007FA12EEF0348 18 stub<20011> AllocateTemporaryEntryPoints +00007FA12EEF0360 18 stub<20012> AllocateTemporaryEntryPoints +00007FA12EEF0378 18 stub<20013> AllocateTemporaryEntryPoints +00007FA12EEF0390 18 stub<20014> AllocateTemporaryEntryPoints +00007FA12EEF03A8 18 stub<20015> AllocateTemporaryEntryPoints +00007FA12EEF03C0 18 stub<20016> AllocateTemporaryEntryPoints +00007FA12ED57C70 40a instance !!0 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IFeatureCollection.Get()[OptimizedTier1] +00007FA12EEF03D8 30 stub<20017> AllocateTemporaryEntryPoints +00007FA12EEF0408 1c8 stub<20018> AllocateTemporaryEntryPoints +00007FA12E672500 18 stub<20019> GenerateLookupStub +00007FA12ED580A0 f1 object [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions::GetRequiredService(class [System.ComponentModel]System.IServiceProvider,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED581B0 c instance valuetype System.Collections.Generic.KeyValuePair`2 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.__Canon]::get_Current()[OptimizedTier1] +00007FA12EEF05D0 30 stub<20020> AllocateTemporaryEntryPoints +00007FA12ED581D0 7a instance void [System.Private.CoreLib] System.HashCode::Add(!!0,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED58270 143 object [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ActivatorUtilities::GetService(class [System.ComponentModel]System.IServiceProvider,class [System.Runtime]System.Type,class [System.Runtime]System.Type,bool)[OptimizedTier1] +00007FA12E672520 18 stub<20021> GenerateLookupStub +00007FA12ED583E0 113 instance valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_PathBase()[OptimizedTier1] +00007FA12ED58520 1a instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.get_PathBase()[OptimizedTier1] +00007FA12ED58550 5 instance class [System.Runtime]System.IO.TextWriter [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.ViewContext::get_Writer()[OptimizedTier1] +00007FA12ED58570 70 instance class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::AppendHtml(string)[OptimizedTier1] +00007FA12ED58600 5 instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::get_ViewContext()[OptimizedTier1] +00007FA12ED58620 14 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Clear()[OptimizedTier1] +00007FA12ED58650 27 instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::get_HasValue()[OptimizedTier1] +00007FA12ED58690 36 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::get_Item(int32)[OptimizedTier1] +00007FA12ED586E0 183 instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::set_Item(string,object)[OptimizedTier1] +00007FA12ED58890 65 !!0 [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions::GetRequiredService(class [System.ComponentModel]System.IServiceProvider)[OptimizedTier1] +00007FA12ED58920 6c bool [System.Private.CoreLib] System.String::IsNullOrWhiteSpace(string)[OptimizedTier1] +00007FA12ED589C0 2da instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::.ctor(class System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12EEF0600 18 stub<20022> AllocateTemporaryEntryPoints +00007FA12ED58CE0 45 instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.DefaultTagHelperContent::Clear()[OptimizedTier1] +00007FA12ED58D40 7f instance class [System.Runtime]System.IO.TextWriter [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::get_Output()[OptimizedTier1] +00007FA12ED58DE0 6c !!0 [Microsoft.Extensions.DependencyInjection.Abstractions] Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions::GetService(class [System.ComponentModel]System.IServiceProvider)[OptimizedTier1] +00007FA12E672540 18 stub<20023> GenerateLookupStub +00007FA12ED58E70 61 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList::Add(class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute)[OptimizedTier1] +00007FA12ED58F00 17c instance bool [System.Linq] System.Linq.Enumerable+d__65`1[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12ED590B0 5 instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::get_Attributes()[OptimizedTier1] +00007FA12ED590D0 16 instance class [Microsoft.Extensions.Features]Microsoft.AspNetCore.Http.Features.IFeatureCollection [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::get_Features()[OptimizedTier1] +00007FA12ED59100 101 instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::ContainsKey(string)[OptimizedTier1] +00007FA12EEF0618 18 stub<20024> AllocateTemporaryEntryPoints +00007FA12ED59220 c instance !0& modreq(System.Runtime.InteropServices.InAttribute) [System.Private.CoreLib] System.ReadOnlySpan`1[System.Char]::GetPinnableReference()[OptimizedTier1] +00007FA12ED59240 39 instance class Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager+ExecutionContextPool::get_Current()[OptimizedTier1] +00007FA12ED59290 5 instance object [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute::get_Value()[OptimizedTier1] +00007FA12ED592B0 73 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferTextWriter::Write(string)[OptimizedTier1] +00007FA12ED59340 b instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.ViewContext::set_Writer(class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12EEF0630 6f0 stub<20025> AllocateTemporaryEntryPoints +00007FA12EEF0D20 78 stub<20026> AllocateTemporaryEntryPoints +00007FA12EEF0D98 a8 stub<20027> AllocateTemporaryEntryPoints +00007FA12EEF0E40 18 stub<20028> AllocateTemporaryEntryPoints +00007FA12EEF0E58 18 stub<20029> AllocateTemporaryEntryPoints +00007FA12EEF0E70 18 stub<20030> AllocateTemporaryEntryPoints +00007FA12EEF2000 2b8 stub<20031> AllocateTemporaryEntryPoints +00007FA12EEF22B8 18 stub<20032> AllocateTemporaryEntryPoints +00007FA12EEF22D0 18 stub<20033> AllocateTemporaryEntryPoints +00007FA12ED59360 81 valuetype System.Span`1 [System.Private.CoreLib] System.Runtime.InteropServices.CollectionsMarshal::AsSpan(class System.Collections.Generic.List`1)[OptimizedTier1] +00007FA12ED59400 c6 instance void [System.Private.CoreLib] System.Span`1[System.__Canon]::.ctor(!0[],int32,int32)[OptimizedTier1] +00007FA12ED594F0 4 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::get_Value()[OptimizedTier1] +00007FA12ED59510 21 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::set_Item(int32,!0)[OptimizedTier1] +00007FA12ED59550 3d instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::WriteLiteral(string)[OptimizedTier1] +00007FA12ED595B0 6 instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.DefaultTagHelperContent::AppendHtml(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContent)[OptimizedTier1] +00007FA12ED595D0 6e instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.DefaultTagHelperContent::AppendCore(object)[OptimizedTier1] +00007FA12ED59660 5 instance class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext::get_Output()[OptimizedTier1] +00007FA12ED59680 71 instance class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferPage [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::get_Item(int32)[OptimizedTier1] +00007FA12ED59710 b6 instance class [Microsoft.AspNetCore.Razor.Runtime]Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::get___tagHelperScopeManager()[OptimizedTier1] +00007FA12ED59800 4f instance int32 [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedCharBuffer::get_Length()[OptimizedTier1] +00007FA12EEF22E8 60 stub<20034> AllocateTemporaryEntryPoints +00007FA12EEF2348 18 stub<20035> AllocateTemporaryEntryPoints +00007FA12ED59870 71 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter::WriteAsync(string)[OptimizedTier1] +00007FA12EEF2360 60 stub<20036> AllocateTemporaryEntryPoints +00007FA12EEF23C0 18 stub<20037> AllocateTemporaryEntryPoints +00007FA12ED59900 54 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::WriteAsync(string)[OptimizedTier1] +00007FA12ED59970 2c instance void [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::CopyToCharBuffer(string)[OptimizedTier1] +00007FA12ED599C0 41 instance char[] [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedCharBuffer::GetCurrentPage()[OptimizedTier1] +00007FA12E672560 18 stub<20038> GenerateLookupStub +00007FA12E672580 18 stub<20039> GenerateLookupStub +00007FA12ED59A20 cd instance char[] [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedCharBuffer::NewPage()[OptimizedTier1] +00007FA12ED59B20 4a !!0[] [System.Private.CoreLib] System.GC::g__AllocateNewUninitializedArray|66_0(int32,bool)[OptimizedTier1] +00007FA12ED59B90 c5 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::WriteAsync(char[],int32,int32)[OptimizedTier1] +00007FA12ED59C80 62 instance void [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::CopyToCharBuffer(char[],int32&,int32&)[OptimizedTier1] +00007FA12ED59D10 5 instance class System.Buffers.ReadOnlySequenceSegment`1 [System.Memory] System.Buffers.ReadOnlySequenceSegment`1[System.Byte]::get_Next()[OptimizedTier1] +00007FA12ED59D30 4d instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[System.ArraySegment`1[System.Byte]]::get_Item(int32)[OptimizedTier1] +00007FA12ED59DA0 4a instance class System.Net.Http.Headers.HttpResponseHeaders [System.Net.Http] System.Net.Http.HttpResponseMessage::get_Headers()[OptimizedTier1] +00007FA12ED59E10 32 bool [System.Private.Uri] System.Uri::op_Inequality(class System.Uri,class System.Uri)[OptimizedTier1] +00007FA12ED59E60 dc void [System.Private.CoreLib] System.Threading.ExecutionContext::RunFromThreadPoolDispatchLoop(class System.Threading.Thread,class System.Threading.ExecutionContext,class System.Threading.ContextCallback,object)[OptimizedTier1] +00007FA12ED59F70 22 instance bool [System.Private.CoreLib] System.Threading.AsyncLocalValueMap+OneElementAsyncLocalValueMap::TryGetValue(class System.Threading.IAsyncLocal,object&)[OptimizedTier1] +00007FA12EEF23D8 180 stub<20040> AllocateTemporaryEntryPoints +00007FA12ED59FB0 ab instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter::Advance(int32)[OptimizedTier1] +00007FA12ED5A080 b5 instance valuetype [System.Runtime]System.Span`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter::GetSpan(int32)[OptimizedTier1] +00007FA12ED5A150 ab instance valuetype [System.Runtime]System.Span`1 [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeWriter::GetSpan(int32)[OptimizedTier1] +00007FA12ED5A220 aa instance valuetype [System.Runtime]System.Span`1 [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetSpan(int32)[OptimizedTier1] +00007FA12ED5A2F0 6a instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::get_IsCompleted()[OptimizedTier1] +00007FA12ED5A380 5 instance class [System.IO.Pipelines]System.IO.Pipelines.PipeReader [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] System.IO.Pipelines.DuplexPipe::get_Input()[OptimizedTier1] +00007FA12ED5A3A0 55 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.ArraySegment`1[System.Byte]]::Add(!0)[OptimizedTier1] +00007FA12EEF2558 f0 stub<20041> AllocateTemporaryEntryPoints +00007FA12EEF2648 18 stub<20042> AllocateTemporaryEntryPoints +00007FA12EEF2660 288 stub<20043> AllocateTemporaryEntryPoints +00007FA12EEF28E8 18 stub<20044> AllocateTemporaryEntryPoints +00007FA12EEF2900 60 stub<20045> AllocateTemporaryEntryPoints +00007FA12EEF2960 240 stub<20046> AllocateTemporaryEntryPoints +00007FA12EEF2BA0 18 stub<20047> AllocateTemporaryEntryPoints +00007FA12EEF2BB8 a8 stub<20048> AllocateTemporaryEntryPoints +00007FA12ED5A410 20d instance bool [System.Memory] System.Buffers.ReadOnlySequence`1+Enumerator[System.Byte]::MoveNext()[OptimizedTier1] +00007FA12ED5A640 21 instance valuetype [System.Private.CoreLib]System.ReadOnlyMemory`1 [System.Memory] System.Buffers.ReadOnlySequence`1+Enumerator[System.Byte]::get_Current()[OptimizedTier1] +00007FA12ED5A680 7d valuetype [System.Runtime]System.ArraySegment`1 [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.BufferExtensions::GetArray(valuetype [System.Runtime]System.ReadOnlyMemory`1)[OptimizedTier1] +00007FA12ED5A720 93 void [System.Net.Sockets] System.Net.RangeValidationHelpers::ValidateSegment(valuetype [System.Runtime]System.ArraySegment`1)[OptimizedTier1] +00007FA12ED5A7D0 24 valuetype System.Runtime.InteropServices.GCHandle [System.Private.CoreLib] System.Runtime.InteropServices.GCHandle::Alloc(object,valuetype System.Runtime.InteropServices.GCHandleType)[OptimizedTier1] +00007FA12ED5A810 1b bool [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::IsPinnable(object)[OptimizedTier1] +00007FA12EEF2C60 18 stub<20049> AllocateTemporaryEntryPoints +00007FA12ED5A840 61 instance native int [System.Private.CoreLib] System.Runtime.InteropServices.GCHandle::AddrOfPinnedObject()[OptimizedTier1] +00007FA12ED5A8C0 22 instance void [System.Private.CoreLib] System.Runtime.InteropServices.GCHandle::Free()[OptimizedTier1] +00007FA12ED5A900 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[System.ArraySegment`1[System.Byte]]::get_Count()[OptimizedTier1] +00007FA12ED5A920 14 instance valuetype System.Threading.CancellationToken [System.Private.CoreLib] System.Threading.CancellationTokenRegistration::get_Token()[OptimizedTier1] +00007FA12E6725A0 18 stub<20050> GenerateLookupStub +00007FA12E6725C0 18 stub<20051> GenerateLookupStub +00007FA12ED5A950 54 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] System.Buffers.BufferWriter`1[System.__Canon]::EnsureMore(int32)[OptimizedTier1] +00007FA12ED5A9C0 58 instance void [System.IO.Pipelines] System.IO.Pipelines.BufferSegment::SetNext(class System.IO.Pipelines.BufferSegment)[OptimizedTier1] +00007FA12ED5AA30 71 instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::get_IsCompletedSuccessfully()[OptimizedTier1] +00007FA12ED5AAC0 67 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.FlushResult]::get_IsCompleted()[OptimizedTier1] +00007FA12ED5AB40 17d instance void [System.IO.Pipelines] System.IO.Pipelines.PipeAwaitable::OnCompleted(class [System.Runtime]System.Action`1,object,valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags,valuetype System.IO.Pipelines.CompletionData&,bool&)[OptimizedTier1] +00007FA12ED5ACE0 46 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task::AtomicStateUpdate(int32,int32)[OptimizedTier1] +00007FA12EEF2C78 d8 stub<20052> AllocateTemporaryEntryPoints +00007FA12ED5AD40 36 instance void [System.Private.CoreLib] System.Threading.ThreadPool+<>c::<.cctor>b__78_0(object)[OptimizedTier1] +00007FA12ED5ADA0 314 instance void [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24::MoveNext()[OptimizedTier1] +00007FA12EEF2D50 288 stub<20053> AllocateTemporaryEntryPoints +00007FA12EEF2FD8 18 stub<20054> AllocateTemporaryEntryPoints +00007FA12ED5B0F0 36f instance void [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42::MoveNext()[OptimizedTier1] +00007FA12ED5B4A0 31b instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8::MoveNext()[OptimizedTier1] +00007FA12ED5B7F0 8 instance void [System.Private.CoreLib] System.Nullable`1[System.Boolean]::.ctor(!0)[OptimizedTier1] +00007FA12EEF4000 18 stub<20055> AllocateTemporaryEntryPoints +00007FA12ED5B810 1c instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.ArraySegment`1[System.Byte]]::Clear()[OptimizedTier1] +00007FA12ED5B840 1f instance valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.ReadOnlySpan`1[System.Char]::Slice(int32)[OptimizedTier1] +00007FA12ED5B880 12 instance void [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::MoveNext(int32&)[OptimizedTier1] +00007FA12ED5B8B0 106 instance bool [System.Net.Sockets] System.Net.Sockets.Socket::SendAsync(class System.Net.Sockets.SocketAsyncEventArgs,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12ED5B9E0 21d instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::DoOperationSend(class System.Net.Sockets.SafeSocketHandle,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12E6725E0 18 stub<20056> GenerateLookupStub +00007FA12EEF4018 18 stub<20057> AllocateTemporaryEntryPoints +00007FA12ED5BC20 368 bool [System.Net.Sockets] System.Net.Sockets.SocketPal::TryCompleteSendTo(class System.Net.Sockets.SafeSocketHandle,valuetype [System.Runtime]System.ReadOnlySpan`1,class [System.Runtime]System.Collections.Generic.IList`1>,int32&,int32&,int32&,valuetype System.Net.Sockets.SocketFlags,uint8[],int32,int32&,valuetype [System.Net.Primitives]System.Net.Sockets.SocketError&)[OptimizedTier1] +00007FA12ED5BFC0 6c instance void [System.Private.CoreLib] System.Threading.TimerQueue::UnlinkTimer(class System.Threading.TimerQueueTimer)[OptimizedTier1] +00007FA12ED5C050 20 instance valuetype System.Runtime.CompilerServices.ValueTaskAwaiter [System.Private.CoreLib] System.Threading.Tasks.ValueTask::GetAwaiter()[OptimizedTier1] +00007FA12ED5C090 6b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter::GetResult()[OptimizedTier1] +00007FA12ED5C120 5b int32 [System.Net.Http] System.Net.Http.HttpRuleParser::GetWhitespaceLength(string,int32)[OptimizedTier1] +00007FA12ED5C190 8 instance uint16& [System.Private.CoreLib] System.String::GetRawStringDataAsUInt16()[OptimizedTier1] +00007FA12ED5C1B0 17 instance void [System.Private.CoreLib] System.Span`1[System.Char]::.ctor(void*,int32)[OptimizedTier1] +00007FA12EEF4030 18 stub<20058> AllocateTemporaryEntryPoints +00007FA12EEF4048 a8 stub<20059> AllocateTemporaryEntryPoints +00007FA12ED5C1E0 22e instance string [System.Private.CoreLib] System.String::Replace(string,string)[OptimizedTier1] +00007FA12ED5C430 47 valuetype System.DateTime [System.Private.CoreLib] System.DateTime::get_UtcNow()[OptimizedTier1] +00007FA12ED5C490 3b instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::get_Active()[OptimizedTier1] +00007FA12ED5C4E0 23 int64 [System.Private.CoreLib] System.Diagnostics.Stopwatch::GetTimestamp()[OptimizedTier1] +00007FA12ED5C520 5f instance void [System.Private.CoreLib] System.Threading.TimerQueue::LinkTimer(class System.Threading.TimerQueueTimer)[OptimizedTier1] +00007FA12ED5C5A0 10 bool [System.Private.CoreLib] System.Char::IsAsciiLetterUpper(char)[OptimizedTier1] +00007FA12ED5C5C0 5e bool [System.Net.Http] System.Net.Http.Headers.HeaderDescriptor::TryGet(string,valuetype System.Net.Http.Headers.HeaderDescriptor&)[OptimizedTier1] +00007FA12ED5C640 4a class System.Net.Http.Headers.KnownHeader [System.Net.Http] System.Net.Http.Headers.KnownHeaders::TryGetKnownHeader(string)[OptimizedTier1] +00007FA12ED5C6B0 b3c class System.Net.Http.Headers.KnownHeader [System.Net.Http] System.Net.Http.Headers.KnownHeaders::GetCandidate(!!0)[OptimizedTier1] +00007FA12ED5D360 51 bool [System.Net.Http] System.Net.Http.HttpRuleParser::IsToken(string)[OptimizedTier1] +00007FA12ED5D3D0 31 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.MemoryExtensions::AsSpan(string,int32)[OptimizedTier1] +00007FA12EEF40F0 18 stub<20060> AllocateTemporaryEntryPoints +00007FA12E672600 18 stub<20061> GenerateLookupStub +00007FA12ED5D420 1de instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::ContainsParsedValue(valuetype System.Net.Http.Headers.HeaderDescriptor,object)[OptimizedTier1] +00007FA12EEF4108 18 stub<20062> AllocateTemporaryEntryPoints +00007FA12ED5D620 2a8 int32 [System.Net.Http] System.Net.Http.Headers.HttpHeaders::GetStoreValuesIntoStringArray(valuetype System.Net.Http.Headers.HeaderDescriptor,object,string[]&)[OptimizedTier1] +00007FA12EEF4120 60 stub<20063> AllocateTemporaryEntryPoints +00007FA12EEF4180 18 stub<20064> AllocateTemporaryEntryPoints +00007FA12ED5D900 f3 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection::WriteStringAsync(string,bool,class [System.Runtime]System.Text.Encoding)[OptimizedTier1] +00007FA12ED5DA20 10 instance void [System.Private.CoreLib] System.Threading.AsyncLocal`1[System.__Canon]::set_Value(!0)[OptimizedTier1] +00007FA12E672620 18 stub<20065> GenerateLookupStub +00007FA12EEF4198 30 stub<20066> AllocateTemporaryEntryPoints +00007FA12EEF41C8 18 stub<20067> AllocateTemporaryEntryPoints +00007FA12EEF41E0 18 stub<20068> AllocateTemporaryEntryPoints +00007FA12EEF41F8 90 stub<20069> AllocateTemporaryEntryPoints +00007FA12EEF4288 18 stub<20070> AllocateTemporaryEntryPoints +00007FA12EEF42A0 18 stub<20071> AllocateTemporaryEntryPoints +00007FA12ED5DA40 38c void [System.Private.CoreLib] System.Threading.ExecutionContext::SetLocalValue(class System.Threading.IAsyncLocal,object,bool)[OptimizedTier1] +00007FA12ED5DDF0 15 instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Configuration.IntegrationId]::get_Value()[OptimizedTier1] +00007FA12ED5DE20 b instance valuetype [System.Private.CoreLib]System.ReadOnlySpan`1 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_CurrentSpan()[OptimizedTier1] +00007FA12ED5DE40 5 instance int64 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Consumed()[OptimizedTier1] +00007FA12ED5DE60 5 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::set_Consumed(int64)[OptimizedTier1] +00007FA12ED5DE80 4 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::set_CurrentSpanIndex(int32)[OptimizedTier1] +00007FA12ED5DEA0 9 instance bool [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::IsEnabled(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel)[OptimizedTier1] +00007FA12ED5DEC0 5 instance class Datadog.Trace.Tagging.ITags [Datadog.Trace] Datadog.Trace.Span::get_Tags()[OptimizedTier1] +00007FA12EEF42B8 18 stub<20072> AllocateTemporaryEntryPoints +00007FA12EEF42D0 18 stub<20073> AllocateTemporaryEntryPoints +00007FA12ED5DEE0 e33 void [System.Linq.Expressions] System.Linq.Expressions.Expression::ValidateLambdaArgs(class [System.Runtime]System.Type,class System.Linq.Expressions.Expression&,class [System.Runtime]System.Collections.ObjectModel.ReadOnlyCollection`1,string)[OptimizedTier1] +00007FA12EEF42E8 120 stub<20074> AllocateTemporaryEntryPoints +00007FA12EEF4408 90 stub<20075> AllocateTemporaryEntryPoints +00007FA12EEF4498 48 stub<20076> AllocateTemporaryEntryPoints +00007FA12EEF44E0 48 stub<20077> AllocateTemporaryEntryPoints +00007FA12EEF4528 90 stub<20078> AllocateTemporaryEntryPoints +00007FA12EEF45B8 48 stub<20079> AllocateTemporaryEntryPoints +00007FA12E672640 18 stub<20080> GenerateLookupStub +00007FA12E672660 18 stub<20081> GenerateLookupStub +00007FA12EEF4600 120 stub<20082> AllocateTemporaryEntryPoints +00007FA12EEF4720 90 stub<20083> AllocateTemporaryEntryPoints +00007FA12EEF47B0 90 stub<20084> AllocateTemporaryEntryPoints +00007FA12EEF4840 90 stub<20085> AllocateTemporaryEntryPoints +00007FA12EEF48D0 90 stub<20086> AllocateTemporaryEntryPoints +00007FA12EEF4960 90 stub<20087> AllocateTemporaryEntryPoints +00007FA12EEF49F0 90 stub<20088> AllocateTemporaryEntryPoints +00007FA12ED5ED40 398 class System.Linq.Expressions.Expression`1 [System.Linq.Expressions] System.Linq.Expressions.Expression`1[System.__Canon]::Create(class System.Linq.Expressions.Expression,string,bool,class [System.Runtime]System.Collections.Generic.IReadOnlyList`1)[OptimizedTier1] +00007FA12ED5F110 13c class [System.Runtime]System.Delegate [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::Compile(class System.Linq.Expressions.LambdaExpression)[OptimizedTier1] +00007FA12ED5F270 47 void [System.Linq.Expressions] System.Dynamic.Utils.ExpressionUtils::ValidateArgumentCount(class System.Linq.Expressions.LambdaExpression)[OptimizedTier1] +00007FA12ED5F2D0 af class System.Linq.Expressions.LambdaExpression [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller::AnalyzeLambda(class System.Linq.Expressions.LambdaExpression)[OptimizedTier1] +00007FA12ED5F3A0 8c instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller::.ctor(valuetype System.Linq.Expressions.Compiler.StackSpiller/Stack)[OptimizedTier1] +00007FA12EEF4A80 18 stub<20089> AllocateTemporaryEntryPoints +00007FA12EEF4A98 18 stub<20090> AllocateTemporaryEntryPoints +00007FA12ED5F450 5b instance class System.Linq.Expressions.LambdaExpression [System.Linq.Expressions] System.Linq.Expressions.Expression`1[System.__Canon]::Accept(class System.Linq.Expressions.Compiler.StackSpiller)[OptimizedTier1] +00007FA12EEF4AB0 120 stub<20091> AllocateTemporaryEntryPoints +00007FA12EEF4BD0 18 stub<20092> AllocateTemporaryEntryPoints +00007FA12ED5F4E0 197 instance class System.Linq.Expressions.Expression`1 [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller::Rewrite(class System.Linq.Expressions.Expression`1)[OptimizedTier1] +00007FA12ED5F6A0 53 instance valuetype System.Linq.Expressions.Compiler.StackSpiller/Result [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller::RewriteExpressionFreeTemps(class System.Linq.Expressions.Expression,valuetype System.Linq.Expressions.Compiler.StackSpiller/Stack)[OptimizedTier1] +00007FA12ED5F720 3f instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.StackSpiller+TempMaker::Free(int32)[OptimizedTier1] +00007FA12ED5F780 ba instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.VariableBinder::.ctor()[OptimizedTier1] +00007FA12ED5F860 68 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.AnalyzedTree::.ctor()[OptimizedTier1] +00007FA12EEF4BE8 18 stub<20093> AllocateTemporaryEntryPoints +00007FA12EEF4C00 18 stub<20094> AllocateTemporaryEntryPoints +00007FA12ED5F8E0 68 instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.Expression`1[System.__Canon]::Accept(class System.Linq.Expressions.ExpressionVisitor)[OptimizedTier1] +00007FA12ED5F960 14e instance class System.Linq.Expressions.Expression [System.Linq.Expressions] System.Linq.Expressions.Compiler.VariableBinder::VisitLambda(class System.Linq.Expressions.Expression`1)[OptimizedTier1] +00007FA12ED5FAE0 582 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::.ctor(object,bool)[OptimizedTier1] +00007FA12ED600A0 82 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::.ctor()[OptimizedTier1] +00007FA12ED60140 18 instance int32 [System.Linq.Expressions] System.Linq.Expressions.Compiler.ParameterList::get_Count()[OptimizedTier1] +00007FA12ED60170 8 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Linq.Expressions.Compiler.VariableStorageKind]::.ctor(int32)[OptimizedTier1] +00007FA12ED60190 b0 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.BoundConstants::.ctor()[OptimizedTier1] +00007FA12ED60260 e class System.Collections.Generic.ReferenceEqualityComparer [System.Private.CoreLib] System.Collections.Generic.ReferenceEqualityComparer::get_Instance()[OptimizedTier1] +00007FA12ED60280 b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Int32]::.ctor(class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED602A0 1 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::.ctor()[OptimizedTier1] +00007FA12ED602C0 66 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED60340 1 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.__Canon]::.ctor()[OptimizedTier1] +00007FA12EEF4C18 60 stub<20095> AllocateTemporaryEntryPoints +00007FA12ED60360 66 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12ED603E0 405 instance class [System.Runtime]System.Collections.ObjectModel.ReadOnlyCollection`1 [System.Linq.Expressions] System.Linq.Expressions.Compiler.VariableBinder::MergeScopes(class System.Linq.Expressions.Expression)[OptimizedTier1] +00007FA12ED60840 24 instance !0 [System.Collections] System.Collections.Generic.Stack`1[System.__Canon]::Peek()[OptimizedTier1] +00007FA12ED60880 4fd instance class [System.Runtime]System.Collections.ObjectModel.ReadOnlyCollection`1 [System.Linq.Expressions] System.Linq.Expressions.ExpressionVisitor::Visit(class [System.Runtime]System.Collections.ObjectModel.ReadOnlyCollection`1)[OptimizedTier1] +00007FA12EEF4C78 240 stub<20096> AllocateTemporaryEntryPoints +00007FA12EEF4EB8 18 stub<20097> AllocateTemporaryEntryPoints +00007FA12EEF4ED0 18 stub<20098> AllocateTemporaryEntryPoints +00007FA12EEF6000 5e8 stub<20099> AllocateTemporaryEntryPoints +00007FA12EEF65E8 c0 stub<20100> AllocateTemporaryEntryPoints +00007FA12EEF66A8 90 stub<20101> AllocateTemporaryEntryPoints +00007FA12EEF6738 a8 stub<20102> AllocateTemporaryEntryPoints +00007FA12EEF67E0 18 stub<20103> AllocateTemporaryEntryPoints +00007FA12EEF67F8 78 stub<20104> AllocateTemporaryEntryPoints +00007FA12EEF6870 18 stub<20105> AllocateTemporaryEntryPoints +00007FA12EEF6888 18 stub<20106> AllocateTemporaryEntryPoints +00007FA12EEF68A0 18 stub<20107> AllocateTemporaryEntryPoints +00007FA12EEF68B8 18 stub<20108> AllocateTemporaryEntryPoints +00007FA12EEF68D0 18 stub<20109> AllocateTemporaryEntryPoints +00007FA12ED60DA0 bb3 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::.ctor(class System.Linq.Expressions.Compiler.AnalyzedTree,class System.Linq.Expressions.LambdaExpression)[OptimizedTier1] +00007FA12ED61980 176 class [System.Runtime]System.Type[] [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::GetParameterTypes(class System.Linq.Expressions.LambdaExpression,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED61B20 10 instance string [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_Name()[OptimizedTier1] +00007FA12ED61B50 3 instance string [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_NameCore()[OptimizedTier1] +00007FA12ED61B70 44 instance void [System.Private.CoreLib] System.Reflection.Emit.DynamicMethod::.ctor(string,class System.Type,class System.Type[],bool)[OptimizedTier1] +00007FA12ED61BE0 17f instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::AddReturnLabel(class System.Linq.Expressions.LambdaExpression)[OptimizedTier1] +00007FA12ED61D80 208 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.BoundConstants::EmitCacheConstants(class System.Linq.Expressions.Compiler.LambdaCompiler)[OptimizedTier1] +00007FA12ED61FC0 6e instance valuetype System.Collections.Generic.Dictionary`2/Enumerator [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::GetEnumerator()[OptimizedTier1] +00007FA12ED62050 3b instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::.ctor(class System.Collections.Generic.Dictionary`2,int32)[OptimizedTier1] +00007FA12ED620C0 be instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::MoveNext()[OptimizedTier1] +00007FA12ED621A0 1 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.Linq.Expressions.Compiler.BoundConstants+TypedConstant,System.Int32]::Dispose()[OptimizedTier1] +00007FA12ED621C0 3c instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitLambdaBody()[OptimizedTier1] +00007FA12ED62220 10 instance bool [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_TailCall()[OptimizedTier1] +00007FA12ED62250 3 instance bool [System.Linq.Expressions] System.Linq.Expressions.LambdaExpression::get_TailCallCore()[OptimizedTier1] +00007FA12EEF68E8 18 stub<20110> AllocateTemporaryEntryPoints +00007FA12EEF6900 18 stub<20111> AllocateTemporaryEntryPoints +00007FA12EEF6918 18 stub<20112> AllocateTemporaryEntryPoints +00007FA12ED62280 856 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::EmitLambdaBody(class System.Linq.Expressions.Compiler.CompilerScope,bool,valuetype System.Linq.Expressions.Compiler.LambdaCompiler/CompilationFlags)[OptimizedTier1] +00007FA12ED62B00 59e instance class System.Linq.Expressions.Compiler.CompilerScope [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::Enter(class System.Linq.Expressions.Compiler.LambdaCompiler,class System.Linq.Expressions.Compiler.CompilerScope)[OptimizedTier1] +00007FA12ED630D0 552 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::SetParent(class System.Linq.Expressions.Compiler.LambdaCompiler,class System.Linq.Expressions.Compiler.CompilerScope)[OptimizedTier1] +00007FA12EEF6930 168 stub<20113> AllocateTemporaryEntryPoints +00007FA12EEF6A98 60 stub<20114> AllocateTemporaryEntryPoints +00007FA12ED63660 28b instance !0[] [System.Linq] System.Linq.Enumerable+WhereEnumerableIterator`1[System.__Canon]::ToArray()[OptimizedTier1] +00007FA12ED63920 4d8 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::AllocateLocals(class System.Linq.Expressions.Compiler.LambdaCompiler)[OptimizedTier1] +00007FA12ED63E40 44a instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::EmitNewHoistedLocals(class System.Linq.Expressions.Compiler.LambdaCompiler)[OptimizedTier1] +00007FA12ED642E0 128 instance void [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::EmitCachedVariables()[OptimizedTier1] +00007FA12EEF6AF8 18 stub<20115> AllocateTemporaryEntryPoints +00007FA12ED64440 125 instance class System.Linq.Expressions.Compiler.CompilerScope [System.Linq.Expressions] System.Linq.Expressions.Compiler.CompilerScope::Exit()[OptimizedTier1] +00007FA12ED64590 46 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::Clear()[OptimizedTier1] +00007FA12ED645F0 3d instance valuetype System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection[System.__Canon,System.__Canon]::GetEnumerator()[OptimizedTier1] +00007FA12ED64650 b3 instance class [System.Runtime]System.Delegate [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::CreateDelegate()[OptimizedTier1] +00007FA12ED64730 2f6 class System.Linq.Expressions.ConstantExpression [System.Linq.Expressions] System.Linq.Expressions.Expression::Constant(object,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED64A50 6c void [System.Linq.Expressions] System.Linq.Expressions.Compiler.ILGen::EmitType(class [System.Reflection.Emit.ILGeneration]System.Reflection.Emit.ILGenerator,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12ED64AE0 7a class [System.Runtime]System.Reflection.MethodInfo [System.Linq.Expressions] System.Linq.Expressions.CachedReflectionInfo::get_Type_GetTypeFromHandle()[OptimizedTier1] +00007FA12ED64B70 87 bool [System.Linq.Expressions] System.Linq.Expressions.Compiler.LambdaCompiler::UseVirtual(class [System.Runtime]System.Reflection.MethodInfo)[OptimizedTier1] +00007FA12ED64C10 26 bool [System.Private.CoreLib] System.Reflection.Emit.OpCode::op_Equality(valuetype System.Reflection.Emit.OpCode,valuetype System.Reflection.Emit.OpCode)[OptimizedTier1] +00007FA12ED64C50 1b instance valuetype System.Reflection.CallingConventions [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::get_CallingConvention()[OptimizedTier1] +00007FA12EEF6B10 18 stub<20116> AllocateTemporaryEntryPoints +00007FA12EEF6B28 150 stub<20117> AllocateTemporaryEntryPoints +00007FA12EEF6C78 18 stub<20118> AllocateTemporaryEntryPoints +00007FA12ED64C80 4ad class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Select(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12ED65160 327 instance object [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LogValuesFormatter::FormatArgument(object)[OptimizedTier1] +00007FA12ED654C0 5 instance class Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::get_FormatterOptions()[OptimizedTier1] +00007FA12ED654E0 259 class System.Attribute[] [System.Private.CoreLib] System.Attribute::GetCustomAttributes(class System.Reflection.MemberInfo,class System.Type,bool)[OptimizedTier1] +00007FA12ED65760 9d void [System.Private.CoreLib] System.Threading.Thread::Sleep(int32)[OptimizedTier1] +00007FA12ED65820 4 instance int32 [System.Private.CoreLib] System.ArraySegment`1[System.__Canon]::get_Count()[OptimizedTier1] +00007FA12ED65840 901 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteStringBytes(uint8[]&,int32,uint8[])[OptimizedTier1] +00007FA12ED66170 19 instance int64 [System.Private.CoreLib] System.DateTimeOffset::get_Ticks()[OptimizedTier1] +00007FA12ED661A0 5d8 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteString(uint8[]&,int32,string)[OptimizedTier1] +00007FA12ED667A0 5 instance class Datadog.Trace.ISpanContext [Datadog.Trace] Datadog.Trace.SpanContext::get_Parent()[OptimizedTier1] +00007FA12ED667C0 5 instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_ServiceName()[OptimizedTier1] +00007FA12ED667E0 c8 instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer+<>c__DisplayClass12_0::b__0(int32)[OptimizedTier1] +00007FA12ED668D0 d6 instance valuetype System.Threading.CancellationTokenRegistration [System.Private.CoreLib] System.Threading.CancellationToken::Register(class System.Delegate,object,bool,bool)[OptimizedTier1] +00007FA12EEF6C90 18 stub<20119> AllocateTemporaryEntryPoints +00007FA12ED669E0 1ca instance void [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueue+WorkStealingQueue::LocalPush(object)[OptimizedTier1] +00007FA12ED66BF0 c6 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::TaskConstructorCore(class System.Delegate,object,valuetype System.Threading.CancellationToken,valuetype System.Threading.Tasks.TaskCreationOptions,valuetype System.Threading.Tasks.InternalTaskOptions,class System.Threading.Tasks.TaskScheduler)[OptimizedTier1] +00007FA12ED66CE0 1e4 instance void [System.Private.CoreLib] System.Threading.PortableThreadPool::AdjustMaxWorkersActive()[OptimizedTier1] +00007FA12ED66F20 1d valuetype System.TimeSpan [System.Private.CoreLib] System.Diagnostics.Stopwatch::GetElapsedTime(int64,int64)[OptimizedTier1] +00007FA12ED66F60 c7 instance int64 [System.Private.CoreLib] System.Threading.ThreadInt64PersistentCounter::get_Count()[OptimizedTier1] +00007FA12ED67060 c81 instance valuetype System.ValueTuple`2 [System.Private.CoreLib] System.Threading.PortableThreadPool+HillClimbing::Update(int32,float64,int32)[OptimizedTier1] +00007FA12ED67EB0 39 bool [System.Threading.Tasks.Parallel] System.Threading.Tasks.Parallel::CheckTimeoutReached(int32)[OptimizedTier1] +00007FA12ED67F20 19d instance bool [System.Threading.Tasks.Parallel] System.Threading.Tasks.RangeWorker::FindNewWork(int64&,int64&)[OptimizedTier1] +00007FA12ED680E0 c int64 [System.Private.CoreLib] System.Threading.Interlocked::Add(int64&,int64)[OptimizedTier1] +00007FA12EEF6CA8 18 stub<20120> AllocateTemporaryEntryPoints +00007FA12ED68100 3b instance bool [System.Private.CoreLib] System.Threading.Tasks.Task::get_IsCancellationRequested()[OptimizedTier1] +00007FA12EEF6CC0 18 stub<20121> AllocateTemporaryEntryPoints +00007FA12ED68160 17e instance object [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueue+WorkStealingQueue::LocalPopCore()[OptimizedTier1] +00007FA12ED68310 3 valuetype System.Threading.CancellationToken [System.Private.CoreLib] System.Threading.CancellationToken::get_None()[OptimizedTier1] +00007FA12ED68330 cf instance void [System.Private.CoreLib] System.Threading.Tasks.Task::.ctor(class System.Delegate,object,class System.Threading.Tasks.Task,valuetype System.Threading.CancellationToken,valuetype System.Threading.Tasks.TaskCreationOptions,valuetype System.Threading.Tasks.InternalTaskOptions,class System.Threading.Tasks.TaskScheduler)[OptimizedTier1] +00007FA12ED68420 83 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::set_CapturedContext(class System.Threading.ExecutionContext)[OptimizedTier1] +00007FA12ED684C0 41 instance class System.Threading.Tasks.Task/ContingentProperties [System.Private.CoreLib] System.Threading.Tasks.Task::EnsureContingentPropertiesInitializedUnsafe()[OptimizedTier1] +00007FA12ED68520 19f instance void [System.Private.CoreLib] System.Threading.Tasks.Task::ScheduleAndStart(bool)[OptimizedTier1] +00007FA12ED686F0 69 instance void [System.Private.CoreLib] System.Threading.Tasks.TaskScheduler::InternalQueueTask(class System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12ED68780 11a instance void [System.Private.CoreLib] System.Threading.Tasks.ThreadPoolTaskScheduler::QueueTask(class System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12ED688C0 a2 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::ExecuteEntryUnsafe(class System.Threading.Thread)[OptimizedTier1] +00007FA12ED68980 34a instance void [System.Private.CoreLib] System.Threading.Tasks.Task::ExecuteWithThreadLocal(class System.Threading.Tasks.Task&,class System.Threading.Thread)[OptimizedTier1] +00007FA12ED68D10 38 instance class System.Threading.ExecutionContext [System.Private.CoreLib] System.Threading.Tasks.Task::get_CapturedContext()[OptimizedTier1] +00007FA12EEF6CD8 18 stub<20122> AllocateTemporaryEntryPoints +00007FA12ED68D60 29 instance void [System.Private.CoreLib] System.Threading.Tasks.Task+<>c::<.cctor>b__273_0(object)[OptimizedTier1] +00007FA12ED68DA0 69 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::InnerInvoke()[OptimizedTier1] +00007FA12ED68E30 128 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::FinishSlow(bool)[OptimizedTier1] +00007FA1277CD2E0 20 stub<20123> GenerateDispatchStub +00007FA1277CD300 20 stub<20124> GenerateDispatchStub +00007FA1277CD320 20 stub<20125> GenerateDispatchStub +00007FA12780F580 18 stub<20126> GenerateResolveStub +00007FA1277CD340 20 stub<20127> GenerateDispatchStub +00007FA12ED68F80 47 void [Samples.BuggyBits] BuggyBits.Models.DataLayer+<>c::.cctor()[QuickJitted] +00007FA12ED68FE0 1f instance void [Samples.BuggyBits] BuggyBits.Models.DataLayer+<>c::.ctor()[QuickJitted] +00007FA12ED69020 13c instance int32 [Samples.BuggyBits] BuggyBits.Models.DataLayer+<>c::b__12_1(class BuggyBits.Models.Product,class BuggyBits.Models.Product)[QuickJitted] +00007FA12780F5F0 18 stub<20128> GenerateResolveStub +00007FA1277CD360 20 stub<20129> GenerateDispatchStub +00007FA1277CD380 20 stub<20130> GenerateDispatchStub +00007FA12780F660 18 stub<20131> GenerateResolveStub +00007FA1277CD3A0 20 stub<20132> GenerateDispatchStub +00007FA1277CD3C0 20 stub<20133> GenerateDispatchStub +00007FA1277CD3E0 20 stub<20134> GenerateDispatchStub +00007FA1277CD400 20 stub<20135> GenerateDispatchStub +00007FA1277CD420 20 stub<20136> GenerateDispatchStub +00007FA1277CD440 20 stub<20137> GenerateDispatchStub +00007FA1277CD460 20 stub<20138> GenerateDispatchStub +00007FA12780F6D0 18 stub<20139> GenerateResolveStub +00007FA1277CD480 20 stub<20140> GenerateDispatchStub +00007FA1277CD4A0 20 stub<20141> GenerateDispatchStub +00007FA12ED69180 31 void [Samples.BuggyBits] BuggyBits.SelfInvoker::.cctor()[QuickJitted] +00007FA12ED691E0 38 instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+<>c[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::b__13_0(object)[QuickJitted] +00007FA12E672680 18 stub<20142> GenerateLookupStub +00007FA12E6726A0 18 stub<20143> GenerateLookupStub +00007FA12EEF6D08 18 stub<20144> AllocateTemporaryEntryPoints +00007FA12ED69230 748 instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Trim()[QuickJitted] +00007FA12ED699C0 27 instance int32 [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::get_Id()[QuickJitted] +00007FA12ED69A00 a2 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Trim(int32,int32,valuetype System.Buffers.Utilities/MemoryPressure,int32)[QuickJitted] +00007FA12EEF6D20 18 stub<20145> AllocateTemporaryEntryPoints +00007FA12ED69AC0 310 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Trim(int32,int32,valuetype System.Buffers.Utilities/MemoryPressure,int32)[QuickJitted] +00007FA12780F740 18 stub<20146> GenerateResolveStub +00007FA1277CD4C0 20 stub<20147> GenerateDispatchStub +00007FA1277CD4E0 20 stub<20148> GenerateDispatchStub +00007FA12780F7B0 18 stub<20149> GenerateResolveStub +00007FA1277CD500 20 stub<20150> GenerateDispatchStub +00007FA1277CD520 20 stub<20151> GenerateDispatchStub +00007FA12ED69E00 254 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::FinishStageTwo()[OptimizedTier1] +00007FA12EEF6D68 18 stub<20152> AllocateTemporaryEntryPoints +00007FA12ED6A080 14d instance void [System.Private.CoreLib] System.Threading.Tasks.Task::AddExceptionsFromChildren(class System.Threading.Tasks.Task/ContingentProperties)[OptimizedTier1] +00007FA12EEF6D80 60 stub<20153> AllocateTemporaryEntryPoints +00007FA12ED6A200 59 instance void [System.Private.CoreLib] System.Threading.Tasks.Task+ContingentProperties::UnregisterCancellationCallback()[OptimizedTier1] +00007FA12ED6A280 38 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::FinishStageThree()[OptimizedTier1] +00007FA12ED6A2D0 4b instance void [System.Private.CoreLib] System.Threading.Tasks.Task::NotifyParentIfPotentiallyAttachedTask()[OptimizedTier1] +00007FA12ED6A330 5 instance class Datadog.Trace.Telemetry.ITelemetryController [Datadog.Trace] Datadog.Trace.TracerManager::get_Telemetry()[OptimizedTier1] +00007FA12ED6A350 27 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.Tracer::get_InternalActiveScope()[OptimizedTier1] +00007FA12ED6A3A0 69 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection::WriteAsciiStringAsync(string,bool)[OptimizedTier1] +00007FA12EEF8000 6f0 stub<20154> AllocateTemporaryEntryPoints +00007FA12EEF86F0 78 stub<20155> AllocateTemporaryEntryPoints +00007FA12EEF8768 a8 stub<20156> AllocateTemporaryEntryPoints +00007FA12EEF8810 18 stub<20157> AllocateTemporaryEntryPoints +00007FA12EEF8828 18 stub<20158> AllocateTemporaryEntryPoints +00007FA12EEF8840 18 stub<20159> AllocateTemporaryEntryPoints +00007FA12ED6A420 156 void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::AddValueToStoreValue(!!0,object&)[OptimizedTier1] +00007FA12ED6A5A0 1be instance valuetype System.Net.Http.Headers.HeaderDescriptor [System.Net.Http] System.Net.Http.Headers.HttpHeaders::GetHeaderDescriptor(string)[OptimizedTier1] +00007FA12ED6A780 19 bool [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationOptions`2[System.__Canon,System.__Canon]::get_IsIntegrationEnabled()[OptimizedTier1] +00007FA12ED6A7B0 ac void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.IntegrationOptions`2[System.__Canon,System.__Canon]::RecordTelemetry()[OptimizedTier1] +00007FA12ED6A880 44 instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::IntegrationRunning(valuetype Datadog.Trace.Configuration.IntegrationId)[OptimizedTier1] +00007FA12ED6A8E0 42 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector::IntegrationRunning(valuetype Datadog.Trace.Configuration.IntegrationId)[OptimizedTier1] +00007FA12ED6A940 12 uint32 [System.Private.CoreLib] System.HashCode::Round(uint32,uint32)[OptimizedTier1] +00007FA12ED6A970 4 instance int32 [System.Private.CoreLib] System.Version::get_Major()[OptimizedTier1] +00007FA12EEF8858 18 stub<20160> AllocateTemporaryEntryPoints +00007FA12EEF8870 18 stub<20161> AllocateTemporaryEntryPoints +00007FA12ED6A990 374 instance valuetype System.Threading.CancellationTokenRegistration [System.Private.CoreLib] System.Threading.CancellationTokenSource::Register(class System.Delegate,object,class System.Threading.SynchronizationContext,class System.Threading.ExecutionContext)[OptimizedTier1] +00007FA12EEF8888 60 stub<20162> AllocateTemporaryEntryPoints +00007FA12EEF88E8 18 stub<20163> AllocateTemporaryEntryPoints +00007FA12ED6AD60 6e instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection::WriteBytesAsync(uint8[],bool)[OptimizedTier1] +00007FA12ED6ADF0 4c instance valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceStatus [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::GetStatus(int16)[OptimizedTier1] +00007FA12EEF8900 60 stub<20164> AllocateTemporaryEntryPoints +00007FA12ED6AE50 b3 instance bool [System.Private.CoreLib] System.Threading.EventWaitHandle::Set()[OptimizedTier1] +00007FA12ED6AF20 111 bool [System.Private.CoreLib] Interop+Kernel32::SetEvent(class Microsoft.Win32.SafeHandles.SafeWaitHandle)[OptimizedTier1] +00007FA12ED6B060 169 instance valuetype [System.Runtime]System.Nullable`1 [System.Net.Http] System.Net.Http.Headers.HttpContentHeaders::get_ContentLength()[OptimizedTier1] +00007FA12EEF8960 18 stub<20165> AllocateTemporaryEntryPoints +00007FA12EEF8978 18 stub<20166> AllocateTemporaryEntryPoints +00007FA12ED6B1F0 4cc instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12ED6B720 110 instance object [System.Net.Http] System.Net.Http.Headers.HttpHeaders+HeaderStoreItemInfo::GetSingleParsedValue()[OptimizedTier1] +00007FA12ED6B850 28 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::get_HasValues()[OptimizedTier1] +00007FA12ED6B890 10e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteStartObject()[OptimizedTier1] +00007FA12ED6B9C0 39 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteStartObject()[OptimizedTier1] +00007FA12ED6BA20 61 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::.ctor()[OptimizedTier1] +00007FA12ED6BAA0 44 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JPropertyKeyedCollection::.ctor()[OptimizedTier1] +00007FA12ED6BB00 d4 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::MatchValueWithTrailingSeparator(string)[OptimizedTier1] +00007FA12ED6BBF0 4c instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::MatchValue(string)[OptimizedTier1] +00007FA12ED6BC60 b6 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::MatchValue(bool,string)[OptimizedTier1] +00007FA12ED6BD30 118 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::IsSeparator(char)[OptimizedTier1] +00007FA12ED6BE80 8b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(bool)[OptimizedTier1] +00007FA12ED6BF30 17 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(bool)[OptimizedTier1] +00007FA12ED6BF60 3e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(bool)[OptimizedTier1] +00007FA12ED6BFC0 21 object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BoxedPrimitives::Get(bool)[OptimizedTier1] +00007FA12ED6C000 15e instance void [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.__Canon]::AllocateBuffer()[OptimizedTier1] +00007FA12ED6C180 1b instance valuetype System.Threading.CancellationToken [System.Private.CoreLib] System.Threading.CancellationTokenSource::get_Token()[OptimizedTier1] +00007FA12EEF8990 60 stub<20167> AllocateTemporaryEntryPoints +00007FA12EEF89F0 60 stub<20168> AllocateTemporaryEntryPoints +00007FA12ED6C1C0 54b void [System.Net.Http] System.Net.Http.HttpConnection::ParseHeaderNameValue(class System.Net.Http.HttpConnection,valuetype [System.Runtime]System.ReadOnlySpan`1,class System.Net.Http.HttpResponseMessage,bool)[OptimizedTier1] +00007FA12ED6C730 1cb bool [System.Net.Http] System.Net.Http.Headers.HeaderDescriptor::TryGet(valuetype [System.Runtime]System.ReadOnlySpan`1,valuetype System.Net.Http.Headers.HeaderDescriptor&)[OptimizedTier1] +00007FA12ED6C920 5d class System.Net.Http.Headers.KnownHeader [System.Net.Http] System.Net.Http.Headers.KnownHeaders::TryGetKnownHeader(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12ED6C9A0 abe class System.Net.Http.Headers.KnownHeader [System.Net.Http] System.Net.Http.Headers.KnownHeaders::GetCandidate(!!0)[OptimizedTier1] +00007FA12ED6D5D0 b1 instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::TryAddWithoutValidation(valuetype System.Net.Http.Headers.HeaderDescriptor,string)[OptimizedTier1] +00007FA12ED6D6A0 124 instance string [System.Net.Http] System.Net.Http.Headers.HeaderDescriptor::GetHeaderValue(valuetype [System.Runtime]System.ReadOnlySpan`1,class [System.Runtime]System.Text.Encoding)[OptimizedTier1] +00007FA12ED6D7F0 122 instance bool [System.Private.CoreLib] System.Threading.CancellationTokenSource+Registrations::Unregister(int64,class System.Threading.CancellationTokenSource/CallbackNode)[OptimizedTier1] +00007FA12EEF8A50 30 stub<20169> AllocateTemporaryEntryPoints +00007FA12EEF8A80 18 stub<20170> AllocateTemporaryEntryPoints +00007FA12ED6D950 245 instance void [System.Threading.Tasks.Parallel] System.Threading.Tasks.TaskReplicator+Replica::Execute()[OptimizedTier1] +00007FA12EEF8A98 60 stub<20171> AllocateTemporaryEntryPoints +00007FA12EEF8AF8 60 stub<20172> AllocateTemporaryEntryPoints +00007FA12EEF8B58 60 stub<20173> AllocateTemporaryEntryPoints +00007FA12EEF8BB8 60 stub<20174> AllocateTemporaryEntryPoints +00007FA12EEF8C18 60 stub<20175> AllocateTemporaryEntryPoints +00007FA12EF20020 558 instance void [System.Threading.Tasks.Parallel] System.Threading.Tasks.Parallel+<>c__DisplayClass19_0`1[System.__Canon]::b__1(valuetype System.Threading.Tasks.RangeWorker&,int32,bool&)[OptimizedTier1] +00007FA12EF205D0 32 instance bool [System.Threading.Tasks.Parallel] System.Threading.Tasks.RangeWorker::FindNewWork32(int32&,int32&)[OptimizedTier1] +00007FA12EF20620 91 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::Start(class System.Threading.Tasks.TaskScheduler)[OptimizedTier1] +00007FA12EF206D0 17 bool [System.Private.CoreLib] System.Number::IsWhite(int32)[OptimizedTier1] +00007FA12EF20700 47d valuetype System.Number/ParsingStatus [System.Private.CoreLib] System.Number::TryParseInt32IntegerStyle(valuetype System.ReadOnlySpan`1,valuetype System.Globalization.NumberStyles,class System.Globalization.NumberFormatInfo,int32&)[OptimizedTier1] +00007FA12EF20BA0 60 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[System.__Canon]::SwapIfGreater(valuetype System.Span`1,class System.Comparison`1,int32,int32)[OptimizedTier1] +00007FA12EF20C20 25 instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.__Canon]::Slice(int32,int32)[OptimizedTier1] +00007FA12EF20C60 27c void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[System.__Canon]::IntroSort(valuetype System.Span`1,int32,class System.Comparison`1)[OptimizedTier1] +00007FA12EF20F00 b4 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[System.__Canon]::InsertionSort(valuetype System.Span`1,class System.Comparison`1)[OptimizedTier1] +00007FA12EF20FE0 4 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Append(valuetype System.Text.StringBuilder/AppendInterpolatedStringHandler&)[OptimizedTier1] +00007FA12EF21000 22 void [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::SetLastSystemError(int32)[OptimizedTier1] +00007FA12EF21040 23 int32 [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::GetLastSystemError()[OptimizedTier1] +00007FA12EF21080 7 instance bool [System.Private.CoreLib] System.Runtime.InteropServices.SafeHandle::get_IsClosed()[OptimizedTier1] +00007FA12EF210A0 5 instance string [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute::get_Name()[OptimizedTier1] +00007FA12EF210C0 12e instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::AddPage(class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferPage)[OptimizedTier1] +00007FA12EEF8C78 18 stub<20176> AllocateTemporaryEntryPoints +00007FA12EEF8C90 18 stub<20177> AllocateTemporaryEntryPoints +00007FA12EEF8CA8 18 stub<20178> AllocateTemporaryEntryPoints +00007FA12EEF8CC0 18 stub<20179> AllocateTemporaryEntryPoints +00007FA12EF21210 2e instance object [System.Private.CoreLib] System.ArrayEnumerator::get_Current()[OptimizedTier1] +00007FA12EF21260 61 instance object [System.Private.CoreLib] System.Array::InternalGetValue(native int)[OptimizedTier1] +00007FA12EF212E0 5d bool [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList::NameEquals(string,class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute)[OptimizedTier1] +00007FA12EF21360 ee instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.DefaultTagHelperContent::MoveTo(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder)[OptimizedTier1] +00007FA12E6726C0 18 stub<20180> GenerateLookupStub +00007FA12E6726E0 18 stub<20181> GenerateLookupStub +00007FA12E672700 18 stub<20182> GenerateLookupStub +00007FA12EF21470 a3 void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.DefaultTagHelperContent::MoveToCore(object,class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder)[OptimizedTier1] +00007FA12EF21530 5a instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext::AddTagHelperAttribute(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute)[OptimizedTier1] +00007FA12EF215B0 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Count()[OptimizedTier1] +00007FA12EF215D0 f1 bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Template.TemplateBinder::RoutePartsEqual(object,object)[OptimizedTier1] +00007FA12EF216E0 4 instance int32 [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::get_Count()[OptimizedTier1] +00007FA12E672720 18 stub<20183> GenerateLookupStub +00007FA12EF21700 182 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute::MoveTo(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder)[OptimizedTier1] +00007FA12EF218A0 52 string [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute::GetAttributeValuePrefix(valuetype Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle)[OptimizedTier1] +00007FA12EF21920 31 string [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute::GetAttributeValueSuffix(valuetype Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle)[OptimizedTier1] +00007FA12EF21980 183 instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::Remove(string,object&)[OptimizedTier1] +00007FA12EF21B40 c3 instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList::get_Item(string)[OptimizedTier1] +00007FA12EF21C30 33 instance void [System.Private.CoreLib] System.IO.TextWriter::.ctor()[OptimizedTier1] +00007FA12E672740 18 stub<20184> GenerateLookupStub +00007FA12EF21C80 173 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::Write(object)[OptimizedTier1] +00007FA12E672760 18 stub<20185> GenerateLookupStub +00007FA12EF21E20 27 instance bool [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.ItemsDictionary::System.Collections.Generic.IDictionary.TryGetValue(object,object&)[OptimizedTier1] +00007FA12EF21E60 2c instance bool [System.Text.Encodings.Web] System.Text.Encodings.Web.OptimizedInboxTextEncoder+AllowedAsciiCodePoints::IsAllowedAsciiCodePoint(uint32)[OptimizedTier1] +00007FA12EF21EA0 5 instance class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferTextWriter::get_Buffer()[OptimizedTier1] +00007FA12E672780 18 stub<20186> GenerateLookupStub +00007FA12EF21EC0 53 instance class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferPage [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::AppendNewPage()[OptimizedTier1] +00007FA12EEF8CD8 18 stub<20187> AllocateTemporaryEntryPoints +00007FA12EF21F30 23a instance valuetype Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue[] [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.MemoryPoolViewBufferScope::GetPage(int32)[OptimizedTier1] +00007FA12EF221B0 4a instance !0[] [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::TryPop()[OptimizedTier1] +00007FA12EF22220 15 instance bool [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList::ContainsName(string)[OptimizedTier1] +00007FA12EF22250 5 instance string [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::get_Action()[OptimizedTier1] +00007FA12EF22270 5 instance string [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::get_Controller()[OptimizedTier1] +00007FA12EF22290 bf instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValueEqualityComparer::Equals(object,object)[OptimizedTier1] +00007FA12E6727A0 18 stub<20188> GenerateLookupStub +00007FA12E6727C0 18 stub<20189> GenerateLookupStub +00007FA12E6727E0 18 stub<20190> GenerateLookupStub +00007FA12E672800 18 stub<20191> GenerateLookupStub +00007FA12EEF8CF0 18 stub<20192> AllocateTemporaryEntryPoints +00007FA12EF22380 500 instance void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Tree.LinkGenerationDecisionTree::Walk(class [System.Collections]System.Collections.Generic.List`1,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class Microsoft.AspNetCore.Routing.DecisionTree.DecisionTreeNode`1,bool)[OptimizedTier1] +00007FA12EEF8D08 48 stub<20193> AllocateTemporaryEntryPoints +00007FA12EEF8D50 18 stub<20194> AllocateTemporaryEntryPoints +00007FA12EEFA000 6f0 stub<20195> AllocateTemporaryEntryPoints +00007FA12EEFA6F0 78 stub<20196> AllocateTemporaryEntryPoints +00007FA12EEFA768 a8 stub<20197> AllocateTemporaryEntryPoints +00007FA12EEFA810 18 stub<20198> AllocateTemporaryEntryPoints +00007FA12EEFA828 18 stub<20199> AllocateTemporaryEntryPoints +00007FA12EF228A0 e8 class [System.Collections]System.Collections.Generic.List`1 [System.Linq] System.Linq.Enumerable::ToList(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12EF229C0 230 instance int32 [System.Text.Encodings.Web] System.Text.Encodings.Web.OptimizedInboxTextEncoder::GetIndexOfFirstCharToEncode(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF22C20 156 instance native uint [System.Text.Encodings.Web] System.Text.Encodings.Web.OptimizedInboxTextEncoder::GetIndexOfFirstCharToEncodeSsse3(char*,native uint)[OptimizedTier1] +00007FA12EF22DE0 2c instance class Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.TagBuilder::get_Attributes()[OptimizedTier1] +00007FA12EF22E20 27 instance bool [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary+Enumerator::MoveNext()[OptimizedTier1] +00007FA12EF22E60 b8 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::.ctor(class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.IViewBufferScope,string,int32)[OptimizedTier1] +00007FA12EF22F40 91 instance int32 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValueEqualityComparer::GetHashCode(object)[OptimizedTier1] +00007FA12EF23000 286 instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.UriBuildingContext::Accept(string,bool)[OptimizedTier1] +00007FA12EF232B0 1c instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::Clear()[OptimizedTier1] +00007FA12EF232E0 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12EF23300 15 int32 [System.Private.CoreLib] System.Buffers.Utilities::SelectBucketIndex(int32)[OptimizedTier1] +00007FA12E672820 18 stub<20200> GenerateLookupStub +00007FA12EF23330 2d1 instance class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IUrlHelper [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.UrlHelperFactory::GetUrlHelper(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext)[OptimizedTier1] +00007FA12EEFA840 18 stub<20201> AllocateTemporaryEntryPoints +00007FA12EEFA858 18 stub<20202> AllocateTemporaryEntryPoints +00007FA12EF23630 83 instance !!0 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::CreateTagHelper()[OptimizedTier1] +00007FA12EF236D0 97 instance class Microsoft.AspNetCore.Mvc.Razor.ITagHelperFactory [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::get_TagHelperFactory()[OptimizedTier1] +00007FA12EEFA870 18 stub<20203> AllocateTemporaryEntryPoints +00007FA12EEFA888 18 stub<20204> AllocateTemporaryEntryPoints +00007FA12EEFA8A0 18 stub<20205> AllocateTemporaryEntryPoints +00007FA12EEFA8B8 18 stub<20206> AllocateTemporaryEntryPoints +00007FA12EF23780 142 instance !!0 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.DefaultTagHelperFactory::CreateTagHelper(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EEFA8D0 30 stub<20207> AllocateTemporaryEntryPoints +00007FA12EF238F0 9a instance !!0 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.Infrastructure.DefaultTagHelperActivator::Create(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF239B0 41 !0 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.Infrastructure.DefaultTagHelperActivator+Cache`1[System.__Canon]::Create(class [System.ComponentModel]System.IServiceProvider)[OptimizedTier1] +00007FA12EF23A10 4 instance object [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.DefaultTagHelperFactory+<>c::b__8_0(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EEFA900 18 stub<20208> AllocateTemporaryEntryPoints +00007FA12EEFA918 18 stub<20209> AllocateTemporaryEntryPoints +00007FA12EEFA930 18 stub<20210> AllocateTemporaryEntryPoints +00007FA12EF23A40 190 void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.DefaultTagHelperFactory::InitializeTagHelper(!!0,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF23C10 8c instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext::Add(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.ITagHelper)[OptimizedTier1] +00007FA12EF23CC0 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12EF23CE0 70 instance class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::AppendHtml(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContent)[OptimizedTier1] +00007FA12EF23D70 1bc instance class Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager::Begin(string,valuetype [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagMode,string,class [System.Runtime]System.Func`1)[OptimizedTier1] +00007FA12EF23F50 10a instance class Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager+ExecutionContextPool::Rent(string,valuetype [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagMode,class [System.Runtime]System.Collections.Generic.IDictionary`2,string,class [System.Runtime]System.Func`1)[OptimizedTier1] +00007FA12EEFA948 18 stub<20211> AllocateTemporaryEntryPoints +00007FA12EEFA960 60 stub<20212> AllocateTemporaryEntryPoints +00007FA12E672840 18 stub<20213> GenerateLookupStub +00007FA12EF24080 22d instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext::Reinitialize(string,valuetype [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagMode,class [System.Runtime]System.Collections.Generic.IDictionary`2,string,class [System.Runtime]System.Func`1)[OptimizedTier1] +00007FA12EF242D0 57 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext::Reinitialize(string,class [System.Runtime]System.Collections.Generic.IDictionary`2,string)[OptimizedTier1] +00007FA12EF24350 4e instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext::Reinitialize(class [System.Runtime]System.Collections.Generic.IDictionary`2,string)[OptimizedTier1] +00007FA12EF243C0 99 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::Reinitialize(string,valuetype Microsoft.AspNetCore.Razor.TagHelpers.TagMode)[OptimizedTier1] +00007FA12E672860 18 stub<20214> GenerateLookupStub +00007FA12E672880 18 stub<20215> GenerateLookupStub +00007FA12EEFA9C0 18 stub<20216> AllocateTemporaryEntryPoints +00007FA12EEFA9D8 18 stub<20217> AllocateTemporaryEntryPoints +00007FA12EEFA9F0 60 stub<20218> AllocateTemporaryEntryPoints +00007FA12EEFAA50 18 stub<20219> AllocateTemporaryEntryPoints +00007FA12EF24480 1ab instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner::RunAsync(class Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext)[OptimizedTier1] +00007FA12EF24650 c1 void [System.Private.CoreLib] System.MemoryExtensions::Sort(valuetype System.Span`1,!!1)[OptimizedTier1] +00007FA12EF24740 4 instance int32 [System.Private.CoreLib] System.Span`1[System.__Canon]::get_Length()[OptimizedTier1] +00007FA12EF24760 1d instance void [System.Private.CoreLib] System.Span`1[System.Char]::.ctor(!0[])[OptimizedTier1] +00007FA12EF24790 6d instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute::.ctor(string,object,valuetype Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle)[OptimizedTier1] +00007FA12EF24820 2a instance bool [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::get_IsContentModified()[OptimizedTier1] +00007FA12EF24860 4f instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext::SetOutputContentAsync()[OptimizedTier1] +00007FA12EF248D0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF248F0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EEFAA68 18 stub<20220> AllocateTemporaryEntryPoints +00007FA12EEFAA80 18 stub<20221> AllocateTemporaryEntryPoints +00007FA12EEFAA98 18 stub<20222> AllocateTemporaryEntryPoints +00007FA12EF24A50 2e5 instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext+d__32::MoveNext()[OptimizedTier1] +00007FA12EF24D90 1a2 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::StartTagHelperWritingScope(class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder)[OptimizedTier1] +00007FA12EF24F60 97 instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.IViewBufferScope [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::get_BufferScope()[OptimizedTier1] +00007FA12EF25010 82 instance void [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::Push(!0)[OptimizedTier1] +00007FA12EF250B0 5 instance class [System.Runtime]System.Text.Encoding [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferTextWriter::get_Encoding()[OptimizedTier1] +00007FA12EF250D0 e4 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferTextWriter::.ctor(class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer,class [System.Runtime]System.Text.Encoding)[OptimizedTier1] +00007FA12EF251D0 e7 instance class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::EndTagHelperWritingScope()[OptimizedTier1] +00007FA12EF252D0 4 instance int32 [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::get_Count()[OptimizedTier1] +00007FA12EF252F0 77 instance !0 [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::Pop()[OptimizedTier1] +00007FA12EF25380 1 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.DefaultTagHelperContent::.ctor()[OptimizedTier1] +00007FA12EF253A0 2c instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::get_Content()[OptimizedTier1] +00007FA12EF253E0 12 instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent::SetHtmlContent(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContent)[OptimizedTier1] +00007FA12E6728A0 18 stub<20223> GenerateLookupStub +00007FA12EF25410 7a class Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions::SetHtmlContent(class Microsoft.AspNetCore.Html.IHtmlContentBuilder,class Microsoft.AspNetCore.Html.IHtmlContent)[OptimizedTier1] +00007FA12EF254B0 10 instance class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent::Microsoft.AspNetCore.Html.IHtmlContentBuilder.Clear()[OptimizedTier1] +00007FA12EF254E0 10 instance class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent::Microsoft.AspNetCore.Html.IHtmlContentBuilder.AppendHtml(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContent)[OptimizedTier1] +00007FA12EF25520 27c instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::Microsoft.AspNetCore.Html.IHtmlContentContainer.MoveTo(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder)[OptimizedTier1] +00007FA12EEFAAB0 a8 stub<20224> AllocateTemporaryEntryPoints +00007FA12EF257C0 103 instance class Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager::End()[OptimizedTier1] +00007FA12EF258E0 3e instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter::FlushAsync()[OptimizedTier1] +00007FA12EEFAB58 18 stub<20225> AllocateTemporaryEntryPoints +00007FA12EEFAB70 30 stub<20226> AllocateTemporaryEntryPoints +00007FA12EF25940 156 instance void [System.Text.Encodings.Web] System.Text.Encodings.Web.TextEncoder::Encode(class [System.Runtime]System.IO.TextWriter,string,int32,int32)[OptimizedTier1] +00007FA12EF25AC0 96 void [System.Text.Encodings.Web] System.Text.Encodings.Web.TextEncoder::ValidateRanges(int32,int32,int32)[OptimizedTier1] +00007FA12EF25B70 12 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter::Write(string)[OptimizedTier1] +00007FA12EF25BA0 83 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedCharBuffer::Append(string)[OptimizedTier1] +00007FA12EF25C50 5a instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter::FlushAsyncAwaited()[OptimizedTier1] +00007FA12EF25CD0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF25CF0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EEFABA0 18 stub<20227> AllocateTemporaryEntryPoints +00007FA12EF25E60 f7 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedCharBuffer::Clear()[OptimizedTier1] +00007FA12EF25F80 15 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders::get_HasTransferEncoding()[OptimizedTier1] +00007FA12EF25FB0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF26110 8 instance class Microsoft.AspNetCore.Server.Kestrel.Core.MinDataRate [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::Microsoft.AspNetCore.Server.Kestrel.Core.Features.IHttpMinResponseDataRateFeature.get_MinDataRate()[OptimizedTier1] +00007FA12E6728C0 18 stub<20228> GenerateLookupStub +00007FA12E6728E0 18 stub<20229> GenerateLookupStub +00007FA12EF26130 1d7 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher::FlushAsync(class Microsoft.AspNetCore.Server.Kestrel.Core.MinDataRate,int64,class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpOutputAborter,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF26330 10a instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::BytesWrittenToBuffer(class Microsoft.AspNetCore.Server.Kestrel.Core.MinDataRate,int64)[OptimizedTier1] +00007FA12EF26480 243 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter::FlushAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF26700 50 object [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::ChkCastClassSpecial(void*,object)[OptimizedTier1] +00007FA12EF26770 7 instance int32 [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::get_BytesTransferred()[OptimizedTier1] +00007FA12EF26790 7 instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::get_SocketError()[OptimizedTier1] +00007FA12EF267B0 35 instance valuetype System.Runtime.CompilerServices.ValueTaskAwaiter`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::GetAwaiter()[OptimizedTier1] +00007FA12EF26800 f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::.ctor(valuetype System.Threading.Tasks.ValueTask`1&)[OptimizedTier1] +00007FA12EF26820 67 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::get_IsCompleted()[OptimizedTier1] +00007FA12EF268A0 6a instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::get_IsCompleted()[OptimizedTier1] +00007FA12EF26930 95 instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::GetResult()[OptimizedTier1] +00007FA12EF269F0 99 instance !0 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::get_Result()[OptimizedTier1] +00007FA12EF26AC0 63 bool [System.Net.Http] System.ByteArrayHelpers::EqualsOrdinalAsciiIgnoreCase(string,valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF26B40 3b4 instance int32 [System.Private.CoreLib] System.Text.EncoderNLS::GetBytes(char[],int32,int32,uint8[],int32,bool)[OptimizedTier1] +00007FA12EEFABB8 30 stub<20230> AllocateTemporaryEntryPoints +00007FA12E672900 18 stub<20231> GenerateLookupStub +00007FA12EEFABE8 18 stub<20232> AllocateTemporaryEntryPoints +00007FA12EF26F20 263 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseStream::WriteAsync(valuetype [System.Runtime]System.ReadOnlyMemory`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12E672920 18 stub<20233> GenerateLookupStub +00007FA12E672940 18 stub<20234> GenerateLookupStub +00007FA12EEFAC00 60 stub<20235> AllocateTemporaryEntryPoints +00007FA12EEFAC60 18 stub<20236> AllocateTemporaryEntryPoints +00007FA12EF271B0 2b9 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::WritePipeAsync(valuetype [System.Runtime]System.ReadOnlyMemory`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF274A0 74 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::VerifyAndUpdateWrite(int32)[OptimizedTier1] +00007FA12EF27530 e7 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::CommitChunkInternal(valuetype System.Buffers.BufferWriter`1&,valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF27640 78 int32 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.ChunkWriter::WriteBeginChunkBytes(valuetype System.Buffers.BufferWriter`1&,int32)[OptimizedTier1] +00007FA12EF276E0 a7 int32 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.ChunkWriter::BeginChunkBytes(int32,valuetype [System.Runtime]System.Span`1)[OptimizedTier1] +00007FA12EF277A0 ce instance void [Microsoft.AspNetCore.Server.Kestrel.Core] System.Buffers.BufferWriter`1[System.__Canon]::WriteMultiBuffer(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF27890 75 void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.ChunkWriter::WriteEndChunkBytes(valuetype System.Buffers.BufferWriter`1&)[OptimizedTier1] +00007FA12E672960 18 stub<20237> GenerateLookupStub +00007FA12EF27920 12b instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::FlushAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF27A80 c8 instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.ReadResult]::GetResult()[OptimizedTier1] +00007FA12EF27B70 b7 instance !0 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.ReadResult]::get_Result()[OptimizedTier1] +00007FA12EF27C50 5e instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::WriteAsyncAwaited(char[],int32,int32)[OptimizedTier1] +00007FA12EEFAC78 18 stub<20238> AllocateTemporaryEntryPoints +00007FA12EF27CD0 186 instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetReadResult(valuetype System.IO.Pipelines.ReadResult&)[OptimizedTier1] +00007FA12EF27E80 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF27EA0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EEFAC90 18 stub<20239> AllocateTemporaryEntryPoints +00007FA12EEFACA8 18 stub<20240> AllocateTemporaryEntryPoints +00007FA12EF28000 95 instance void [System.Memory] System.Buffers.ReadOnlySequence`1[System.Byte]::.ctor(class System.Buffers.ReadOnlySequenceSegment`1,int32,class System.Buffers.ReadOnlySequenceSegment`1,int32)[OptimizedTier1] +00007FA12EF280C0 1c instance valuetype [System.Memory]System.Buffers.ReadOnlySequence`1 [System.IO.Pipelines] System.IO.Pipelines.ReadResult::get_Buffer()[OptimizedTier1] +00007FA12EF280F0 e instance bool [System.Memory] System.Buffers.ReadOnlySequence`1[System.Byte]::get_IsSingleSegment()[OptimizedTier1] +00007FA12EF28110 8a instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::SetResult(!0)[OptimizedTier1] +00007FA12EF281C0 16c instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::WriteChunkAsync(valuetype [System.Runtime]System.ReadOnlySpan`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF28370 1f instance !0 [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.__Canon]::get_Result()[OptimizedTier1] +00007FA12EF283A0 30 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::.ctor(!0)[OptimizedTier1] +00007FA12EF283F0 76 instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::AdvanceReader(valuetype [System.Memory]System.SequencePosition&,valuetype [System.Memory]System.SequencePosition&)[OptimizedTier1] +00007FA12EF28480 467 instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::AdvanceReader(class System.IO.Pipelines.BufferSegment,int32,class System.IO.Pipelines.BufferSegment,int32)[OptimizedTier1] +00007FA12EF28930 9 instance bool [System.IO.Pipelines] System.IO.Pipelines.ReadResult::get_IsCompleted()[OptimizedTier1] +00007FA12EF28950 c instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeReader::ReadAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EEFACC0 18 stub<20241> AllocateTemporaryEntryPoints +00007FA12EF28970 334 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.IO.Pipelines] System.IO.Pipelines.Pipe::ReadAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF28D00 44 instance valuetype System.Runtime.CompilerServices.ValueTaskAwaiter`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.ReadResult]::GetAwaiter()[OptimizedTier1] +00007FA12EF28D60 16 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.ReadResult]::.ctor(valuetype System.Threading.Tasks.ValueTask`1&)[OptimizedTier1] +00007FA12EF28D90 67 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter`1[System.IO.Pipelines.ReadResult]::get_IsCompleted()[OptimizedTier1] +00007FA12EF28E10 6a instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.ReadResult]::get_IsCompleted()[OptimizedTier1] +00007FA12EF28EA0 5 instance class Datadog.Trace.IDatadogTracer [Datadog.Trace] Datadog.Trace.TraceContext::get_Tracer()[OptimizedTier1] +00007FA12EF28EC0 5 instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.Boolean]::get_Task()[OptimizedTier1] +00007FA12EF28EE0 67 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ValueTaskAwaiter::get_IsCompleted()[OptimizedTier1] +00007FA12E672980 18 stub<20242> GenerateLookupStub +00007FA12EF28F60 329 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::set_BufferList(class [System.Runtime]System.Collections.Generic.IList`1>)[OptimizedTier1] +00007FA12EF292C0 c instance !0& modreq(System.Runtime.InteropServices.InAttribute) [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::GetPinnableReference()[OptimizedTier1] +00007FA12EEFACD8 18 stub<20243> AllocateTemporaryEntryPoints +00007FA12EF292E0 6c instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::Fetch(!!0&,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12EF29370 c1 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::Fetch(!!0&,!!1,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12EF29460 4 instance int32 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::get_Revision()[OptimizedTier1] +00007FA12EF29480 14 instance void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::set_Active(class Datadog.Trace.Scope)[OptimizedTier1] +00007FA12EEFACF0 18 stub<20244> AllocateTemporaryEntryPoints +00007FA12EF294B0 19 class [System.Runtime]System.IO.TextWriter [System.Console] System.Console::get_Out()[OptimizedTier1] +00007FA12EF294E0 42 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.SetSpanContext(class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2)[OptimizedTier1] +00007FA12EF29540 1e valuetype System.TimeSpan [System.Private.CoreLib] System.DateTime::op_Subtraction(valuetype System.DateTime,valuetype System.DateTime)[OptimizedTier1] +00007FA12EF29570 40 int32 [System.Private.CoreLib] System.Threading.Thread::GetCurrentProcessorId()[OptimizedTier1] +00007FA12EF295D0 2d void [System.Private.CoreLib] System.Threading.Monitor::PulseAll(object)[OptimizedTier1] +00007FA12EEFAD08 18 stub<20245> AllocateTemporaryEntryPoints +00007FA12EEFAD20 18 stub<20246> AllocateTemporaryEntryPoints +00007FA12EEFAD38 18 stub<20247> AllocateTemporaryEntryPoints +00007FA12EEFAD50 18 stub<20248> AllocateTemporaryEntryPoints +00007FA12EEFC000 2b8 stub<20249> AllocateTemporaryEntryPoints +00007FA12EEFC2B8 18 stub<20250> AllocateTemporaryEntryPoints +00007FA12EEFC2D0 18 stub<20251> AllocateTemporaryEntryPoints +00007FA12EF29620 297 instance void [System.Private.CoreLib] System.IO.StreamWriter::Flush(bool,bool)[OptimizedTier1] +00007FA12EF298E0 f instance void [System.Console] System.ConsolePal+UnixConsoleStream::Write(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF29900 113 void [System.Console] System.ConsolePal::Write(class [System.Runtime]Microsoft.Win32.SafeHandles.SafeFileHandle,valuetype [System.Runtime]System.ReadOnlySpan`1,bool)[OptimizedTier1] +00007FA12EF29A40 af int32 [System.Console] Interop+Sys::Write(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,uint8*,int32)[OptimizedTier1] +00007FA12EF29B20 18c void [System.Console] System.ConsolePal::UpdatedCachedCursorPosition(uint8*,int32,int32)[OptimizedTier1] +00007FA12EF29CE0 44 bool [System.Console] System.ConsolePal::TryGetCachedCursorPosition(int32&,int32&)[OptimizedTier1] +00007FA12EF29D40 4b void [System.Console] System.ConsolePal::CheckTerminalSettingsInvalidated()[OptimizedTier1] +00007FA12EF29DA0 17 void [System.Console] System.ConsolePal::InvalidateCachedCursorPosition()[OptimizedTier1] +00007FA12EF29DD0 4 instance void [System.Private.CoreLib] System.TimeSpan::.ctor(int64)[OptimizedTier1] +00007FA12EF29DF0 8 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_TraceEnabled()[OptimizedTier1] +00007FA12EF29E10 100 instance bool [System.Private.CoreLib] System.Threading.TimerQueue::SetTimer(uint32)[OptimizedTier1] +00007FA12EF29F40 38 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagItem`1[System.__Canon]::.ctor(string,!0,uint8[])[OptimizedTier1] +00007FA12EF29FA0 a97 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter+TagWriter::Process(valuetype Datadog.Trace.Tagging.TagItem`1)[OptimizedTier1] +00007FA12EF2AA60 9d4 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteTag(uint8[]&,int32&,uint8[],string,class Datadog.Trace.Processors.ITagProcessor[])[OptimizedTier1] +00007FA12EF2B460 10 bool [System.Private.CoreLib] System.Char::IsAsciiLetterLower(char)[OptimizedTier1] +00007FA12EF2B480 2a bool [System.Private.Uri] System.Uri::op_Equality(class System.Uri,class System.Uri)[OptimizedTier1] +00007FA12EF2B4C0 4 instance bool [System.Private.CoreLib] System.Nullable`1[System.Double]::get_HasValue()[OptimizedTier1] +00007FA12EF2B4E0 5 instance uint64 [Datadog.Trace] Datadog.Trace.SpanContext::get_TraceId()[OptimizedTier1] +00007FA12EF2B500 5 instance class Datadog.Trace.Configuration.ImmutableIntegrationSettingsCollection [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_Integrations()[OptimizedTier1] +00007FA12EF2B520 1c instance class Datadog.Trace.Configuration.ImmutableIntegrationSettings [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettingsCollection::get_Item(valuetype Datadog.Trace.Configuration.IntegrationId)[OptimizedTier1] +00007FA12EF2B550 5 instance class Datadog.Trace.Configuration.ImmutableIntegrationSettings[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettingsCollection::get_Settings()[OptimizedTier1] +00007FA12EF2B570 5a instance bool [System.Private.CoreLib] System.OrdinalIgnoreCaseComparer::Equals(string,string)[OptimizedTier1] +00007FA12EF2B5E0 9f instance void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::AddEntryToStore(valuetype System.Net.Http.Headers.HeaderEntry)[OptimizedTier1] +00007FA12EF2B6A0 5 valuetype System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Create()[OptimizedTier1] +00007FA12EF2B6C0 f3 instance valuetype System.Threading.Tasks.ValueTask`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::get_Task()[OptimizedTier1] +00007FA12EF2B7D0 8d instance void [System.Private.CoreLib] System.Threading.TimerQueueTimer::Close()[OptimizedTier1] +00007FA12EF2B890 37 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::Advance(int64)[OptimizedTier1] +00007FA12EF2B8E0 d8 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::ToUriComponent()[OptimizedTier1] +00007FA12EF2B9E0 7c instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.QueryString::.ctor(string)[OptimizedTier1] +00007FA12EF2BA80 4 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.QueryString::get_Value()[OptimizedTier1] +00007FA12EF2BAA0 6 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.Span`1[System.Char]::op_Implicit(valuetype System.Span`1)[OptimizedTier1] +00007FA12EEFC2E8 60 stub<20252> AllocateTemporaryEntryPoints +00007FA12EEFC348 2e8 stub<20253> AllocateTemporaryEntryPoints +00007FA12EF2BAC0 5f instance void [System.Console] System.ConsolePal+UnixConsoleStream::Flush()[OptimizedTier1] +00007FA12EF2BB40 c6 bool [System.Private.CoreLib] System.Threading.Monitor::Wait(object,int32)[OptimizedTier1] +00007FA12EF2BC20 24 instance object [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.__Canon]::System.Collections.IEnumerator.get_Current()[OptimizedTier1] +00007FA12EF2BC60 2e instance string [System.Private.CoreLib] System.Globalization.TextInfo::ToLower(string)[OptimizedTier1] +00007FA12EEFC630 18 stub<20254> AllocateTemporaryEntryPoints +00007FA12EEFC648 18 stub<20255> AllocateTemporaryEntryPoints +00007FA12EEFC660 18 stub<20256> AllocateTemporaryEntryPoints +00007FA12EF2BCC0 208 instance string [System.Private.CoreLib] System.Globalization.TextInfo::ChangeCaseCommon(string)[OptimizedTier1] +00007FA12EEFC678 18 stub<20257> AllocateTemporaryEntryPoints +00007FA12EEFC690 18 stub<20258> AllocateTemporaryEntryPoints +00007FA12EF2BEF0 69 !!0 [System.Private.CoreLib] System.Threading.LazyInitializer::EnsureInitialized(!!0&,bool&,object&)[OptimizedTier1] +00007FA12EF2BF80 4f instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IRouteValuesFeature.get_RouteValues()[OptimizedTier1] +00007FA12EF2BFF0 52 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::IsIntegrationEnabled(valuetype Datadog.Trace.Configuration.IntegrationId,bool)[OptimizedTier1] +00007FA12EF2C060 5 instance bool [Datadog.Trace] Datadog.Trace.Util.DomainMetadata::ShouldAvoidAppDomain()[OptimizedTier1] +00007FA12EF2C080 6 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettings::get_Enabled()[OptimizedTier1] +00007FA12EF2C0A0 272 instance bool [System.Private.CoreLib] System.Int32::TryFormat(valuetype System.Span`1,int32&,valuetype System.ReadOnlySpan`1,class System.IFormatProvider)[OptimizedTier1] +00007FA12EF2C340 15d bool [System.Private.CoreLib] System.Number::TryFormatInt32(int32,int32,valuetype System.ReadOnlySpan`1,class System.IFormatProvider,valuetype System.Span`1,int32&)[OptimizedTier1] +00007FA12EF2C4C0 d4 bool [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerIsEnabled|14_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Collections]System.Collections.Generic.List`1&)[OptimizedTier1] +00007FA12EF2C5C0 1de instance valuetype Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter/ConsoleColors [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::GetLogLevelConsoleColors(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel)[OptimizedTier1] +00007FA12EEFC6A8 18 stub<20259> AllocateTemporaryEntryPoints +00007FA12EF2C7F0 d2 bool [Microsoft.Extensions.Logging.Console] System.ConsoleUtils::get_EmitAnsiColorCodes()[OptimizedTier1] +00007FA12EF2C8E0 8 bool [System.Private.CoreLib] System.Convert::ToBoolean(int32)[OptimizedTier1] +00007FA12EF2C900 bf string [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::GetLogLevelString(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel)[OptimizedTier1] +00007FA12EEFC6C0 a8 stub<20260> AllocateTemporaryEntryPoints +00007FA12EF2C9F0 c1 void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.TextWriterExtensions::WriteColoredMessage(class [System.Runtime]System.IO.TextWriter,string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12EF2CAE0 4 instance int32 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.EventId::get_Id()[OptimizedTier1] +00007FA12EF2CB00 86 instance void [System.Private.CoreLib] System.IO.StringWriter::Write(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF2CBA0 12 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Append(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EEFC768 18 stub<20261> AllocateTemporaryEntryPoints +00007FA12EEFC780 18 stub<20262> AllocateTemporaryEntryPoints +00007FA12EF2CBD0 e6 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::WriteScopeInformation(class [System.Runtime]System.IO.TextWriter,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,bool)[OptimizedTier1] +00007FA12EF2CCE0 f0 void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::WriteMessage(class [System.Runtime]System.IO.TextWriter,string,bool)[OptimizedTier1] +00007FA12EF2CDF0 5 instance class System.Text.StringBuilder [System.Private.CoreLib] System.IO.StringWriter::GetStringBuilder()[OptimizedTier1] +00007FA12EF2CE10 4c instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLoggerProcessor::EnqueueMessage(valuetype Microsoft.Extensions.Logging.Console.LogMessageEntry)[OptimizedTier1] +00007FA12EEFC798 198 stub<20263> AllocateTemporaryEntryPoints +00007FA12EF2CE80 364 instance bool [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLoggerProcessor::Enqueue(valuetype Microsoft.Extensions.Logging.Console.LogMessageEntry)[OptimizedTier1] +00007FA12EF2D220 8a instance void [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::Enqueue(!0)[OptimizedTier1] +00007FA12EF2D2D0 6a instance !0 [System.Private.CoreLib] System.Collections.Generic.Queue`1[Microsoft.Extensions.Logging.Console.LogMessageEntry]::Dequeue()[OptimizedTier1] +00007FA12EF2D350 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12E6729A0 18 stub<20264> GenerateLookupStub +00007FA12EF2D370 5e instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLoggerProcessor::WriteMessage(valuetype Microsoft.Extensions.Logging.Console.LogMessageEntry)[OptimizedTier1] +00007FA12EF2D3F0 14 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.AnsiLogConsole::Write(string)[OptimizedTier1] +00007FA12EF2D420 84 instance void [System.Private.CoreLib] System.IO.TextWriter+SyncTextWriter::Write(string)[OptimizedTier1] +00007FA12EF2D4E0 19e instance void [System.Private.CoreLib] System.IO.StreamWriter::Write(string)[OptimizedTier1] +00007FA12EF2D6A0 f8 instance bool [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLoggerProcessor::TryDequeue(valuetype Microsoft.Extensions.Logging.Console.LogMessageEntry&)[OptimizedTier1] +00007FA12EF2D7D0 b bool [System.Private.CoreLib] System.Threading.Monitor::Wait(object)[OptimizedTier1] +00007FA12EF2D7F0 b int32 [System.Private.CoreLib] System.Buffers.Utilities::GetMaxSizeForBucket(int32)[OptimizedTier1] +00007FA12EF2D820 1d4 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Trim(int32,int32,valuetype System.Buffers.Utilities/MemoryPressure,int32)[OptimizedTier1] +00007FA12EF2DA40 1d7 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[System.Char]::Trim(int32,int32,valuetype System.Buffers.Utilities/MemoryPressure,int32)[OptimizedTier1] +00007FA12EF2DC50 8 instance int32 [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::get_Id()[OptimizedTier1] +00007FA12EF2DC80 68 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+PerCoreLockedStacks[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Trim(int32,int32,valuetype System.Buffers.Utilities/MemoryPressure,int32)[OptimizedTier1] +00007FA12EF2DD10 2e instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+<>c[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::b__13_0(object)[OptimizedTier1] +00007FA12EEFC930 18 stub<20265> AllocateTemporaryEntryPoints +00007FA12EEFC948 18 stub<20266> AllocateTemporaryEntryPoints +00007FA12EF2DD60 45b instance bool [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Trim()[OptimizedTier1] +00007FA12EF2E230 4 instance int32 [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::get_TraceCount()[OptimizedTier1] +00007FA12EF2E250 29 int32 [System.Private.CoreLib] System.MemoryExtensions::IndexOfAny(valuetype System.ReadOnlySpan`1,!!0,!!0)[OptimizedTier1] +00007FA12EEFC960 138 stub<20267> AllocateTemporaryEntryPoints +00007FA12E6729C0 18 stub<20268> GenerateLookupStub +00007FA12EEFCA98 120 stub<20269> AllocateTemporaryEntryPoints +00007FA12EF2E2A0 25f class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo [System.Net.Http] System.Net.Http.Headers.HttpHeaders::CloneHeaderInfo(valuetype System.Net.Http.Headers.HeaderDescriptor,class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo)[OptimizedTier1] +00007FA12EF2E540 1d6 instance bool [System.Private.CoreLib] System.Threading.TimerQueueTimer::Change(uint32,uint32,bool)[OptimizedTier1] +00007FA12EF2E750 c2 instance bool [System.Private.CoreLib] System.Threading.TimerQueue::UpdateTimer(class System.Threading.TimerQueueTimer,uint32,uint32)[OptimizedTier1] +00007FA12EF2E840 52 bool [System.Net.Http] System.ByteArrayHelpers::EqualsOrdinalAscii(string,valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF2E8B0 5e instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::TryGetValues(valuetype System.Net.Http.Headers.HeaderDescriptor,class [System.Runtime]System.Collections.Generic.IEnumerable`1&)[OptimizedTier1] +00007FA12EF2E930 9 bool [System.Private.CoreLib] System.TimeSpan::op_Inequality(valuetype System.TimeSpan,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EEFCBB8 138 stub<20270> AllocateTemporaryEntryPoints +00007FA12EF2E950 94 instance void [System.Private.CoreLib] System.IO.Stream::Dispose()[OptimizedTier1] +00007FA12EF2EA00 93 instance void [System.Private.CoreLib] System.IO.Stream::Close()[OptimizedTier1] +00007FA12EF2EAB0 8 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_KeyContract()[OptimizedTier1] +00007FA12EF2EAD0 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemContract()[OptimizedTier1] +00007FA12EF2EAF0 f uint8& [System.Private.CoreLib] System.Runtime.CompilerServices.CastHelpers::Unbox(void*,object)[OptimizedTier1] +00007FA12EF2EB10 60 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseNumber(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[OptimizedTier1] +00007FA12EF2EB90 38 instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::GetBucket(uint32)[OptimizedTier1] +00007FA12EF2EBE0 2c3 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureType(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,object,class [System.Runtime]System.Globalization.CultureInfo,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EF2EEE0 18 class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ReflectionUtils::GetObjectType(object)[OptimizedTier1] +00007FA12EF2EF10 4 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.MetadataPropertyHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling()[OptimizedTier1] +00007FA12EF2EF30 b1 object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BoxedPrimitives::Get(float64)[OptimizedTier1] +00007FA12EF2F010 29 bool [System.Private.CoreLib] System.Double::IsInfinity(float64)[OptimizedTier1] +00007FA12EF2F050 d bool [System.Private.CoreLib] System.Double::IsNaN(float64)[OptimizedTier1] +00007FA12EF2F070 204 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::ReadForType(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,bool)[OptimizedTier1] +00007FA12EF2F2C0 372 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateValueInternal(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[OptimizedTier1] +00007FA12EF2F6C0 1cc instance string[] [System.Private.CoreLib] System.String::SplitInternal(valuetype System.ReadOnlySpan`1,int32,valuetype System.StringSplitOptions)[OptimizedTier1] +00007FA12EEFCCF0 18 stub<20271> AllocateTemporaryEntryPoints +00007FA12EEFCD08 18 stub<20272> AllocateTemporaryEntryPoints +00007FA12EEFCD20 18 stub<20273> AllocateTemporaryEntryPoints +00007FA12EEFCD38 18 stub<20274> AllocateTemporaryEntryPoints +00007FA12EEFCD50 18 stub<20275> AllocateTemporaryEntryPoints +00007FA12EEFCD68 18 stub<20276> AllocateTemporaryEntryPoints +00007FA12EEFCD80 18 stub<20277> AllocateTemporaryEntryPoints +00007FA12EEFE000 270 stub<20278> AllocateTemporaryEntryPoints +00007FA12EEFE270 18 stub<20279> AllocateTemporaryEntryPoints +00007FA12EEFE288 18 stub<20280> AllocateTemporaryEntryPoints +00007FA12EEFE2A0 18 stub<20281> AllocateTemporaryEntryPoints +00007FA12EF2F8C0 2a1 instance void [System.Private.CoreLib] System.String::MakeSeparatorList(valuetype System.ReadOnlySpan`1,valuetype System.Collections.Generic.ValueListBuilder`1&)[OptimizedTier1] +00007FA12EF2FBA0 3dc instance string[] [System.Private.CoreLib] System.String::SplitWithoutPostProcessing(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,int32,int32)[OptimizedTier1] +00007FA12EF2FFA0 4 instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Single]::get_Key()[OptimizedTier1] +00007FA12EF2FFC0 158 instance void [System.Private.CoreLib] System.String::MakeSeparatorListVectorized(valuetype System.Collections.Generic.ValueListBuilder`1&,char,char,char)[OptimizedTier1] +00007FA12EF30150 38 instance string[] [System.Private.CoreLib] System.String::Split(char[],int32)[OptimizedTier1] +00007FA1277CD540 20 stub<20282> GenerateDispatchStub +00007FA12EF301A0 a0 instance void [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueue::EnqueueAtHighPriority(object)[OptimizedTier1] +00007FA12EF30260 2fe instance void [System.Private.CoreLib] System.Threading.TimerQueue::FireNextTimers()[OptimizedTier1] +00007FA12EF305A0 1e instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_Top()[OptimizedTier1] +00007FA12EF305E0 118 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteType(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.TypeNameHandling,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EF30710 111 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::OnSerializing(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,object)[OptimizedTier1] +00007FA12EF30860 a5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::InvokeOnSerializing(object,valuetype [System.Runtime]System.Runtime.Serialization.StreamingContext)[OptimizedTier1] +00007FA12EF30930 8 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemTypeNameHandling()[OptimizedTier1] +00007FA12EF30950 8 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract::get_FinalItemContract()[OptimizedTier1] +00007FA12EF30970 f7 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteEnd(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12EF30A90 111 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::OnSerialized(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,object)[OptimizedTier1] +00007FA12EF30BE0 a5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::InvokeOnSerialized(object,valuetype [System.Runtime]System.Runtime.Serialization.StreamingContext)[OptimizedTier1] +00007FA12EF30CB0 41 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::GetContractSafe(object)[OptimizedTier1] +00007FA12EF30D10 33 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::GetContract(object)[OptimizedTier1] +00007FA12EF30D60 8 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ItemTypeNameHandling()[OptimizedTier1] +00007FA12EF30D80 2b instance void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::Add(string,string)[OptimizedTier1] +00007FA12EF30DD0 16d instance void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::Add(valuetype System.Net.Http.Headers.HeaderDescriptor,string)[OptimizedTier1] +00007FA12EF30F60 cc instance void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::PrepareHeaderInfoForAdd(valuetype System.Net.Http.Headers.HeaderDescriptor,class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo&,bool&)[OptimizedTier1] +00007FA12EF31050 6 instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::IsAllowedHeaderName(valuetype System.Net.Http.Headers.HeaderDescriptor)[OptimizedTier1] +00007FA12EF31080 35c void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::ParseAndAddValue(valuetype System.Net.Http.Headers.HeaderDescriptor,class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo,string)[OptimizedTier1] +00007FA12EF31400 7b void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::CheckContainsNewLine(string)[OptimizedTier1] +00007FA12EF314A0 4a bool [System.Net.Http] System.Net.Http.HttpRuleParser::ContainsNewLine(string,int32)[OptimizedTier1] +00007FA12EF31500 da instance !0 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.__Canon]::get_Result()[OptimizedTier1] +00007FA12EF31600 d instance bool [System.Private.Uri] System.Uri::get_IsDosPath()[OptimizedTier1] +00007FA12EF31620 2e instance int32 [System.Private.CoreLib] System.Text.Latin1Encoding::GetCharCount(uint8*,int32)[OptimizedTier1] +00007FA12EF31670 72 instance int32 [System.Private.CoreLib] System.Text.Latin1Encoding::GetChars(uint8*,int32,char*,int32)[OptimizedTier1] +00007FA12EF31700 d5 void [System.Private.CoreLib] System.Text.Latin1Utility::WidenLatin1ToUtf16_Sse2(uint8*,char*,native uint)[OptimizedTier1] +00007FA12EF31800 11e valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[System.__Canon]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EF31940 87 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12EEFE2B8 300 stub<20283> AllocateTemporaryEntryPoints +00007FA12EF319F0 60 instance string [System.Private.Uri] System.Uri::get_Scheme()[OptimizedTier1] +00007FA12EEFE5B8 18 stub<20284> AllocateTemporaryEntryPoints +00007FA12EF31A80 ad int32 [System.Net.Http] System.Net.Http.Headers.HeaderUtilities::GetNextNonEmptyOrWhitespaceIndex(string,int32,bool,bool&)[OptimizedTier1] +00007FA12EF31B50 56 instance valuetype System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.__Canon]::ConfigureAwait(bool)[OptimizedTier1] +00007FA12EF31BC0 4f instance valuetype System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1[System.__Canon]::GetAwaiter()[OptimizedTier1] +00007FA12EF31C30 51 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1+ConfiguredValueTaskAwaiter[System.__Canon]::get_IsCompleted()[OptimizedTier1] +00007FA12EF31CA0 c9 instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.__Canon]::get_IsCompleted()[OptimizedTier1] +00007FA12EF31D90 51 instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1+ConfiguredValueTaskAwaiter[System.__Canon]::GetResult()[OptimizedTier1] +00007FA12EF31E00 1f1 valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ParseResult [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ConvertUtils::Int64TryParse(char[],int32,int32,int64&)[OptimizedTier1] +00007FA12EF32010 76 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseFalse()[OptimizedTier1] +00007FA12EF320A0 25e instance bool [System.Private.CoreLib] System.Threading.Tasks.Task::AddTaskContinuationComplex(object,bool)[OptimizedTier1] +00007FA12EF32340 9 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task+<>c::b__212_0(object)[OptimizedTier1] +00007FA12EF32360 15a instance void [System.Private.CoreLib] System.Threading.Tasks.Task::RemoveContinuation(object)[OptimizedTier1] +00007FA12EEFE5D0 18 stub<20285> AllocateTemporaryEntryPoints +00007FA12EF324F0 6d instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::IndexOf(!0)[OptimizedTier1] +00007FA12EF32580 145 instance void [System.Private.CoreLib] System.Threading.TimerQueueTimer::Fire(bool)[OptimizedTier1] +00007FA12EF32710 121 instance void [System.Private.CoreLib] System.Threading.TimerQueueTimer::CallCallback(bool)[OptimizedTier1] +00007FA12EF32850 25 valuetype System.DateTimeOffset [System.Private.CoreLib] System.DateTimeOffset::get_UtcNow()[OptimizedTier1] +00007FA12EF32890 3a void [System.Private.CoreLib] System.Threading.Tasks.Task+DelayPromise::TimerCallback(object)[OptimizedTier1] +00007FA12EF328E0 117 instance void [System.Private.CoreLib] System.Threading.Tasks.Task+DelayPromise::CompleteTimedOut()[OptimizedTier1] +00007FA12EF32A20 95 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task::TrySetResult()[OptimizedTier1] +00007FA12EF32AD0 b0 class System.Threading.Tasks.Task [System.Private.CoreLib] System.Threading.Tasks.Task::Delay(uint32,valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF32BA0 19f instance void [System.Private.CoreLib] System.Threading.Tasks.Task+DelayPromise::.ctor(uint32)[OptimizedTier1] +00007FA12EEFE5E8 18 stub<20286> AllocateTemporaryEntryPoints +00007FA12EEFE600 a8 stub<20287> AllocateTemporaryEntryPoints +00007FA12EF32D60 86 instance class [System.Private.CoreLib]System.Collections.Generic.IEnumerator`1> [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::GetEnumerator()[QuickJitted] +00007FA12EF32E00 3e instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2)[QuickJitted] +00007FA12EF32E60 3be instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::MoveNext()[QuickJitted] +00007FA12EF33250 4c instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::.ctor(!0,!1)[QuickJitted] +00007FA12EF332B0 3b instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::set_Current(valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2)[QuickJitted] +00007FA12EF33300 43 instance valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::get_Current()[QuickJitted] +00007FA12EF33360 1f instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::get_Value()[QuickJitted] +00007FA12EEFE6A8 18 stub<20288> AllocateTemporaryEntryPoints +00007FA12EEFE6C0 18 stub<20289> AllocateTemporaryEntryPoints +00007FA12EEFE6D8 18 stub<20290> AllocateTemporaryEntryPoints +00007FA12EEFE6F0 60 stub<20291> AllocateTemporaryEntryPoints +00007FA12EEFE750 18 stub<20292> AllocateTemporaryEntryPoints +00007FA12EEFE768 18 stub<20293> AllocateTemporaryEntryPoints +00007FA12EF333A0 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.Int32]::Start(!!0&)[QuickJitted] +00007FA12EF333E0 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12EEFE780 18 stub<20294> AllocateTemporaryEntryPoints +00007FA12EEFE798 18 stub<20295> AllocateTemporaryEntryPoints +00007FA12EF334E0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.Int32]::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12EEFE7B0 18 stub<20296> AllocateTemporaryEntryPoints +00007FA12EEFE7C8 18 stub<20297> AllocateTemporaryEntryPoints +00007FA12EF33530 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Int32]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12EEFE7E0 d8 stub<20298> AllocateTemporaryEntryPoints +00007FA12EEFE8B8 d8 stub<20299> AllocateTemporaryEntryPoints +00007FA12EEFE990 18 stub<20300> AllocateTemporaryEntryPoints +00007FA12EF33590 24b class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Int32]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12EF33800 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Int32,System.Net.Http.HttpConnection+<g__ReadAheadWithZeroByteReadAsync|44_0>d]::.ctor()[QuickJitted] +00007FA12EF33840 146 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Int32]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12EF339C0 14 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::Dispose()[QuickJitted] +00007FA12EF339F0 80 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::get_IsEmpty()[QuickJitted] +00007FA12EEFE9A8 18 stub<20301> AllocateTemporaryEntryPoints +00007FA12EEFE9C0 18 stub<20302> AllocateTemporaryEntryPoints +00007FA12EEFE9D8 18 stub<20303> AllocateTemporaryEntryPoints +00007FA12EF33A90 4c instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::AreAllBucketsEmpty()[QuickJitted] +00007FA12EEFE9F0 48 stub<20304> AllocateTemporaryEntryPoints +00007FA12EEFEA38 48 stub<20305> AllocateTemporaryEntryPoints +00007FA12EEFEA80 18 stub<20306> AllocateTemporaryEntryPoints +00007FA12EEFEA98 2d0 stub<20307> AllocateTemporaryEntryPoints +00007FA12EEFED68 18 stub<20308> AllocateTemporaryEntryPoints +00007FA12EEFED80 18 stub<20309> AllocateTemporaryEntryPoints +00007FA12EEFED98 18 stub<20310> AllocateTemporaryEntryPoints +00007FA12EEFEDB0 18 stub<20311> AllocateTemporaryEntryPoints +00007FA12EEFEDC8 18 stub<20312> AllocateTemporaryEntryPoints +00007FA12EEFEDE0 18 stub<20313> AllocateTemporaryEntryPoints +00007FA12EEFEDF8 18 stub<20314> AllocateTemporaryEntryPoints +00007FA12EEFEE10 18 stub<20315> AllocateTemporaryEntryPoints +00007FA12EEFEE28 18 stub<20316> AllocateTemporaryEntryPoints +00007FA12EEFEE40 18 stub<20317> AllocateTemporaryEntryPoints +00007FA12EFC0000 2d0 stub<20318> AllocateTemporaryEntryPoints +00007FA12EFC02D0 18 stub<20319> AllocateTemporaryEntryPoints +00007FA12EFC02E8 18 stub<20320> AllocateTemporaryEntryPoints +00007FA12EFC0300 18 stub<20321> AllocateTemporaryEntryPoints +00007FA12EFC0318 2d0 stub<20322> AllocateTemporaryEntryPoints +00007FA12EFC05E8 18 stub<20323> AllocateTemporaryEntryPoints +00007FA12EFC0600 18 stub<20324> AllocateTemporaryEntryPoints +00007FA12EF33B00 256 int32 [System.Private.CoreLib] System.SpanHelpers::IndexOfValueType(!!0&,!!0,int32)[OptimizedTier1] +00007FA12780F820 18 stub<20325> GenerateResolveStub +00007FA1277CD560 20 stub<20326> GenerateDispatchStub +00007FA12EF33D80 6c valuetype [System.Runtime]System.Nullable`1 [System.Net.Http] System.Net.Http.Headers.HttpGeneralHeaders::GetTransferEncodingChunked(class System.Net.Http.Headers.HttpHeaders,class System.Net.Http.Headers.HttpGeneralHeaders)[OptimizedTier1] +00007FA12EF33E10 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Int32,System.Net.Http.HttpConnection+<g__ReadAheadWithZeroByteReadAsync|44_0>d]::MoveNext()[QuickJitted] +00007FA12EF33E50 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Int32,System.Net.Http.HttpConnection+<g__ReadAheadWithZeroByteReadAsync|44_0>d]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12EF33FD0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Int32,System.Net.Http.HttpConnection+<g__ReadAheadWithZeroByteReadAsync|44_0>d]::.cctor()[QuickJitted] +00007FA12EFC06A8 18 stub<20327> AllocateTemporaryEntryPoints +00007FA12EF34050 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Int32,System.Net.Http.HttpConnection+<g__ReadAheadWithZeroByteReadAsync|44_0>d]::ExecutionContextCallback(object)[QuickJitted] +00007FA12EF34090 67 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Int32,System.Net.Http.HttpConnection+<g__ReadAheadWithZeroByteReadAsync|44_0>d]::ClearStateUponCompletion()[QuickJitted] +00007FA1277CD580 20 stub<20328> GenerateDispatchStub +00007FA1277CD5A0 20 stub<20329> GenerateDispatchStub +00007FA1277CD5C0 20 stub<20330> GenerateDispatchStub +00007FA1277CD5E0 20 stub<20331> GenerateDispatchStub +00007FA12780F890 18 stub<20332> GenerateResolveStub +00007FA1277CD600 20 stub<20333> GenerateDispatchStub +00007FA12EF34520 27 class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::get_Default()[QuickJitted] +00007FA12EF34560 6b void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::.cctor()[QuickJitted] +00007FA12EFC06C0 18 stub<20334> AllocateTemporaryEntryPoints +00007FA12EFC06D8 a8 stub<20335> AllocateTemporaryEntryPoints +00007FA12EF345E0 1f instance void [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::.ctor()[QuickJitted] +00007FA12EF34620 1f instance void [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::.ctor()[QuickJitted] +00007FA12EF34660 67 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::Equals(!0,!0)[QuickJitted] +00007FA12EF346E0 4c instance bool [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey::Equals(valuetype Datadog.Trace.Sampling.DefaultSamplingRule/SampleRateKey)[QuickJitted] +00007FA12EFC07E0 18 stub<20336> AllocateTemporaryEntryPoints +00007FA12EFC07F8 18 stub<20337> AllocateTemporaryEntryPoints +00007FA12EF34740 1f4 instance bool [System.Private.CoreLib] System.String::EndsWith(string,valuetype System.StringComparison)[OptimizedTier1] +00007FA12EF34970 5 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor::get_RouteValues()[OptimizedTier1] +00007FA12EF34990 5 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_Exception()[OptimizedTier1] +00007FA12EF349B0 12d void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[OptimizedTier1] +00007FA12EF34B20 5 instance class Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.ViewContext::get_ViewData()[OptimizedTier1] +00007FA12EF34B40 38 instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::GetBucket(uint32)[OptimizedTier1] +00007FA12EF34B90 75 instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext::AddHtmlAttribute(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute)[OptimizedTier1] +00007FA12EF34C20 18 instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList::get_Item(int32)[OptimizedTier1] +00007FA12EF34C50 1 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelper::Init(class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext)[OptimizedTier1] +00007FA12EF34C70 1d instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelper::ProcessAsync(class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext,class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput)[OptimizedTier1] +00007FA12EF34CB0 28 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EF34D00 1d8 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::FindValue(!0)[OptimizedTier1] +00007FA12EF34F00 5 instance !0 [System.Linq] System.Linq.Enumerable+d__65`1[System.__Canon]::System.Collections.Generic.IEnumerator.get_Current()[OptimizedTier1] +00007FA12EF34F20 42 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::Add(!0)[OptimizedTier1] +00007FA12E6729E0 18 stub<20338> GenerateLookupStub +00007FA12EF34F80 206 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::MoveTo(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder)[OptimizedTier1] +00007FA12EF351C0 131 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::MoveTo(class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer)[OptimizedTier1] +00007FA12EF35320 a9 instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.Extensions.Internal.CopyOnWriteDictionary`2[System.__Canon,System.__Canon]::.ctor(class [System.Runtime]System.Collections.Generic.IDictionary`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12EF353F0 23 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.DefaultTagHelperContent::Reinitialize()[OptimizedTier1] +00007FA12EF35430 18 instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::.ctor()[OptimizedTier1] +00007FA12EF35460 5 instance bool [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.DefaultTagHelperContent::get_IsModified()[OptimizedTier1] +00007FA12EF35480 148 class Microsoft.AspNetCore.Routing.RouteValueDictionary [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::FromArray(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[])[OptimizedTier1] +00007FA12EF355F0 5 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.Endpoint::get_DisplayName()[OptimizedTier1] +00007FA12EF35610 52 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor()[OptimizedTier1] +00007FA12EF35680 44 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Grow(int32)[OptimizedTier1] +00007FA12EF356E0 101 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::set_Capacity(int32)[OptimizedTier1] +00007FA12EFC0810 18 stub<20339> AllocateTemporaryEntryPoints +00007FA12EFC0828 18 stub<20340> AllocateTemporaryEntryPoints +00007FA12EFC0840 d8 stub<20341> AllocateTemporaryEntryPoints +00007FA12EFC0918 18 stub<20342> AllocateTemporaryEntryPoints +00007FA12EFC0930 18 stub<20343> AllocateTemporaryEntryPoints +00007FA12EF35800 53 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::OfType(class [System.Runtime]System.Collections.IEnumerable)[OptimizedTier1] +00007FA12EF35870 69 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::OfTypeIterator(class [System.Runtime]System.Collections.IEnumerable)[OptimizedTier1] +00007FA12EF35900 61 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.Enumerable+d__65`1[System.__Canon]::System.Collections.Generic.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12EF35980 1b instance void [System.Linq] System.Linq.Enumerable+d__65`1[System.__Canon]::System.IDisposable.Dispose()[OptimizedTier1] +00007FA12EF359B0 ba instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::Initialize(class Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12EF35A90 16d instance valuetype Microsoft.AspNetCore.Http.PathString [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::Add(valuetype Microsoft.AspNetCore.Http.PathString)[OptimizedTier1] +00007FA12EFC0948 18 stub<20344> AllocateTemporaryEntryPoints +00007FA12EF35C20 34a instance !0[] [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Rent(int32)[OptimizedTier1] +00007FA12EF35FA0 544 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::ProcessUrlAttribute(string,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput)[OptimizedTier1] +00007FA12EF36520 5 instance string [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::get_TagName()[OptimizedTier1] +00007FA12EFC0960 18 stub<20345> AllocateTemporaryEntryPoints +00007FA12EFC0978 18 stub<20346> AllocateTemporaryEntryPoints +00007FA12EFC0990 18 stub<20347> AllocateTemporaryEntryPoints +00007FA12EFC09A8 18 stub<20348> AllocateTemporaryEntryPoints +00007FA12EFC09C0 18 stub<20349> AllocateTemporaryEntryPoints +00007FA12EF36540 43 bool [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::IsCharWhitespace(char)[OptimizedTier1] +00007FA12EF365A0 18 valuetype System.Span`1 [System.Private.CoreLib] System.MemoryExtensions::AsSpan(!!0[])[OptimizedTier1] +00007FA12EF365D0 21 int32 [System.Private.CoreLib] System.MemoryExtensions::IndexOf(valuetype System.Span`1,!!0)[OptimizedTier1] +00007FA12EF36610 c instance int32 [System.Text.Encodings.Web] System.Text.Encodings.Web.DefaultHtmlEncoder::FindFirstCharacterToEncode(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF36630 a4 instance void [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlString::WriteTo(class [System.Runtime]System.IO.TextWriter,class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder)[OptimizedTier1] +00007FA12EF366F0 14 instance char[] [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ArrayPoolBufferSource::Rent(int32)[OptimizedTier1] +00007FA12EF36720 136 instance string [System.Net.Http] System.Net.Http.HttpConnectionBase::GetResponseHeaderValueWithCaching(valuetype System.Net.Http.Headers.HeaderDescriptor,valuetype [System.Runtime]System.ReadOnlySpan`1,class [System.Runtime]System.Text.Encoding)[OptimizedTier1] +00007FA12EF36880 2f instance valuetype System.Net.Http.Headers.HttpHeaderType [System.Net.Http] System.Net.Http.Headers.HeaderDescriptor::get_HeaderType()[OptimizedTier1] +00007FA12EF368D0 4 instance object [DuckTypeNotVisibleAssembly.HttpResponseMessage_3] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpResponseMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpResponseMessage_3::get_Instance()[OptimizedTier1] +00007FA12EF368F0 4 instance !0[] [System.Private.CoreLib] System.ArraySegment`1[System.__Canon]::get_Array()[OptimizedTier1] +00007FA12EF36910 4 instance int32 [System.Private.CoreLib] System.ArraySegment`1[System.__Canon]::get_Offset()[OptimizedTier1] +00007FA12EF36930 ac instance bool [System.Private.CoreLib] System.IO.MemoryStream::EnsureCapacity(int32)[OptimizedTier1] +00007FA12EF36A00 1a8 instance void [System.Private.CoreLib] System.IO.MemoryStream::set_Capacity(int32)[OptimizedTier1] +00007FA12EF36BD0 2a instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.SpanContext::get_ParentId()[OptimizedTier1] +00007FA12EF36C10 c instance valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceStatus [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeReader::GetStatus(int16)[OptimizedTier1] +00007FA12EF36C30 3a instance valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceStatus [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetReadAsyncStatus()[OptimizedTier1] +00007FA12EF36C80 f instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeReader::OnCompleted(class [System.Runtime]System.Action`1,object,int16,valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)[OptimizedTier1] +00007FA12EF36CA0 11c instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::OnReadAsyncCompleted(class [System.Runtime]System.Action`1,object,valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)[OptimizedTier1] +00007FA12EF36DF0 69 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryDequeue(!0&)[OptimizedTier1] +00007FA12EF36E80 115 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryDequeue(!0&)[OptimizedTier1] +00007FA12EFC09D8 138 stub<20350> AllocateTemporaryEntryPoints +00007FA12EFC0B10 18 stub<20351> AllocateTemporaryEntryPoints +00007FA12E672A00 18 stub<20352> GenerateLookupStub +00007FA12EFC0B28 18 stub<20353> AllocateTemporaryEntryPoints +00007FA12E672A20 18 stub<20354> GenerateLookupStub +00007FA12EF36FC0 ac5 instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28::MoveNext()[OptimizedTier1] +00007FA12EF37B20 2c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12EF37B70 29 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF37BC0 2ab class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF37E90 c instance valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceStatus [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeWriter::GetStatus(int16)[OptimizedTier1] +00007FA12EF37EB0 3a instance valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceStatus [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetFlushAsyncStatus()[OptimizedTier1] +00007FA12EFC0B40 30 stub<20355> AllocateTemporaryEntryPoints +00007FA12EF37F00 263 bool [System.Private.CoreLib] System.Threading.ThreadPool::UnsafeQueueUserWorkItem(class System.Action`1,!!0,bool)[OptimizedTier1] +00007FA12EF381A0 65e instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23::MoveNext()[OptimizedTier1] +00007FA12E672A40 18 stub<20356> GenerateLookupStub +00007FA12E672A60 18 stub<20357> GenerateLookupStub +00007FA12E672A80 18 stub<20358> GenerateLookupStub +00007FA12EF38890 594 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9::MoveNext()[OptimizedTier1] +00007FA12EF38EB0 a6 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.IO.Pipelines.FlushResult]::TrySetResult(!0)[OptimizedTier1] +00007FA12EF38F80 9 instance bool [System.IO.Pipelines] System.IO.Pipelines.ReadResult::get_IsCanceled()[OptimizedTier1] +00007FA12EF38FA0 9f instance bool [System.Memory] System.Buffers.ReadOnlySequence`1[System.Byte]::get_IsEmpty()[OptimizedTier1] +00007FA12EF39060 aa instance class Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketSender [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketSenderPool::Rent()[OptimizedTier1] +00007FA12EF39130 c int32 [System.Private.CoreLib] System.Threading.Interlocked::Decrement(int32&)[OptimizedTier1] +00007FA12EFC0B70 18 stub<20359> AllocateTemporaryEntryPoints +00007FA12EF39150 304 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketSender::SendAsync(class [System.Net.Sockets]System.Net.Sockets.Socket,valuetype [System.Memory]System.Buffers.ReadOnlySequence`1&)[OptimizedTier1] +00007FA12EF39480 f instance bool [System.Net.Sockets] System.Net.Sockets.Socket::SendAsync(class System.Net.Sockets.SocketAsyncEventArgs)[OptimizedTier1] +00007FA12EF394B0 9c instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketSenderPool::Return(class Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketSender)[OptimizedTier1] +00007FA12EF39570 6d instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketSender::Reset()[OptimizedTier1] +00007FA12EF39600 5 instance class [System.Runtime]System.Collections.Generic.IList`1> [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::get_BufferList()[OptimizedTier1] +00007FA12EF39620 e instance valuetype System.SequencePosition [System.Memory] System.Buffers.ReadOnlySequence`1[System.Byte]::get_End()[OptimizedTier1] +00007FA12EF39640 2b instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeReader::AdvanceTo(valuetype [System.Memory]System.SequencePosition)[OptimizedTier1] +00007FA12EFC0B88 48 stub<20360> AllocateTemporaryEntryPoints +00007FA12EF39680 38c instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketSender::SetBufferList(valuetype [System.Memory]System.Buffers.ReadOnlySequence`1&)[OptimizedTier1] +00007FA12EF39A40 7b instance valuetype System.Buffers.ReadOnlySequence`1/Enumerator [System.Memory] System.Buffers.ReadOnlySequence`1[System.Byte]::GetEnumerator()[OptimizedTier1] +00007FA12EF39AE0 50 instance void [System.Memory] System.Buffers.ReadOnlySequence`1+Enumerator[System.Byte]::.ctor(valuetype System.Buffers.ReadOnlySequence`1&)[OptimizedTier1] +00007FA12EFC0BD0 18 stub<20361> AllocateTemporaryEntryPoints +00007FA12EFC0BE8 18 stub<20362> AllocateTemporaryEntryPoints +00007FA12EFC0C00 18 stub<20363> AllocateTemporaryEntryPoints +00007FA12EF39B50 1ef instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::SendToAsync(class [System.Runtime]System.Collections.Generic.IList`1>,valuetype System.Net.Sockets.SocketFlags,uint8[],int32&,int32&,class [System.Runtime]System.Action`5)[OptimizedTier1] +00007FA12EF39D60 5bb int32 [System.Net.Sockets] System.Net.Sockets.SocketPal::SysSend(class System.Net.Sockets.SafeSocketHandle,valuetype System.Net.Sockets.SocketFlags,class [System.Runtime]System.Collections.Generic.IList`1>,int32&,int32&,uint8[],int32,valuetype Interop/Error&)[OptimizedTier1] +00007FA12EF3A3A0 c instance !0& [System.Private.CoreLib] System.Span`1[Interop+Sys+IOVector]::GetPinnableReference()[OptimizedTier1] +00007FA12EF3A3C0 f4 valuetype Interop/Error [System.Net.Sockets] Interop+Sys::SendMessage(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,valuetype Interop/Sys/MessageHeader*,valuetype System.Net.Sockets.SocketFlags,int64*)[OptimizedTier1] +00007FA12EF3A4E0 8 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::.ctor()[OptimizedTier1] +00007FA12EF3A500 5d instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::FlushInternalAsync(bool)[OptimizedTier1] +00007FA12EF3A580 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF3A5A0 5 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpResponse [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::get_Response()[OptimizedTier1] +00007FA12EF3A5C0 9 bool [System.Private.CoreLib] System.TimeSpan::op_LessThan(valuetype System.TimeSpan,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF3A5E0 34c instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::Return(!0[],bool)[OptimizedTier1] +00007FA12EF3A950 13 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+ThreadLocalArray[Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue]::.ctor(!0[])[OptimizedTier1] +00007FA12EF3A980 4 instance bool [System.Private.CoreLib] System.Nullable`1[System.Int64]::get_HasValue()[OptimizedTier1] +00007FA12EF3A9A0 99 int32 [System.Net.Http] System.Net.Http.HttpRuleParser::GetTokenLength(string,int32)[OptimizedTier1] +00007FA12EFC0C18 60 stub<20364> AllocateTemporaryEntryPoints +00007FA12EFC0C78 18 stub<20365> AllocateTemporaryEntryPoints +00007FA12EFC0C90 18 stub<20366> AllocateTemporaryEntryPoints +00007FA12EFC0CA8 18 stub<20367> AllocateTemporaryEntryPoints +00007FA12EF3AA60 6a2 instance void [System.Net.Http] System.Net.Http.HttpClient+<g__Core|83_0>d::MoveNext()[OptimizedTier1] +00007FA12EF3B170 185 instance class [Datadog.Trace]Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.IRequestHeaders [DuckTypeNotVisibleAssembly.HttpRequestMessage_1] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpRequestMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpRequestMessage_1::get_Headers()[OptimizedTier1] +00007FA12EF3B320 92 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[System.__Canon]::Create(object)[OptimizedTier1] +00007FA12EF3B3D0 5e instance int32 [System.Private.CoreLib] System.String::IndexOf(char,int32,int32)[OptimizedTier1] +00007FA12EF3B450 18e instance string [System.Private.Uri] System.Uri::InternalGetComponents(valuetype System.UriComponents,valuetype System.UriFormat)[OptimizedTier1] +00007FA12EF3B600 1e7 instance string [System.Private.Uri] System.Uri::GetComponentsHelper(valuetype System.UriComponents,valuetype System.UriFormat)[OptimizedTier1] +00007FA12EFC0CC0 30 stub<20368> AllocateTemporaryEntryPoints +00007FA12EFC0CF0 30 stub<20369> AllocateTemporaryEntryPoints +00007FA12EF3B820 96 instance int32 [System.Private.CoreLib] System.Random+XoshiroImpl::Next(int32,int32)[OptimizedTier1] +00007FA12EF3B8D0 7 instance void [System.Private.CoreLib] System.Nullable`1[System.Int32]::.ctor(!0)[OptimizedTier1] +00007FA12EF3B8F0 54 instance void [System.Private.Uri] System.Uri::EnsureHostString(bool)[OptimizedTier1] +00007FA12EF3B960 16 instance string [System.Private.CoreLib] System.String::ToLowerInvariant()[OptimizedTier1] +00007FA12EFC0D20 60 stub<20370> AllocateTemporaryEntryPoints +00007FA12EFC0D80 60 stub<20371> AllocateTemporaryEntryPoints +00007FA12EFC0DE0 210 stub<20372> AllocateTemporaryEntryPoints +00007FA12EFC2000 18 stub<20373> AllocateTemporaryEntryPoints +00007FA12EFC2018 18 stub<20374> AllocateTemporaryEntryPoints +00007FA12EFC2030 18 stub<20375> AllocateTemporaryEntryPoints +00007FA12E672AA0 18 stub<20376> GenerateLookupStub +00007FA12EFC2048 18 stub<20377> AllocateTemporaryEntryPoints +00007FA12E672AC0 18 stub<20378> GenerateLookupStub +00007FA12EFC2060 18 stub<20379> AllocateTemporaryEntryPoints +00007FA12EFC2078 18 stub<20380> AllocateTemporaryEntryPoints +00007FA12E672AE0 18 stub<20381> GenerateLookupStub +00007FA12EFC2090 18 stub<20382> AllocateTemporaryEntryPoints +00007FA12EFC20A8 18 stub<20383> AllocateTemporaryEntryPoints +00007FA12E672B00 18 stub<20384> GenerateLookupStub +00007FA12EFC20C0 18 stub<20385> AllocateTemporaryEntryPoints +00007FA12EFC20D8 f0 stub<20386> AllocateTemporaryEntryPoints +00007FA12EFC21C8 60 stub<20387> AllocateTemporaryEntryPoints +00007FA12EFC2228 18 stub<20388> AllocateTemporaryEntryPoints +00007FA12EFC2240 48 stub<20389> AllocateTemporaryEntryPoints +00007FA12EFC2288 18 stub<20390> AllocateTemporaryEntryPoints +00007FA12E672B20 18 stub<20391> GenerateLookupStub +00007FA12EFC22A0 18 stub<20392> AllocateTemporaryEntryPoints +00007FA12EFC22B8 18 stub<20393> AllocateTemporaryEntryPoints +00007FA12EFC22D0 18 stub<20394> AllocateTemporaryEntryPoints +00007FA12EFC22E8 18 stub<20395> AllocateTemporaryEntryPoints +00007FA12E672B40 18 stub<20396> GenerateLookupStub +00007FA12EFC2300 60 stub<20397> AllocateTemporaryEntryPoints +00007FA12EFC2360 78 stub<20398> AllocateTemporaryEntryPoints +00007FA12EFC23D8 120 stub<20399> AllocateTemporaryEntryPoints +00007FA12EFC24F8 f0 stub<20400> AllocateTemporaryEntryPoints +00007FA12EFC25E8 498 stub<20401> AllocateTemporaryEntryPoints +00007FA12EFC2A80 18 stub<20402> AllocateTemporaryEntryPoints +00007FA12EFC2A98 18 stub<20403> AllocateTemporaryEntryPoints +00007FA12EFC2AB0 18 stub<20404> AllocateTemporaryEntryPoints +00007FA12E672B60 18 stub<20405> GenerateLookupStub +00007FA12E672B80 18 stub<20406> GenerateLookupStub +00007FA12EFC2AC8 258 stub<20407> AllocateTemporaryEntryPoints +00007FA12EFC2D20 78 stub<20408> AllocateTemporaryEntryPoints +00007FA12EFC2D98 60 stub<20409> AllocateTemporaryEntryPoints +00007FA12EFC2DF8 18 stub<20410> AllocateTemporaryEntryPoints +00007FA12EFC2E10 18 stub<20411> AllocateTemporaryEntryPoints +00007FA12EFC2E28 18 stub<20412> AllocateTemporaryEntryPoints +00007FA12EF3B9A0 19e7 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+d__84::MoveNext()[OptimizedTier1] +00007FA12EF3D4D0 6a instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.Int32]::get_IsCompleted()[OptimizedTier1] +00007FA12EF3D560 2a3 instance valuetype System.Net.Sockets.SocketAsyncContext/OperationResult [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+OperationQueue`1[System.__Canon]::ProcessQueuedOperation(!0)[OptimizedTier1] +00007FA12EF3D860 95 instance valuetype System.Net.Sockets.SocketAsyncContext/OperationResult [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+AsyncOperation::TryComplete(class System.Net.Sockets.SocketAsyncContext)[OptimizedTier1] +00007FA12EF3D910 bd string [System.Private.CoreLib] System.String::Create(int32,!!0,class System.Buffers.SpanAction`2)[OptimizedTier1] +00007FA12EF3D9F0 a instance bool [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_End()[OptimizedTier1] +00007FA12EF3DA10 30 instance valuetype [System.Private.CoreLib]System.ReadOnlySpan`1 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_UnreadSpan()[OptimizedTier1] +00007FA12EF3DA60 2d string [Microsoft.Extensions.Primitives] Microsoft.Extensions.Primitives.StringValues::op_Implicit(valuetype Microsoft.Extensions.Primitives.StringValues)[OptimizedTier1] +00007FA12EF3DAB0 8 instance class [Microsoft.AspNetCore.Http.Features]Microsoft.AspNetCore.Http.IHeaderDictionary [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.get_Headers()[OptimizedTier1] +00007FA12EF3DAD0 e instance int32 [System.Private.CoreLib] System.String::IndexOf(char,int32)[OptimizedTier1] +00007FA12EF3DAF0 e class [System.Runtime]System.Random [Datadog.Trace] Datadog.Trace.Util.ThreadSafeRandom::get_Shared()[OptimizedTier1] +00007FA12EF3DB10 e class System.Random [System.Private.CoreLib] System.Random::get_Shared()[OptimizedTier1] +00007FA12EF3DB30 53 instance int32 [System.Private.CoreLib] System.Random+ThreadSafeRandom::Next(int32,int32)[OptimizedTier1] +00007FA12EF3DBA0 1cb instance void [System.Private.CoreLib] System.Globalization.TextInfo::ChangeCaseCommon(char&,char&,int32)[OptimizedTier1] +00007FA12EFC2E40 a8 stub<20413> AllocateTemporaryEntryPoints +00007FA12EF3DDC0 19 instance valuetype System.Runtime.CompilerServices.TaskAwaiter`1 [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.__Canon]::GetAwaiter()[OptimizedTier1] +00007FA12EFC4000 540 stub<20414> AllocateTemporaryEntryPoints +00007FA12EF3DDF0 27 instance !0 [System.Private.CoreLib] System.Runtime.CompilerServices.TaskAwaiter`1[System.__Canon]::GetResult()[OptimizedTier1] +00007FA12EF3DE30 5 instance valuetype Microsoft.Extensions.Logging.MessageLogger[] [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::get_MessageLoggers()[OptimizedTier1] +00007FA12EF3DE50 15 void [Microsoft.Extensions.Logging.Console] System.ThrowHelper::ThrowIfNull(object,string)[OptimizedTier1] +00007FA12EF3DE80 5 instance class Microsoft.Extensions.Logging.Console.ConsoleFormatter [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::get_Formatter()[OptimizedTier1] +00007FA12EF3DEA0 5 instance class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::get_ScopeProvider()[OptimizedTier1] +00007FA12EF3DEC0 5 instance string [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions::get_TimestampFormat()[OptimizedTier1] +00007FA12EF3DEE0 5 instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter+ConsoleColors::get_Background()[OptimizedTier1] +00007FA12EF3DF00 4 instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter+ConsoleColors::get_Foreground()[OptimizedTier1] +00007FA12EF3DF20 5 instance bool [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions::get_SingleLine()[OptimizedTier1] +00007FA12EF3DF40 5 instance class Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::get_Options()[OptimizedTier1] +00007FA12EF3DF60 4 instance valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions::get_LogToStandardErrorThreshold()[OptimizedTier1] +00007FA12EF3DF80 19 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.LogMessageEntry::.ctor(string,bool)[OptimizedTier1] +00007FA12EF3DFB0 1a instance bool [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::IsEnabled(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel)[OptimizedTier1] +00007FA12EF3DFE0 11 instance bool [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::IsEnabled(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel)[OptimizedTier1] +00007FA12EF3E010 159 instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ActionContext::.ctor(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteData,class Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor,class Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary)[OptimizedTier1] +00007FA12EF3E190 5 instance class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteData [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ActionContext::get_RouteData()[OptimizedTier1] +00007FA12EF3E1B0 1b bool [Datadog.Trace] Datadog.Trace.Ci.CIVisibility::get_IsRunning()[OptimizedTier1] +00007FA12EFC4540 48 stub<20415> AllocateTemporaryEntryPoints +00007FA12EF3E1E0 d7 instance valuetype Microsoft.AspNetCore.Mvc.Filters.FilterCursorItem`2 [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Filters.FilterCursor::GetNextFilter()[OptimizedTier1] +00007FA12EF3E2E0 2f instance bool [System.Private.CoreLib] System.Threading.PortableThreadPool+GateThread+DelayHelper::ShouldPerformGateActivities(int32,bool)[OptimizedTier1] +00007FA12EF3E330 5f instance uint32 [System.Private.CoreLib] System.Threading.PortableThreadPool+GateThread+DelayHelper::GetNextDelay(int32)[OptimizedTier1] +00007FA12EF3E3B0 9 instance string [Datadog.Trace] Datadog.Trace.Span::get_ServiceName()[OptimizedTier1] +00007FA12EF3E3D0 255 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteMapHeaderForceMap32Block(uint8[]&,int32,uint32)[OptimizedTier1] +00007FA12EFC4588 48 stub<20416> AllocateTemporaryEntryPoints +00007FA12EFC45D0 48 stub<20417> AllocateTemporaryEntryPoints +00007FA12EFC4618 48 stub<20418> AllocateTemporaryEntryPoints +00007FA12EF3E660 33d instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+OperationQueue`1[System.__Canon]::StartAsyncOperation(class System.Net.Sockets.SocketAsyncContext,!0,int32,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF3E9F0 f4 instance string [System.Private.Uri] System.Uri::GetEscapedParts(valuetype System.UriComponents)[OptimizedTier1] +00007FA12EF3EB20 91b instance string [System.Private.Uri] System.Uri::GetUriPartsFromUserString(valuetype System.UriComponents)[OptimizedTier1] +00007FA12EF3F4A0 497 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeObject(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EF3F990 e1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteObjectStart(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EF3FAA0 4d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteStartObject()[OptimizedTier1] +00007FA12EF3FB10 8 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExtensionDataGetter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_ExtensionDataGetter()[OptimizedTier1] +00007FA12EF3FB30 87 instance class System.Collections.IEnumerator [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::System.Collections.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12EF3FBE0 b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteEndArray()[OptimizedTier1] +00007FA12EF3FC00 3 !!0 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::GetDefaultValue()[OptimizedTier1] +00007FA12EF3FC20 3 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1[System.__Canon]::GetDefault()[OptimizedTier1] +00007FA12EF3FC40 fb valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::BeginMethod(!!1,!!2&,!!3&)[OptimizedTier1] +00007FA12EF3FD60 1b5 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.BeginMethodHandler`4[System.__Canon,System.__Canon,System.__Canon,System.Threading.CancellationToken]::Invoke(!1,!2&,!3&)[OptimizedTier1] +00007FA12EF3FF40 52 instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.GetSpanContextRaw()[OptimizedTier1] +00007FA12EF3FFB0 6d9 valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMessageHandlerCommon::OnMethodBegin(!!0,!!1,valuetype [System.Runtime]System.Threading.CancellationToken,valuetype Datadog.Trace.Configuration.IntegrationId,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12EF406E0 4 instance object [DuckTypeNotVisibleAssembly.HttpRequestMessage_1] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_HttpRequestMessage.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IHttpRequestMessage_1::get_Instance()[OptimizedTier1] +00007FA12EF40700 1f8 bool [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMessageHandlerCommon::IsTracingEnabled(class Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.IRequestHeaders,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12EF40910 b instance bool [DuckTypeNotVisibleAssembly.HttpRequestHeaders_2] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_Headers_HttpRequestHeaders.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IRequestHeaders_2::TryGetValues(string,class [System.Private.CoreLib]System.Collections.Generic.IEnumerable`1&)[OptimizedTier1] +00007FA12EF40930 cc instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::TryGetValues(string,class [System.Runtime]System.Collections.Generic.IEnumerable`1&)[OptimizedTier1] +00007FA12EF40A20 a9 instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::TryGetHeaderDescriptor(string,valuetype System.Net.Http.Headers.HeaderDescriptor&)[OptimizedTier1] +00007FA12EF40AF0 55 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::.ctor(class Datadog.Trace.Scope,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState)[OptimizedTier1] +00007FA12EF40B60 b instance bool [System.Private.Uri] System.Uri::get_IsAbsoluteUri()[OptimizedTier1] +00007FA12EF40B80 90 instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpMessageHandlerStage::SendAsync(class System.Net.Http.HttpRequestMessage,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF40C30 12 uint32 [System.Private.CoreLib] System.HashCode::QueueRound(uint32,uint32)[OptimizedTier1] +00007FA12EF40C60 4 instance int32 [System.Private.CoreLib] System.Version::get_Minor()[OptimizedTier1] +00007FA12EF40C80 b5 instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.__Canon]::AsTask()[OptimizedTier1] +00007FA12EF40D60 da valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetInvoker::EndMethod(!!1,!!2,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[OptimizedTier1] +00007FA12EF40E60 ee valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.EndMethodHandler`3[System.__Canon,System.__Canon,System.__Canon]::Invoke(!1,!2,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[OptimizedTier1] +00007FA12EF40F70 82 instance !2 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::SetContinuation(!1,!2,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute))[OptimizedTier1] +00007FA12EFC4660 18 stub<20419> AllocateTemporaryEntryPoints +00007FA12EFC4678 18 stub<20420> AllocateTemporaryEntryPoints +00007FA12EF41020 25f instance !2 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::ExecuteCallback(!1,!2,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute))[OptimizedTier1] +00007FA12EF412B0 4 !!0 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`2[System.__Canon,System.__Canon]::FromTReturn(!1)[OptimizedTier1] +00007FA12EF412D0 4 !1 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.ContinuationGenerator`2[System.__Canon,System.__Canon]::ToTReturn(!!0)[OptimizedTier1] +00007FA12EF412F0 19 instance class Datadog.Trace.IScopeManager [Datadog.Trace] Datadog.Trace.Tracer::get_ScopeManager()[OptimizedTier1] +00007FA12EF41320 4 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::get_PreviousScope()[OptimizedTier1] +00007FA12EF41340 14 instance void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::Datadog.Trace.IScopeRawAccess.set_Active(class Datadog.Trace.Scope)[OptimizedTier1] +00007FA12EF41370 5 instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::get_PreviousDistributedSpanContext()[OptimizedTier1] +00007FA12EF41390 a instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1[System.__Canon]::.ctor(!0)[OptimizedTier1] +00007FA12EF413B0 4 instance !0 [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetReturn`1[System.__Canon]::GetReturnValue()[OptimizedTier1] +00007FA12EF413D0 aa instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::CompletionCallback(int32,valuetype System.Net.Sockets.SocketFlags,valuetype [System.Net.Primitives]System.Net.Sockets.SocketError)[OptimizedTier1] +00007FA12EF414A0 64 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::FinishOperationAsyncSuccess(int32,valuetype System.Net.Sockets.SocketFlags)[OptimizedTier1] +00007FA12EF41520 36 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::OnCompletedInternal()[OptimizedTier1] +00007FA12EFC4690 168 stub<20421> AllocateTemporaryEntryPoints +00007FA12EFC47F8 60 stub<20422> AllocateTemporaryEntryPoints +00007FA12EFC4858 60 stub<20423> AllocateTemporaryEntryPoints +00007FA12EFC48B8 18 stub<20424> AllocateTemporaryEntryPoints +00007FA12EF41570 431 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool::CancelIfNecessary(class System.Net.Http.HttpConnectionPool/HttpConnectionWaiter`1,bool)[OptimizedTier1] +00007FA12EF419F0 d8 !!1 [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpMessageHandlerCommon::OnMethodEnd(!!0,!!1,class [System.Runtime]System.Exception,valuetype Datadog.Trace.ClrProfiler.CallTarget.CallTargetState&)[OptimizedTier1] +00007FA12EF41B00 5 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.ClrProfiler.CallTarget.CallTargetState::get_Scope()[OptimizedTier1] +00007FA12EF41B20 69 uint32 [System.Private.CoreLib] System.Threading.Tasks.Task::ValidateTimeout(valuetype System.TimeSpan,valuetype System.ExceptionArgument)[OptimizedTier1] +00007FA12EFC48D0 18 stub<20425> AllocateTemporaryEntryPoints +00007FA12EF41BC0 10d instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Int64,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12EF41D20 3f7 instance class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult [Samples.BuggyBits] BuggyBits.Controllers.ProductsController::Sales()[OptimizedTier1OSR] +00007FA12EF42160 15 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::ContainsKey(!0)[OptimizedTier1] +00007FA12EF42190 1 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Diagnostics.EventData::.ctor()[OptimizedTier1] +00007FA12780F900 18 stub<20426> GenerateResolveStub +00007FA1277CD620 20 stub<20427> GenerateDispatchStub +00007FA12EF421B0 a6 instance int32 [System.Private.CoreLib] System.HashCode::ToHashCode()[OptimizedTier1] +00007FA12EF42270 5 instance string [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::get_Path()[OptimizedTier1] +00007FA12EF42290 4e instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary [Microsoft.AspNetCore.Routing.Abstractions] Microsoft.AspNetCore.Routing.RouteData::get_Values()[OptimizedTier1] +00007FA12EF42300 e class System.Collections.Generic.Comparer`1 [System.Private.CoreLib] System.Collections.Generic.Comparer`1[System.Int32]::get_Default()[OptimizedTier1] +00007FA12EF42320 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::get_Count()[OptimizedTier1] +00007FA12EF42340 5e instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::Clear()[OptimizedTier1] +00007FA12EF423C0 36 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Item(int32)[OptimizedTier1] +00007FA12EF42420 80 instance char [System.Private.CoreLib] System.Text.StringBuilder::get_Chars(int32)[OptimizedTier1] +00007FA12EF424C0 8e instance class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::Append(string)[OptimizedTier1] +00007FA12EF42570 42 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Add(!0)[OptimizedTier1] +00007FA12EF425D0 6 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::ToString()[OptimizedTier1] +00007FA12EF425F0 b instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper::set_ViewContext(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF42610 b instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper::set_Area(string)[OptimizedTier1] +00007FA12EF42630 b instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper::set_Controller(string)[OptimizedTier1] +00007FA12EF42650 b instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper::set_Action(string)[OptimizedTier1] +00007FA12E672BA0 18 stub<20428> GenerateLookupStub +00007FA12E672BC0 18 stub<20429> GenerateLookupStub +00007FA12E672BE0 18 stub<20430> GenerateLookupStub +00007FA12EF42680 7c7 instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper::Process(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput)[OptimizedTier1] +00007FA12E672C00 18 stub<20431> GenerateLookupStub +00007FA12EF42E70 fb instance class Microsoft.AspNetCore.Mvc.Rendering.TagBuilder [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.DefaultHtmlGenerator::GenerateActionLink(class Microsoft.AspNetCore.Mvc.Rendering.ViewContext,string,string,string,string,string,string,object,object)[OptimizedTier1] +00007FA12E672C20 18 stub<20432> GenerateLookupStub +00007FA12EF42F90 ec string [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.UrlHelperExtensions::Action(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IUrlHelper,string,string,object,string,string,string)[OptimizedTier1] +00007FA12EF430A0 1 instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::.ctor()[OptimizedTier1] +00007FA12EF430C0 b instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::set_Action(string)[OptimizedTier1] +00007FA12EF430E0 b instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::set_Controller(string)[OptimizedTier1] +00007FA12EF43100 b instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::set_Host(string)[OptimizedTier1] +00007FA12EF43120 b instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::set_Values(object)[OptimizedTier1] +00007FA12EF43140 b instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::set_Protocol(string)[OptimizedTier1] +00007FA12EF43160 b instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::set_Fragment(string)[OptimizedTier1] +00007FA12EF43180 8f2 instance string [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.EndpointRoutingUrlHelper::Action(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)[OptimizedTier1] +00007FA12EF43AF0 5 instance object [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::get_Values()[OptimizedTier1] +00007FA12EF43B20 223 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.UrlHelperBase::GetValuesDictionary(object)[OptimizedTier1] +00007FA12EF43D80 5 instance string [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::get_Fragment()[OptimizedTier1] +00007FA12EF43DA0 111 string [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions::GetPathByRouteValues(class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.LinkGenerator,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,string,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,valuetype [System.Runtime]System.Nullable`1,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.FragmentString,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.LinkOptions)[OptimizedTier1] +00007FA12EF43EE0 92 class Microsoft.AspNetCore.Routing.RouteValuesAddress [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.LinkGeneratorRouteValuesAddressExtensions::CreateAddress(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,string,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12EF43F90 68 class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator::GetAmbientValues(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12EFC48E8 18 stub<20433> AllocateTemporaryEntryPoints +00007FA12EFC4900 18 stub<20434> AllocateTemporaryEntryPoints +00007FA12EFC4918 18 stub<20435> AllocateTemporaryEntryPoints +00007FA12EF44010 128 instance string [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator::GetPathByAddress(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,!!0,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,valuetype [System.Runtime]System.Nullable`1,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.FragmentString,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.LinkOptions)[OptimizedTier1] +00007FA12EFC4930 18 stub<20436> AllocateTemporaryEntryPoints +00007FA12EFC4948 18 stub<20437> AllocateTemporaryEntryPoints +00007FA12EF44160 115 instance class [System.Collections]System.Collections.Generic.List`1 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator::GetEndpoints(!!0)[OptimizedTier1] +00007FA12E672C40 18 stub<20438> GenerateLookupStub +00007FA12E672C60 18 stub<20439> GenerateLookupStub +00007FA12EFC4960 18 stub<20440> AllocateTemporaryEntryPoints +00007FA12EFC4978 18 stub<20441> AllocateTemporaryEntryPoints +00007FA12EF442A0 1df instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValuesAddressScheme::FindEndpoints(class Microsoft.AspNetCore.Routing.RouteValuesAddress)[OptimizedTier1] +00007FA12EF444A0 110 instance class [System.Runtime]System.Collections.Generic.IList`1 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Tree.LinkGenerationDecisionTree::GetMatches(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12EF445D0 18 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::.ctor()[OptimizedTier1] +00007FA12EF44600 9a instance void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Tree.LinkGenerationDecisionTree::ProcessConventionalEntries(class [System.Collections]System.Collections.Generic.List`1)[OptimizedTier1] +00007FA12EF446C0 a0 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::AddWithResize(!0)[OptimizedTier1] +00007FA12EF44780 35 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Grow(int32)[OptimizedTier1] +00007FA12EF447D0 9a instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::set_Capacity(int32)[OptimizedTier1] +00007FA12EF44890 e instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Sort(class System.Collections.Generic.IComparer`1)[OptimizedTier1] +00007FA12EF448B0 59 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Sort(int32,int32,class System.Collections.Generic.IComparer`1)[OptimizedTier1] +00007FA12EFC4990 90 stub<20442> AllocateTemporaryEntryPoints +00007FA12EF44930 112 void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator+Log::EndpointsFound(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,object,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12EF44A60 fd instance string [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator::GetPathByEndpoints(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [System.Collections]System.Collections.Generic.List`1,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.FragmentString,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.LinkOptions)[OptimizedTier1] +00007FA12EF44B80 193 instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator::TryProcessTemplate(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class Microsoft.AspNetCore.Routing.RouteEndpoint,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.LinkOptions,valuetype [System.Runtime]System.ValueTuple`2&)[OptimizedTier1] +00007FA12E672C80 18 stub<20443> GenerateLookupStub +00007FA12E672CA0 18 stub<20444> GenerateLookupStub +00007FA12EF44D40 1bd0 instance class Microsoft.AspNetCore.Routing.Template.TemplateValuesResult [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Template.TemplateBinder::GetValues(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12EF46940 23 instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::.ctor(class Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12EF46980 298 instance void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Template.TemplateBinder::CopyNonParameterAmbientValues(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12E672CC0 18 stub<20445> GenerateLookupStub +00007FA12EF46C40 c6 instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Template.TemplateBinder::TryProcessConstraints(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,string&,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.IRouteConstraint&)[OptimizedTier1] +00007FA12EF46D30 19a instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Template.TemplateBinder::TryBindValues(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.LinkOptions,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.LinkOptions,valuetype [System.Runtime]System.ValueTuple`2&)[OptimizedTier1] +00007FA12EFC4A20 60 stub<20446> AllocateTemporaryEntryPoints +00007FA12EFC4A80 18 stub<20447> AllocateTemporaryEntryPoints +00007FA12EF46F00 9b instance !0 [Microsoft.Extensions.ObjectPool] Microsoft.Extensions.ObjectPool.DefaultObjectPool`1[System.__Canon]::Get()[OptimizedTier1] +00007FA12EF46FC0 6 instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.AspNetCore.Routing.Abstractions] Microsoft.AspNetCore.Routing.LinkOptions::get_AppendTrailingSlash()[OptimizedTier1] +00007FA12EF46FE0 6 instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.AspNetCore.Routing.Abstractions] Microsoft.AspNetCore.Routing.LinkOptions::get_LowercaseQueryStrings()[OptimizedTier1] +00007FA12EF47000 6 instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.AspNetCore.Routing.Abstractions] Microsoft.AspNetCore.Routing.LinkOptions::get_LowercaseUrls()[OptimizedTier1] +00007FA12E672CE0 18 stub<20448> GenerateLookupStub +00007FA12E672D00 18 stub<20449> GenerateLookupStub +00007FA12E672D20 18 stub<20450> GenerateLookupStub +00007FA12E672D40 18 stub<20451> GenerateLookupStub +00007FA12E672D60 18 stub<20452> GenerateLookupStub +00007FA12EF47020 94b instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Template.TemplateBinder::TryBindValuesCore(class Microsoft.AspNetCore.Routing.UriBuildingContext,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12EF479B0 139 instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.UriBuildingContext::Buffer(string)[OptimizedTier1] +00007FA12EF47B10 115 instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Template.TemplateBinder::AddQueryKeyValueToContext(class Microsoft.AspNetCore.Routing.UriBuildingContext,string,object,bool)[OptimizedTier1] +00007FA12EF47C50 131 instance valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.UriBuildingContext::ToPathString()[OptimizedTier1] +00007FA12EF47DA0 b6 instance valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.QueryString [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.UriBuildingContext::ToQueryString()[OptimizedTier1] +00007FA12EF47E70 22 instance void [System.Private.CoreLib] System.ValueTuple`2[Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.QueryString]::.ctor(!0,!1)[OptimizedTier1] +00007FA12EFC4A98 48 stub<20453> AllocateTemporaryEntryPoints +00007FA12EFC4AE0 30 stub<20454> AllocateTemporaryEntryPoints +00007FA12EF47EC0 cc instance void [Microsoft.Extensions.ObjectPool] Microsoft.Extensions.ObjectPool.DefaultObjectPool`1[System.__Canon]::Return(!0)[OptimizedTier1] +00007FA12EF47FB0 16 instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.UriBuilderContextPooledObjectPolicy::Return(class Microsoft.AspNetCore.Routing.UriBuildingContext)[OptimizedTier1] +00007FA12EF47FE0 cd instance void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.UriBuildingContext::Clear()[OptimizedTier1] +00007FA12EF480D0 8 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Routing.UriBuildingContext+BufferValue]::get_Capacity()[OptimizedTier1] +00007FA12EF480F0 2d void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator+Log::TemplateSucceeded(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class Microsoft.AspNetCore.Routing.RouteEndpoint,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.QueryString)[OptimizedTier1] +00007FA12EF48140 85 void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator+Log::TemplateSucceeded(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,string,string,string,string)[OptimizedTier1] +00007FA12EF481F0 21e string [Microsoft.AspNetCore.Http.Extensions] Microsoft.AspNetCore.Http.Extensions.UriHelper::BuildRelative(valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.QueryString,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.FragmentString)[OptimizedTier1] +00007FA12EF48430 6 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.QueryString::ToString()[OptimizedTier1] +00007FA12EF48450 45 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.QueryString::ToUriComponent()[OptimizedTier1] +00007FA12EF484B0 26 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.FragmentString::ToString()[OptimizedTier1] +00007FA12EF484F0 112 void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.DefaultLinkGenerator+Log::LinkGenerationSucceeded(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Collections.Generic.IEnumerable`1,string)[OptimizedTier1] +00007FA12EF48620 5 instance string [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::get_Protocol()[OptimizedTier1] +00007FA12EF48640 5 instance string [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Routing.UrlActionContext::get_Host()[OptimizedTier1] +00007FA12EF48660 227 instance string [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.UrlHelperBase::GenerateUrl(string,string,string)[OptimizedTier1] +00007FA12EF488C0 e5 instance bool [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.UrlHelperBase::TryFastGenerateUrl(string,string,string,string,string&)[OptimizedTier1] +00007FA12EFC4B10 18 stub<20455> AllocateTemporaryEntryPoints +00007FA12EFC4B28 18 stub<20456> AllocateTemporaryEntryPoints +00007FA12EFC6000 7f8 stub<20457> AllocateTemporaryEntryPoints +00007FA12EFC67F8 2b8 stub<20458> AllocateTemporaryEntryPoints +00007FA12EFC6AB0 18 stub<20459> AllocateTemporaryEntryPoints +00007FA12EF489D0 37f instance class Microsoft.AspNetCore.Mvc.Rendering.TagBuilder [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.DefaultHtmlGenerator::GenerateLink(string,string,object)[OptimizedTier1] +00007FA12EF48D70 9e instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.TagBuilder::.ctor(string)[OptimizedTier1] +00007FA12EF48E30 44 instance void [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlContentBuilder::.ctor()[OptimizedTier1] +00007FA12EF48E90 4d instance void [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlContentBuilder::.ctor(class [System.Runtime]System.Collections.Generic.IList`1)[OptimizedTier1] +00007FA12EF48F00 7a class Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions::SetContent(class Microsoft.AspNetCore.Html.IHtmlContentBuilder,string)[OptimizedTier1] +00007FA12E672D80 18 stub<20460> GenerateLookupStub +00007FA12EF48FA0 26 instance class Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlContentBuilder::Clear()[OptimizedTier1] +00007FA12EF48FE0 31 instance class Microsoft.AspNetCore.Html.IHtmlContentBuilder [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlContentBuilder::Append(string)[OptimizedTier1] +00007FA12EFC6AC8 90 stub<20461> AllocateTemporaryEntryPoints +00007FA12EF49030 3b class [System.Runtime]System.Collections.Generic.IDictionary`2 [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.DefaultHtmlGenerator::GetHtmlAttributeDictionaryOrNull(object)[OptimizedTier1] +00007FA12EFC6B58 90 stub<20462> AllocateTemporaryEntryPoints +00007FA12EFC6BE8 a8 stub<20463> AllocateTemporaryEntryPoints +00007FA12EFC6C90 18 stub<20464> AllocateTemporaryEntryPoints +00007FA12EFC6CA8 18 stub<20465> AllocateTemporaryEntryPoints +00007FA12EF490A0 18a instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.TagBuilder::MergeAttributes(class [System.Runtime]System.Collections.Generic.IDictionary`2,bool)[OptimizedTier1] +00007FA12EF49270 126 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.TagBuilder::MergeAttribute(string,string,bool)[OptimizedTier1] +00007FA12EF493C0 73 instance bool [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary::ContainsKey(string)[OptimizedTier1] +00007FA12EF49450 246 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary::set_Item(string,string)[OptimizedTier1] +00007FA12EF496C0 d5 instance int32 [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary::Find(string)[OptimizedTier1] +00007FA12EF497C0 f4 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Insert(int32,!0)[OptimizedTier1] +00007FA12EF498E0 2f8 void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.TagHelperOutputExtensions::MergeAttributes(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.TagBuilder)[OptimizedTier1] +00007FA12EF49C00 9 instance valuetype Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary/Enumerator [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary::GetEnumerator()[OptimizedTier1] +00007FA12EF49C20 40 instance valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2 [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary+Enumerator::get_Current()[OptimizedTier1] +00007FA12EF49C80 a7 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList::Add(string,object)[OptimizedTier1] +00007FA12EF49D50 1 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.AttributeDictionary+Enumerator::Dispose()[OptimizedTier1] +00007FA12EF49D70 e5 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.MemoryPoolViewBufferScope::ReturnSegment(valuetype Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferValue[])[OptimizedTier1] +00007FA12EF49E80 3d bool [System.Private.Uri] System.UriHelper::IsLWS(char)[OptimizedTier1] +00007FA12EF49EE0 34 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+EncodingWrapper::WriteTo(class [System.Runtime]System.IO.TextWriter,class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder)[OptimizedTier1] +00007FA12EF49F30 16 instance void [System.Text.Encodings.Web] System.Text.Encodings.Web.TextEncoder::Encode(class [System.Runtime]System.IO.TextWriter,string)[OptimizedTier1] +00007FA12EF49F60 c instance valuetype System.IO.Pipelines.ReadResult [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeReader::GetResult(int16)[OptimizedTier1] +00007FA12EF49F80 23d instance valuetype System.IO.Pipelines.ReadResult [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetReadAsyncResult()[OptimizedTier1] +00007FA12EFC6CC0 120 stub<20466> AllocateTemporaryEntryPoints +00007FA12EFC6DE0 18 stub<20467> AllocateTemporaryEntryPoints +00007FA12EFC6DF8 18 stub<20468> AllocateTemporaryEntryPoints +00007FA12EFC6E10 18 stub<20469> AllocateTemporaryEntryPoints +00007FA12EFC6E28 60 stub<20470> AllocateTemporaryEntryPoints +00007FA12EFC6E88 18 stub<20471> AllocateTemporaryEntryPoints +00007FA12EFC8000 1f8 stub<20472> AllocateTemporaryEntryPoints +00007FA12EFC81F8 378 stub<20473> AllocateTemporaryEntryPoints +00007FA12EFC8570 60 stub<20474> AllocateTemporaryEntryPoints +00007FA12EFC85D0 18 stub<20475> AllocateTemporaryEntryPoints +00007FA12EF4A220 3e54 instance void [System.Net.Http] System.Net.Http.HttpConnection+d__61::MoveNext()[OptimizedTier1] +00007FA12EF4E220 12c4 instance void [System.Net.Http] System.Net.Http.RedirectHandler+d__4::MoveNext()[OptimizedTier1] +00007FA12EF4F540 dc instance void [System.Private.CoreLib] System.Threading.Tasks.AwaitTaskContinuation::Run(class System.Threading.Tasks.Task,bool)[OptimizedTier1] +00007FA12EF4F640 c0 instance void [System.Private.CoreLib] System.Threading.Tasks.AwaitTaskContinuation::RunCallback(class System.Threading.ContextCallback,object,class System.Threading.Tasks.Task&)[OptimizedTier1] +00007FA12EF4F730 2b instance void [System.Private.CoreLib] System.Threading.Tasks.AwaitTaskContinuation+<>c::<.cctor>b__17_0(object)[OptimizedTier1] +00007FA12EF4F770 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::MoveNext()[OptimizedTier1] +00007FA12EF4F790 204 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF4F9C0 41 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF4FA20 2d instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.IO.Pipelines.FlushResult]::.ctor(class System.Threading.Tasks.Task`1)[OptimizedTier1] +00007FA12EF4FA80 5a instance void [System.Private.CoreLib] System.Threading.ManualResetEventSlim::UpdateStateAtomically(int32,int32)[OptimizedTier1] +00007FA12EF4FB00 8 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.TraceContext::get_SamplingPriority()[OptimizedTier1] +00007FA12EF4FB20 1f7 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteRaw(uint8[]&,int32,uint8[])[OptimizedTier1] +00007FA12EF4FD40 4 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::get_SpanCount()[OptimizedTier1] +00007FA12EF4FD60 10 instance void [System.IO.Pipelines] System.IO.Pipelines.PipeScheduler::UnsafeSchedule(class [System.Runtime]System.Action`1,object)[OptimizedTier1] +00007FA12EF4FD90 67 instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue::Schedule(class [System.Runtime]System.Action`1,object)[OptimizedTier1] +00007FA12EF4FE20 4f instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::Enqueue(!0)[OptimizedTier1] +00007FA12EF4FEA0 b7 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryEnqueue(!0)[OptimizedTier1] +00007FA12EF4FF80 f4 instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue::System.Threading.IThreadPoolWorkItem.Execute()[OptimizedTier1] +00007FA12EF500A0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28]::MoveNext()[OptimizedTier1] +00007FA12EF500C0 193 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF50280 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__28]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF502A0 2a instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::get_IsEmpty()[OptimizedTier1] +00007FA12EF502E0 60 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryPeek(!0&,bool)[OptimizedTier1] +00007FA12EF50360 f9 instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.IOQueue+Work]::TryPeek(!0&,bool)[OptimizedTier1] +00007FA12EF50480 16 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ArrayPoolBufferSource::Return(char[])[OptimizedTier1] +00007FA12EF504B0 313 instance class System.Threading.IAsyncLocalValueMap [System.Private.CoreLib] System.Threading.AsyncLocalValueMap+ThreeElementAsyncLocalValueMap::Set(class System.Threading.IAsyncLocal,object,bool)[OptimizedTier1] +00007FA12EF507F0 5 instance string [Datadog.Trace] Datadog.Trace.Span::get_ResourceName()[OptimizedTier1] +00007FA12EF50810 4 instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.Char,System.Char]::get_Key()[OptimizedTier1] +00007FA12EF50830 42 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12EF50890 177 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF50A40 56 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12EF50AC0 8d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF50B70 31d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF50EB0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::.ctor()[OptimizedTier1] +00007FA12EF50ED0 55 instance class System.Action [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_MoveNextAction()[OptimizedTier1] +00007FA12EF50F40 21c instance void [System.Private.CoreLib] System.Threading.Tasks.Task::SetContinuationForAwait(class System.Action,bool,bool)[OptimizedTier1] +00007FA12EF51180 192 instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+BufferMemoryReceiveOperation::DoTryComplete(class System.Net.Sockets.SocketAsyncContext)[OptimizedTier1] +00007FA12EF51340 8f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.ClrProfiler.CallTarget.Handlers.Continuations.TaskContinuationGenerator`4+SyncCallbackHandler+d__4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12EFC85E8 18 stub<20476> AllocateTemporaryEntryPoints +00007FA12EFC8600 18 stub<20477> AllocateTemporaryEntryPoints +00007FA12EF513F0 18 int32 [System.Private.CoreLib] System.MemoryExtensions::IndexOfAny(valuetype System.ReadOnlySpan`1,!!0,!!0)[OptimizedTier1] +00007FA12EFC8618 18 stub<20478> AllocateTemporaryEntryPoints +00007FA12EFC8630 a8 stub<20479> AllocateTemporaryEntryPoints +00007FA12EFC86D8 18 stub<20480> AllocateTemporaryEntryPoints +00007FA12EFC86F0 60 stub<20481> AllocateTemporaryEntryPoints +00007FA12EFC8750 30 stub<20482> AllocateTemporaryEntryPoints +00007FA12EFC8780 18 stub<20483> AllocateTemporaryEntryPoints +00007FA12EFC8798 390 stub<20484> AllocateTemporaryEntryPoints +00007FA12EFC8B28 30 stub<20485> AllocateTemporaryEntryPoints +00007FA12EFC8B58 18 stub<20486> AllocateTemporaryEntryPoints +00007FA12EFC8B70 30 stub<20487> AllocateTemporaryEntryPoints +00007FA12EFC8BA0 30 stub<20488> AllocateTemporaryEntryPoints +00007FA12EFC8BD0 18 stub<20489> AllocateTemporaryEntryPoints +00007FA12EFC8BE8 30 stub<20490> AllocateTemporaryEntryPoints +00007FA12EFC8C18 18 stub<20491> AllocateTemporaryEntryPoints +00007FA12EFC8C30 30 stub<20492> AllocateTemporaryEntryPoints +00007FA12EFC8C60 30 stub<20493> AllocateTemporaryEntryPoints +00007FA12EFC8C90 30 stub<20494> AllocateTemporaryEntryPoints +00007FA12EFC8CC0 30 stub<20495> AllocateTemporaryEntryPoints +00007FA12EFC8CF0 18 stub<20496> AllocateTemporaryEntryPoints +00007FA12EFC8D08 30 stub<20497> AllocateTemporaryEntryPoints +00007FA12EFC8D38 18 stub<20498> AllocateTemporaryEntryPoints +00007FA12EFC8D50 18 stub<20499> AllocateTemporaryEntryPoints +00007FA12EFC8D68 18 stub<20500> AllocateTemporaryEntryPoints +00007FA12EFC8D80 18 stub<20501> AllocateTemporaryEntryPoints +00007FA12EFC8D98 18 stub<20502> AllocateTemporaryEntryPoints +00007FA12EFC8DB0 18 stub<20503> AllocateTemporaryEntryPoints +00007FA12EFC8DC8 18 stub<20504> AllocateTemporaryEntryPoints +00007FA12EFC8DE0 18 stub<20505> AllocateTemporaryEntryPoints +00007FA12EFC8DF8 48 stub<20506> AllocateTemporaryEntryPoints +00007FA12EFC8E40 48 stub<20507> AllocateTemporaryEntryPoints +00007FA12EFC8E88 18 stub<20508> AllocateTemporaryEntryPoints +00007FA12EFC8EA0 60 stub<20509> AllocateTemporaryEntryPoints +00007FA12EF51420 17f bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpParser`1[Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1ParsingHandler]::TryTakeSingleHeader(!0,valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF515C0 1d int32 [System.Private.CoreLib] System.MemoryExtensions::IndexOfAny(valuetype System.ReadOnlySpan`1,!!0,!!0,!!0)[OptimizedTier1] +00007FA12EFC8F00 90 stub<20510> AllocateTemporaryEntryPoints +00007FA12EF51600 5a instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::OnHeader(valuetype [System.Runtime]System.ReadOnlySpan`1,valuetype [System.Runtime]System.ReadOnlySpan`1,bool)[OptimizedTier1] +00007FA12EF51680 28 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::IncrementRequestHeadersCount()[OptimizedTier1] +00007FA12EF516C0 51 instance class [System.Collections]System.Collections.Generic.Dictionary`2 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpHeaders::get_Unknown()[OptimizedTier1] +00007FA12EF51730 38 instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::GetBucket(uint32)[OptimizedTier1] +00007FA12EF51780 16ab instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::TryGetValueFast(string,valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues&)[OptimizedTier1] +00007FA12EF52ED0 47 class Datadog.Trace.AppSec.Security [Datadog.Trace] Datadog.Trace.AppSec.Security::get_Instance()[OptimizedTier1] +00007FA12EF52F30 5 instance class Datadog.Trace.AppSec.SecuritySettings [Datadog.Trace] Datadog.Trace.AppSec.Security::get_Settings()[OptimizedTier1] +00007FA12EF52F50 e instance bool [Datadog.Trace] Datadog.Trace.AppSec.SecuritySettings::get_Enabled()[OptimizedTier1] +00007FA12EF52F70 2e instance int32 [Microsoft.Extensions.Primitives] Microsoft.Extensions.Primitives.StringValues::get_Count()[OptimizedTier1] +00007FA12E672DA0 18 stub<20511> GenerateLookupStub +00007FA12EF52FC0 113 instance valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_Path()[OptimizedTier1] +00007FA12EF53100 8 instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.get_Path()[OptimizedTier1] +00007FA12EF53120 5 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[System.__Canon]::get_Exception()[OptimizedTier1] +00007FA12EFC8F90 18 stub<20512> AllocateTemporaryEntryPoints +00007FA12EF53140 128 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[OptimizedTier1] +00007FA12EF532A0 5 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.Endpoint [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IEndpointFeature.get_Endpoint()[OptimizedTier1] +00007FA12E672DC0 18 stub<20513> GenerateLookupStub +00007FA12EF532C0 9a class Microsoft.AspNetCore.Http.Endpoint [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.EndpointHttpContextExtensions::GetEndpoint(class Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12EF53380 51 instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.TraceContext::get_Elapsed()[OptimizedTier1] +00007FA12EF53400 1a valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.Util.StopwatchHelpers::GetElapsed(int64)[OptimizedTier1] +00007FA12EFC8FA8 18 stub<20514> AllocateTemporaryEntryPoints +00007FA12EFC8FC0 18 stub<20515> AllocateTemporaryEntryPoints +00007FA12E672DE0 18 stub<20516> GenerateLookupStub +00007FA12EF53440 87 instance class [System.Runtime]System.IDisposable [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.ScopeLogger::CreateScope(!!0)[OptimizedTier1] +00007FA12EF534E0 3f instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger+Scope::SetDisposable(int32,class [System.Runtime]System.IDisposable)[OptimizedTier1] +00007FA12EF53540 2e instance void [System.Private.CoreLib] System.Text.StringBuilder::.ctor()[OptimizedTier1] +00007FA12EF53590 6a instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.FilterContext::.ctor(class Microsoft.AspNetCore.Mvc.ActionContext,class [System.Runtime]System.Collections.Generic.IList`1)[OptimizedTier1] +00007FA12EF53620 5 instance string [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor::get_DisplayName()[OptimizedTier1] +00007FA12EF53640 5 instance class Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ActionContext::get_ModelState()[OptimizedTier1] +00007FA12EF53660 62 instance object [System.Private.CoreLib] System.Globalization.CultureInfo::GetFormat(class System.Type)[OptimizedTier1] +00007FA12EF536E0 2e instance bool [System.Threading.Tasks.Parallel] System.Threading.Tasks.ParallelLoopStateFlags32::ShouldExitLoop(int32)[OptimizedTier1] +00007FA12EF53730 ad5 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteUInt64(uint8[]&,int32,uint64)[OptimizedTier1] +00007FA12EF54230 5 instance string [Datadog.Trace] Datadog.Trace.Span::get_Type()[OptimizedTier1] +00007FA12EF54250 1a2 uint8[] [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache::GetBytes(string,valuetype Datadog.Trace.Agent.MessagePack.MessagePackStringCache/CachedBytes&)[OptimizedTier1] +00007FA12EF54420 6d instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::TryDequeue(!0&)[OptimizedTier1] +00007FA12EF544C0 11f instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::TryDequeue(!0&)[OptimizedTier1] +00007FA12EF54600 68 instance valuetype [System.Runtime]System.Nullable`1 [System.Net.Http] System.Net.Http.Headers.HttpRequestHeaders::get_ExpectContinue()[OptimizedTier1] +00007FA12EF54680 132 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1+ConfiguredValueTaskAwaiter[System.__Canon]::System.Runtime.CompilerServices.IStateMachineBoxAwareAwaiter.AwaitUnsafeOnCompleted(class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12EF547E0 48 instance valuetype System.Net.Http.Headers.HeaderEntry[] [System.Net.Http] System.Net.Http.Headers.HttpHeaders::GetEntriesArray()[OptimizedTier1] +00007FA12EF54840 10c instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::TransferCompletionCallbackCore(int32,uint8[],int32,valuetype System.Net.Sockets.SocketFlags,valuetype [System.Net.Primitives]System.Net.Sockets.SocketError)[OptimizedTier1] +00007FA12EF54970 f7 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CheckPropertyName(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,string)[OptimizedTier1] +00007FA12EF54A80 8 instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryKeyType()[OptimizedTier1] +00007FA12EF54AA0 3f instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadAsDouble()[OptimizedTier1] +00007FA12EF54B00 49a instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ReadNumberValue(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[OptimizedTier1] +00007FA12EF55070 8 instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryValueType()[OptimizedTier1] +00007FA12E672E00 18 stub<20517> GenerateLookupStub +00007FA12E672E20 18 stub<20518> GenerateLookupStub +00007FA12E672E40 18 stub<20519> GenerateLookupStub +00007FA12E672E60 18 stub<20520> GenerateLookupStub +00007FA12E672E80 18 stub<20521> GenerateLookupStub +00007FA12E672EA0 18 stub<20522> GenerateLookupStub +00007FA12E672EC0 18 stub<20523> GenerateLookupStub +00007FA12E672EE0 18 stub<20524> GenerateLookupStub +00007FA12E672F00 18 stub<20525> GenerateLookupStub +00007FA12E672F20 18 stub<20526> GenerateLookupStub +00007FA12E672F40 18 stub<20527> GenerateLookupStub +00007FA12E672F60 18 stub<20528> GenerateLookupStub +00007FA12EF55090 5c7 object [System.Private.CoreLib] System.Convert::ChangeType(object,class System.Type,class System.IFormatProvider)[OptimizedTier1] +00007FA12EF55680 8 instance float32 [System.Private.CoreLib] System.Double::System.IConvertible.ToSingle(class System.IFormatProvider)[OptimizedTier1] +00007FA12EF556A0 12e instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::System.Collections.IDictionary.set_Item(object,object)[OptimizedTier1] +00007FA12EF55810 14 void [System.Private.CoreLib] System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow(object,valuetype System.ExceptionArgument)[OptimizedTier1] +00007FA12EF55840 15 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::set_Item(!0,!1)[OptimizedTier1] +00007FA12EF55880 43f instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12EF55D00 a6 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.Single]::MoveNext()[OptimizedTier1] +00007FA12EF55DD0 22 instance void [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey::.ctor(string,string)[OptimizedTier1] +00007FA12EF55E10 6e instance int32 [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey::GetHashCode()[OptimizedTier1] +00007FA12EF55EA0 38 instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::GetBucket(uint32)[OptimizedTier1] +00007FA12EF55EF0 2d instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Single]::.ctor(!0,!1)[OptimizedTier1] +00007FA12EF55F40 10 instance valuetype System.Collections.Generic.KeyValuePair`2 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.Single]::get_Current()[OptimizedTier1] +00007FA12EF55F70 9 instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Single]::get_Value()[OptimizedTier1] +00007FA12EF55F90 154 valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey::Parse(string)[OptimizedTier1] +00007FA12EF56110 3b instance string[] [System.Private.CoreLib] System.String::Split(char[])[OptimizedTier1] +00007FA12EF56160 2c instance void [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::.ctor(!0)[OptimizedTier1] +00007FA12EF561B0 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::get_HasValue()[OptimizedTier1] +00007FA12EF561D0 1d instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey]::get_Value()[OptimizedTier1] +00007FA12EF56210 15 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::Add(!0,!1)[OptimizedTier1] +00007FA12EF56240 419 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12EF56680 30 instance void [System.Threading.Tasks.Parallel] System.Threading.Tasks.TaskReplicator+Replica+<>c::b__7_0(object)[OptimizedTier1] +00007FA12EF566D0 af instance float64 [System.Private.CoreLib] System.Threading.PortableThreadPool+CpuUtilizationReader::get_CurrentUtilization()[OptimizedTier1] +00007FA12EF567B0 3 bool [System.Private.CoreLib] System.Threading.ThreadPool::PerformRuntimeSpecificGateActivities(int32)[OptimizedTier1] +00007FA12EF567D0 73 instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.__Canon,System.__Canon]]::MoveNext()[OptimizedTier1] +00007FA12E672F80 18 stub<20529> GenerateLookupStub +00007FA12E672FA0 18 stub<20530> GenerateLookupStub +00007FA12EF56860 b7 instance void [System.Private.CoreLib] System.Threading.Tasks.Task::RunOrQueueCompletionAction(class System.Threading.Tasks.ITaskCompletionAction,bool)[OptimizedTier1] +00007FA12EF56940 d int64 [System.Private.CoreLib] System.Math::Min(int64,int64)[OptimizedTier1] +00007FA12EF56960 75 class System.Threading.Tasks.Task [System.Private.CoreLib] System.Threading.Tasks.Task::Delay(valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF56A10 10 instance void [System.Private.CoreLib] System.Threading.Tasks.Task+DelayPromise::Cleanup()[OptimizedTier1] +00007FA1277CD640 20 stub<20531> GenerateDispatchStub +00007FA12EF56A30 b6 instance void [System.Private.CoreLib] System.Threading.SpinWait::SpinOnce(int32)[OptimizedTier1] +00007FA12EF56B10 15c instance void [System.Private.CoreLib] System.Threading.SpinWait::SpinOnceCore(int32)[OptimizedTier1] +00007FA1277CD660 20 stub<20532> GenerateDispatchStub +00007FA1277CD680 20 stub<20533> GenerateDispatchStub +00007FA1277CD6A0 20 stub<20534> GenerateDispatchStub +00007FA12EF56C90 45 bool [System.Private.CoreLib] System.Int32::TryParse(valuetype System.ReadOnlySpan`1,int32&)[OptimizedTier1] +00007FA12EF56D00 bb instance int32 [Samples.BuggyBits] BuggyBits.Models.DataLayer+<>c::b__12_1(class BuggyBits.Models.Product,class BuggyBits.Models.Product)[OptimizedTier1] +00007FA12EF56DE0 23b int32 [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[System.__Canon]::PickPivotAndPartition(valuetype System.Span`1,class System.Comparison`1)[OptimizedTier1] +00007FA12EF57040 3f instance int32 [System.Private.CoreLib] System.OrdinalCaseSensitiveComparer::GetHashCode(string)[OptimizedTier1] +00007FA12E672FC0 18 stub<20535> GenerateLookupStub +00007FA12EF570A0 87 instance object [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator+<>c__DisplayClass8_0::b__1(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF57150 3f instance bool [System.Private.CoreLib] System.Type::get_IsArray()[OptimizedTier1] +00007FA12EF571C0 14a instance void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.UriBuildingContext::EncodeValue(string,int32,int32,bool)[OptimizedTier1] +00007FA12EF57340 1a5 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Insert(int32,char)[OptimizedTier1] +00007FA12EF57520 341 instance void [System.Private.CoreLib] System.Text.StringBuilder::MakeRoom(int32,int32,class System.Text.StringBuilder&,int32&,bool)[OptimizedTier1] +00007FA12EF578A0 10c instance void [System.Private.CoreLib] System.Text.StringBuilder::ReplaceInPlaceAtChunk(class System.Text.StringBuilder&,int32&,char&,int32)[OptimizedTier1] +00007FA12EF579D0 b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::set_ViewContext(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF579F0 d instance bool [System.Private.Uri] System.Uri::get_IsImplicitFile()[OptimizedTier1] +00007FA12E672FE0 18 stub<20536> GenerateLookupStub +00007FA12EF57A10 61 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList::set_Item(int32,class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute)[OptimizedTier1] +00007FA12EF57A90 b instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.ViewContext::set_ExecutingFilePath(string)[OptimizedTier1] +00007FA12EF57AB0 19 instance void [System.IO.Pipelines] System.IO.Pipelines.ThreadPoolScheduler::UnsafeSchedule(class [System.Runtime]System.Action`1,object)[OptimizedTier1] +00007FA12EF57AE0 183 instance void [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::OnCompleted(class System.Net.Sockets.SocketAsyncEventArgs)[OptimizedTier1] +00007FA12EF57C90 4 instance valuetype [System.Net.Primitives]System.Net.HttpStatusCode [System.Net.Http] System.Net.Http.HttpResponseMessage::get_StatusCode()[OptimizedTier1] +00007FA12EF57CB0 5 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_Exception()[OptimizedTier1] +00007FA12EF57CD0 148 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[OptimizedTier1] +00007FA12EF57E50 16 valuetype System.Numerics.Vector`1 [System.Private.CoreLib] System.Numerics.Vector::LoadUnsafe(!!0&,native uint)[OptimizedTier1] +00007FA12EF57E80 12 !!0 [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::ReadUnaligned(uint8&)[OptimizedTier1] +00007FA12EF57EB0 15 void [System.Private.CoreLib] System.Numerics.Vector::StoreUnsafe(valuetype System.Numerics.Vector`1,!!0&,native uint)[OptimizedTier1] +00007FA12EF57EE0 11 void [System.Private.CoreLib] System.Runtime.CompilerServices.Unsafe::WriteUnaligned(uint8&,!!0)[OptimizedTier1] +00007FA12EF57F10 5 instance class Datadog.Trace.Tagging.TraceTagCollection [Datadog.Trace] Datadog.Trace.TraceContext::get_Tags()[OptimizedTier1] +00007FA12EF57F30 21 instance valuetype [System.Runtime]System.DateTimeOffset [Datadog.Trace] Datadog.Trace.Span::get_StartTime()[OptimizedTier1] +00007FA12EF57F70 5 instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.Span::get_Duration()[OptimizedTier1] +00007FA12EF57F90 15ee int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteInt64(uint8[]&,int32,int64)[OptimizedTier1] +00007FA12EF595A0 5 instance bool [Datadog.Trace] Datadog.Trace.Span::get_Error()[OptimizedTier1] +00007FA12EF595C0 e instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_SpanKind()[OptimizedTier1] +00007FA12EF595E0 44 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter+TagWriter::.ctor(class Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter,class Datadog.Trace.Processors.ITagProcessor[],uint8[],int32)[OptimizedTier1] +00007FA12EF59640 98 instance bool [Datadog.Trace] Datadog.Trace.Span::get_IsTopLevel()[OptimizedTier1] +00007FA12EF596F0 46 bool [System.Private.CoreLib] System.String::op_Inequality(string,string)[OptimizedTier1] +00007FA12EF59750 2d5 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteDouble(uint8[]&,int32,float64)[OptimizedTier1] +00007FA12EF59A50 d instance void [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.Float64Bits::.ctor(float64)[OptimizedTier1] +00007FA12EFCA000 60 stub<20537> AllocateTemporaryEntryPoints +00007FA12EFCA060 18 stub<20538> AllocateTemporaryEntryPoints +00007FA12EF59A70 72 instance void [System.Net.Http] System.Net.Http.HttpConnection+HttpContentReadStream::Dispose(bool)[OptimizedTier1] +00007FA12E673000 18 stub<20539> GenerateLookupStub +00007FA12EF59B00 aa instance uint32 [System.Private.CoreLib] System.Collections.Hashtable::InitHash(object,int32,uint32&,uint32&)[OptimizedTier1] +00007FA12EF59BD0 65 instance void [System.Net.Http] System.Net.Http.HttpRequestMessage::.ctor(class System.Net.Http.HttpMethod,class [System.Runtime]System.Uri)[OptimizedTier1] +00007FA12EF59C50 191 instance void [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::InvokeContinuation(class [System.Runtime]System.Action`1,object,bool,bool)[OptimizedTier1] +00007FA12EF59E10 5 instance !0 [System.Private.CoreLib] System.Nullable`1[System.Int64]::GetValueOrDefault()[OptimizedTier1] +00007FA12EF59E30 1 instance void [System.Private.CoreLib] System.IO.Stream::.ctor()[OptimizedTier1] +00007FA12EF59E50 3b instance int64 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::get_ContentLength()[OptimizedTier1] +00007FA12EF59EA0 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ITraceWriter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::get_TraceWriter()[OptimizedTier1] +00007FA12EF59EC0 27 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::Resize()[OptimizedTier1] +00007FA12EF59F00 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DateTimeZoneHandling]::get_HasValue()[OptimizedTier1] +00007FA12EF59F20 87 instance class System.Collections.Generic.IEnumerator`1 [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::System.Collections.Generic.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12EF59FD0 28 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.Logger::IsEnabled(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel)[OptimizedTier1] +00007FA12EF5A010 4 instance valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel [Datadog.Trace] Datadog.Trace.Vendors.Serilog.Core.LoggingLevelSwitch::get_MinimumLevel()[OptimizedTier1] +00007FA12EF5A030 6 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.Span`1[System.Byte]::op_Implicit(valuetype System.Span`1)[OptimizedTier1] +00007FA12EF5A050 169 instance void [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::OnCompleted(class [System.Runtime]System.Action`1,object,int16,valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)[OptimizedTier1] +00007FA12EF5A1E0 1fa instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Append(char[],int32,int32)[OptimizedTier1] +00007FA12EF5A400 30 instance class System.Uri/MoreInfo [System.Private.Uri] System.Uri+UriInfo::get_MoreInfo()[OptimizedTier1] +00007FA12EF5A450 4 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetReference(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF5A470 4 instance int32 [System.Private.CoreLib] System.ReadOnlySpan`1[System.Char]::get_Length()[OptimizedTier1] +00007FA12EF5A490 4a instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator+HeadersCollectionGetterAndSetter`1[Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpHeadersCollection]::Set(!0,string,string)[OptimizedTier1] +00007FA12EF5A500 4a instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.Http.HttpClient.HttpHeadersCollection::Set(string,string)[OptimizedTier1] +00007FA12EF5A570 28 instance bool [DuckTypeNotVisibleAssembly.HttpRequestHeaders_2] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_Headers_HttpRequestHeaders.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IRequestHeaders_2::Remove(string)[OptimizedTier1] +00007FA12EF5A5B0 26 instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::Remove(string)[OptimizedTier1] +00007FA12EF5A600 16d instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::Remove(valuetype System.Net.Http.Headers.HeaderDescriptor)[OptimizedTier1] +00007FA12EF5A790 2e instance void [DuckTypeNotVisibleAssembly.HttpRequestHeaders_2] System_Net_Http__B03F5F7F11D50A3A.System_Net_Http_Headers_HttpRequestHeaders.Datadog_Trace_ClrProfiler_AutoInstrumentation_Http_HttpClient_IRequestHeaders_2::Add(string,string)[OptimizedTier1] +00007FA12EF5A7E0 8 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[OptimizedTier1] +00007FA12EF5A800 1ed instance bool [System.Private.CoreLib] System.String::StartsWith(string,valuetype System.StringComparison)[OptimizedTier1] +00007FA12EF5AA30 41 instance string [Microsoft.Extensions.Primitives] Microsoft.Extensions.Primitives.StringValues::ToString()[OptimizedTier1] +00007FA12EF5AA90 28 instance valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpHeaders::Microsoft.AspNetCore.Http.IHeaderDictionary.get_Item(string)[OptimizedTier1] +00007FA12EF5AAD0 1d void [System.Private.CoreLib] System.Globalization.NumberFormatInfo::ValidateParseStyleInteger(valuetype System.Globalization.NumberStyles)[OptimizedTier1] +00007FA12EF5AB10 151 bool [System.Private.CoreLib] System.MemoryExtensions::Equals(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.StringComparison)[OptimizedTier1] +00007FA12EFCA078 18 stub<20540> AllocateTemporaryEntryPoints +00007FA12EF5ACA0 2e string [Microsoft.Extensions.Primitives] Microsoft.Extensions.Primitives.StringValues::g__GetStringValueFromArray|19_0(object)[OptimizedTier1] +00007FA12EF5ACF0 82 class [System.Runtime]System.Text.StringBuilder [Datadog.Trace] Datadog.Trace.Util.StringBuilderCache::Acquire(int32)[OptimizedTier1] +00007FA12EF5AD90 4a void [Datadog.Trace] Datadog.Trace.Util.StringBuilderCache::Release(class [System.Runtime]System.Text.StringBuilder)[OptimizedTier1] +00007FA12EF5AE00 11 instance bool [System.Private.CoreLib] System.Runtime.CompilerServices.TaskAwaiter`1[System.__Canon]::get_IsCompleted()[OptimizedTier1] +00007FA12EF5AE30 146 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::UpdateCached(!!0&,!!1,class [System.Runtime]System.Func`2,int32,bool)[OptimizedTier1] +00007FA12EF5AFA0 10 instance class Datadog.Trace.Tracer [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::get_CurrentTracer()[OptimizedTier1] +00007FA12EF5AFC0 19 instance string [Datadog.Trace] Datadog.Trace.Tracer::get_DefaultServiceName()[OptimizedTier1] +00007FA12EF5AFF0 5 instance string [Datadog.Trace] Datadog.Trace.TracerManager::get_DefaultServiceName()[OptimizedTier1] +00007FA12EF5B010 16 instance !0 [System.Private.CoreLib] System.Nullable`1[System.UInt64]::get_Value()[OptimizedTier1] +00007FA12EF5B040 4f instance int32 [System.Private.CoreLib] System.Collections.ObjectModel.ReadOnlyDictionary`2[System.__Canon,System.__Canon]::get_Count()[OptimizedTier1] +00007FA12EF5B0B0 10 instance class Datadog.Trace.AppSec.Security [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::get_CurrentSecurity()[OptimizedTier1] +00007FA12EF5B0D0 1ad instance void [System.Private.CoreLib] System.Version::.ctor(int32,int32,int32,int32)[OptimizedTier1] +00007FA12EF5B2A0 1d7 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1+LockedStack[System.Byte]::Trim(int32,int32,valuetype System.Buffers.Utilities/MemoryPressure,int32)[OptimizedTier1] +00007FA12EF5B4B0 4f void [System.Private.CoreLib] System.Threading.PortableThreadPool+GateThread::EnsureRunningSlow(class System.Threading.PortableThreadPool)[OptimizedTier1] +00007FA12EF5B520 4 instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::set_TraceCount(int32)[OptimizedTier1] +00007FA12EF5B540 4 instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::set_SpanCount(int32)[OptimizedTier1] +00007FA12EF5B560 116 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12EF5B6B0 aa instance class System.Collections.Generic.IEnumerator`1> [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::System.Collections.Generic.IEnumerable>.GetEnumerator()[OptimizedTier1] +00007FA12EF5B780 1 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+Enumerator[System.__Canon,System.__Canon]::Dispose()[OptimizedTier1] +00007FA12EF5B7A0 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling]::get_HasValue()[OptimizedTier1] +00007FA12EF5B7C0 39 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(int32)[OptimizedTier1] +00007FA12EF5B820 8e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteIntegerValue(int32)[OptimizedTier1] +00007FA12EF5B8D0 58 string[] [System.Net.Http] System.Net.Http.Headers.HttpHeaders::GetStoreValuesAsStringArray(valuetype System.Net.Http.Headers.HeaderDescriptor,class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo)[OptimizedTier1] +00007FA12EF5B940 214 void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::GetStoreValuesAsStringOrStringArray(valuetype System.Net.Http.Headers.HeaderDescriptor,object,string&,string[]&)[OptimizedTier1] +00007FA12EF5BB90 b instance void [System.Private.CoreLib] System.Span`1[System.__Canon]::.ctor(!0&)[OptimizedTier1] +00007FA12EFCA090 168 stub<20541> AllocateTemporaryEntryPoints +00007FA12EF5BBC0 13b instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+RequestQueue`1[System.__Canon]::PruneCompletedRequestsFromHeadOfQueue(class System.Net.Http.HttpConnectionPool)[OptimizedTier1] +00007FA12EF5BD20 9a instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::WriteHeadersAsync(class System.Net.Http.Headers.HttpHeaders,string,bool)[OptimizedTier1] +00007FA12EF5BDE0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF5BE00 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EFCA1F8 18 stub<20542> AllocateTemporaryEntryPoints +00007FA12EFCA210 18 stub<20543> AllocateTemporaryEntryPoints +00007FA12EFCA228 18 stub<20544> AllocateTemporaryEntryPoints +00007FA12EFCA240 18 stub<20545> AllocateTemporaryEntryPoints +00007FA12EF5BF60 11bf instance void [System.Net.Http] System.Net.Http.HttpConnection+d__57::MoveNext()[OptimizedTier1] +00007FA12EF5D1B0 3a instance void [System.Net.Http] System.Net.Http.HttpContent::.ctor()[OptimizedTier1] +00007FA12EF5D200 7f instance void [System.Net.Http] System.Net.Http.HttpContent::CheckTaskNotNull(class [System.Runtime]System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12EF5D2A0 18 instance void [System.Private.CoreLib] System.IO.MemoryStream::Dispose(bool)[OptimizedTier1] +00007FA12EF5D2D0 ac instance int32 [System.Private.Uri] System.Uri::get_Port()[OptimizedTier1] +00007FA12EF5D3A0 66 instance int32 [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::System.Threading.Tasks.Sources.IValueTaskSource.GetResult(int16)[OptimizedTier1] +00007FA12EF5D430 61 instance void [System.Linq] System.Collections.Generic.LargeArrayBuilder`1[System.__Canon]::AddWithBufferAllocation(!0,!0[]&,int32&)[OptimizedTier1] +00007FA12EF5D4B0 e5 instance class Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::get_ViewData()[OptimizedTier1] +00007FA12EF5D5C0 2b bool [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine::IsApplicationRelativePath(string)[OptimizedTier1] +00007FA12EFCA258 18 stub<20546> AllocateTemporaryEntryPoints +00007FA12EF5D600 fa instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::Process(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput)[OptimizedTier1] +00007FA12EF5D720 aa int32 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::FindRelativeStart(string)[OptimizedTier1] +00007FA12EF5D800 8a string [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::CreateTrimmedString(string,int32)[OptimizedTier1] +00007FA12EF5D8B0 e instance string [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.UrlHelperBase::Content(string)[OptimizedTier1] +00007FA1277CD6C0 20 stub<20547> GenerateDispatchStub +00007FA12EF5D8D0 283 string [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.UrlHelperBase::Content(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,string)[OptimizedTier1] +00007FA12EF5DB70 5 instance class Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext::get_AllAttributes()[OptimizedTier1] +00007FA12EF5DBA0 cb bool [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.AttributeMatcher::HasMissingAttributes(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList,string[])[OptimizedTier1] +00007FA12EF5DC90 6c instance bool [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList::TryGetAttribute(string,class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute&)[OptimizedTier1] +00007FA12EF5DD20 8 int32 [System.Private.CoreLib] System.Numerics.BitOperations::TrailingZeroCount(uint64)[OptimizedTier1] +00007FA12EF5DD40 1d bool [System.Net.Http] System.Net.Http.HttpConnection::IsLineEmpty(valuetype [System.Runtime]System.ReadOnlyMemory`1)[OptimizedTier1] +00007FA12EF5DD80 72 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter::FlushAsyncAwaited(valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF5DE10 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF5DE30 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF5DF90 23b class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF5E1F0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::.ctor()[OptimizedTier1] +00007FA12EF5E210 f instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeWriter::OnCompleted(class [System.Runtime]System.Action`1,object,int16,valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)[OptimizedTier1] +00007FA12EF5E230 11c instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe::OnFlushAsyncCompleted(class [System.Runtime]System.Action`1,object,valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)[OptimizedTier1] +00007FA12EF5E380 b7 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher::TimeFlushAsyncAwaited(valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1,class Microsoft.AspNetCore.Server.Kestrel.Core.MinDataRate,class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.IHttpOutputAborter,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF5E460 5 valuetype System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::Create()[OptimizedTier1] +00007FA12EF5E480 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::Start(!!0&)[OptimizedTier1] +00007FA12EF5E4A0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF5E600 77 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::StartTimingWrite()[OptimizedTier1] +00007FA12EF5E6A0 257 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF5E920 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::.ctor()[OptimizedTier1] +00007FA12EF5E940 8 instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.IO.Pipelines.FlushResult]::.ctor()[OptimizedTier1] +00007FA12EF5E960 ce instance valuetype System.Threading.Tasks.ValueTask`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.IO.Pipelines.FlushResult]::get_Task()[OptimizedTier1] +00007FA12EF5EA50 223 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF5ECA0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::.ctor()[OptimizedTier1] +00007FA12EF5ECC0 22d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF5EF10 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::.ctor()[OptimizedTier1] +00007FA12EF5EF30 231 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF5F190 97 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12EF5F240 93 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12EF5F2F0 ba instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12EF5F3D0 6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::ExecuteFromThreadPool(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF5F3F0 1ad instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF5F5C0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF5F5E0 c instance valuetype System.IO.Pipelines.FlushResult [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeWriter::GetResult(int16)[OptimizedTier1] +00007FA12EF5F600 1fb instance valuetype System.IO.Pipelines.FlushResult [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetFlushAsyncResult()[OptimizedTier1] +00007FA12EF5F850 15f instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter::CompleteFlushUnsynchronized(valuetype [System.IO.Pipelines]System.IO.Pipelines.FlushResult,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12EF5F9D0 3a instance void [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.IO.Pipelines.FlushResult]::SetResult(!0)[OptimizedTier1] +00007FA12EF5FA30 34 instance bool [System.Private.CoreLib] System.Threading.Tasks.TaskCompletionSource`1[System.IO.Pipelines.FlushResult]::TrySetResult(!0)[OptimizedTier1] +00007FA12EF5FA80 a5 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.ConcurrentPipeWriter+d__23]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12EF5FB40 6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::ExecuteFromThreadPool(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF5FB60 1c2 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF5FD50 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.IO.Pipelines.FlushResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.PipeWriterHelpers.TimingPipeFlusher+d__9]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF5FD70 77 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::StopTimingWrite()[OptimizedTier1] +00007FA12EF5FE10 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::MoveNext()[OptimizedTier1] +00007FA12EF5FE30 197 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF5FFF0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__42]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF60010 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::MoveNext()[OptimizedTier1] +00007FA12EF60030 19b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF601F0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__24]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF60210 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::MoveNext()[OptimizedTier1] +00007FA12EF60230 1a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF60400 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter+d__8]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF60420 8 instance class [Microsoft.AspNetCore.Http.Features]Microsoft.AspNetCore.Http.IHeaderDictionary [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.get_Headers()[OptimizedTier1] +00007FA12EF60440 14c instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpContent::LoadIntoBufferAsync(int64,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF605D0 11d instance bool [System.Net.Http] System.Net.Http.HttpContent::CreateTemporaryBuffer(int64,class [System.Runtime]System.IO.MemoryStream&,class [System.Runtime]System.Exception&)[OptimizedTier1] +00007FA12EF60710 17c void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::ParseSingleRawHeaderValue(class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo,valuetype System.Net.Http.Headers.HeaderDescriptor,string)[OptimizedTier1] +00007FA12EF608C0 377 bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::TryParseAndAddRawHeaderValue(valuetype System.Net.Http.Headers.HeaderDescriptor,class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo,string,bool)[OptimizedTier1] +00007FA12EF60C60 173 instance bool [System.Net.Http] System.Net.Http.Headers.BaseHeaderParser::TryParseValue(string,object,int32&,object&)[OptimizedTier1] +00007FA12EF60E00 198 string [System.Private.CoreLib] System.Number::UInt64ToDecStr(uint64)[OptimizedTier1] +00007FA12EF60FC0 a int32 [System.Private.CoreLib] System.Math::Min(int32,int32)[OptimizedTier1] +00007FA12EF60FE0 193 instance void [System.Private.CoreLib] System.Text.StringBuilder::.ctor(int32,int32)[OptimizedTier1] +00007FA12EF61190 f1 instance valuetype [System.Runtime]System.Threading.CancellationTokenRegistration [System.Net.Http] System.Net.Http.HttpConnection::RegisterCancellation(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF612A0 81 instance valuetype System.Threading.CancellationTokenRegistration [System.Private.CoreLib] System.Threading.CancellationToken::Register(class System.Action`1,object)[OptimizedTier1] +00007FA12EF61340 aa string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.HttpUtilities::GetRequestHeaderString(valuetype [System.Runtime]System.ReadOnlySpan`1,string,class [System.Runtime]System.Func`2,bool)[OptimizedTier1] +00007FA12EF61410 101 string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.StringUtilities::GetAsciiOrUTF8StringNonNullCharacters(valuetype [System.Runtime]System.ReadOnlySpan`1,class [System.Runtime]System.Text.Encoding)[OptimizedTier1] +00007FA12EF61550 33 void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.StringUtilities::GetAsciiStringNonNullCharactersWithMarker(valuetype [System.Runtime]System.Span`1,native int)[OptimizedTier1] +00007FA12EFCA270 6f0 stub<20548> AllocateTemporaryEntryPoints +00007FA12EFCA960 78 stub<20549> AllocateTemporaryEntryPoints +00007FA12EFCA9D8 a8 stub<20550> AllocateTemporaryEntryPoints +00007FA12EFCAA80 18 stub<20551> AllocateTemporaryEntryPoints +00007FA12EFCAA98 18 stub<20552> AllocateTemporaryEntryPoints +00007FA12EFCAAB0 18 stub<20553> AllocateTemporaryEntryPoints +00007FA12EF615A0 1b instance bool [System.Diagnostics.DiagnosticSource] System.Diagnostics.ActivitySource::HasListeners()[OptimizedTier1] +00007FA12EF615D0 e instance valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::Microsoft.AspNetCore.Http.IHeaderDictionary.get_Host()[OptimizedTier1] +00007FA12EF615F0 1a instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.get_Scheme()[OptimizedTier1] +00007FA12EF61620 10 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::get_TracesKeepRate()[OptimizedTier1] +00007FA12EF61650 3 instance int32 [System.Private.CoreLib] System.Int32::GetHashCode()[OptimizedTier1] +00007FA12EF61670 29 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask::.ctor(class System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12EFCAAC8 18 stub<20554> AllocateTemporaryEntryPoints +00007FA12EFCAAE0 240 stub<20555> AllocateTemporaryEntryPoints +00007FA12EFCAD20 18 stub<20556> AllocateTemporaryEntryPoints +00007FA12EFCAD38 288 stub<20557> AllocateTemporaryEntryPoints +00007FA12EFCAFC0 18 stub<20558> AllocateTemporaryEntryPoints +00007FA12EFCAFD8 18 stub<20559> AllocateTemporaryEntryPoints +00007FA12EF616B0 2c valuetype System.Memory`1 [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::AsMemory(valuetype System.ReadOnlyMemory`1)[OptimizedTier1] +00007FA12EFCC000 18 stub<20560> AllocateTemporaryEntryPoints +00007FA12EFCC018 18 stub<20561> AllocateTemporaryEntryPoints +00007FA12EF61700 244 instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::SendToAsync(valuetype [System.Runtime]System.Memory`1,int32,int32,valuetype System.Net.Sockets.SocketFlags,uint8[],int32&,int32&,class [System.Runtime]System.Action`5,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF61980 f4 valuetype Interop/Error [System.Net.Sockets] Interop+Sys::Send(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,uint8*,int32,valuetype System.Net.Sockets.SocketFlags,int32*)[OptimizedTier1] +00007FA12EF61AA0 8d instance valuetype [System.Runtime]System.Nullable`1> [System.Net.Http] System.Net.Http.HttpConnection::ConsumeReadAheadTask()[OptimizedTier1] +00007FA12EF61B60 111 instance int32 [System.Private.CoreLib] System.IO.MemoryStream::Read(uint8[],int32,int32)[OptimizedTier1] +00007FA12EF61C90 5 instance class Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::GetNameTable()[OptimizedTier1] +00007FA12EF61CB0 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DateParseHandling]::get_HasValue()[OptimizedTier1] +00007FA12EF61CD0 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.FloatParseHandling]::get_HasValue()[OptimizedTier1] +00007FA12EF61CF0 e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::set_PropertyNameTable(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonNameTable)[OptimizedTier1] +00007FA12EF61D10 e class System.Text.Encoding [System.Private.CoreLib] System.Text.Encoding::get_UTF8()[OptimizedTier1] +00007FA12EF61D30 4 valuetype Microsoft.Extensions.Primitives.StringValues [Microsoft.Extensions.Primitives] Microsoft.Extensions.Primitives.StringValues::op_Implicit(string)[OptimizedTier1] +00007FA12EF61D50 4b instance string [Microsoft.Extensions.Primitives] Microsoft.Extensions.Primitives.StringValues::get_Item(int32)[OptimizedTier1] +00007FA12EF61DB0 7c instance int32 [System.Private.CoreLib] System.Text.ASCIIEncoding::GetBytes(valuetype System.ReadOnlySpan`1,valuetype System.Span`1)[OptimizedTier1] +00007FA12EF61E50 18 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::op_Implicit(!0[])[OptimizedTier1] +00007FA12EF61E80 d instance bool [System.Private.CoreLib] System.Threading.ManualResetEventSlim::get_IsSet()[OptimizedTier1] +00007FA12EF61EA0 bd instance void [System.Private.CoreLib] System.IO.MemoryStream::.ctor(int32)[OptimizedTier1] +00007FA12EFCC030 d8 stub<20562> AllocateTemporaryEntryPoints +00007FA12EFCC108 18 stub<20563> AllocateTemporaryEntryPoints +00007FA12E673020 18 stub<20564> GenerateLookupStub +00007FA12E673040 18 stub<20565> GenerateLookupStub +00007FA12E673060 18 stub<20566> GenerateLookupStub +00007FA12E673080 18 stub<20567> GenerateLookupStub +00007FA12E6730A0 18 stub<20568> GenerateLookupStub +00007FA12E6730C0 18 stub<20569> GenerateLookupStub +00007FA12E6730E0 18 stub<20570> GenerateLookupStub +00007FA12EFCC120 60 stub<20571> AllocateTemporaryEntryPoints +00007FA12EF61F80 131f instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::Next(valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/State&,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/Scope&,object&,bool&)[OptimizedTier1] +00007FA12EF63380 5 instance bool [Datadog.Trace] Datadog.Trace.Span::get_IsFinished()[OptimizedTier1] +00007FA12EF633A0 4a instance bool [System.Private.CoreLib] System.Threading.AsyncLocalValueMap+TwoElementAsyncLocalValueMap::TryGetValue(class System.Threading.IAsyncLocal,object&)[OptimizedTier1] +00007FA12EF63400 5 instance string [Datadog.Trace] Datadog.Trace.TraceContext::get_Origin()[OptimizedTier1] +00007FA12EF63420 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpMethod()[OptimizedTier1] +00007FA12EF63440 ad instance valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[] [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::ToArray()[OptimizedTier1] +00007FA12EF63520 8a9 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool::ReturnHttp11Connection(class System.Net.Http.HttpConnection,bool,class System.Net.Http.HttpConnectionPool/HttpConnectionWaiter`1)[OptimizedTier1] +00007FA12EFCC180 18 stub<20572> AllocateTemporaryEntryPoints +00007FA12EFCC198 18 stub<20573> AllocateTemporaryEntryPoints +00007FA12EF63E10 4b instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource::Dispose()[OptimizedTier1] +00007FA12EFCC1B0 18 stub<20574> AllocateTemporaryEntryPoints +00007FA12EFCC1C8 18 stub<20575> AllocateTemporaryEntryPoints +00007FA12EF63E80 95 instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource::Dispose(bool)[OptimizedTier1] +00007FA12EF63F40 6c uint64 [Datadog.Trace] Datadog.Trace.Util.SpanIdGenerator::CreateNew()[OptimizedTier1] +00007FA12EF63FD0 1c instance valuetype System.Buffers.ReadOnlySequence`1 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Sequence()[OptimizedTier1] +00007FA12E673100 18 stub<20576> GenerateLookupStub +00007FA12EF64000 a3 instance class [Microsoft.AspNetCore.Http.Features]Microsoft.AspNetCore.Http.IHeaderDictionary [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_Headers()[OptimizedTier1] +00007FA12EF640D0 b instance string [System.Private.CoreLib] System.String::Trim()[OptimizedTier1] +00007FA12EF64100 172 instance string [System.Private.CoreLib] System.String::TrimWhiteSpaceHelper(valuetype System.Text.TrimType)[OptimizedTier1] +00007FA12EF642A0 1b instance !0& modreq(System.Runtime.InteropServices.InAttribute) [System.Private.CoreLib] System.ReadOnlySpan`1[System.Char]::get_Item(int32)[OptimizedTier1] +00007FA12EF642D0 90 instance void [Datadog.Trace] Datadog.Trace.SpanContext::.ctor(valuetype [System.Runtime]System.Nullable`1,string)[OptimizedTier1] +00007FA12EF64380 b instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_ServiceName(string)[OptimizedTier1] +00007FA12EF643A0 8 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_RouteTemplateResourceNamesEnabled()[OptimizedTier1] +00007FA12EF643C0 b instance void [Datadog.Trace] Datadog.Trace.Span::set_ResourceName(string)[OptimizedTier1] +00007FA12EF643E0 47 class Datadog.Trace.Iast.Iast [Datadog.Trace] Datadog.Trace.Iast.Iast::get_Instance()[OptimizedTier1] +00007FA12EF64440 5 instance class Datadog.Trace.Iast.Settings.IastSettings [Datadog.Trace] Datadog.Trace.Iast.Iast::get_Settings()[OptimizedTier1] +00007FA12EF64460 5 instance bool [Datadog.Trace] Datadog.Trace.Iast.Settings.IastSettings::get_Enabled()[OptimizedTier1] +00007FA12EFCC1E0 18 stub<20577> AllocateTemporaryEntryPoints +00007FA12EFCC1F8 18 stub<20578> AllocateTemporaryEntryPoints +00007FA12EFCC210 18 stub<20579> AllocateTemporaryEntryPoints +00007FA12EFCC228 18 stub<20580> AllocateTemporaryEntryPoints +00007FA12EFCC240 18 stub<20581> AllocateTemporaryEntryPoints +00007FA12EFCC258 18 stub<20582> AllocateTemporaryEntryPoints +00007FA12EFCC270 18 stub<20583> AllocateTemporaryEntryPoints +00007FA12EFCC288 18 stub<20584> AllocateTemporaryEntryPoints +00007FA12EFCC2A0 18 stub<20585> AllocateTemporaryEntryPoints +00007FA12EFCC2B8 18 stub<20586> AllocateTemporaryEntryPoints +00007FA12EFCC2D0 18 stub<20587> AllocateTemporaryEntryPoints +00007FA12EFCC2E8 18 stub<20588> AllocateTemporaryEntryPoints +00007FA12EFCC300 18 stub<20589> AllocateTemporaryEntryPoints +00007FA12EFCC318 18 stub<20590> AllocateTemporaryEntryPoints +00007FA12EFCC330 18 stub<20591> AllocateTemporaryEntryPoints +00007FA12EFCC348 18 stub<20592> AllocateTemporaryEntryPoints +00007FA12EFCC360 18 stub<20593> AllocateTemporaryEntryPoints +00007FA12EFCC378 18 stub<20594> AllocateTemporaryEntryPoints +00007FA12EFCC390 18 stub<20595> AllocateTemporaryEntryPoints +00007FA12EFCC3A8 18 stub<20596> AllocateTemporaryEntryPoints +00007FA12EFCC3C0 18 stub<20597> AllocateTemporaryEntryPoints +00007FA12EFCC3D8 18 stub<20598> AllocateTemporaryEntryPoints +00007FA12EFCC3F0 18 stub<20599> AllocateTemporaryEntryPoints +00007FA12EFCC408 18 stub<20600> AllocateTemporaryEntryPoints +00007FA12EFCC420 18 stub<20601> AllocateTemporaryEntryPoints +00007FA12EF64480 1c3 instance !!0 [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Connections.TransportConnection::Microsoft.AspNetCore.Http.Features.IFeatureCollection.Get()[OptimizedTier1] +00007FA12EF64660 a6 instance object [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Connections.TransportConnection::ExtraFeatureGet(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EFCC438 18 stub<20602> AllocateTemporaryEntryPoints +00007FA12EFCC450 18 stub<20603> AllocateTemporaryEntryPoints +00007FA12EFCC468 18 stub<20604> AllocateTemporaryEntryPoints +00007FA12EFCC480 18 stub<20605> AllocateTemporaryEntryPoints +00007FA12EFCC498 18 stub<20606> AllocateTemporaryEntryPoints +00007FA12EFCC4B0 18 stub<20607> AllocateTemporaryEntryPoints +00007FA12EFCC4C8 18 stub<20608> AllocateTemporaryEntryPoints +00007FA12EFCC4E0 18 stub<20609> AllocateTemporaryEntryPoints +00007FA12EFCC4F8 18 stub<20610> AllocateTemporaryEntryPoints +00007FA12EFCC510 18 stub<20611> AllocateTemporaryEntryPoints +00007FA12EFCC528 18 stub<20612> AllocateTemporaryEntryPoints +00007FA12EFCC540 18 stub<20613> AllocateTemporaryEntryPoints +00007FA12EFCC558 18 stub<20614> AllocateTemporaryEntryPoints +00007FA12EFCC570 18 stub<20615> AllocateTemporaryEntryPoints +00007FA12EFCC588 18 stub<20616> AllocateTemporaryEntryPoints +00007FA12EFCC5A0 18 stub<20617> AllocateTemporaryEntryPoints +00007FA12EFCC5B8 18 stub<20618> AllocateTemporaryEntryPoints +00007FA12EFCC5D0 18 stub<20619> AllocateTemporaryEntryPoints +00007FA12EFCC5E8 18 stub<20620> AllocateTemporaryEntryPoints +00007FA12EFCC600 18 stub<20621> AllocateTemporaryEntryPoints +00007FA12EFCC618 18 stub<20622> AllocateTemporaryEntryPoints +00007FA12EFCC630 18 stub<20623> AllocateTemporaryEntryPoints +00007FA12EFCC648 18 stub<20624> AllocateTemporaryEntryPoints +00007FA12EFCC660 18 stub<20625> AllocateTemporaryEntryPoints +00007FA12EFCC678 18 stub<20626> AllocateTemporaryEntryPoints +00007FA12EFCC690 18 stub<20627> AllocateTemporaryEntryPoints +00007FA12EFCC6A8 18 stub<20628> AllocateTemporaryEntryPoints +00007FA12EFCC6C0 18 stub<20629> AllocateTemporaryEntryPoints +00007FA12EFCC6D8 18 stub<20630> AllocateTemporaryEntryPoints +00007FA12EFCC6F0 18 stub<20631> AllocateTemporaryEntryPoints +00007FA12EFCC708 18 stub<20632> AllocateTemporaryEntryPoints +00007FA12EFCC720 18 stub<20633> AllocateTemporaryEntryPoints +00007FA12EFCC738 18 stub<20634> AllocateTemporaryEntryPoints +00007FA12EFCC750 18 stub<20635> AllocateTemporaryEntryPoints +00007FA12EFCC768 18 stub<20636> AllocateTemporaryEntryPoints +00007FA12EFCC780 18 stub<20637> AllocateTemporaryEntryPoints +00007FA12EFCC798 18 stub<20638> AllocateTemporaryEntryPoints +00007FA12EFCC7B0 18 stub<20639> AllocateTemporaryEntryPoints +00007FA12EFCC7C8 18 stub<20640> AllocateTemporaryEntryPoints +00007FA12EFCC7E0 18 stub<20641> AllocateTemporaryEntryPoints +00007FA12EFCC7F8 18 stub<20642> AllocateTemporaryEntryPoints +00007FA12EFCC810 18 stub<20643> AllocateTemporaryEntryPoints +00007FA12EFCC828 18 stub<20644> AllocateTemporaryEntryPoints +00007FA12EFCC840 18 stub<20645> AllocateTemporaryEntryPoints +00007FA12EFCC858 18 stub<20646> AllocateTemporaryEntryPoints +00007FA12EFCC870 18 stub<20647> AllocateTemporaryEntryPoints +00007FA12EFCC888 18 stub<20648> AllocateTemporaryEntryPoints +00007FA12EFCC8A0 18 stub<20649> AllocateTemporaryEntryPoints +00007FA12EFCC8B8 18 stub<20650> AllocateTemporaryEntryPoints +00007FA12EFCC8D0 18 stub<20651> AllocateTemporaryEntryPoints +00007FA12EFCC8E8 18 stub<20652> AllocateTemporaryEntryPoints +00007FA12EFCC900 18 stub<20653> AllocateTemporaryEntryPoints +00007FA12EFCC918 18 stub<20654> AllocateTemporaryEntryPoints +00007FA12EFCC930 18 stub<20655> AllocateTemporaryEntryPoints +00007FA12EFCC948 18 stub<20656> AllocateTemporaryEntryPoints +00007FA12EFCC960 18 stub<20657> AllocateTemporaryEntryPoints +00007FA12EFCC978 18 stub<20658> AllocateTemporaryEntryPoints +00007FA12EFCC990 18 stub<20659> AllocateTemporaryEntryPoints +00007FA12EFCC9A8 18 stub<20660> AllocateTemporaryEntryPoints +00007FA12EFCC9C0 18 stub<20661> AllocateTemporaryEntryPoints +00007FA12EFCC9D8 18 stub<20662> AllocateTemporaryEntryPoints +00007FA12EFCC9F0 18 stub<20663> AllocateTemporaryEntryPoints +00007FA12EFCCA08 18 stub<20664> AllocateTemporaryEntryPoints +00007FA12EFCCA20 18 stub<20665> AllocateTemporaryEntryPoints +00007FA12EFCCA38 18 stub<20666> AllocateTemporaryEntryPoints +00007FA12EFCCA50 18 stub<20667> AllocateTemporaryEntryPoints +00007FA12EFCCA68 18 stub<20668> AllocateTemporaryEntryPoints +00007FA12EF64730 4b9 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IFeatureCollection.Set(!!0)[OptimizedTier1] +00007FA12EF64C10 4 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::set_Revision(int32)[OptimizedTier1] +00007FA12EF64C30 52 instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.get_Method()[OptimizedTier1] +00007FA12EF64CA0 6 int32 [System.Private.CoreLib] System.Environment::get_ProcessorCount()[OptimizedTier1] +00007FA12EF64CC0 186 instance object [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueue+WorkStealingQueue::TrySteal(bool&)[OptimizedTier1] +00007FA12EF64E70 7e instance void [System.Private.CoreLib] System.Threading.ManualResetEventSlim::ThrowIfDisposed()[OptimizedTier1] +00007FA12EF64F10 359 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF65290 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::MoveNext()[OptimizedTier1] +00007FA12EF652B0 1e0 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF654B0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__84]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF654D0 323 instance void [System.Net.Http] System.Net.Http.HttpConnectionResponseContent+<g__Impl|6_0>d::MoveNext()[OptimizedTier1] +00007FA12EF65840 2d8 instance void [System.Net.Http] System.Net.Http.HttpContent+d__63::MoveNext()[OptimizedTier1] +00007FA12EF65B70 105 instance void [System.Private.CoreLib] System.IO.StreamReader::Dispose(bool)[OptimizedTier1] +00007FA12EF65CA0 2c instance bool [System.Net.Http] System.Net.Http.HttpConnection::CheckKeepAliveTimeoutExceeded()[OptimizedTier1] +00007FA12EF65CE0 34 instance !0 [System.Private.CoreLib] System.Nullable`1[System.Threading.Tasks.ValueTask`1[System.Int32]]::get_Value()[OptimizedTier1] +00007FA1277CD6E0 20 stub<20669> GenerateDispatchStub +00007FA12EF65D30 2ef class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF66040 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::MoveNext()[OptimizedTier1] +00007FA12EF66060 21d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF662A0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpClient+<g__Core|83_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF662C0 220 instance int64 [System.Private.CoreLib] System.IO.MemoryStream::Seek(int64,valuetype System.IO.SeekOrigin)[OptimizedTier1] +00007FA12EF66510 8 instance int32 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::get_StatusCode()[OptimizedTier1] +00007FA12EF66530 1f2 instance void [System.Net.Http] System.Net.Http.HttpContent::Dispose(bool)[OptimizedTier1] +00007FA12EF66740 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__44]::MoveNext()[OptimizedTier1] +00007FA12EF66760 1ad instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__44]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF66930 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__44]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF66960 5c3 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+d__44::MoveNext()[OptimizedTier1] +00007FA12EF66F80 3d2 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+d__45::MoveNext()[OptimizedTier1] +00007FA12EF673A0 524 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+d__46::MoveNext()[OptimizedTier1] +00007FA12EF67920 62d instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d::MoveNext()[OptimizedTier1] +00007FA12EF67FD0 23b class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF68230 4e instance object [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer::get_Model()[OptimizedTier1] +00007FA12E673120 18 stub<20670> GenerateLookupStub +00007FA12E673140 18 stub<20671> GenerateLookupStub +00007FA12EFCCA80 18 stub<20672> AllocateTemporaryEntryPoints +00007FA12EFCCA98 18 stub<20673> AllocateTemporaryEntryPoints +00007FA12EFCCAB0 18 stub<20674> AllocateTemporaryEntryPoints +00007FA12EFCCAC8 18 stub<20675> AllocateTemporaryEntryPoints +00007FA12EFCCAE0 18 stub<20676> AllocateTemporaryEntryPoints +00007FA12E673160 18 stub<20677> GenerateLookupStub +00007FA12EFCCAF8 18 stub<20678> AllocateTemporaryEntryPoints +00007FA12EFCCB10 18 stub<20679> AllocateTemporaryEntryPoints +00007FA12EFCCB28 48 stub<20680> AllocateTemporaryEntryPoints +00007FA12EF682A0 9b7 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::ResultNext(valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/State&,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/Scope&,object&,bool&)[OptimizedTier1] +00007FA1277CD700 20 stub<20681> GenerateDispatchStub +00007FA12EF68CA0 261 string [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.NormalizedRouteValue::GetNormalizedRouteValue(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,string)[OptimizedTier1] +00007FA12EF68F30 95 instance valuetype [System.Runtime]System.TimeSpan [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.ValueStopwatch::GetElapsedTime()[OptimizedTier1] +00007FA12EF68FF0 8 instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary`1 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage`1[System.__Canon]::get_ViewData()[OptimizedTier1] +00007FA12EF69010 5 instance string [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::get_Layout()[OptimizedTier1] +00007FA12EF69030 4f instance void [System.Private.CoreLib] System.HashCode::Add(!!0)[OptimizedTier1] +00007FA12EF690A0 44 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList::.ctor()[OptimizedTier1] +00007FA12EF69100 17 instance string [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlString::ToString()[OptimizedTier1] +00007FA12E673180 18 stub<20682> GenerateLookupStub +00007FA12EF69130 201 instance bool [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::TryResolveUrl(string,class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContent&)[OptimizedTier1] +00007FA12EF69360 3f instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper+EncodeFirstSegmentContent::WriteTo(class [System.Runtime]System.IO.TextWriter,class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder)[OptimizedTier1] +00007FA12EF693C0 e9 instance void [System.Private.CoreLib] System.IO.TextWriter::Write(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF694F0 5a instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter::Write(char[],int32,int32)[OptimizedTier1] +00007FA12EF69580 6c instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedCharBuffer::Append(char[],int32,int32)[OptimizedTier1] +00007FA12EF69610 5e instance bool [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::TryPop(!0&)[OptimizedTier1] +00007FA12EF69690 23 instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ActionContext::.ctor(class Microsoft.AspNetCore.Mvc.ActionContext)[OptimizedTier1] +00007FA12EF696D0 5 instance string [Datadog.Trace] Datadog.Trace.Span::get_OperationName()[OptimizedTier1] +00007FA12EF696F0 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12EF69710 92 instance int32 [System.Private.CoreLib] System.Text.UTF8Encoding::GetBytes(valuetype System.ReadOnlySpan`1,valuetype System.Span`1)[OptimizedTier1] +00007FA12EF697D0 c instance valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.__Canon]::get_Current()[OptimizedTier1] +00007FA12EF697F0 5 instance !1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection+Enumerator[System.__Canon,System.__Canon]::get_Current()[OptimizedTier1] +00007FA12EF69810 5 instance class Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Path()[OptimizedTier1] +00007FA12EF69830 93 instance void [System.Private.Uri] System.Text.ValueStringBuilder::AppendSlow(string)[OptimizedTier1] +00007FA12EF698F0 39 instance void [System.Private.CoreLib] System.String::CopyTo(valuetype System.Span`1)[OptimizedTier1] +00007FA12EF69940 1a4 instance void [System.Private.CoreLib] System.IO.StringWriter::Write(char[],int32,int32)[OptimizedTier1] +00007FA12EF69B00 3a9 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeList(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,class [System.Runtime]System.Collections.IEnumerable,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EF69F20 1a2 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteStartArray(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonArrayContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EF6A0F0 4d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteStartArray()[OptimizedTier1] +00007FA12EF6A160 14 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValueInternal(string,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.JsonToken)[OptimizedTier1] +00007FA12EF6A1A0 c3 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteNumberToBuffer(uint32,bool)[OptimizedTier1] +00007FA12EF6A280 193 int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.MathUtils::IntLength(uint64)[OptimizedTier1] +00007FA12EF6A430 5 instance class System.Net.IPAddress [System.Net.Primitives] System.Net.IPEndPoint::get_Address()[OptimizedTier1] +00007FA12EF6A450 13 instance valuetype System.Net.Sockets.AddressFamily [System.Net.Primitives] System.Net.IPAddress::get_AddressFamily()[OptimizedTier1] +00007FA12EF6A480 42 instance bool [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::get_CanComputeStats()[OptimizedTier1] +00007FA12EF6A4E0 12 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Agent.NullStatsAggregator::get_CanComputeStats()[OptimizedTier1] +00007FA12EF6A510 8 instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::get_InstrumentationName()[OptimizedTier1] +00007FA12EF6A530 8 instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::get_AspNetCoreRoute()[OptimizedTier1] +00007FA12EF6A550 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpStatusCode()[OptimizedTier1] +00007FA12EF6A570 18 valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.Byte]::op_Implicit(!0[])[OptimizedTier1] +00007FA12EF6A5A0 2a instance bool [System.Private.CoreLib] System.WeakReference`1[System.__Canon]::TryGetTarget(!0&)[OptimizedTier1] +00007FA12EF6A600 153 string [System.Private.CoreLib] System.Number::UInt64ToDecStr(uint64,int32)[OptimizedTier1] +00007FA12EF6A770 3a void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.HttpUtilities::GetHeaderName(valuetype [System.Runtime]System.Span`1,native int)[OptimizedTier1] +00007FA12EF6A7C0 7f instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::AppendUnknownHeaders(string,string)[OptimizedTier1] +00007FA12EF6A860 59 string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpHeaders::GetInternedHeaderName(string)[OptimizedTier1] +00007FA12EF6A8E0 59 instance bool [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::TryGetValue(!0,!0&)[OptimizedTier1] +00007FA12EF6A960 28 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EF6A9A0 251 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::FindValue(!0)[OptimizedTier1] +00007FA12EFCCB88 108 stub<20683> AllocateTemporaryEntryPoints +00007FA12EF6AC20 a6 valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpHeaders::AppendValue(valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues,string)[OptimizedTier1] +00007FA12EF6ACF0 b0 valuetype Microsoft.Extensions.Primitives.StringValues [Microsoft.Extensions.Primitives] Microsoft.Extensions.Primitives.StringValues::Concat(valuetype Microsoft.Extensions.Primitives.StringValues&,string)[OptimizedTier1] +00007FA12EF6ADC0 12 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::set_Item(!0,!1)[OptimizedTier1] +00007FA12EF6AE00 47e instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,Microsoft.Extensions.Primitives.StringValues]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12E6731A0 18 stub<20684> GenerateLookupStub +00007FA12EF6B2A0 101 instance valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HostString [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_Host()[OptimizedTier1] +00007FA12EF6B3D0 14d valuetype Microsoft.AspNetCore.Http.HostString [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.HostString::FromUriComponent(string)[OptimizedTier1] +00007FA12EF6B540 1e instance bool [System.Private.CoreLib] System.String::Contains(char)[OptimizedTier1] +00007FA12EF6B580 19 instance bool [System.Private.CoreLib] System.String::Contains(string,valuetype System.StringComparison)[OptimizedTier1] +00007FA12EF6B5B0 153 instance int32 [System.Private.CoreLib] System.String::IndexOf(string,int32,int32,valuetype System.StringComparison)[OptimizedTier1] +00007FA12EFCCC90 18 stub<20685> AllocateTemporaryEntryPoints +00007FA12EFCCCA8 18 stub<20686> AllocateTemporaryEntryPoints +00007FA12EFCCCC0 18 stub<20687> AllocateTemporaryEntryPoints +00007FA12EFCCCD8 18 stub<20688> AllocateTemporaryEntryPoints +00007FA12EFCCCF0 18 stub<20689> AllocateTemporaryEntryPoints +00007FA12EFCCD08 18 stub<20690> AllocateTemporaryEntryPoints +00007FA12EFCCD20 18 stub<20691> AllocateTemporaryEntryPoints +00007FA12EF6B740 b0 int32 [System.Private.CoreLib] System.Globalization.Ordinal::IndexOf(string,string,int32,int32,bool)[OptimizedTier1] +00007FA12EF6B820 39b int32 [System.Private.CoreLib] System.SpanHelpers::IndexOf(char&,int32,char&,int32)[OptimizedTier1] +00007FA12EF6BC00 4 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.HostString::get_Value()[OptimizedTier1] +00007FA12EF6BC20 4d instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Add(!0)[OptimizedTier1] +00007FA12EF6BC90 79 instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpClient::SendAsync(class System.Net.Http.HttpRequestMessage,valuetype System.Net.Http.HttpCompletionOption,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6BD30 6a instance void [System.Net.Http] System.Net.Http.HttpClient::CheckRequestBeforeSend(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12EF6BDC0 69 void [System.Net.Http] System.Net.Http.HttpClient::CheckRequestMessage(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12EF6BE50 164 instance void [System.Net.Http] System.Net.Http.HttpClient::PrepareRequestMessage(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12EF6BFD0 114 instance valuetype [System.Runtime]System.ValueTuple`3 [System.Net.Http] System.Net.Http.HttpClient::PrepareCancellationTokenSource(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6C110 8c class System.Threading.CancellationTokenSource [System.Private.CoreLib] System.Threading.CancellationTokenSource::CreateLinkedTokenSource(valuetype System.Threading.CancellationToken,valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6C1C0 6e instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource::CancelAfter(valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF6C270 149 instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource::CancelAfter(uint32)[OptimizedTier1] +00007FA12EF6C3E0 30 instance void [System.Private.CoreLib] System.ValueTuple`3[System.__Canon,System.Boolean,System.__Canon]::.ctor(!0,!1,!2)[OptimizedTier1] +00007FA12EF6C430 95 instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpClient::g__Core|83_0(class System.Net.Http.HttpRequestMessage,valuetype System.Net.Http.HttpCompletionOption,class [System.Runtime]System.Threading.CancellationTokenSource,bool,class [System.Runtime]System.Threading.CancellationTokenSource,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6C4E0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12EF6C500 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF6C660 3e bool [System.Net.Http] System.Net.Http.HttpClient::StartSend(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12EF6C6C0 3a bool [System.Net.Http] System.Net.Http.HttpMessageInvoker::ShouldSendWithTelemetry(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12EFCCD38 78 stub<20692> AllocateTemporaryEntryPoints +00007FA12E6731C0 18 stub<20693> GenerateLookupStub +00007FA12EF6C710 e75 instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpClientHandler::SendAsync(class System.Net.Http.HttpRequestMessage,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6D630 5 instance class System.Net.Http.HttpMessageHandler [System.Net.Http] System.Net.Http.HttpClientHandler::get_Handler()[OptimizedTier1] +00007FA12EF6D650 14b9 instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.SocketsHttpHandler::SendAsync(class System.Net.Http.HttpRequestMessage,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6EBC0 438 class [System.Runtime]System.Exception [System.Net.Http] System.Net.Http.SocketsHttpHandler::ValidateAndNormalizeRequest(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12EF6F020 5c bool [System.Net.Http] System.Net.Http.HttpUtilities::IsSupportedNonSecureScheme(string)[OptimizedTier1] +00007FA12EF6F090 81 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.RedirectHandler::SendAsync(class System.Net.Http.HttpRequestMessage,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6F130 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12EF6F150 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EFCCDB0 60 stub<20694> AllocateTemporaryEntryPoints +00007FA12EFCCE10 18 stub<20695> AllocateTemporaryEntryPoints +00007FA12EFCCE28 18 stub<20696> AllocateTemporaryEntryPoints +00007FA12EF6F2B0 110 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.DiagnosticsHandler::SendAsync(class System.Net.Http.HttpRequestMessage,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6F3E0 121 bool [System.Net.Http] System.Net.Http.DiagnosticsHandler::IsEnabled()[OptimizedTier1] +00007FA12EF6F520 c0 class System.Diagnostics.Activity [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::get_Current()[OptimizedTier1] +00007FA12EF6F600 15 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionHandler::SendAsync(class System.Net.Http.HttpRequestMessage,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EFCCE40 18 stub<20697> AllocateTemporaryEntryPoints +00007FA12E6731E0 18 stub<20698> GenerateLookupStub +00007FA12E673200 18 stub<20699> GenerateLookupStub +00007FA12E673220 18 stub<20700> GenerateLookupStub +00007FA12EFCCE58 60 stub<20701> AllocateTemporaryEntryPoints +00007FA12EFCCEB8 18 stub<20702> AllocateTemporaryEntryPoints +00007FA12EFCCED0 18 stub<20703> AllocateTemporaryEntryPoints +00007FA12EF6F630 373 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPoolManager::SendAsync(class System.Net.Http.HttpRequestMessage,bool,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF6F9E0 6 instance bool [System.Net.Http] System.Net.Http.HttpNoProxy::IsBypassed(class [System.Runtime]System.Uri)[OptimizedTier1] +00007FA12EF6FA00 336 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPoolManager::SendAsyncCore(class System.Net.Http.HttpRequestMessage,class [System.Runtime]System.Uri,bool,bool,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EFCCEE8 18 stub<20704> AllocateTemporaryEntryPoints +00007FA12EF6FD80 503 instance valuetype System.Net.Http.HttpConnectionPoolManager/HttpConnectionKey [System.Net.Http] System.Net.Http.HttpConnectionPoolManager::GetConnectionKey(class System.Net.Http.HttpRequestMessage,class [System.Runtime]System.Uri,bool)[OptimizedTier1] +00007FA12EF702B0 6a bool [System.Net.Http] System.Net.Http.HttpUtilities::IsSupportedSecureScheme(string)[OptimizedTier1] +00007FA12EF70330 20c instance string [System.Private.Uri] System.Uri::get_IdnHost()[OptimizedTier1] +00007FA12EF70560 55 instance void [System.Net.Http] System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey::.ctor(valuetype System.Net.Http.HttpConnectionKind,string,int32,string,class [System.Runtime]System.Uri,string)[OptimizedTier1] +00007FA12EF705E0 461 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EF70A70 99 instance int32 [System.Net.Http] System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey::GetHashCode()[OptimizedTier1] +00007FA12EF70B30 142 int32 [System.Private.CoreLib] System.HashCode::Combine(!!0,!!1,!!2,!!3,!!4,!!5)[OptimizedTier1] +00007FA12EF70CA0 4 instance int32 [System.Private.CoreLib] System.Byte::GetHashCode()[OptimizedTier1] +00007FA12EF70CC0 19 void [System.Private.CoreLib] System.HashCode::Initialize(uint32&,uint32&,uint32&,uint32&)[OptimizedTier1] +00007FA12EF70CF0 13 uint32 [System.Private.CoreLib] System.HashCode::MixState(uint32,uint32,uint32,uint32)[OptimizedTier1] +00007FA12EF70D20 24 uint32 [System.Private.CoreLib] System.HashCode::MixFinal(uint32)[OptimizedTier1] +00007FA12EF70D60 74 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::GetBucket(int32)[OptimizedTier1] +00007FA12EF70DF0 e class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey]::get_Default()[OptimizedTier1] +00007FA12EFCCF00 60 stub<20705> AllocateTemporaryEntryPoints +00007FA12EFCCF60 18 stub<20706> AllocateTemporaryEntryPoints +00007FA12EFCCF78 18 stub<20707> AllocateTemporaryEntryPoints +00007FA12EFCCF90 18 stub<20708> AllocateTemporaryEntryPoints +00007FA12EF70E10 22a instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPool::SendAsync(class System.Net.Http.HttpRequestMessage,bool,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF71060 88 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPool::SendWithProxyAuthAsync(class System.Net.Http.HttpRequestMessage,bool,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF71100 b1 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPool::SendWithVersionDetectionAndRetryAsync(class System.Net.Http.HttpRequestMessage,bool,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF711D0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12EF711F0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF71350 6 bool [System.Net.Http] System.Net.Http.HttpConnectionPool::IsHttp3Supported()[OptimizedTier1] +00007FA12EFCCFA8 18 stub<20709> AllocateTemporaryEntryPoints +00007FA12EFCE000 60 stub<20710> AllocateTemporaryEntryPoints +00007FA12EFCE060 60 stub<20711> AllocateTemporaryEntryPoints +00007FA12EF71380 38a instance bool [System.Net.Http] System.Net.Http.HttpConnectionPool::TryGetPooledHttp11Connection(class System.Net.Http.HttpRequestMessage,bool,class System.Net.Http.HttpConnection&,class System.Net.Http.HttpConnectionPool/HttpConnectionWaiter`1&)[OptimizedTier1] +00007FA12EF71740 36 instance void [System.Private.CoreLib] System.Memory`1[System.Byte]::.ctor(!0[])[OptimizedTier1] +00007FA12EF71790 92 instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpConnection::SendAsyncCore(class System.Net.Http.HttpRequestMessage,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF71840 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12EF71860 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF719C0 161 class System.Net.Http.HttpMethod [System.Net.Http] System.Net.Http.HttpMethod::Normalize(class System.Net.Http.HttpMethod)[OptimizedTier1] +00007FA12EF71B60 df instance string [System.Private.Uri] System.Uri::get_PathAndQuery()[OptimizedTier1] +00007FA12EFCE0C0 48 stub<20712> AllocateTemporaryEntryPoints +00007FA12EF71C60 44 instance string [System.Net.Primitives] System.Net.CookieContainer::GetCookieHeader(class [System.Runtime]System.Uri)[OptimizedTier1] +00007FA12EFCE108 528 stub<20713> AllocateTemporaryEntryPoints +00007FA12EF71CC0 123 instance string [System.Net.Primitives] System.Net.CookieContainer::GetCookieHeader(class [System.Runtime]System.Uri,string&)[OptimizedTier1] +00007FA12EF71E20 3c9 instance class System.Net.CookieCollection [System.Net.Primitives] System.Net.CookieContainer::InternalGetCookies(class [System.Runtime]System.Uri)[OptimizedTier1] +00007FA12EF72210 6a instance string [System.Net.Http] System.Net.Http.Headers.HttpRequestHeaders::get_Host()[OptimizedTier1] +00007FA12EF72290 7c instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::WriteHostHeaderAsync(class [System.Runtime]System.Uri,bool)[OptimizedTier1] +00007FA12EF72330 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF72350 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EFCE630 18 stub<20714> AllocateTemporaryEntryPoints +00007FA12EFCE648 18 stub<20715> AllocateTemporaryEntryPoints +00007FA12EFCE660 18 stub<20716> AllocateTemporaryEntryPoints +00007FA12EF724B0 911 instance void [System.Net.Http] System.Net.Http.HttpConnection+d__58::MoveNext()[OptimizedTier1] +00007FA12EF72E30 af instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::FlushAsync(bool)[OptimizedTier1] +00007FA12EF72F00 19a instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::WriteToStreamAsync(valuetype [System.Runtime]System.ReadOnlyMemory`1,bool)[OptimizedTier1] +00007FA12EF730C0 25e instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Sockets] System.Net.Sockets.NetworkStream::WriteAsync(valuetype [System.Runtime]System.ReadOnlyMemory`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF73380 5 instance bool [System.Net.Sockets] System.Net.Sockets.NetworkStream::get_CanWrite()[OptimizedTier1] +00007FA12EF733A0 14c instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Sockets] System.Net.Sockets.Socket::SendAsyncForNetworkStream(valuetype [System.Runtime]System.ReadOnlyMemory`1,valuetype System.Net.Sockets.SocketFlags,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF73520 fa instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::SendAsyncForNetworkStream(class System.Net.Sockets.Socket,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF73640 21 instance int32 [System.Net.Http] System.Net.Http.HttpConnectionSettings::get_MaxResponseHeadersByteLength()[OptimizedTier1] +00007FA12EF73680 32 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.__Canon]::.ctor(class System.Threading.Tasks.Task`1)[OptimizedTier1] +00007FA12EF736D0 70 instance void [System.Net.Http] System.Net.Http.HttpResponseMessage::.ctor(valuetype [System.Net.Primitives]System.Net.HttpStatusCode)[OptimizedTier1] +00007FA12EF73760 6d instance void [System.Net.Http] System.Net.Http.HttpResponseMessage::set_RequestMessage(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12EF737F0 78 instance void [System.Net.Http] System.Net.Http.HttpResponseMessage::set_Content(class System.Net.Http.HttpContent)[OptimizedTier1] +00007FA12EFCE678 18 stub<20717> AllocateTemporaryEntryPoints +00007FA12EFCE690 18 stub<20718> AllocateTemporaryEntryPoints +00007FA12EFCE6A8 18 stub<20719> AllocateTemporaryEntryPoints +00007FA12EF73880 480 void [System.Net.Http] System.Net.Http.HttpConnection::ParseStatusLine(valuetype [System.Runtime]System.ReadOnlySpan`1,class System.Net.Http.HttpResponseMessage)[OptimizedTier1] +00007FA12EF73D40 1a uint64 [System.Private.CoreLib] System.BitConverter::ToUInt64(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF73D70 507 string [System.Net.Http] System.Net.HttpStatusDescription::Get(int32)[OptimizedTier1] +00007FA12EF743F0 302 string [System.Net.Http] System.Net.Http.Headers.HeaderDescriptor::GetKnownContentType(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF74760 6c valuetype [System.Runtime]System.Nullable`1 [System.Net.Http] System.Net.Http.Headers.HttpGeneralHeaders::GetConnectionClose(class System.Net.Http.Headers.HttpHeaders,class System.Net.Http.Headers.HttpGeneralHeaders)[OptimizedTier1] +00007FA12EF747F0 1d void [System.Net.Http] System.Net.Http.CancellationHelper::ThrowIfCancellationRequested(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF74840 16e void [System.Net.Http] System.Net.Http.CookieHelper::ProcessReceivedCookies(class System.Net.Http.HttpResponseMessage,class [System.Net.Primitives]System.Net.CookieContainer)[OptimizedTier1] +00007FA12EF749E0 8e instance void [System.Net.Http] System.Net.Http.HttpConnectionPool::ProcessAltSvc(class System.Net.Http.HttpResponseMessage)[OptimizedTier1] +00007FA12EF74A90 274 instance class [System.Runtime]System.Uri [System.Net.Http] System.Net.Http.RedirectHandler::GetUriForRedirect(class [System.Runtime]System.Uri,class System.Net.Http.HttpResponseMessage)[OptimizedTier1] +00007FA12EF74D30 13f instance class [System.Runtime]System.IO.MemoryStream [System.Net.Http] System.Net.Http.HttpContent::CreateMemoryStream(int64,class [System.Runtime]System.Exception&)[OptimizedTier1] +00007FA12EF74E90 2e instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnectionResponseContent::SerializeToStreamAsync(class [System.Runtime]System.IO.Stream,class [System.Net.Primitives]System.Net.TransportContext,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF74EE0 61 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnectionResponseContent::g__Impl|6_0(class [System.Runtime]System.IO.Stream,class [System.Net.Primitives]System.Net.TransportContext,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF74F60 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF74F80 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF750E0 66 instance class [System.Runtime]System.IO.Stream [System.Net.Http] System.Net.Http.HttpConnectionResponseContent::ConsumeStream()[OptimizedTier1] +00007FA12EF75160 105 void [System.Private.CoreLib] System.IO.Stream::ValidateCopyToArguments(class System.IO.Stream,int32)[OptimizedTier1] +00007FA12EF75290 82 instance void [System.Net.Http] System.Net.Http.HttpConnection::CompleteResponse()[OptimizedTier1] +00007FA12EF75330 84 instance void [System.Net.Http] System.Net.Http.HttpConnection::ReturnConnectionToPool()[OptimizedTier1] +00007FA12EF753D0 9f instance bool [System.Net.Http] System.Net.Http.HttpConnectionPool::CheckExpirationOnReturn(class System.Net.Http.HttpConnectionBase)[OptimizedTier1] +00007FA12EF75490 1a instance bool [System.Net.Http] System.Net.Http.HttpConnection+HttpContentReadStream::get_CanReadFromConnection()[OptimizedTier1] +00007FA12EF754C0 62 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpContent::LoadIntoBufferAsyncCore(class [System.Runtime]System.Threading.Tasks.Task,class [System.Runtime]System.IO.MemoryStream)[OptimizedTier1] +00007FA12EF75540 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF75560 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF756C0 8d void [System.Net.Http] System.Net.Http.HttpClient::FinishSend(class [System.Runtime]System.Threading.CancellationTokenSource,bool,bool,bool)[OptimizedTier1] +00007FA12EF75770 83 instance bool [System.Private.CoreLib] System.IO.MemoryStream::TryGetBuffer(valuetype System.ArraySegment`1&)[OptimizedTier1] +00007FA12EF75810 5 instance string [System.Private.CoreLib] System.Reflection.AssemblyName::get_Name()[OptimizedTier1] +00007FA12EF75840 46f valuetype System.Number/ParsingStatus [System.Private.CoreLib] System.Number::TryParseUInt32IntegerStyle(valuetype System.ReadOnlySpan`1,valuetype System.Globalization.NumberStyles,class System.Globalization.NumberFormatInfo,uint32&)[OptimizedTier1] +00007FA12EF75CD0 1 void [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.StartupLogger::Debug(string,object[])[OptimizedTier1] +00007FA12EF75CF0 68 string [System.Private.CoreLib] System.String::Ctor(char*)[OptimizedTier1] +00007FA12EF75D70 e1 instance void [System.Private.CoreLib] System.Globalization.CultureInfo::.ctor(string,bool)[OptimizedTier1] +00007FA12EFCE6C0 18 stub<20720> AllocateTemporaryEntryPoints +00007FA12EF75E70 2dd class System.Globalization.CultureData [System.Private.CoreLib] System.Globalization.CultureData::GetCultureData(string,bool)[OptimizedTier1] +00007FA12EF761A0 35 class System.Globalization.CultureData [System.Private.CoreLib] System.Globalization.CultureData::get_Invariant()[OptimizedTier1] +00007FA12EF761F0 7a instance string [System.Private.CoreLib] System.Globalization.CultureData::get_CultureName()[OptimizedTier1] +00007FA12EF76280 62 instance void [System.Private.CoreLib] System.Reflection.AssemblyNameParser::.ctor(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EFCE6D8 18 stub<20721> AllocateTemporaryEntryPoints +00007FA12EFCE6F0 18 stub<20722> AllocateTemporaryEntryPoints +00007FA12EF76300 40b instance valuetype System.Reflection.AssemblyNameParser/AssemblyNameParts [System.Private.CoreLib] System.Reflection.AssemblyNameParser::Parse()[OptimizedTier1] +00007FA12EF76730 53 instance void [System.Private.CoreLib] System.Reflection.AssemblyNameParser+AssemblyNameParts::.ctor(string,class System.Version,string,valuetype System.Reflection.AssemblyNameFlags,uint8[])[OptimizedTier1] +00007FA12EF767A0 37 bool [System.Private.CoreLib] System.Reflection.AssemblyNameParser::IsWhiteSpace(char)[OptimizedTier1] +00007FA12EFCE708 18 stub<20723> AllocateTemporaryEntryPoints +00007FA12EF76800 1ce instance void [System.Private.CoreLib] System.Reflection.AssemblyName::.ctor(valuetype System.Reflection.NativeAssemblyNameParts*)[OptimizedTier1] +00007FA12EF769F0 fa instance class System.Version [System.Private.CoreLib] System.Reflection.NativeAssemblyNameParts::GetVersion()[OptimizedTier1] +00007FA12EF76B10 281 instance void [System.Private.CoreLib] System.Reflection.AssemblyName::.ctor(string)[OptimizedTier1] +00007FA12EF76DC0 b9 valuetype System.Reflection.AssemblyNameParser/AssemblyNameParts [System.Private.CoreLib] System.Reflection.AssemblyNameParser::Parse(string)[OptimizedTier1] +00007FA12EFCE720 18 stub<20724> AllocateTemporaryEntryPoints +00007FA12EFCE738 18 stub<20725> AllocateTemporaryEntryPoints +00007FA12EF76EA0 3ad instance class System.Version [System.Private.CoreLib] System.Reflection.AssemblyNameParser::ParseVersion(string)[OptimizedTier1] +00007FA12EF77270 59 string [System.Private.CoreLib] System.Reflection.AssemblyNameParser::ParseCulture(string)[OptimizedTier1] +00007FA12EF772E0 153 instance uint8[] [System.Private.CoreLib] System.Reflection.AssemblyNameParser::ParsePKT(string,bool)[OptimizedTier1] +00007FA12EF77450 4c class System.Reflection.RuntimeAssembly [System.Private.CoreLib] System.Runtime.Loader.AssemblyLoadContext::GetRuntimeAssembly(class System.Reflection.Assembly)[OptimizedTier1] +00007FA12EF774B0 54 class System.Reflection.Assembly [System.Private.CoreLib] System.Runtime.Loader.AssemblyLoadContext::ResolveUsingResolvingEvent(native int,class System.Reflection.AssemblyName)[OptimizedTier1] +00007FA12EF77520 2c instance class System.Reflection.Assembly [System.Private.CoreLib] System.Runtime.Loader.AssemblyLoadContext::ResolveUsingEvent(class System.Reflection.AssemblyName)[OptimizedTier1] +00007FA12EFCE750 30 stub<20726> AllocateTemporaryEntryPoints +00007FA12EF77580 2a7 instance class System.Reflection.Assembly [System.Private.CoreLib] System.Runtime.Loader.AssemblyLoadContext::GetFirstResolvedAssemblyFromResolvingEvent(class System.Reflection.AssemblyName)[OptimizedTier1] +00007FA12EF77850 1f class System.Reflection.RuntimeAssembly [System.Private.CoreLib] System.Runtime.Loader.AssemblyLoadContext::OnAssemblyResolve(class System.Reflection.RuntimeAssembly,string)[OptimizedTier1] +00007FA12EF77880 27e class System.Reflection.RuntimeAssembly [System.Private.CoreLib] System.Runtime.Loader.AssemblyLoadContext::InvokeResolveEvent(class System.ResolveEventHandler,class System.Reflection.RuntimeAssembly,string)[OptimizedTier1] +00007FA12EF77B20 10f instance class System.Delegate[] [System.Private.CoreLib] System.MulticastDelegate::GetInvocationList()[OptimizedTier1] +00007FA12EF77C50 a class [System.Runtime]System.Reflection.Assembly [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::AssemblyResolve_ManagedProfilerDependencies(object,class [System.Runtime]System.ResolveEventArgs)[OptimizedTier1] +00007FA12EF77C70 5 instance string [System.Private.CoreLib] System.ResolveEventArgs::get_Name()[OptimizedTier1] +00007FA12EF77C90 2e5 class [System.Runtime]System.Reflection.Assembly [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::ResolveAssembly(string)[OptimizedTier1] +00007FA12EF78070 e string [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::get_ManagedProfilerDirectory()[OptimizedTier1] +00007FA12EF78090 51 string [System.Private.CoreLib] System.IO.Path::Combine(string,string)[OptimizedTier1] +00007FA12EF78100 db string [System.Private.CoreLib] System.IO.Path::CombineInternal(string,string)[OptimizedTier1] +00007FA12EF781F0 11 bool [System.Private.CoreLib] System.IO.Path::IsPathRooted(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF78220 15b string [System.Private.CoreLib] System.IO.Path::JoinInternal(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF783A0 fc string [System.Private.CoreLib] System.String::Concat(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF784C0 bf bool [Datadog.Trace.ClrProfiler.Managed.Loader] Datadog.Trace.ClrProfiler.Managed.Loader.Startup::IsDatadogAssembly(string,class [System.Runtime]System.Reflection.Assembly&)[OptimizedTier1] +00007FA12EF785A0 79 instance bool [System.Net.Http] System.Net.Http.HttpConnectionPool::CheckExpirationOnGet(class System.Net.Http.HttpConnectionBase)[OptimizedTier1] +00007FA12EF78640 3d7 instance bool [System.Net.Http] System.Net.Http.HttpConnection::PrepareForReuse(bool)[OptimizedTier1] +00007FA12EF78A80 34f class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF78DF0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::.ctor()[OptimizedTier1] +00007FA12EF78E10 2d7 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF79110 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::.ctor()[OptimizedTier1] +00007FA12EF79130 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::MoveNext()[OptimizedTier1] +00007FA12EF79150 1e0 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF79350 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF79370 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::MoveNext()[OptimizedTier1] +00007FA12EF79390 208 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF795C0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12EF795E0 1ae instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::PrepareBufferForReadData(bool,int32)[OptimizedTier1] +00007FA12EF797B0 b3 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.RedirectHandler+d__4]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12EF79880 8f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnection+d__61]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12EF79930 42 instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::get_Key()[QuickJitted] +00007FA12EF79990 8f instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::TryRemove(!0,!1&)[QuickJitted] +00007FA12EF79A40 618 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::TryRemoveInternal(!0,!1&,bool,!1)[QuickJitted] +00007FA12EF7A080 8d instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::AcquireAllLocks(int32&)[QuickJitted] +00007FA12EF7A130 d3 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::AcquireLocks(int32,int32,int32&)[QuickJitted] +00007FA12EF7A230 90 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::ReleaseLocks(int32,int32)[QuickJitted] +00007FA12EF7A2E0 9 instance class System.Net.Http.HttpConnectionSettings [System.Net.Http] System.Net.Http.HttpConnectionPool::get_Settings()[OptimizedTier1] +00007FA12EF7A300 76 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseTrue()[OptimizedTier1] +00007FA12EF7A390 70 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JObject::get_Item(string)[OptimizedTier1] +00007FA12EF7A420 126 instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey]::Equals(!0,!0)[OptimizedTier1] +00007FA12EF7A560 117 instance bool [System.Net.Http] System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey::Equals(valuetype System.Net.Http.HttpConnectionPoolManager/HttpConnectionKey)[OptimizedTier1] +00007FA1277CD720 20 stub<20727> GenerateDispatchStub +00007FA1277CD740 20 stub<20728> GenerateDispatchStub +00007FA1277CD760 20 stub<20729> GenerateDispatchStub +00007FA1277CD780 20 stub<20730> GenerateDispatchStub +00007FA12EF7A690 84 instance class System.Collections.Generic.IEnumerator`1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection[System.__Canon,System.__Canon]::System.Collections.Generic.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12EF7A740 d instance bool [System.Private.Uri] System.Uri::get_UserDrivenParsing()[OptimizedTier1] +00007FA12EFCE780 18 stub<20731> AllocateTemporaryEntryPoints +00007FA12EF7A760 ae instance void [System.Private.Uri] System.Uri::InterlockedSetFlags(valuetype System.Uri/Flags)[OptimizedTier1] +00007FA12EF7A840 30 uint64 [System.Private.CoreLib] System.Threading.Interlocked::Or(uint64&,uint64)[OptimizedTier1] +00007FA12EF7A890 9f instance string [System.Private.Uri] System.Uri::get_AbsolutePath()[OptimizedTier1] +00007FA12EF7A950 82 instance string [System.Private.Uri] System.Uri::get_PrivateAbsolutePath()[OptimizedTier1] +00007FA12EF7A9F0 8b instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::AddWithResize(!0)[OptimizedTier1] +00007FA12EF7AAA0 35 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::Grow(int32)[OptimizedTier1] +00007FA12EF7AAF0 9a instance void [System.Private.CoreLib] System.Collections.Generic.List`1[Datadog.Trace.Vendors.Newtonsoft.Json.JsonPosition]::set_Capacity(int32)[OptimizedTier1] +00007FA12EFCE798 5e8 stub<20732> AllocateTemporaryEntryPoints +00007FA12EFCED80 c0 stub<20733> AllocateTemporaryEntryPoints +00007FA12EFCEE40 90 stub<20734> AllocateTemporaryEntryPoints +00007FA12EFCEED0 a8 stub<20735> AllocateTemporaryEntryPoints +00007FA12EFCEF78 18 stub<20736> AllocateTemporaryEntryPoints +00007FA12F010000 78 stub<20737> AllocateTemporaryEntryPoints +00007FA12F010078 18 stub<20738> AllocateTemporaryEntryPoints +00007FA12EF7ABC0 78 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+KeyCollection+Enumerator[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12E673240 18 stub<20739> GenerateLookupStub +00007FA12E673260 18 stub<20740> GenerateLookupStub +00007FA12E673280 18 stub<20741> GenerateLookupStub +00007FA12F010090 f0 stub<20742> AllocateTemporaryEntryPoints +00007FA12F010180 60 stub<20743> AllocateTemporaryEntryPoints +00007FA12EF7AC60 221 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.Heartbeat::OnHeartbeat()[OptimizedTier1] +00007FA12F0101E0 18 stub<20744> AllocateTemporaryEntryPoints +00007FA12F0101F8 18 stub<20745> AllocateTemporaryEntryPoints +00007FA12EF7AEC0 fe instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.DateHeaderValueManager::SetDateValues(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12EF7AFE0 24 string [Microsoft.Net.Http.Headers] Microsoft.Net.Http.Headers.HeaderUtilities::FormatDate(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12F010210 78 stub<20746> AllocateTemporaryEntryPoints +00007FA12EF7B020 13c string [Microsoft.Net.Http.Headers] Microsoft.Net.Http.Headers.HeaderUtilities::FormatDate(valuetype [System.Runtime]System.DateTimeOffset,bool)[OptimizedTier1] +00007FA12EF7B180 6e instance string [System.Private.CoreLib] System.DateTimeOffset::ToString(string,class System.IFormatProvider)[OptimizedTier1] +00007FA12EF7B210 1a6 string [System.Private.CoreLib] System.DateTimeFormat::Format(valuetype System.DateTime,string,class System.IFormatProvider,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7B3E0 304 bool [System.Private.CoreLib] System.DateTimeFormat::TryFormatR(valuetype System.DateTime,valuetype System.TimeSpan,valuetype System.Span`1,int32&)[OptimizedTier1] +00007FA12EF7B700 41 valuetype System.DateTime [System.Private.CoreLib] System.DateTime::op_Subtraction(valuetype System.DateTime,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7B760 b0 instance void [System.Private.CoreLib] System.DateTime::GetDate(int32&,int32&,int32&)[OptimizedTier1] +00007FA12EF7B830 3f instance valuetype System.DayOfWeek [System.Private.CoreLib] System.DateTime::get_DayOfWeek()[OptimizedTier1] +00007FA12EF7B880 2c valuetype System.Span`1 [System.Private.CoreLib] System.MemoryExtensions::AsSpan(!!0[],int32)[OptimizedTier1] +00007FA12EF7B8C0 5d instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.HeartbeatManager::OnHeartbeat(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12E6732A0 18 stub<20747> GenerateLookupStub +00007FA12EF7B940 17e instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.ConnectionManager::Walk(class [System.Runtime]System.Action`1)[OptimizedTier1] +00007FA12EF7BAF0 66 instance class [System.Private.CoreLib]System.Collections.Generic.IEnumerator`1> [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Int64,System.__Canon]::GetEnumerator()[OptimizedTier1] +00007FA12EF7BB70 1 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Int64,System.__Canon]::Dispose()[OptimizedTier1] +00007FA12EF7BB90 4 valuetype System.TimeSpan [System.Private.CoreLib] System.TimeSpan::FromTicks(int64)[OptimizedTier1] +00007FA12EF7BBB0 9 bool [System.Private.CoreLib] System.TimeSpan::op_GreaterThan(valuetype System.TimeSpan,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7BBD0 13 void [System.Private.CoreLib] System.Threading.Thread::Sleep(valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7BC00 11c int32 [System.Private.CoreLib] System.Threading.WaitHandle::ToTimeoutMilliseconds(valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7BD60 27 instance class [System.Runtime]System.Type [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata::get_ModelType()[OptimizedTier1] +00007FA12EF7BDA0 1a void [System.Private.CoreLib] System.Buffer::BulkMoveWithWriteBarrier(uint8&,uint8&,native uint)[OptimizedTier1] +00007FA12EF7BDD0 20 instance int32 [System.Private.CoreLib] System.Int32::CompareTo(int32)[OptimizedTier1] +00007FA12EF7BE10 c9 instance bool [System.Private.CoreLib] System.Text.ValueStringBuilder::TryCopyTo(valuetype System.Span`1,int32&)[OptimizedTier1] +00007FA12EF7BF00 5 instance class [System.IO.Pipelines]System.IO.Pipelines.PipeWriter [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] System.IO.Pipelines.DuplexPipe::get_Output()[OptimizedTier1] +00007FA12EF7BF20 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_InstrumentationName()[OptimizedTier1] +00007FA12EF7BF40 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::get_Count()[OptimizedTier1] +00007FA12EF7BF60 c instance void [System.Private.CoreLib] System.Nullable`1[System.Double]::.ctor(!0)[OptimizedTier1] +00007FA12EF7BF80 5 instance string [Datadog.Trace] Datadog.Trace.TraceContext::get_Environment()[OptimizedTier1] +00007FA12EF7BFA0 1a instance !0 [System.Private.CoreLib] System.Nullable`1[System.Double]::get_Value()[OptimizedTier1] +00007FA12EF7BFD0 56 bool [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::IsW3CId(string)[OptimizedTier1] +00007FA12EF7C040 b4 uint64 [Datadog.Trace] Datadog.Trace.Propagators.ParseUtility::ParseFromHexOrDefault(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF7C120 9e bool [System.Private.CoreLib] System.UInt64::TryParse(valuetype System.ReadOnlySpan`1,valuetype System.Globalization.NumberStyles,class System.IFormatProvider,uint64&)[OptimizedTier1] +00007FA12EF7C1E0 2c2 valuetype System.Number/ParsingStatus [System.Private.CoreLib] System.Number::TryParseUInt64HexNumberStyle(valuetype System.ReadOnlySpan`1,valuetype System.Globalization.NumberStyles,uint64&)[OptimizedTier1] +00007FA12EF7C4D0 1c0 instance void [Datadog.Trace] Datadog.Trace.TraceContext::SetSamplingPriority(valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,bool)[OptimizedTier1] +00007FA12EF7C6B0 a3 instance string [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_Method()[OptimizedTier1] +00007FA12EF7C780 2b string [Datadog.Trace] Datadog.Trace.Util.StringBuilderCache::GetStringAndRelease(class [System.Runtime]System.Text.StringBuilder)[OptimizedTier1] +00007FA12EF7C7D0 11b instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass10_0`1[System.__Canon]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12EF7C910 91 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12EF7C9E0 125 instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12EF7CB30 1e6 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12EF7CD40 76 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12EF7CDD0 227 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12EF7D020 5 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_Formatter()[OptimizedTier1] +00007FA12EF7D040 c instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_State()[OptimizedTier1] +00007FA12F010288 18 stub<20748> AllocateTemporaryEntryPoints +00007FA12EF7D060 53 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`1+<>c[System.__Canon]::<.cctor>b__12_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`1,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12EF7D0D0 5a instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]::ToString()[OptimizedTier1] +00007FA12EF7D150 4d instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LogValuesFormatter::Format(object)[OptimizedTier1] +00007FA12EF7D1C0 1a string [System.Private.CoreLib] System.String::Format(class System.IFormatProvider,string,object)[OptimizedTier1] +00007FA12EF7D1F0 4 instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_LogLevel()[OptimizedTier1] +00007FA12EF7D220 405 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[OptimizedTier1] +00007FA12EF7D650 b instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_EventId()[OptimizedTier1] +00007FA12EF7D670 4 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`1[System.__Canon]]::get_Category()[OptimizedTier1] +00007FA12F0102A0 420 stub<20749> AllocateTemporaryEntryPoints +00007FA12EF7D690 22e instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12EF7D8E0 48e instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12EF7DD90 1 instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::.ctor()[OptimizedTier1] +00007FA12EF7DDB0 1 instance void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::.ctor()[OptimizedTier1] +00007FA12EF7DDD0 1 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::.ctor()[OptimizedTier1] +00007FA12EF7DE00 1af instance class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.Tracer::StartSpan(string,class Datadog.Trace.Tagging.ITags,class Datadog.Trace.ISpanContext,string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,string,string,bool)[OptimizedTier1] +00007FA12EF7DFF0 3c9 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.Tracer::CreateSpanContext(class Datadog.Trace.ISpanContext,string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,string,string)[OptimizedTier1] +00007FA12EF7E3E0 118 instance void [Datadog.Trace] Datadog.Trace.SpanContext::.ctor(class Datadog.Trace.ISpanContext,class Datadog.Trace.TraceContext,string,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,string,string)[OptimizedTier1] +00007FA12EF7E520 5 instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_RawTraceId()[OptimizedTier1] +00007FA12EF7E540 1c2 instance void [Datadog.Trace] Datadog.Trace.Span::.ctor(class Datadog.Trace.SpanContext,valuetype [System.Runtime]System.Nullable`1,class Datadog.Trace.Tagging.ITags)[OptimizedTier1] +00007FA12EF7E740 b instance void [Datadog.Trace] Datadog.Trace.Span::set_Tags(class Datadog.Trace.Tagging.ITags)[OptimizedTier1] +00007FA12EF7E760 4 instance bool [System.Private.CoreLib] System.Nullable`1[System.DateTimeOffset]::get_HasValue()[OptimizedTier1] +00007FA12EF7E780 126 instance valuetype [System.Runtime]System.DateTimeOffset [Datadog.Trace] Datadog.Trace.TraceContext::get_UtcNow()[OptimizedTier1] +00007FA12EF7E8E0 b2 instance valuetype System.DateTimeOffset [System.Private.CoreLib] System.DateTimeOffset::Add(valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7E9B0 41 instance valuetype System.DateTime [System.Private.CoreLib] System.DateTime::AddTicks(int64)[OptimizedTier1] +00007FA12EF7EA10 323 instance void [System.Private.CoreLib] System.DateTimeOffset::.ctor(valuetype System.DateTime,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7ED50 115 int16 [System.Private.CoreLib] System.DateTimeOffset::ValidateOffset(valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7EE80 a2 valuetype System.DateTime [System.Private.CoreLib] System.DateTimeOffset::ValidateDate(valuetype System.DateTime,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF7EF40 21 instance void [Datadog.Trace] Datadog.Trace.Span::set_StartTime(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12EF7EF80 b instance void [Datadog.Trace] Datadog.Trace.Span::set_OperationName(string)[OptimizedTier1] +00007FA12EF7EFA0 5 instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_GlobalTags()[OptimizedTier1] +00007FA12EF7EFC0 13c instance void [Datadog.Trace] Datadog.Trace.TraceContext::AddSpan(class Datadog.Trace.Span)[OptimizedTier1] +00007FA12EF7F130 dc instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::Activate(class Datadog.Trace.Span,bool)[OptimizedTier1] +00007FA12EF7F230 40 instance void [Datadog.Trace] Datadog.Trace.Scope::.ctor(class Datadog.Trace.Scope,class Datadog.Trace.Span,class Datadog.Trace.IScopeManager,bool)[OptimizedTier1] +00007FA12EF7F290 72 instance void [System.Private.CoreLib] System.Threading.AsyncLocalValueMap+ThreeElementAsyncLocalValueMap::.ctor(valuetype System.Collections.Generic.KeyValuePair`2,valuetype System.Collections.Generic.KeyValuePair`2,valuetype System.Collections.Generic.KeyValuePair`2)[OptimizedTier1] +00007FA12EF7F320 b instance void [Datadog.Trace] Datadog.Trace.Span::set_Type(string)[OptimizedTier1] +00007FA12EF7F340 a6 instance object [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::ExtraFeatureGet(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EF7F410 52 string [System.Private.CoreLib] System.String::Format(class System.IFormatProvider,string,object[])[OptimizedTier1] +00007FA12EF7F480 5 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_Exception()[OptimizedTier1] +00007FA12EF7F4A0 16e void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[OptimizedTier1] +00007FA12E6732C0 18 stub<20750> GenerateLookupStub +00007FA12F0106C0 18 stub<20751> AllocateTemporaryEntryPoints +00007FA12EF7F650 a3 instance bool [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::get_HasStarted()[OptimizedTier1] +00007FA12EF7F720 d instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.get_HasStarted()[OptimizedTier1] +00007FA12EF7F740 146 instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::UpdateCached(!!0&,!!1,class [System.Runtime]System.Func`2,int32,bool)[OptimizedTier1] +00007FA12EF7F8B0 5 instance class Microsoft.AspNetCore.Mvc.IActionResult [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext::get_Result()[OptimizedTier1] +00007FA12E6732E0 18 stub<20752> GenerateLookupStub +00007FA12E673300 18 stub<20753> GenerateLookupStub +00007FA12E673320 18 stub<20754> GenerateLookupStub +00007FA12EF7F8D0 9bd instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::Next(valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker/State&,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker/Scope&,object&,bool&)[OptimizedTier1] +00007FA12F0106D8 78 stub<20755> AllocateTemporaryEntryPoints +00007FA12F010750 18 stub<20756> AllocateTemporaryEntryPoints +00007FA12F010768 18 stub<20757> AllocateTemporaryEntryPoints +00007FA12F010780 270 stub<20758> AllocateTemporaryEntryPoints +00007FA12EF802D0 135 instance string [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor::get_DisplayName()[OptimizedTier1] +00007FA12EF80430 79 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LogValuesFormatter::Format(object,object)[OptimizedTier1] +00007FA12EF804D0 30 string [System.Private.CoreLib] System.String::Format(class System.IFormatProvider,string,object,object)[OptimizedTier1] +00007FA12EF80520 5 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_Exception()[OptimizedTier1] +00007FA12EF80540 148 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[OptimizedTier1] +00007FA12EF806C0 35 instance class System.Net.Http.Headers.HttpHeaders/HeaderStoreItemInfo [System.Net.Http] System.Net.Http.Headers.HttpHeaders::CreateAndAddHeaderToStore(valuetype System.Net.Http.Headers.HeaderDescriptor)[OptimizedTier1] +00007FA12EF80720 4d bool [System.Net.Http] System.Net.Http.HttpRuleParser::IsToken(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12EF80790 b5 instance int32 [System.Private.CoreLib] System.Text.ASCIIEncoding::GetChars(uint8*,int32,char*,int32)[OptimizedTier1] +00007FA12F0109F0 18 stub<20759> AllocateTemporaryEntryPoints +00007FA12EF80870 5a5 instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest+d__11::MoveNext()[OptimizedTier1] +00007FA12EF80E80 7d native uint [System.Private.CoreLib] System.Text.ASCIIUtility::WidenAsciiToUtf16_Intrinsified(uint8*,char*,native uint)[OptimizedTier1] +00007FA12EF80F30 5 instance class [System.Runtime]System.Func`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreator()[OptimizedTier1] +00007FA12EF80F50 8b instance class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetConverter(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EF81000 5 instance class [System.Runtime]System.Exception [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_Exception()[OptimizedTier1] +00007FA12EF81020 158 void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::g__LoggerLog|13_0(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3,class [System.Collections]System.Collections.Generic.List`1&,!!0&)[OptimizedTier1] +00007FA12EF811B0 7e instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage::.ctor()[OptimizedTier1] +00007FA12EF81250 ae instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::.ctor()[OptimizedTier1] +00007FA12EF81320 18 instance void [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::.ctor()[OptimizedTier1] +00007FA12EF81350 e !!0[] [System.Private.CoreLib] System.Array::Empty()[OptimizedTier1] +00007FA12EF81370 5 instance string [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.ViewContext::get_ExecutingFilePath()[OptimizedTier1] +00007FA12EF81390 5c instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView::RenderPageCoreAsync(class Microsoft.AspNetCore.Mvc.Razor.IRazorPage,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF81410 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF81430 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12E673340 18 stub<20760> GenerateLookupStub +00007FA12F010A08 18 stub<20761> AllocateTemporaryEntryPoints +00007FA12E673360 18 stub<20762> GenerateLookupStub +00007FA12E673380 18 stub<20763> GenerateLookupStub +00007FA12F010A20 18 stub<20764> AllocateTemporaryEntryPoints +00007FA12F010A38 18 stub<20765> AllocateTemporaryEntryPoints +00007FA12EF81590 31b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView+d__20::MoveNext()[OptimizedTier1] +00007FA12EF818F0 b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::set_ViewContext(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF81910 ac instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator::Activate(class Microsoft.AspNetCore.Mvc.Razor.IRazorPage,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12E6733A0 18 stub<20766> GenerateLookupStub +00007FA12EF819E0 11e instance class Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator::GetOrAddCacheEntry(class Microsoft.AspNetCore.Mvc.Razor.IRazorPage)[OptimizedTier1] +00007FA12EF81B20 21e instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EF81D70 ad instance int32 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey::GetHashCode()[OptimizedTier1] +00007FA12EF81E40 74 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey,System.__Canon]::GetBucket(int32)[OptimizedTier1] +00007FA12EF81ED0 e class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+CacheKey]::get_Default()[OptimizedTier1] +00007FA12EF81F00 11b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator::Activate(object,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF82040 6e instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator::CreateViewDataDictionary(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF820D0 b instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.ViewContext::set_ViewData(class Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary)[OptimizedTier1] +00007FA12EF820F0 5 instance object [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+<>c__DisplayClass4_0::<.ctor>b__4(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF82110 18 instance object [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+<>c__DisplayClass4_0::<.ctor>b__0(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF82140 1b4 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewComponents.DefaultViewComponentHelper::.ctor(class Microsoft.AspNetCore.Mvc.ViewComponents.IViewComponentDescriptorCollectionProvider,class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder,class Microsoft.AspNetCore.Mvc.ViewComponents.IViewComponentSelector,class Microsoft.AspNetCore.Mvc.ViewComponents.IViewComponentInvokerFactory,class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.IViewBufferScope)[OptimizedTier1] +00007FA12EF82320 4d instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewComponents.DefaultViewComponentHelper::Contextualize(class Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF82390 5 instance object [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+<>c__DisplayClass4_0::<.ctor>b__1(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF823B0 213 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelper::.ctor(class Microsoft.AspNetCore.Mvc.ViewFeatures.IHtmlGenerator,class Microsoft.AspNetCore.Mvc.ViewEngines.ICompositeViewEngine,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider,class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.IViewBufferScope,class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder,class [System.Text.Encodings.Web]System.Text.Encodings.Web.UrlEncoder)[OptimizedTier1] +00007FA12F010A50 90 stub<20767> AllocateTemporaryEntryPoints +00007FA12EF825F0 2d3 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelper`1[System.__Canon]::Contextualize(class Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF828F0 4d instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelper::Contextualize(class Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF82960 5 instance object [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPagePropertyActivator+<>c::b__8_0(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF82980 e instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage`1[System.__Canon]::set_ViewData(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary`1)[OptimizedTier1] +00007FA12EF829A0 5 instance object [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+<>c__DisplayClass4_0::<.ctor>b__2(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF829C0 b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::set_DiagnosticSource(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticSource)[OptimizedTier1] +00007FA12EF829E0 5 instance object [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageActivator+<>c__DisplayClass4_0::<.ctor>b__3(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF82A00 b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::set_HtmlEncoder(class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder)[OptimizedTier1] +00007FA12EF82A20 c5 void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.MvcRazorDiagnosticListenerExtensions::BeforeViewPageImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class Microsoft.AspNetCore.Mvc.Razor.IRazorPage,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12F010AE0 78 stub<20768> AllocateTemporaryEntryPoints +00007FA12EF82B10 a2 string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Internal.TypeNameHelper::GetTypeDisplayName(class [System.Runtime]System.Type,bool,bool,bool,char)[OptimizedTier1] +00007FA12F010B58 18 stub<20769> AllocateTemporaryEntryPoints +00007FA12EF82BE0 1bc void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Internal.TypeNameHelper::ProcessType(class [System.Runtime]System.Text.StringBuilder,class [System.Runtime]System.Type,valuetype Microsoft.Extensions.Internal.TypeNameHelper/DisplayNameOptions&)[OptimizedTier1] +00007FA12EF82DC0 203 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Replace(char,char,int32,int32)[OptimizedTier1] +00007FA12EF82FF0 2f instance object [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::get_Item(string)[OptimizedTier1] +00007FA12EF83040 6c instance bool [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.CopyOnWriteDictionary`2[System.__Canon,System.__Canon]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12EF830D0 4 instance int32 [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Length()[OptimizedTier1] +00007FA12EF830F0 ad instance bool [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValuesAddressScheme+d__5::MoveNext()[OptimizedTier1] +00007FA12E6733C0 18 stub<20770> GenerateLookupStub +00007FA12EF831C0 a2 bool [Microsoft.Extensions.Caching.Abstractions] Microsoft.Extensions.Caching.Memory.CacheExtensions::TryGetValue(class Microsoft.Extensions.Caching.Memory.IMemoryCache,object,!!0&)[OptimizedTier1] +00007FA12F010B70 30 stub<20771> AllocateTemporaryEntryPoints +00007FA12F010BA0 18 stub<20772> AllocateTemporaryEntryPoints +00007FA12F010BB8 60 stub<20773> AllocateTemporaryEntryPoints +00007FA12F010C18 18 stub<20774> AllocateTemporaryEntryPoints +00007FA12EF83280 1c9 instance bool [Microsoft.Extensions.Caching.Memory] Microsoft.Extensions.Caching.Memory.MemoryCache::TryGetValue(object,object&)[OptimizedTier1] +00007FA12E6733E0 18 stub<20775> GenerateLookupStub +00007FA12EF83470 43 instance valuetype [System.Runtime]System.DateTime [Microsoft.Extensions.Caching.Memory] Microsoft.Extensions.Caching.Memory.MemoryCache::get_UtcNow()[OptimizedTier1] +00007FA12EF834D0 c5 void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.MvcRazorDiagnosticListenerExtensions::AfterViewPageImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class Microsoft.AspNetCore.Mvc.Razor.IRazorPage,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12EF835C0 70 instance bool [System.Private.CoreLib] System.Double::TryFormat(valuetype System.Span`1,int32&,valuetype System.ReadOnlySpan`1,class System.IFormatProvider)[OptimizedTier1] +00007FA12EF83660 146 bool [System.Private.CoreLib] System.Number::TryFormatDouble(float64,valuetype System.ReadOnlySpan`1,class System.Globalization.NumberFormatInfo,valuetype System.Span`1,int32&)[OptimizedTier1] +00007FA12EF837D0 4 instance int32 [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::get_Count()[OptimizedTier1] +00007FA12EF837F0 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpRequestHeadersHost()[OptimizedTier1] +00007FA12EF83810 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpUrl()[OptimizedTier1] +00007FA12EF83830 38 instance void [Datadog.Trace] Datadog.Trace.Scope::Dispose()[OptimizedTier1] +00007FA12EF83890 3e instance void [Datadog.Trace] Datadog.Trace.Scope::Close()[OptimizedTier1] +00007FA12EF838F0 b9 instance void [Datadog.Trace] Datadog.Trace.AsyncLocalScopeManager::Close(class Datadog.Trace.Scope)[OptimizedTier1] +00007FA12EF839D0 5 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.Scope::get_Parent()[OptimizedTier1] +00007FA12EF839F0 151 instance void [Datadog.Trace] Datadog.Trace.Span::Finish()[OptimizedTier1] +00007FA12EF83B80 120 instance valuetype [System.Runtime]System.TimeSpan [Datadog.Trace] Datadog.Trace.TraceContext::ElapsedSince(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12EF83CD0 6e valuetype System.TimeSpan [System.Private.CoreLib] System.DateTimeOffset::op_Subtraction(valuetype System.DateTimeOffset,valuetype System.DateTimeOffset)[OptimizedTier1] +00007FA12EF83D60 77 valuetype System.TimeSpan [System.Private.CoreLib] System.TimeSpan::op_Addition(valuetype System.TimeSpan,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF83DF0 76 instance valuetype System.TimeSpan [System.Private.CoreLib] System.TimeSpan::Add(valuetype System.TimeSpan)[OptimizedTier1] +00007FA12EF83E80 eb instance void [Datadog.Trace] Datadog.Trace.Span::Finish(valuetype [System.Runtime]System.TimeSpan)[OptimizedTier1] +00007FA12EF83FA0 5 instance void [Datadog.Trace] Datadog.Trace.Span::set_Duration(valuetype [System.Runtime]System.TimeSpan)[OptimizedTier1] +00007FA12EF83FC0 5 instance void [Datadog.Trace] Datadog.Trace.Span::set_IsFinished(bool)[OptimizedTier1] +00007FA12F010C30 18 stub<20776> AllocateTemporaryEntryPoints +00007FA12EF83FE0 343 instance void [Datadog.Trace] Datadog.Trace.TraceContext::CloseSpan(class Datadog.Trace.Span)[OptimizedTier1] +00007FA12EF84360 23 instance bool [Datadog.Trace] Datadog.Trace.Span::get_IsRootSpan()[OptimizedTier1] +00007FA12EF843A0 33 instance void [Datadog.Trace] Datadog.Trace.Util.ArrayBuilder`1[System.__Canon]::Add(!0)[OptimizedTier1] +00007FA12EF843F0 de instance void [Datadog.Trace] Datadog.Trace.Util.ArrayBuilder`1[System.__Canon]::GrowIfNeeded()[OptimizedTier1] +00007FA12EF84500 2ab instance object [System.Private.CoreLib] System.Collections.Hashtable::get_Item(object)[OptimizedTier1] +00007FA12EF847E0 9a bool [Datadog.Trace] Datadog.Trace.Util.UriHelpers::IsIdentifierSegment(string,int32,int32)[OptimizedTier1] +00007FA12EF84890 1ec instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Append(string,int32,int32)[OptimizedTier1] +00007FA12EF84AA0 b8 instance !0[] [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::ToArray()[OptimizedTier1] +00007FA12EF84B80 1a instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource+Registrations::.ctor(class System.Threading.CancellationTokenSource)[OptimizedTier1] +00007FA12EF84BB0 12 instance class System.Reflection.AssemblyName [System.Private.CoreLib] System.Reflection.Assembly::GetName()[OptimizedTier1] +00007FA12F010C48 18 stub<20777> AllocateTemporaryEntryPoints +00007FA12F010C60 18 stub<20778> AllocateTemporaryEntryPoints +00007FA12EF84BE0 39b instance class System.Reflection.AssemblyName [System.Private.CoreLib] System.Reflection.RuntimeAssembly::GetName(bool)[OptimizedTier1] +00007FA12EF84FB0 df instance string [System.Private.CoreLib] System.Reflection.RuntimeAssembly::GetSimpleName()[OptimizedTier1] +00007FA12EF850C0 131 instance class System.Version [System.Private.CoreLib] System.Reflection.RuntimeAssembly::GetVersion()[OptimizedTier1] +00007FA12EF85220 10b void [System.Private.CoreLib] System.Reflection.RuntimeAssembly::GetVersion(valuetype System.Runtime.CompilerServices.QCallAssembly,int32&,int32&,int32&,int32&)[OptimizedTier1] +00007FA12EF85350 103 instance class System.Globalization.CultureInfo [System.Private.CoreLib] System.Reflection.RuntimeAssembly::GetLocale()[OptimizedTier1] +00007FA12F010C78 18 stub<20779> AllocateTemporaryEntryPoints +00007FA12F010C90 18 stub<20780> AllocateTemporaryEntryPoints +00007FA12EF85480 24c class System.Globalization.CultureInfo [System.Private.CoreLib] System.Globalization.CultureInfo::GetCultureInfo(string)[OptimizedTier1] +00007FA12EF85720 107 string [System.Private.CoreLib] System.Globalization.TextInfo::ToLowerAsciiInvariant(string)[OptimizedTier1] +00007FA12EF85850 64 class System.Collections.Generic.Dictionary`2 [System.Private.CoreLib] System.Globalization.CultureInfo::get_CachedCulturesByName()[OptimizedTier1] +00007FA12F010CA8 18 stub<20781> AllocateTemporaryEntryPoints +00007FA12EF858D0 df instance uint8[] [System.Private.CoreLib] System.Reflection.RuntimeAssembly::GetPublicKey()[OptimizedTier1] +00007FA12EF859E0 2a instance void [System.Private.CoreLib] System.Reflection.AssemblyName::SetPublicKey(uint8[])[OptimizedTier1] +00007FA12EF85A20 e7 instance string [System.Private.CoreLib] System.Reflection.RuntimeAssembly::GetCodeBase()[OptimizedTier1] +00007FA12EF85B30 84 valuetype System.Reflection.ProcessorArchitecture [System.Private.CoreLib] System.Reflection.AssemblyName::CalculateProcArchIndex(valuetype System.Reflection.PortableExecutableKinds,valuetype System.Reflection.ImageFileMachine,valuetype System.Reflection.AssemblyNameFlags)[OptimizedTier1] +00007FA12EF85BD0 1c instance void [System.Private.CoreLib] System.Reflection.AssemblyName::set_ProcessorArchitecture(valuetype System.Reflection.ProcessorArchitecture)[OptimizedTier1] +00007FA12EF85C00 13a instance !!0 [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::UpdateCached(!!0&,!!1,class [System.Runtime]System.Func`2,int32,bool)[OptimizedTier1] +00007FA12EF85D60 4 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::set_Revision(int32)[OptimizedTier1] +00007FA12EF85D80 1d3 instance valuetype Datadog.Trace.Agent.MessagePack.SpanModel [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::GetSpanModel(int32)[OptimizedTier1] +00007FA12EF85F80 6f instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanModel::.ctor(class Datadog.Trace.Span,valuetype Datadog.Trace.Agent.MessagePack.TraceChunkModel&,bool,bool,bool)[OptimizedTier1] +00007FA12EF86010 2dbb instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::Serialize(uint8[]&,int32,valuetype Datadog.Trace.Agent.MessagePack.SpanModel&)[OptimizedTier1] +00007FA12EF88DF0 63d int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteMapHeader(uint8[]&,int32,int32)[OptimizedTier1] +00007FA12EF89450 645 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteMapHeader(uint8[]&,int32,uint32)[OptimizedTier1] +00007FA12EF89AC0 3c int64 [Datadog.Trace] Datadog.Trace.ExtensionMethods.TimeExtensions::ToUnixTimeNanoseconds(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12EF89B10 5 int64 [Datadog.Trace] Datadog.Trace.ExtensionMethods.TimeExtensions::ToNanoseconds(valuetype [System.Runtime]System.TimeSpan)[OptimizedTier1] +00007FA12EF89B30 5 instance class Datadog.Trace.Processors.ITagProcessor[] [Datadog.Trace] Datadog.Trace.TracerManager::get_TagProcessors()[OptimizedTier1] +00007FA12EF89B60 2de2 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteTags(uint8[]&,int32,valuetype Datadog.Trace.Agent.MessagePack.SpanModel&,class Datadog.Trace.Processors.ITagProcessor[])[OptimizedTier1] +00007FA12EF8C980 1c2 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::EnumerateTags(!!0&)[OptimizedTier1] +00007FA12EF8CB80 2a uint8[] [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache::GetOriginBytes(string)[OptimizedTier1] +00007FA12EF8CBC0 2a uint8[] [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache::GetEnvironmentBytes(string)[OptimizedTier1] +00007FA12EF8CC00 e instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_SpanKind()[OptimizedTier1] +00007FA12EF8CC20 29e2 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteMetrics(uint8[]&,int32,valuetype Datadog.Trace.Agent.MessagePack.SpanModel&,class Datadog.Trace.Processors.ITagProcessor[])[OptimizedTier1] +00007FA12EF8F660 928 instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::EnumerateMetrics(!!0&)[OptimizedTier1] +00007FA12EF8FFC0 10 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::get_AnalyticsSampleRate()[OptimizedTier1] +00007FA12EF90000 d3b instance void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::EnumerateMetrics(!!0&)[OptimizedTier1] +00007FA12EF90D70 10 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::get_SamplingLimitDecision()[OptimizedTier1] +00007FA12EF90DA0 4e2 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::EnumerateMetrics(!!0&)[OptimizedTier1] +00007FA12EF912D0 39 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagItem`1[System.Double]::.ctor(string,!0,uint8[])[OptimizedTier1] +00007FA12EF91340 10c5 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter+TagWriter::Process(valuetype Datadog.Trace.Tagging.TagItem`1)[OptimizedTier1] +00007FA12EF92440 357 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::WriteMetric(uint8[]&,int32&,string,float64,class Datadog.Trace.Processors.ITagProcessor[])[OptimizedTier1] +00007FA12EF927C0 ca instance void [System.Private.CoreLib] System.Threading.ManualResetEventSlim::set_Waiters(int32)[OptimizedTier1] +00007FA12780F970 18 stub<20782> GenerateResolveStub +00007FA1277CD7A0 20 stub<20783> GenerateDispatchStub +00007FA12EF928B0 c instance valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Int64,System.__Canon]::get_Current()[OptimizedTier1] +00007FA12EF928D0 b instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.HeartbeatManager::WalkCallback(class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.KestrelConnection)[OptimizedTier1] +00007FA12EF92900 14f instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.KestrelConnection::TickHeartbeat()[OptimizedTier1] +00007FA12EF92A90 6c instance valuetype System.Collections.Generic.List`1/Enumerator [System.Private.CoreLib] System.Collections.Generic.List`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::GetEnumerator()[OptimizedTier1] +00007FA12EF92B20 c instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.__Canon,System.__Canon]]::get_Current()[OptimizedTier1] +00007FA12EF92B40 2e instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.HttpConnection+<>c__12`1[System.__Canon]::b__12_0(object)[OptimizedTier1] +00007FA12E673400 18 stub<20784> GenerateLookupStub +00007FA12E673420 18 stub<20785> GenerateLookupStub +00007FA12EF92B90 c2 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.HttpConnection::Tick()[OptimizedTier1] +00007FA12EF92C70 68 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::Tick(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12E673440 18 stub<20786> GenerateLookupStub +00007FA12EF92CF0 67 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::CheckForTimeout(int64)[OptimizedTier1] +00007FA12F010D08 c0 stub<20787> AllocateTemporaryEntryPoints +00007FA12F010DC8 a8 stub<20788> AllocateTemporaryEntryPoints +00007FA12EF92D70 1ac instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::CheckForReadDataRateTimeout(int64)[OptimizedTier1] +00007FA12EF92F60 eb instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::CheckForWriteDataRateTimeout(int64)[OptimizedTier1] +00007FA12EF93080 1 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::Microsoft.AspNetCore.Server.Kestrel.Core.Internal.IRequestProcessor.Tick(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12EF930A0 2a instance bool [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.__Canon,System.__Canon]]::MoveNextRare()[OptimizedTier1] +00007FA12EF930E0 1 instance void [System.Private.CoreLib] System.Collections.Generic.List`1+Enumerator[System.ValueTuple`2[System.__Canon,System.__Canon]]::Dispose()[OptimizedTier1] +00007FA12EF93100 e8 instance valuetype System.Threading.PortableThreadPool/HillClimbing/Complex [System.Private.CoreLib] System.Threading.PortableThreadPool+HillClimbing::GetWaveComponent(float64[],int32,float64)[OptimizedTier1] +00007FA12780F9E0 18 stub<20789> GenerateResolveStub +00007FA1277CD7C0 20 stub<20790> GenerateDispatchStub +00007FA12E673460 18 stub<20791> GenerateLookupStub +00007FA12E673480 18 stub<20792> GenerateLookupStub +00007FA12EF93240 1ce instance void [System.Private.CoreLib] System.Threading.Tasks.TaskFactory+CompleteOnInvokePromise::Invoke(class System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12EF93430 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF93590 5e instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::FlushBuffer(class Datadog.Trace.Agent.SpanBuffer)[OptimizedTier1] +00007FA12EF93610 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF93630 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF93790 55 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0::g__InternalBufferFlush|0()[OptimizedTier1] +00007FA12EF93800 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF93820 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12EF93980 1a5 instance bool [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::Lock()[OptimizedTier1] +00007FA12EF93B60 255 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteArrayHeaderForceArray32Block(uint8[]&,int32,uint32)[OptimizedTier1] +00007FA12F010E88 18 stub<20793> AllocateTemporaryEntryPoints +00007FA12F010EA0 18 stub<20794> AllocateTemporaryEntryPoints +00007FA12EF93DE0 11a instance void [System.Private.CoreLib] System.Threading.Tasks.Task+TwoTaskWhenAnyPromise`1[System.__Canon]::Invoke(class System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12EF93F20 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21]::MoveNext()[OptimizedTier1] +00007FA12EF93F40 197 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12EF94100 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F010EB8 18 stub<20795> AllocateTemporaryEntryPoints +00007FA12EF94120 352 instance void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator+d__21::MoveNext()[OptimizedTier1] +00007FA12EF944D0 117 instance void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::UpdateBucket()[OptimizedTier1] +00007FA12EF94620 8 void [System.Private.CoreLib] System.Threading.Volatile::Write(float64&,float64)[OptimizedTier1] +00007FA12F010ED0 18 stub<20796> AllocateTemporaryEntryPoints +00007FA12EF94640 102 class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.Task::WhenAny(class System.Threading.Tasks.Task,class System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12EF94760 15e instance void [System.Private.CoreLib] System.Threading.Tasks.Task+TwoTaskWhenAnyPromise`1[System.__Canon]::.ctor(!0,!0)[OptimizedTier1] +00007FA12EF948E0 56 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12EF94960 5f void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF949E0 223 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12EF94C30 8b instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::Clear()[OptimizedTier1] +00007FA12EF94CF0 5 instance void [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::set_IsFull(bool)[OptimizedTier1] +00007FA12EF94D20 100 class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.Task::WhenAny(class System.Threading.Tasks.Task[])[OptimizedTier1] +00007FA12EF94E40 1bf class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Threading.Tasks.TaskFactory::CommonCWAnyLogic(class System.Collections.Generic.IList`1,bool)[OptimizedTier1] +00007FA12EF95020 95 instance void [System.Private.CoreLib] System.Threading.Tasks.TaskFactory+CompleteOnInvokePromise::.ctor(class System.Collections.Generic.IList`1,bool)[OptimizedTier1] +00007FA12780FA50 18 stub<20797> GenerateResolveStub +00007FA1277CD7E0 20 stub<20798> GenerateDispatchStub +00007FA12EF950D0 71 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ControllerBase::get_HttpContext()[OptimizedTier1] +00007FA12EF95160 3e5 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::.ctor(class System.Collections.Generic.IEnumerable`1,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12F010EE8 18 stub<20799> AllocateTemporaryEntryPoints +00007FA12EF95570 19d instance class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.LoggerFactory::CreateLogger(string)[OptimizedTier1] +00007FA12EF95740 5 instance bool [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.LoggerFactory::CheckDisposed()[OptimizedTier1] +00007FA12EF95760 53 instance void [System.Private.CoreLib] System.Threading.AsyncLocalValueMap+TwoElementAsyncLocalValueMap::.ctor(valuetype System.Collections.Generic.KeyValuePair`2,valuetype System.Collections.Generic.KeyValuePair`2)[OptimizedTier1] +00007FA12EF957D0 4 instance int32 [System.Net.Primitives] System.Net.IPEndPoint::get_Port()[OptimizedTier1] +00007FA12EF957F0 7e valuetype System.ParsingError [System.Private.Uri] System.Uri::ParseScheme(string,valuetype System.Uri/Flags&,class System.UriParser&)[OptimizedTier1] +00007FA12EF958A0 287 int32 [System.Private.Uri] System.Uri::ParseSchemeCheckImplicitFile(char*,int32,valuetype System.ParsingError&,valuetype System.Uri/Flags&,class System.UriParser&)[OptimizedTier1] +00007FA12F010F00 90 stub<20800> AllocateTemporaryEntryPoints +00007FA12EF95B50 3e6 instance void [System.Private.Uri] System.Uri::InitializeUri(valuetype System.ParsingError,valuetype System.UriKind,class System.UriFormatException&)[OptimizedTier1] +00007FA12F010F90 48 stub<20801> AllocateTemporaryEntryPoints +00007FA12F010FD8 18 stub<20802> AllocateTemporaryEntryPoints +00007FA12F012000 18 stub<20803> AllocateTemporaryEntryPoints +00007FA12EF95FA0 bb bool [System.Private.Uri] System.Uri::CheckForUnicodeOrEscapedUnreserved(string)[OptimizedTier1] +00007FA12EF96080 60a instance valuetype System.ParsingError [System.Private.Uri] System.Uri::PrivateParseMinimal()[OptimizedTier1] +00007FA12EF966B0 7c instance string [System.Private.Uri] System.Text.ValueStringBuilder::ToString()[OptimizedTier1] +00007FA12EF96750 4 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::set_Revision(int32)[OptimizedTier1] +00007FA12EF96770 5 instance class System.Reflection.Assembly [System.Private.CoreLib] System.RuntimeType::get_Assembly()[OptimizedTier1] +00007FA12780FAC0 18 stub<20804> GenerateResolveStub +00007FA1277CD800 20 stub<20805> GenerateDispatchStub +00007FA12F012018 60 stub<20806> AllocateTemporaryEntryPoints +00007FA12EF967A0 105 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[System.__Canon]::RemoveAll(class System.Predicate`1)[OptimizedTier1] +00007FA12EF968E0 ac instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::AcquireLocks(int32,int32,int32&)[OptimizedTier1] +00007FA12F012078 18 stub<20807> AllocateTemporaryEntryPoints +00007FA12F012090 60 stub<20808> AllocateTemporaryEntryPoints +00007FA12F0120F0 18 stub<20809> AllocateTemporaryEntryPoints +00007FA12EF969C0 1cf instance bool [System.Linq] System.Linq.Enumerable+SelectManySingleSelectorIterator`2[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12EF96BD0 b instance void [System.Private.CoreLib] System.Text.StringBuilder::.ctor(int32)[OptimizedTier1] +00007FA12EF96BF0 8 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_NullValueHandling()[OptimizedTier1] +00007FA12EF96C10 179 int32 [System.Net.Http] System.Net.Http.Headers.MediaTypeHeaderValue::GetMediaTypeExpressionLength(string,int32,string&)[OptimizedTier1] +00007FA12EF96DB0 7c instance valuetype [System.Runtime]System.Nullable`1 [System.Net.Http] System.Net.Http.HttpContent::GetComputedOrBufferLength()[OptimizedTier1] +00007FA12EF96E50 4e instance class System.Threading.Tasks.Task [System.Private.CoreLib] System.Threading.Tasks.ValueTask::AsTask()[OptimizedTier1] +00007FA12EF96EC0 21 class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Create()[OptimizedTier1] +00007FA12EF96F00 8c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::.ctor()[OptimizedTier1] +00007FA12EF96FA0 e class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.IContractResolver [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.DefaultContractResolver::get_Instance()[OptimizedTier1] +00007FA12EF96FC0 ba instance bool [System.Private.CoreLib] System.Globalization.CultureInfo::Equals(object)[OptimizedTier1] +00007FA12EF970A0 7a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::.ctor(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[OptimizedTier1] +00007FA12EF97140 1b1 instance int32 [System.Private.CoreLib] System.Text.DecoderNLS::GetChars(uint8*,int32,char*,int32,bool)[OptimizedTier1] +00007FA12EF97320 19 void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.BufferUtils::ReturnBuffer(class Datadog.Trace.Vendors.Newtonsoft.Json.IArrayPool`1,char[])[OptimizedTier1] +00007FA12EF97350 36 instance class Datadog.Trace.Agent.IApiRequest [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequestFactory::Create(class [System.Runtime]System.Uri)[OptimizedTier1] +00007FA12EF973A0 9c instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::.ctor(class [System.Net.Http]System.Net.Http.HttpClient,class [System.Runtime]System.Uri)[OptimizedTier1] +00007FA12EF97460 e class System.Net.Http.HttpMethod [System.Net.Http] System.Net.Http.HttpMethod::get_Post()[OptimizedTier1] +00007FA12EF97480 e class System.Net.Http.HttpMethod [System.Net.Http] System.Net.Http.HttpMethod::get_Get()[OptimizedTier1] +00007FA12EF974A0 78 instance void [System.Net.Http] System.Net.Http.HttpRequestMessage::set_Content(class System.Net.Http.HttpContent)[OptimizedTier1] +00007FA12EF97530 97 instance void [System.Net.Http] System.Net.Http.Headers.HttpRequestHeaders::AddHeaders(class System.Net.Http.Headers.HttpHeaders)[OptimizedTier1] +00007FA12EF975E0 20c instance void [System.Net.Http] System.Net.Http.Headers.HttpHeaders::AddHeaders(class System.Net.Http.Headers.HttpHeaders)[OptimizedTier1] +00007FA12EF97810 e7 instance void [System.Net.Http] System.Net.Http.Headers.HttpRequestHeaders::set_ExpectContinue(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12EF97920 248 instance bool [System.Net.Http] System.Net.Http.Headers.HttpHeaders::RemoveParsedValue(valuetype System.Net.Http.Headers.HeaderDescriptor,object)[OptimizedTier1] +00007FA12EF97B90 83 class System.Threading.CancellationTokenSource [System.Private.CoreLib] System.Threading.CancellationTokenSource::CreateLinkedTokenSource(valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF97C30 a2 instance int32 [System.Net.Http] System.Net.Http.Headers.Int64NumberHeaderParser::GetParsedValueLength(string,int32,object,object&)[OptimizedTier1] +00007FA12EF97D00 61 int32 [System.Net.Http] System.Net.Http.HttpRuleParser::GetNumberLength(string,int32,bool)[OptimizedTier1] +00007FA12F012108 18 stub<20810> AllocateTemporaryEntryPoints +00007FA12EF97D80 8e bool [System.Net.Http] System.Net.Http.Headers.HeaderUtilities::TryParseInt64(string,int32,int32,int64&)[OptimizedTier1] +00007FA12EF97E30 a0 bool [System.Private.CoreLib] System.Int64::TryParse(valuetype System.ReadOnlySpan`1,valuetype System.Globalization.NumberStyles,class System.IFormatProvider,int64&)[OptimizedTier1] +00007FA12EF97F00 48c valuetype System.Number/ParsingStatus [System.Private.CoreLib] System.Number::TryParseInt64IntegerStyle(valuetype System.ReadOnlySpan`1,valuetype System.Globalization.NumberStyles,class System.Globalization.NumberFormatInfo,int64&)[OptimizedTier1] +00007FA12F012120 60 stub<20811> AllocateTemporaryEntryPoints +00007FA12F012180 18 stub<20812> AllocateTemporaryEntryPoints +00007FA12EF983B0 144 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection+ContentLengthReadStream::CopyToAsync(class [System.Runtime]System.IO.Stream,int32,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF98520 76 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection::CopyToContentLengthAsync(class [System.Runtime]System.IO.Stream,bool,uint64,int32,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF985B0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12EF985D0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F012198 18 stub<20813> AllocateTemporaryEntryPoints +00007FA12F0121B0 18 stub<20814> AllocateTemporaryEntryPoints +00007FA12F0121C8 18 stub<20815> AllocateTemporaryEntryPoints +00007FA12EF98740 887 instance void [System.Net.Http] System.Net.Http.HttpConnection+d__109::MoveNext()[OptimizedTier1] +00007FA12EF99040 33a instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::CopyFromBufferAsync(class [System.Runtime]System.IO.Stream,bool,int32,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF993A0 20 instance bool [System.Net.Http] System.Net.Http.HttpConnection+ContentLengthReadStream::get_NeedsDrain()[OptimizedTier1] +00007FA12EF993E0 b5 instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource+Linked1CancellationTokenSource::Dispose(bool)[OptimizedTier1] +00007FA12EF994C0 af instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::.ctor(class [System.Net.Http]System.Net.Http.HttpResponseMessage)[OptimizedTier1] +00007FA12EF99590 5d instance class [System.Runtime]System.Collections.Generic.ICollection`1 [System.Net.Http] System.Net.Http.Headers.HttpContentHeaders::get_ContentEncoding()[OptimizedTier1] +00007FA12F0121E0 18 stub<20816> AllocateTemporaryEntryPoints +00007FA12F0121F8 a8 stub<20817> AllocateTemporaryEntryPoints +00007FA12F0122A0 18 stub<20818> AllocateTemporaryEntryPoints +00007FA12EF99610 116 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Net.Http] System.Net.Http.Headers.HttpHeaderValueCollection`1[System.__Canon]::GetEnumerator()[OptimizedTier1] +00007FA12EF99750 5f class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions::GetStreamReader(class Datadog.Trace.Agent.IApiResponse)[OptimizedTier1] +00007FA12EF997D0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12EF997F0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0122B8 18 stub<20819> AllocateTemporaryEntryPoints +00007FA12F0122D0 18 stub<20820> AllocateTemporaryEntryPoints +00007FA12F0122E8 18 stub<20821> AllocateTemporaryEntryPoints +00007FA12F012300 18 stub<20822> AllocateTemporaryEntryPoints +00007FA12F012318 18 stub<20823> AllocateTemporaryEntryPoints +00007FA12F012330 18 stub<20824> AllocateTemporaryEntryPoints +00007FA12EF99950 311 instance void [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions+d__2::MoveNext()[OptimizedTier1] +00007FA12EF99CA0 20 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::GetStreamAsync()[OptimizedTier1] +00007FA12EF99CE0 f instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpContent::ReadAsStreamAsync()[OptimizedTier1] +00007FA12F012348 18 stub<20825> AllocateTemporaryEntryPoints +00007FA12EF99D10 1c1 instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpContent::ReadAsStreamAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12EF99EF0 d instance void [System.Private.CoreLib] System.IO.MemoryStream::.ctor(uint8[],int32,int32,bool)[OptimizedTier1] +00007FA12EF99F10 194 instance void [System.Private.CoreLib] System.IO.MemoryStream::.ctor(uint8[],int32,int32,bool,bool)[OptimizedTier1] +00007FA12EF9A0D0 5 instance class [System.Runtime]System.Text.Encoding [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::get_ContentEncoding()[OptimizedTier1] +00007FA12EF9A0F0 35a instance void [System.Private.CoreLib] System.IO.StreamReader::.ctor(class System.IO.Stream,class System.Text.Encoding,bool,int32,bool)[OptimizedTier1] +00007FA12EF9A470 5 instance bool [System.Private.CoreLib] System.IO.MemoryStream::get_CanRead()[OptimizedTier1] +00007FA12EF9A490 5d instance class System.Text.Decoder [System.Private.CoreLib] System.Text.UTF8Encoding::GetDecoder()[OptimizedTier1] +00007FA12EF9A510 1a instance int32 [System.Private.CoreLib] System.Text.UTF8Encoding+UTF8EncodingSealed::GetMaxCharCount(int32)[OptimizedTier1] +00007FA12EF9A540 1b instance valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.Text.UTF8Encoding+UTF8EncodingSealed::get_Preamble()[OptimizedTier1] +00007FA12EF9A570 116 instance int32 [System.Private.CoreLib] System.IO.StreamReader::Read(char[],int32,int32)[OptimizedTier1] +00007FA12EF9A6A0 13b instance int32 [System.Private.CoreLib] System.IO.StreamReader::ReadSpan(valuetype System.Span`1)[OptimizedTier1] +00007FA12F012360 18 stub<20826> AllocateTemporaryEntryPoints +00007FA12EF9A800 61f instance int32 [System.Private.CoreLib] System.IO.StreamReader::ReadBuffer(valuetype System.Span`1,bool&)[OptimizedTier1] +00007FA12EF9AE60 dc instance bool [System.Private.CoreLib] System.IO.StreamReader::IsPreamble()[OptimizedTier1] +00007FA12EF9AF60 2b instance void [System.Private.CoreLib] System.IO.TextReader::Dispose()[OptimizedTier1] +00007FA12EF9AFB0 2d instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientResponse::Dispose()[OptimizedTier1] +00007FA12EF9B000 2c instance void [System.Net.Http] System.Net.Http.HttpResponseMessage::Dispose()[OptimizedTier1] +00007FA12EF9B050 4f instance void [System.Net.Http] System.Net.Http.HttpResponseMessage::Dispose(bool)[OptimizedTier1] +00007FA12EF9B0C0 cd instance void [System.Net.Http] System.Net.Http.HttpConnectionResponseContent::Dispose(bool)[OptimizedTier1] +00007FA12EF9B1B0 d instance void [System.Private.CoreLib] System.HashCode::Add(!!0)[OptimizedTier1] +00007FA12EF9B1E0 4 instance int32 [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::get_SpanCount()[OptimizedTier1] +00007FA12EF9B200 142 valuetype [System.Runtime]System.ReadOnlySpan`1 [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::ReplaceCharacters(valuetype [System.Runtime]System.ReadOnlySpan`1,char,char,char,valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[])[OptimizedTier1] +00007FA12EF9B380 74 bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::NeedsCharacterReplacement(valuetype [System.Runtime]System.ReadOnlySpan`1,char,char,valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2[])[OptimizedTier1] +00007FA12EF9B410 29 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[System.Char]::CopyTo(valuetype System.Span`1)[OptimizedTier1] +00007FA12E6734A0 18 stub<20827> GenerateLookupStub +00007FA12EF9B450 a3 instance string [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_Scheme()[OptimizedTier1] +00007FA12EF9B520 17a !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::DuckCast(object)[OptimizedTier1] +00007FA12EF9B6D0 17a !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::Create(object)[OptimizedTier1] +00007FA12EF9B880 181 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternPathSegmentStruct]::Create(object)[OptimizedTier1] +00007FA12EF9BA30 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternPathSegmentStruct]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EF9BB60 5a instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12EF9BBE0 1b2 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[OptimizedTier1] +00007FA12EF9BDC0 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternContentPartStruct]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F012378 18 stub<20828> AllocateTemporaryEntryPoints +00007FA12EF9BEF0 11d instance void [System.Linq] System.Linq.Buffer`1[System.__Canon]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12EF9C040 409 !!0[] [System.Linq] System.Collections.Generic.EnumerableHelpers::ToArray(class [System.Runtime]System.Collections.Generic.IEnumerable`1,int32&)[OptimizedTier1] +00007FA12EF9C4A0 f3 instance object [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Routing.RouteValueDictionary::get_Item(string)[OptimizedTier1] +00007FA12EF9C5C0 9 instance uint64 [Datadog.Trace] Datadog.Trace.Span::get_TraceId()[OptimizedTier1] +00007FA12EF9C5E0 19 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::FindChunkForIndex(int32)[OptimizedTier1] +00007FA12EF9C610 1e instance int32 [System.Private.CoreLib] System.String::LastIndexOf(char)[OptimizedTier1] +00007FA12EF9C650 5 instance class [System.Runtime]System.Collections.Generic.IList`1 [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor::get_Parameters()[OptimizedTier1] +00007FA12EF9C670 37 instance void [System.Threading.Tasks.Parallel] System.Threading.Tasks.TaskReplicator+Replica+<>c::<.ctor>b__4_0(object)[OptimizedTier1] +00007FA12EF9C6C0 82 instance valuetype System.Threading.Tasks.RangeWorker [System.Threading.Tasks.Parallel] System.Threading.Tasks.RangeManager::RegisterNewWorker()[OptimizedTier1] +00007FA12EF9C760 78 instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::AddHeader(string,string)[OptimizedTier1] +00007FA12EF9C800 48 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::MoveToContent()[OptimizedTier1] +00007FA12EF9C860 d5 instance valuetype System.Threading.Tasks.ValueTask`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.Int32]::get_Task()[OptimizedTier1] +00007FA12EF9C960 1f instance void [System.Net.Http] System.Net.Http.HttpResponseMessage::.ctor()[OptimizedTier1] +00007FA12EF9C990 6 instance void [System.Net.Http] System.Net.Http.HttpConnectionResponseContent::.ctor()[OptimizedTier1] +00007FA12EF9C9B0 a instance valuetype [System.Runtime]System.Nullable`1 [System.Net.Http] System.Net.Http.Headers.HttpResponseHeaders::get_ConnectionClose()[OptimizedTier1] +00007FA12EF9C9D0 e class System.Net.Http.HttpMethod [System.Net.Http] System.Net.Http.HttpMethod::get_Head()[OptimizedTier1] +00007FA12EF9C9F0 e class System.Net.Http.HttpMethod [System.Net.Http] System.Net.Http.HttpMethod::get_Connect()[OptimizedTier1] +00007FA12EF9CA10 a instance valuetype [System.Runtime]System.Nullable`1 [System.Net.Http] System.Net.Http.Headers.HttpResponseHeaders::get_TransferEncodingChunked()[OptimizedTier1] +00007FA12EF9CA30 b instance void [System.Net.Http] System.Net.Http.HttpConnectionResponseContent::SetStream(class [System.Runtime]System.IO.Stream)[OptimizedTier1] +00007FA1277CD820 20 stub<20829> GenerateDispatchStub +00007FA1277CD840 20 stub<20830> GenerateDispatchStub +00007FA12EF9CA50 4 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__29_0(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[OptimizedTier1] +00007FA12EF9CA70 4 instance class Datadog.Trace.RemoteConfigurationManagement.Product [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__29_1(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[OptimizedTier1] +00007FA12EF9CA90 4a instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__30_0(class Datadog.Trace.RemoteConfigurationManagement.Product)[OptimizedTier1] +00007FA12EF9CB00 5 instance class [System.Collections]System.Collections.Generic.Dictionary`2 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Product::get_AppliedConfigurations()[OptimizedTier1] +00007FA12F012390 30 stub<20831> AllocateTemporaryEntryPoints +00007FA12F0123C0 78 stub<20832> AllocateTemporaryEntryPoints +00007FA12F012438 18 stub<20833> AllocateTemporaryEntryPoints +00007FA12780FB30 18 stub<20834> GenerateResolveStub +00007FA1277CD860 20 stub<20835> GenerateDispatchStub +00007FA12EF9CB20 127 instance bool [System.Private.CoreLib] System.Byte::TryFormat(valuetype System.Span`1,int32&,valuetype System.ReadOnlySpan`1,class System.IFormatProvider)[OptimizedTier1] +00007FA12EF9CC60 42 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.NullValueHandling [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalBase::ResolvedNullValueHandling(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty)[OptimizedTier1] +00007FA12EF9CCC0 8 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_ItemNullValueHandling()[OptimizedTier1] +00007FA12EF9CCE0 47 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteNull()[OptimizedTier1] +00007FA12EF9CD40 24 instance object [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+KeyCollection+Enumerator[System.__Canon,System.__Canon]::System.Collections.IEnumerator.get_Current()[OptimizedTier1] +00007FA12EF9CD80 35b instance int32 [System.Private.CoreLib] System.Text.DecoderNLS::GetChars(uint8[],int32,int32,char[],int32,bool)[OptimizedTier1] +00007FA12EF9D100 75 instance object [System.Private.CoreLib] System.Object::MemberwiseClone()[OptimizedTier1] +00007FA12EF9D1A0 3f8 instance class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult [Samples.BuggyBits] BuggyBits.Controllers.ProductsController::ParallelLock()[OptimizedTier1OSR] +00007FA12EF9D5F0 65 instance valuetype Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataKind [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity::get_MetadataKind()[OptimizedTier1] +00007FA12EF9D670 e instance int64 [System.Private.CoreLib] System.DateTime::get_Ticks()[OptimizedTier1] +00007FA12EF9D690 ab class System.Linq.IOrderedEnumerable`1 [System.Linq] System.Linq.Enumerable::OrderBy(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12EF9D760 9e instance void [System.Linq] System.Linq.OrderedEnumerable`2[System.__Canon,System.Int32]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IComparer`1,bool,class System.Linq.OrderedEnumerable`1)[OptimizedTier1] +00007FA12EF9D820 152 instance !0[] [System.Linq] System.Linq.OrderedEnumerable`1[System.__Canon]::ToArray()[OptimizedTier1] +00007FA12F012498 30 stub<20836> AllocateTemporaryEntryPoints +00007FA12E6734C0 18 stub<20837> GenerateLookupStub +00007FA12EF9D9A0 ec class Microsoft.Extensions.Logging.ILogger [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerFactoryExtensions::CreateLogger(class Microsoft.Extensions.Logging.ILoggerFactory,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12EF9DAC0 7dd instance void [System.Net.Http] System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8::MoveNext()[OptimizedTier1] +00007FA12EF9E330 7d class System.Text.Encoding [System.Private.CoreLib] System.Text.Encoding::FilterDisallowedEncodings(class System.Text.Encoding)[OptimizedTier1] +00007FA12F0124C8 48 stub<20838> AllocateTemporaryEntryPoints +00007FA12ED6DBD0 277 native int [System.Private.CoreLib] System.StubHelpers.CSTRMarshaler::ConvertToNative(int32,string,native int)[OptimizedTier1] +00007FA12EF9E3D0 117 int32 [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::StringToAnsiString(string,uint8*,int32,bool,bool)[OptimizedTier1] +00007FA12EF9E510 5 instance class Datadog.Trace.Processors.ITraceProcessor[] [Datadog.Trace] Datadog.Trace.TracerManager::get_TraceProcessors()[OptimizedTier1] +00007FA12EF9E530 5 instance class Datadog.Trace.Agent.IAgentWriter [Datadog.Trace] Datadog.Trace.TracerManager::get_AgentWriter()[OptimizedTier1] +00007FA128524310 9 bool [System.Private.CoreLib] System.TimeSpan::op_Equality(valuetype System.TimeSpan,valuetype System.TimeSpan)[OptimizedTier1] +00007FA128524330 8 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_IsRunningInAzureAppService()[OptimizedTier1] +00007FA12A2F96F0 8 instance class Datadog.Trace.Configuration.ImmutableAzureAppServiceSettings [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_AzureAppServiceMetadata()[OptimizedTier1] +00007FA12F050020 63d int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteArrayHeader(uint8[]&,int32,int32)[OptimizedTier1] +00007FA12F050680 645 int32 [Datadog.Trace] Datadog.Trace.Vendors.MessagePack.MessagePackBinary::WriteArrayHeader(uint8[]&,int32,uint32)[OptimizedTier1] +00007FA12F012510 18 stub<20839> AllocateTemporaryEntryPoints +00007FA12F012528 18 stub<20840> AllocateTemporaryEntryPoints +00007FA12F050CF0 897 instance void [Samples.BuggyBits] BuggyBits.SelfInvoker+d__10::MoveNext()[OptimizedTier1] +00007FA12F0515F0 9e string [Datadog.Trace] Datadog.Trace.Util.UriHelpers::CleanUri(class [System.Runtime]System.Uri,bool,bool)[OptimizedTier1] +00007FA12F0516B0 69 instance string [System.Private.Uri] System.Uri::get_Authority()[OptimizedTier1] +00007FA12F051740 b44 instance string [System.Private.Uri] System.Uri::ReCreateParts(valuetype System.UriComponents,uint16,valuetype System.UriFormat)[OptimizedTier1] +00007FA12F0522D0 59 void [System.Private.Uri] System.UriHelper::UnescapeString(valuetype [System.Private.CoreLib]System.ReadOnlySpan`1,valuetype System.Text.ValueStringBuilder&,char,char,char,valuetype System.UnescapeMode,class System.UriParser,bool)[OptimizedTier1] +00007FA12F012540 18 stub<20841> AllocateTemporaryEntryPoints +00007FA12F052340 671 void [System.Private.Uri] System.UriHelper::UnescapeString(char*,int32,int32,valuetype System.Text.ValueStringBuilder&,char,char,char,valuetype System.UnescapeMode,class System.UriParser,bool)[OptimizedTier1] +00007FA12F0529E0 8e instance void [System.Private.Uri] System.Text.ValueStringBuilder::Append(char*,int32)[OptimizedTier1] +00007FA12F052AA0 126 instance bool [System.Private.CoreLib] System.UInt16::TryFormat(valuetype System.Span`1,int32&,valuetype System.ReadOnlySpan`1,class System.IFormatProvider)[OptimizedTier1] +00007FA12F012558 18 stub<20842> AllocateTemporaryEntryPoints +00007FA12F012570 a8 stub<20843> AllocateTemporaryEntryPoints +00007FA12F012618 18 stub<20844> AllocateTemporaryEntryPoints +00007FA12F012630 18 stub<20845> AllocateTemporaryEntryPoints +00007FA12F012648 18 stub<20846> AllocateTemporaryEntryPoints +00007FA12F012660 18 stub<20847> AllocateTemporaryEntryPoints +00007FA12F052BE0 606 class Datadog.Trace.Activity.DuckTypes.IActivity [Datadog.Trace] Datadog.Trace.Activity.ActivityListener::GetCurrentActivity()[OptimizedTier1] +00007FA12F053230 89 object [Datadog.Trace] Datadog.Trace.Activity.ActivityListener::GetCurrentActivityObject()[OptimizedTier1] +00007FA12F0532E0 7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::get_Count()[OptimizedTier1] +00007FA12F053300 2e instance string [System.Private.CoreLib] System.Globalization.TextInfo::ToUpper(string)[OptimizedTier1] +00007FA12F012678 18 stub<20848> AllocateTemporaryEntryPoints +00007FA12F053360 20c instance string [System.Private.CoreLib] System.Globalization.TextInfo::ChangeCaseCommon(string)[OptimizedTier1] +00007FA12F0535A0 48 bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::IsValidHexString(string,int32)[OptimizedTier1] +00007FA12F053600 22 instance string [System.Private.CoreLib] System.UInt64::ToString(string)[OptimizedTier1] +00007FA12F053640 265 string [System.Private.CoreLib] System.Number::g__FormatUInt64Slow|44_0(uint64,string,class System.IFormatProvider)[OptimizedTier1] +00007FA12F0538E0 b3 string [System.Private.CoreLib] System.Number::Int64ToHexStr(int64,char,int32)[OptimizedTier1] +00007FA12F0539B0 9 instance string [System.Private.CoreLib] System.UInt64::ToString(class System.IFormatProvider)[OptimizedTier1] +00007FA12F0539D0 70e class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.ClrProfiler.ScopeFactory::CreateInactiveOutboundHttpSpan(class Datadog.Trace.Tracer,string,class [System.Runtime]System.Uri,valuetype Datadog.Trace.Configuration.IntegrationId,class Datadog.Trace.Tagging.HttpTags&,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,bool)[OptimizedTier1] +00007FA12F054120 e class [System.Runtime]System.Func`2 [Datadog.Trace] Datadog.Trace.PlatformHelpers.PlatformStrategy::get_ShouldSkipClientSpan()[OptimizedTier1] +00007FA12F054140 3 instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.PlatformStrategy+<>c::<.cctor>b__4_0(class Datadog.Trace.Scope)[OptimizedTier1] +00007FA12F054160 5 instance string[] [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_HttpClientExcludedUrlSubstrings()[OptimizedTier1] +00007FA12F054180 b1 bool [Datadog.Trace] Datadog.Trace.ClrProfiler.Helpers.HttpBypassHelper::UriContainsAnyOf(class [System.Runtime]System.Uri,string[])[OptimizedTier1] +00007FA12F054250 7a class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.ClrProfiler.ScopeFactory::GetActiveHttpScope(class Datadog.Trace.Tracer)[OptimizedTier1] +00007FA12F0542F0 136 instance bool [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection::g__IsNormalCompletion|27_0(valuetype Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult,valuetype Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection/<>c__DisplayClass27_0&)[OptimizedTier1] +00007FA12F054450 f instance bool [System.Net.Sockets] System.Net.Sockets.Socket::ReceiveAsync(class System.Net.Sockets.SocketAsyncEventArgs)[OptimizedTier1] +00007FA12F054480 b instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::set_UserToken(object)[OptimizedTier1] +00007FA12F0544A0 2c instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::AssignTimeout(int64,valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutReason)[OptimizedTier1] +00007FA12F0544E0 1f instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[System.Byte]::Slice(int32,int32)[OptimizedTier1] +00007FA12F054520 b9 instance int64 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Remaining()[OptimizedTier1] +00007FA12F054600 b5 instance int64 [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Length()[OptimizedTier1] +00007FA12F0546E0 e9 instance valuetype System.SequencePosition [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::get_Position()[OptimizedTier1] +00007FA12F0547F0 da instance valuetype System.SequencePosition [System.Memory] System.Buffers.ReadOnlySequence`1[System.Byte]::GetPosition(int64,valuetype System.SequencePosition)[OptimizedTier1] +00007FA12F0548F0 6 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.ZeroContentLengthMessageBody::get_IsEmpty()[OptimizedTier1] +00007FA12F054910 71 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics+<>c::b__24_0(object,string,string&,class [System.Runtime]System.Collections.Generic.IEnumerable`1&)[OptimizedTier1] +00007FA12F0549A0 71 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics+<>c::b__24_1(object,string,string&,class [System.Runtime]System.Collections.Generic.IEnumerable`1&)[OptimizedTier1] +00007FA12F054A30 9 uint64 [System.Diagnostics.DiagnosticSource] System.Diagnostics.RandomNumberGenerator::Rol64(uint64,int32)[OptimizedTier1] +00007FA12F012690 60 stub<20849> AllocateTemporaryEntryPoints +00007FA12F054A50 13d void [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::SetCurrent(class System.Diagnostics.Activity)[OptimizedTier1] +00007FA12F054BB0 16 instance string [System.Private.CoreLib] System.String::ToUpperInvariant()[OptimizedTier1] +00007FA12F054BE0 174 class Datadog.Trace.Propagators.SpanContextPropagator [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::get_Instance()[OptimizedTier1] +00007FA12F054D90 7 instance void [Datadog.Trace] Datadog.Trace.Headers.HeadersCollectionAdapter::.ctor(class [Microsoft.AspNetCore.Http.Features]Microsoft.AspNetCore.Http.IHeaderDictionary)[OptimizedTier1] +00007FA12F054DB0 64 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator+HeadersCollectionGetterAndSetter`1[Datadog.Trace.Headers.HeadersCollectionAdapter]::Get(!0,string)[OptimizedTier1] +00007FA12F054E30 63 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Headers.HeadersCollectionAdapter::GetValues(string)[OptimizedTier1] +00007FA12F054EB0 10 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpHeaders::System.Collections.Generic.IDictionary.TryGetValue(string,valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues&)[OptimizedTier1] +00007FA12F054EE0 5 instance class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_HeaderTags()[OptimizedTier1] +00007FA12F054F00 95 bool [Datadog.Trace] Datadog.Trace.ExtensionMethods.DictionaryExtensions::IsEmpty(class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2)[OptimizedTier1] +00007FA12F054FB0 58 instance void [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::.ctor(int32,class [System.Collections]System.Collections.Generic.List`1>,string)[OptimizedTier1] +00007FA12F055030 147 instance void [Datadog.Trace] Datadog.Trace.TraceContext::.ctor(class Datadog.Trace.IDatadogTracer,class Datadog.Trace.Tagging.TraceTagCollection)[OptimizedTier1] +00007FA12F0551A0 5 instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_Environment()[OptimizedTier1] +00007FA12F0551C0 b instance void [Datadog.Trace] Datadog.Trace.TraceContext::set_Environment(string)[OptimizedTier1] +00007FA12F0551E0 5 instance string [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_ServiceVersion()[OptimizedTier1] +00007FA12F055200 b instance void [Datadog.Trace] Datadog.Trace.TraceContext::set_ServiceVersion(string)[OptimizedTier1] +00007FA12F055220 33 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.SetSamplingPriority(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F055270 20 instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_Origin()[OptimizedTier1] +00007FA12F0552B0 1c0 instance class System.Threading.IAsyncLocalValueMap [System.Private.CoreLib] System.Threading.AsyncLocalValueMap+TwoElementAsyncLocalValueMap::Set(class System.Threading.IAsyncLocal,object,bool)[OptimizedTier1] +00007FA12F055490 34 instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::SetAnalyticsSampleRate(valuetype Datadog.Trace.Configuration.IntegrationId,class Datadog.Trace.Configuration.ImmutableTracerSettings,bool)[OptimizedTier1] +00007FA12F0554E0 5a instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::GetIntegrationAnalyticsSampleRate(valuetype Datadog.Trace.Configuration.IntegrationId,bool)[OptimizedTier1] +00007FA12F055550 6 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Configuration.ImmutableIntegrationSettings::get_AnalyticsEnabled()[OptimizedTier1] +00007FA12F055570 10 instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::set_AnalyticsSampleRate(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F0555A0 c instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::IntegrationGeneratedSpan(valuetype Datadog.Trace.Configuration.IntegrationId)[OptimizedTier1] +00007FA12F0555C0 57 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector::IntegrationGeneratedSpan(valuetype Datadog.Trace.Configuration.IntegrationId)[OptimizedTier1] +00007FA12E6734E0 18 stub<20850> GenerateLookupStub +00007FA12F055630 6d instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplication+Context::set_Activity(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.Activity)[OptimizedTier1] +00007FA12F0556C0 5 instance class [System.Diagnostics.DiagnosticSource]System.Diagnostics.Activity [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.ActivityFeature::get_Activity()[OptimizedTier1] +00007FA12F0556E0 5 valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.EventId::op_Implicit(int32)[OptimizedTier1] +00007FA12F0126F0 18 stub<20851> AllocateTemporaryEntryPoints +00007FA12F055700 12d instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F012708 18 stub<20852> AllocateTemporaryEntryPoints +00007FA12F055850 1d6 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F055A50 65 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[System.__Canon]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F012720 18 stub<20853> AllocateTemporaryEntryPoints +00007FA12F055AD0 219 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F055D10 5 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[System.__Canon]::get_Formatter()[OptimizedTier1] +00007FA12F055D30 5 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[System.__Canon]::get_State()[OptimizedTier1] +00007FA12F055D50 6af instance string [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingRequestStartingLog::ToString()[OptimizedTier1] +00007FA12E673500 18 stub<20854> GenerateLookupStub +00007FA12F056430 10a instance valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.QueryString [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_QueryString()[OptimizedTier1] +00007FA12F056560 8 instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.get_QueryString()[OptimizedTier1] +00007FA12F056580 2f string [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingRequestStartingLog::EscapedValueOrEmptyMarker(string)[OptimizedTier1] +00007FA12F0565D0 c instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpHeaders::get_ContentLength()[OptimizedTier1] +00007FA12F0565F0 62 string [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingRequestStartingLog::ValueOrEmptyMarker(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F056670 4 instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[System.__Canon]::get_LogLevel()[OptimizedTier1] +00007FA12F0566A0 405 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[OptimizedTier1] +00007FA12F056AD0 b instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[System.__Canon]::get_EventId()[OptimizedTier1] +00007FA12F056AF0 4 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[System.__Canon]::get_Category()[OptimizedTier1] +00007FA12F056B10 226 instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F056D60 406 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F057190 fe instance bool [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_IsHttps()[OptimizedTier1] +00007FA12F0572B0 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::get_HasValue()[OptimizedTier1] +00007FA12F0572D0 2b instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::get_Value()[OptimizedTier1] +00007FA12F057310 a int32 [System.Private.CoreLib] System.Math::Max(int32,int32)[OptimizedTier1] +00007FA12F057330 241 string [System.Private.CoreLib] System.String::Concat(string,string,string,string)[OptimizedTier1] +00007FA12F0575A0 37 uint32 [Datadog.Trace] ::ComputeStringHash(string)[OptimizedTier1] +00007FA12F0575F0 69 instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.ItemsDictionary::System.Collections.Generic.IDictionary.set_Item(object,object)[OptimizedTier1] +00007FA12F012738 18 stub<20855> AllocateTemporaryEntryPoints +00007FA12F012750 60 stub<20856> AllocateTemporaryEntryPoints +00007FA12F057680 bc instance class [System.Runtime]System.Collections.Generic.IReadOnlyList`1 [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.EndpointMetadataCollection::GetOrderedMetadata()[OptimizedTier1] +00007FA12F057760 26 instance string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.Endpoint::ToString()[OptimizedTier1] +00007FA12F0577A0 5 instance class Microsoft.AspNetCore.Http.RequestDelegate [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.Endpoint::get_RequestDelegate()[OptimizedTier1] +00007FA12F0577C0 45 instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary::set_MaxAllowedErrors(int32)[OptimizedTier1] +00007FA12F057820 1b instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::.ctor()[OptimizedTier1] +00007FA12F057850 1 instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::.ctor()[OptimizedTier1] +00007FA12F057870 a1 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.Tracer::StartActiveInternal(string,class Datadog.Trace.ISpanContext,string,valuetype [System.Runtime]System.Nullable`1,bool,class Datadog.Trace.Tagging.ITags)[OptimizedTier1] +00007FA12F057930 5 instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_IsFirstPipelineExecution()[OptimizedTier1] +00007FA12F057950 e instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::set_AspNetCoreRoute(string)[OptimizedTier1] +00007FA12F0127B0 18 stub<20857> AllocateTemporaryEntryPoints +00007FA12F0127C8 18 stub<20858> AllocateTemporaryEntryPoints +00007FA12F0127E0 60 stub<20859> AllocateTemporaryEntryPoints +00007FA12F057980 24d instance class [System.Runtime]System.IDisposable [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::BeginScope(!!0)[OptimizedTier1] +00007FA12F057C00 2d instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger+Scope::.ctor(int32)[OptimizedTier1] +00007FA12F057C50 e instance class [System.Runtime]System.IDisposable [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::BeginScope(!!0)[OptimizedTier1] +00007FA12F057C70 239 instance class [System.Runtime]System.IDisposable [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::BeginScope(!!0)[OptimizedTier1] +00007FA12F057ED0 9d instance class [System.Runtime]System.IDisposable [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.LoggerFactoryScopeProvider::Push(object)[OptimizedTier1] +00007FA12F057F90 90 class System.FormattableString [System.Private.CoreLib] System.Runtime.CompilerServices.FormattableStringFactory::Create(string,object[])[OptimizedTier1] +00007FA12F058040 ae string [System.Private.CoreLib] System.FormattableString::Invariant(class System.FormattableString)[OptimizedTier1] +00007FA12E673520 18 stub<20860> GenerateLookupStub +00007FA12F058110 69 instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.ItemsDictionary::System.Collections.Generic.IDictionary.Add(object,object)[OptimizedTier1] +00007FA12F0581A0 63 instance void [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Push(!0)[OptimizedTier1] +00007FA12F012840 60 stub<20861> AllocateTemporaryEntryPoints +00007FA12F0128A0 18 stub<20862> AllocateTemporaryEntryPoints +00007FA12F058220 124 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::InvokeNextActionFilterAsync()[OptimizedTier1] +00007FA12F058370 2a instance valuetype Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary::get_ValidationState()[OptimizedTier1] +00007FA12F0583C0 16f instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary::GetValidity(class Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary/ModelStateNode,int32)[OptimizedTier1] +00007FA12F0128B8 30 stub<20863> AllocateTemporaryEntryPoints +00007FA12F058560 40e instance bool [System.Private.CoreLib] System.Threading.ManualResetEventSlim::Wait(int32,valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0589E0 5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_SupportMultipleContent()[OptimizedTier1] +00007FA12F058A00 de instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpClient::SendAsync(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12F058B00 59 instance bool [System.Net.Http] System.Net.Http.HttpMethod::get_MustHaveRequestBody()[OptimizedTier1] +00007FA12F058B70 ee instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteStartArray()[OptimizedTier1] +00007FA12F058C80 39 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteStartArray()[OptimizedTier1] +00007FA12F058CE0 44 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JArray::.ctor()[OptimizedTier1] +00007FA12F058D40 7c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteValue(float64)[OptimizedTier1] +00007FA12F058DE0 17 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(float64)[OptimizedTier1] +00007FA12F058E10 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JValue::.ctor(float64)[OptimizedTier1] +00007FA12F058E60 188 instance string [System.Private.CoreLib] System.String::Replace(char,char)[OptimizedTier1] +00007FA12F059020 8e void [System.Net.Sockets] System.Net.SocketAddressPal::ThrowOnFailure(valuetype Interop/Error)[OptimizedTier1] +00007FA12F0590D0 5 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.DebuggerWrapper::get_IsAttached()[OptimizedTier1] +00007FA12F0590F0 31 instance valuetype [System.Runtime]System.DateTimeOffset [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.SystemClock::get_UtcNow()[OptimizedTier1] +00007FA12F059140 5 instance bool [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata::get_IsReferenceOrNullableType()[OptimizedTier1] +00007FA12F059160 25 valuetype Microsoft.Extensions.Internal.ValueStopwatch [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.ValueStopwatch::StartNew()[OptimizedTier1] +00007FA12F0591A0 e3 class Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult::NotFound(string,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0592A0 6d instance valuetype Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataKind [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata::get_MetadataKind()[OptimizedTier1] +00007FA12F059330 b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::set_Layout(string)[OptimizedTier1] +00007FA12E673540 18 stub<20864> GenerateLookupStub +00007FA12E673560 18 stub<20865> GenerateLookupStub +00007FA12E673580 18 stub<20866> GenerateLookupStub +00007FA12E6735A0 18 stub<20867> GenerateLookupStub +00007FA12F059360 2b8 instance class Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheResult [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine::LocatePageFromViewLocations(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,string,bool)[OptimizedTier1] +00007FA12F059640 f2 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.ViewLocationExpanderContext::.ctor(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,string,string,string,string,bool)[OptimizedTier1] +00007FA12F059760 378 instance int32 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheKey::GetHashCode()[OptimizedTier1] +00007FA12F059B10 85 instance bool [Microsoft.Extensions.Caching.Memory] Microsoft.Extensions.Caching.Memory.CacheEntry::g__FullCheck|64_0(valuetype [System.Runtime]System.DateTime)[OptimizedTier1] +00007FA12F059BB0 9 bool [System.Private.CoreLib] System.TimeSpan::op_GreaterThanOrEqual(valuetype System.TimeSpan,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12F059BD0 79 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView::RenderPageAsync(class Microsoft.AspNetCore.Mvc.Razor.IRazorPage,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext,bool)[OptimizedTier1] +00007FA12F059C70 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F059C90 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12E6735C0 18 stub<20868> GenerateLookupStub +00007FA12F0128E8 18 stub<20869> AllocateTemporaryEntryPoints +00007FA12F012900 18 stub<20870> AllocateTemporaryEntryPoints +00007FA12F012918 18 stub<20871> AllocateTemporaryEntryPoints +00007FA12F012930 18 stub<20872> AllocateTemporaryEntryPoints +00007FA12F012948 18 stub<20873> AllocateTemporaryEntryPoints +00007FA12F012960 18 stub<20874> AllocateTemporaryEntryPoints +00007FA12F012978 18 stub<20875> AllocateTemporaryEntryPoints +00007FA12F059DF0 6a3 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView+d__19::MoveNext()[OptimizedTier1] +00007FA12F05A4F0 5 instance class [System.Runtime]System.Text.Encoding [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::get_Encoding()[OptimizedTier1] +00007FA12F05A510 194 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferTextWriter::.ctor(class Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer,class [System.Runtime]System.Text.Encoding,class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder,class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F05A6D0 13 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::Add(!0,!1)[OptimizedTier1] +00007FA12F05A700 38f instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::TryInsert(!0,!1,valuetype System.Collections.Generic.InsertionBehavior)[OptimizedTier1] +00007FA12F05AAC0 8 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[OptimizedTier1] +00007FA12F05AAE0 63 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::Write(string)[OptimizedTier1] +00007FA12F05AB60 74 instance string [System.Text.Encodings.Web] System.Text.Encodings.Web.TextEncoder::Encode(string)[OptimizedTier1] +00007FA12F05ABF0 2d0 instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext::.ctor(string,valuetype [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagMode,class [System.Runtime]System.Collections.Generic.IDictionary`2,string,class [System.Runtime]System.Func`1,class [System.Runtime]System.Action`1,class [System.Runtime]System.Func`1)[OptimizedTier1] +00007FA12F05AEE0 73 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext::.ctor(string,class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList,class [System.Runtime]System.Collections.Generic.IDictionary`2,string)[OptimizedTier1] +00007FA12F05AF70 104 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext::.ctor(class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList,class [System.Runtime]System.Collections.Generic.IDictionary`2,string)[OptimizedTier1] +00007FA12F05B090 c1 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::.ctor(string,class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList,class [System.Runtime]System.Func`3>)[OptimizedTier1] +00007FA12F05B170 4 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::set_TagMode(valuetype Microsoft.AspNetCore.Razor.TagHelpers.TagMode)[OptimizedTier1] +00007FA12E6735E0 18 stub<20876> GenerateLookupStub +00007FA12F012990 18 stub<20877> AllocateTemporaryEntryPoints +00007FA12F05B190 18d instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.TagHelperComponentTagHelper::.ctor(class Microsoft.AspNetCore.Mvc.Razor.TagHelpers.ITagHelperComponentManager,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILoggerFactory)[OptimizedTier1] +00007FA12F05B340 1 instance void [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelper::.ctor()[OptimizedTier1] +00007FA12F05B360 5 instance class [System.Runtime]System.Collections.Generic.ICollection`1 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelperComponentManager::get_Components()[OptimizedTier1] +00007FA12F05B380 b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.TagHelperComponentTagHelper::set_ViewContext(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12E673600 18 stub<20878> GenerateLookupStub +00007FA12F05B3A0 172 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.TagHelperComponentTagHelper::Init(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext)[OptimizedTier1] +00007FA12F05B540 62 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.TagHelperComponentTagHelper::ProcessAsync(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput)[OptimizedTier1] +00007FA12F05B5C0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F05B5E0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0129A8 18 stub<20879> AllocateTemporaryEntryPoints +00007FA12F0129C0 18 stub<20880> AllocateTemporaryEntryPoints +00007FA12F0129D8 18 stub<20881> AllocateTemporaryEntryPoints +00007FA12F05B740 31b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.TagHelperComponentTagHelper+d__12::MoveNext()[OptimizedTier1] +00007FA12F05BA90 1b instance !0& [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Item(int32)[OptimizedTier1] +00007FA12F05BAC0 5 instance object [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValuesAddressScheme+d__5::System.Collections.IEnumerator.get_Current()[OptimizedTier1] +00007FA12F05BAE0 4 instance valuetype Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute::get_ValueStyle()[OptimizedTier1] +00007FA12F05BB00 106 instance class Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionary [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.TempDataDictionaryFactory::GetTempData(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F05BC40 153 instance void [System.Private.CoreLib] System.Threading.ManualResetEventSlim::Set(bool)[OptimizedTier1] +00007FA12F05BDE0 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_HttpMethod()[OptimizedTier1] +00007FA12F05BE00 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_HttpUrl()[OptimizedTier1] +00007FA12F05BE20 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_HttpClientHandlerType()[OptimizedTier1] +00007FA12F05BE40 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::get_HttpStatusCode()[OptimizedTier1] +00007FA12F05BE60 7d instance valuetype System.Threading.Tasks.ValueTask [System.Private.CoreLib] System.IO.TextWriter::DisposeAsync()[OptimizedTier1] +00007FA12F05BF10 1 instance void [System.Private.CoreLib] System.IO.TextWriter::Dispose(bool)[OptimizedTier1] +00007FA12F0129F0 18 stub<20882> AllocateTemporaryEntryPoints +00007FA12E673620 18 stub<20883> GenerateLookupStub +00007FA12F012A08 18 stub<20884> AllocateTemporaryEntryPoints +00007FA12F05BF30 61e instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d::MoveNext()[OptimizedTier1] +00007FA12F05C5C0 11c instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.__Canon,System.Double]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,!1,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F05C700 3b instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]::.ctor(class Microsoft.Extensions.Logging.LogValuesFormatter,!0,!1)[OptimizedTier1] +00007FA12F05C760 ac instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F05C840 125 instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F05C990 1ff instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F05CBC0 6c instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F05CC50 237 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F05CEB0 5 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_Formatter()[OptimizedTier1] +00007FA12F05CED0 1c instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_State()[OptimizedTier1] +00007FA12F05CF00 41 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2+<>c[System.__Canon,System.Double]::<.cctor>b__13_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`2,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F05CF60 9d instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]::ToString()[OptimizedTier1] +00007FA12F05D020 4 instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_LogLevel()[OptimizedTier1] +00007FA12F05D040 405 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[OptimizedTier1] +00007FA12F05D470 b instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_EventId()[OptimizedTier1] +00007FA12F05D490 4 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,System.Double]]::get_Category()[OptimizedTier1] +00007FA12F05D4B0 24f instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F05D730 493 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12E673640 18 stub<20885> GenerateLookupStub +00007FA12F012A20 18 stub<20886> AllocateTemporaryEntryPoints +00007FA12E673660 18 stub<20887> GenerateLookupStub +00007FA12E673680 18 stub<20888> GenerateLookupStub +00007FA12F012A38 18 stub<20889> AllocateTemporaryEntryPoints +00007FA12F012A50 18 stub<20890> AllocateTemporaryEntryPoints +00007FA12F012A68 18 stub<20891> AllocateTemporaryEntryPoints +00007FA12E6736A0 18 stub<20892> GenerateLookupStub +00007FA12F012A80 90 stub<20893> AllocateTemporaryEntryPoints +00007FA12F012B10 90 stub<20894> AllocateTemporaryEntryPoints +00007FA12F012BA0 18 stub<20895> AllocateTemporaryEntryPoints +00007FA12F012BB8 18 stub<20896> AllocateTemporaryEntryPoints +00007FA12F012BD0 18 stub<20897> AllocateTemporaryEntryPoints +00007FA12F012BE8 18 stub<20898> AllocateTemporaryEntryPoints +00007FA12F012C00 18 stub<20899> AllocateTemporaryEntryPoints +00007FA12F012C18 90 stub<20900> AllocateTemporaryEntryPoints +00007FA12F012CA8 18 stub<20901> AllocateTemporaryEntryPoints +00007FA12F012CC0 18 stub<20902> AllocateTemporaryEntryPoints +00007FA12F012CD8 18 stub<20903> AllocateTemporaryEntryPoints +00007FA12F012CF0 18 stub<20904> AllocateTemporaryEntryPoints +00007FA12F05DBF0 9b1 instance void [Microsoft.AspNetCore.Authorization.Policy] Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9::MoveNext()[OptimizedTier1] +00007FA12F012D08 18 stub<20905> AllocateTemporaryEntryPoints +00007FA12F012D20 18 stub<20906> AllocateTemporaryEntryPoints +00007FA12F05E600 917 instance void [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4::MoveNext()[OptimizedTier1] +00007FA12F05EF90 66 instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask::get_IsCompletedSuccessfully()[OptimizedTier1] +00007FA12E6736C0 18 stub<20907> GenerateLookupStub +00007FA12E6736E0 18 stub<20908> GenerateLookupStub +00007FA12F05F010 e6 instance string [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::get_ContentType()[OptimizedTier1] +00007FA12F05F120 e instance valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders::Microsoft.AspNetCore.Http.IHeaderDictionary.get_ContentType()[OptimizedTier1] +00007FA12E673700 18 stub<20909> GenerateLookupStub +00007FA12F05F140 a3 instance int32 [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::get_StatusCode()[OptimizedTier1] +00007FA12F05F210 7 instance int32 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.get_StatusCode()[OptimizedTier1] +00007FA12F05F230 2c5 void [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::SetHttpStatusCode(class Datadog.Trace.Span,int32,bool,class Datadog.Trace.Configuration.ImmutableTracerSettings)[OptimizedTier1] +00007FA12F05F520 b1 string [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::ConvertStatusCodeToString(int32)[OptimizedTier1] +00007FA12F05F5F0 39 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::IsErrorStatusCode(int32,bool)[OptimizedTier1] +00007FA12F05F640 95 instance void [Datadog.Trace] Datadog.Trace.Tracer::Datadog.Trace.IDatadogTracer.Write(valuetype [System.Runtime]System.ArraySegment`1)[OptimizedTier1] +00007FA12F05F700 ff instance void [Datadog.Trace] Datadog.Trace.TracerManager::WriteTrace(valuetype [System.Runtime]System.ArraySegment`1)[OptimizedTier1] +00007FA12F05F830 175 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::WriteTrace(valuetype [System.Runtime]System.ArraySegment`1)[OptimizedTier1] +00007FA12F05F9D0 2b instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter+WorkItem::.ctor(valuetype [System.Runtime]System.ArraySegment`1)[OptimizedTier1] +00007FA12F05FA10 85 instance void [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueue`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::Enqueue(!0)[OptimizedTier1] +00007FA12F05FAC0 9f instance bool [System.Private.CoreLib] System.Collections.Concurrent.ConcurrentQueueSegment`1[Datadog.Trace.Agent.AgentWriter+WorkItem]::TryEnqueue(!0)[OptimizedTier1] +00007FA12F05FB80 97 instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger+Scope::Dispose()[OptimizedTier1] +00007FA12F05FC40 1 instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.NullScope::Dispose()[OptimizedTier1] +00007FA12F05FC60 1 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.NullScope::Dispose()[OptimizedTier1] +00007FA12F05FC80 2c instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.LoggerFactoryScopeProvider+Scope::Dispose()[OptimizedTier1] +00007FA12F05FCC0 2f instance void [System.Collections] System.Collections.Generic.Stack`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Clear()[OptimizedTier1] +00007FA12F05FD10 66 instance void [System.Private.CoreLib] System.Diagnostics.Stopwatch::Stop()[OptimizedTier1] +00007FA12F05FD90 a8 instance object& [System.Net.Http] System.Net.Http.Headers.HttpHeaders::g__GrowEntriesAndAddDefault|74_0(valuetype System.Net.Http.Headers.HeaderDescriptor)[OptimizedTier1] +00007FA12F05FE50 bb void [System.Private.CoreLib] System.Array::Resize(!!0[]&,int32)[OptimizedTier1] +00007FA12F05FF30 1e void [System.Private.CoreLib] System.Buffer::Memmove(!!0&,!!0&,native uint)[OptimizedTier1] +00007FA12F05FF70 6 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12F012D38 48 stub<20910> AllocateTemporaryEntryPoints +00007FA12F012D80 18 stub<20911> AllocateTemporaryEntryPoints +00007FA12F012D98 18 stub<20912> AllocateTemporaryEntryPoints +00007FA12F012DB0 18 stub<20913> AllocateTemporaryEntryPoints +00007FA12F012DC8 18 stub<20914> AllocateTemporaryEntryPoints +00007FA12F012DE0 18 stub<20915> AllocateTemporaryEntryPoints +00007FA12F012DF8 18 stub<20916> AllocateTemporaryEntryPoints +00007FA12F012E10 18 stub<20917> AllocateTemporaryEntryPoints +00007FA12F012E28 18 stub<20918> AllocateTemporaryEntryPoints +00007FA12F012E40 18 stub<20919> AllocateTemporaryEntryPoints +00007FA12F05FFA0 f36 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F060FA0 b instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.ActivityFeature::set_Activity(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.Activity)[OptimizedTier1] +00007FA12F060FC0 4 instance class System.Type [System.Private.CoreLib] System.Reflection.TypeInfo::AsType()[OptimizedTier1] +00007FA12E673720 18 stub<20920> GenerateLookupStub +00007FA12F012E58 18 stub<20921> AllocateTemporaryEntryPoints +00007FA12F060FE0 510 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::SerializeTrace(valuetype [System.Runtime]System.ArraySegment`1)[OptimizedTier1] +00007FA12F061540 d5 instance void [Datadog.Trace] Datadog.Trace.Agent.AgentWriter::RunSpanSampler(valuetype [System.Runtime]System.ArraySegment`1)[OptimizedTier1] +00007FA12F061640 9 instance float64 [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::GetKeepRate()[OptimizedTier1] +00007FA12F061660 8 float64 [System.Private.CoreLib] System.Threading.Volatile::Read(float64&)[OptimizedTier1] +00007FA12F061680 10 instance void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::set_TracesKeepRate(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F0616B0 2e0 instance bool [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::TryWrite(valuetype [System.Runtime]System.ArraySegment`1,uint8[]&,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F0619D0 1b void [System.Private.CoreLib] System.Threading.Monitor::TryEnter(object,bool&)[OptimizedTier1] +00007FA12F061A00 3b instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::.ctor(valuetype [System.Runtime]System.ArraySegment`1&,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F061A60 30 class Datadog.Trace.TraceContext [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::GetTraceContext(valuetype [System.Runtime]System.ArraySegment`1&)[OptimizedTier1] +00007FA12F061AB0 121 instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::.ctor(valuetype [System.Runtime]System.ArraySegment`1&,class Datadog.Trace.TraceContext,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F061BF0 fb instance void [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::.ctor(valuetype [System.Runtime]System.ArraySegment`1&,class Datadog.Trace.Span)[OptimizedTier1] +00007FA12F061D20 82 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.TraceChunkModel::IndexOf(uint64,int32)[OptimizedTier1] +00007FA12F061DC0 5 instance string [Datadog.Trace] Datadog.Trace.TraceContext::get_ServiceVersion()[OptimizedTier1] +00007FA12F061DE0 7b0 instance int32 [Datadog.Trace] Datadog.Trace.Agent.MessagePack.SpanMessagePackFormatter::Serialize(uint8[]&,int32,valuetype Datadog.Trace.Agent.MessagePack.TraceChunkModel&,class Datadog.Trace.Vendors.MessagePack.IFormatterResolver)[OptimizedTier1] +00007FA12F0625C0 8 instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::get_AspNetCoreController()[OptimizedTier1] +00007FA12F0625E0 8 instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::get_AspNetCoreAction()[OptimizedTier1] +00007FA12F062600 8 instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::get_AspNetCoreEndpoint()[OptimizedTier1] +00007FA12F062620 ae4 instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::EnumerateTags(!!0&)[OptimizedTier1] +00007FA12F063140 16f6 instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::EnumerateTags(!!0&)[OptimizedTier1] +00007FA12F064860 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpUserAgent()[OptimizedTier1] +00007FA12F064880 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_NetworkClientIp()[OptimizedTier1] +00007FA12F0648A0 5 instance string [Datadog.Trace] Datadog.Trace.Tagging.WebTags::get_HttpClientIp()[OptimizedTier1] +00007FA12F0648C0 2a uint8[] [Datadog.Trace] Datadog.Trace.Agent.MessagePack.MessagePackStringCache::GetVersionBytes(string)[OptimizedTier1] +00007FA12F064900 98 instance bool [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::EnsureCapacity(int32)[OptimizedTier1] +00007FA12F0649C0 3 valuetype System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::Create()[OptimizedTier1] +00007FA12F0649E0 1 instance void [System.Private.CoreLib] System.IO.Stream::Dispose(bool)[OptimizedTier1] +00007FA12F064A00 8 instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.Boolean]::.ctor()[OptimizedTier1] +00007FA12F064A20 f instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::get_Task()[OptimizedTier1] +00007FA12F012E70 18 stub<20922> AllocateTemporaryEntryPoints +00007FA12F012E88 18 stub<20923> AllocateTemporaryEntryPoints +00007FA12F012EA0 18 stub<20924> AllocateTemporaryEntryPoints +00007FA12F012EB8 18 stub<20925> AllocateTemporaryEntryPoints +00007FA12F012ED0 18 stub<20926> AllocateTemporaryEntryPoints +00007FA12F064A40 bc0 instance void [Datadog.Trace] Datadog.Trace.Agent.Api+d__22::MoveNext()[OptimizedTier1] +00007FA12F012EE8 18 stub<20927> AllocateTemporaryEntryPoints +00007FA12F0656C0 85 instance valuetype System.Threading.Tasks.ValueTask`1 [System.Private.CoreLib] System.IO.StreamReader::ReadBufferAsync(valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F065760 e6 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F012F00 18 stub<20928> AllocateTemporaryEntryPoints +00007FA12F012F18 18 stub<20929> AllocateTemporaryEntryPoints +00007FA12F012F30 18 stub<20930> AllocateTemporaryEntryPoints +00007FA12F065880 8cc instance void [System.Private.CoreLib] System.IO.StreamReader+d__72::MoveNext()[OptimizedTier1] +00007FA12F012F48 18 stub<20931> AllocateTemporaryEntryPoints +00007FA12F0661A0 1d2 instance valuetype System.Threading.Tasks.ValueTask`1 [System.Private.CoreLib] System.IO.MemoryStream::ReadAsync(valuetype System.Memory`1,valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0663B0 8b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::.ctor(class [System.Runtime]System.IO.TextReader)[OptimizedTier1] +00007FA12F066460 29 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::.ctor()[OptimizedTier1] +00007FA12F0664A0 5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::set_CloseInput(bool)[OptimizedTier1] +00007FA12F0664C0 13 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Deserialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0664F0 1ee instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::DeserializeInternal(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F066700 2a4 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::SetupReader(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Globalization.CultureInfo&,valuetype [System.Runtime]System.Nullable`1&,valuetype [System.Runtime]System.Nullable`1&,valuetype [System.Runtime]System.Nullable`1&,valuetype [System.Runtime]System.Nullable`1&,string&)[OptimizedTier1] +00007FA12F0669D0 6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::.ctor(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[OptimizedTier1] +00007FA12F0669F0 8 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::get_CheckAdditionalContent()[OptimizedTier1] +00007FA12F066A20 2a7 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::Deserialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,bool)[OptimizedTier1] +00007FA12F066D00 25 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetContractSafe(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F066D40 1c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetContract(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F066D70 1b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::SetFinished()[OptimizedTier1] +00007FA12F066DA0 ff instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::ResetReader(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Globalization.CultureInfo,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,valuetype [System.Runtime]System.Nullable`1,string)[OptimizedTier1] +00007FA12F066EC0 2c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::System.IDisposable.Dispose()[OptimizedTier1] +00007FA12F066F10 22 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Dispose(bool)[OptimizedTier1] +00007FA12F066F50 8f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::Close()[OptimizedTier1] +00007FA12F067000 11 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Close()[OptimizedTier1] +00007FA12F067030 5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::get_CloseInput()[OptimizedTier1] +00007FA12F067050 41 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.StringBuffer::Clear(class Datadog.Trace.Vendors.Newtonsoft.Json.IArrayPool`1)[OptimizedTier1] +00007FA12F0670B0 a5 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,int32,string)[OptimizedTier1] +00007FA12F067180 b7 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,int32,string)[OptimizedTier1] +00007FA12F012F60 18 stub<20932> AllocateTemporaryEntryPoints +00007FA12F012F78 18 stub<20933> AllocateTemporaryEntryPoints +00007FA12F067260 620 instance void [Datadog.Trace] Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]::MoveNext()[OptimizedTier1] +00007FA12F0678F0 44 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::SetResult(!0)[OptimizedTier1] +00007FA12F067950 8d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::SetExistingTaskResult(class System.Threading.Tasks.Task`1,!0)[OptimizedTier1] +00007FA12F067A00 a0 instance bool [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.Boolean]::TrySetResult(!0)[OptimizedTier1] +00007FA12E673740 18 stub<20934> GenerateLookupStub +00007FA12F067AC0 33b instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d::MoveNext()[OptimizedTier1] +00007FA12E673760 18 stub<20935> GenerateLookupStub +00007FA1277CD880 20 stub<20936> GenerateDispatchStub +00007FA1277CD8A0 20 stub<20937> GenerateDispatchStub +00007FA12F067E50 348 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewResult+d__26::MoveNext()[OptimizedTier1] +00007FA12F0681D0 45d instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7::MoveNext()[OptimizedTier1] +00007FA12E673780 18 stub<20938> GenerateLookupStub +00007FA12F0686A0 4d8 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21::MoveNext()[OptimizedTier1] +00007FA12E6737A0 18 stub<20939> GenerateLookupStub +00007FA12F012F90 18 stub<20940> AllocateTemporaryEntryPoints +00007FA12E6737C0 18 stub<20941> GenerateLookupStub +00007FA12E6737E0 18 stub<20942> GenerateLookupStub +00007FA12F012FA8 18 stub<20943> AllocateTemporaryEntryPoints +00007FA12F068BB0 7eb instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22::MoveNext()[OptimizedTier1] +00007FA12F012FC0 18 stub<20944> AllocateTemporaryEntryPoints +00007FA12F012FD8 18 stub<20945> AllocateTemporaryEntryPoints +00007FA12F014000 18 stub<20946> AllocateTemporaryEntryPoints +00007FA12F069410 38e instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18::MoveNext()[OptimizedTier1] +00007FA12E673800 18 stub<20947> GenerateLookupStub +00007FA12E673820 18 stub<20948> GenerateLookupStub +00007FA12E673840 18 stub<20949> GenerateLookupStub +00007FA12E673860 18 stub<20950> GenerateLookupStub +00007FA12E673880 18 stub<20951> GenerateLookupStub +00007FA12E6738A0 18 stub<20952> GenerateLookupStub +00007FA12E6738C0 18 stub<20953> GenerateLookupStub +00007FA12F014018 18 stub<20954> AllocateTemporaryEntryPoints +00007FA12F014030 18 stub<20955> AllocateTemporaryEntryPoints +00007FA12F014048 18 stub<20956> AllocateTemporaryEntryPoints +00007FA12F014060 18 stub<20957> AllocateTemporaryEntryPoints +00007FA12F0697E0 a90 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22::MoveNext()[OptimizedTier1] +00007FA12F06A300 a8 instance bool [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheKey::Equals(object)[OptimizedTier1] +00007FA12E6738E0 18 stub<20958> GenerateLookupStub +00007FA12F06A3C0 1e7 instance bool [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheKey::Equals(valuetype Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheKey)[OptimizedTier1] +00007FA12F06A5E0 78 void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine+Log::ViewLookupCacheHit(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,string,string)[OptimizedTier1] +00007FA12F06A680 57c instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23::MoveNext()[OptimizedTier1] +00007FA12F06AC50 2da class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F014078 18 stub<20959> AllocateTemporaryEntryPoints +00007FA12F014090 18 stub<20960> AllocateTemporaryEntryPoints +00007FA12F0140A8 18 stub<20961> AllocateTemporaryEntryPoints +00007FA12F0140C0 18 stub<20962> AllocateTemporaryEntryPoints +00007FA12F06AF60 432 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F06B400 300 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d::MoveNext()[OptimizedTier1] +00007FA12F06B740 379 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d::MoveNext()[OptimizedTier1] +00007FA12F06BB00 2f2 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d::MoveNext()[OptimizedTier1] +00007FA12F06BE30 26c instance void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d::MoveNext()[OptimizedTier1] +00007FA12F0140D8 60 stub<20963> AllocateTemporaryEntryPoints +00007FA12F014138 18 stub<20964> AllocateTemporaryEntryPoints +00007FA12F06C0E0 2fb instance void [Microsoft.AspNetCore.Diagnostics] Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d::MoveNext()[OptimizedTier1] +00007FA12F06C420 24f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F06C690 41 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F06C6F0 23 instance valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.ReadOnlySpan`1[System.Char]::Slice(int32,int32)[OptimizedTier1] +00007FA12F06C730 157 instance void [System.Threading.Tasks.Parallel] System.Threading.Tasks.TaskReplicator+Replica::.ctor(class System.Threading.Tasks.TaskReplicator,int32,int32)[OptimizedTier1] +00007FA12F06C8B0 7d instance void [System.Private.CoreLib] System.Threading.Tasks.Task::.ctor(class System.Action`1,object)[OptimizedTier1] +00007FA12F06C950 78 instance void [System.Threading.Tasks.Parallel] System.Threading.Tasks.TaskReplicator+Replica`1[System.Threading.Tasks.RangeWorker]::CreateNewReplica()[OptimizedTier1] +00007FA12F06C9F0 20 int32 [System.Threading.Tasks.Parallel] System.Threading.Tasks.TaskReplicator::GenerateCooperativeMultitaskingTaskTimeout()[OptimizedTier1] +00007FA12F06CA30 14 instance void [System.Private.CoreLib] System.Threading.ManualResetEventSlim::Wait()[OptimizedTier1] +00007FA12F06CA60 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23]::MoveNext()[OptimizedTier1] +00007FA12F06CA80 1bb instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F06CC60 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F06CC80 8d2 instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__23::MoveNext()[OptimizedTier1] +00007FA12F06D5E0 3b2 instance void [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest+d__8::MoveNext()[OptimizedTier1] +00007FA12F06D9D0 24d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F06DC40 16 instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.AgentConfiguration::get_EqualityContract()[OptimizedTier1] +00007FA12F06DC70 33 instance int16 [System.Private.CoreLib] System.Threading.PortableThreadPool::get_TargetThreadsGoalForBlockingAdjustment()[OptimizedTier1] +00007FA1277CD8C0 20 stub<20965> GenerateDispatchStub +00007FA12F06DCC0 c8 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::.ctor(int32)[OptimizedTier1] +00007FA12F06DDA0 6b bool [Datadog.Trace] Datadog.Trace.Tagging.TagPropagation::IsValid(string,string)[OptimizedTier1] +00007FA12F06DE20 21 int32 [System.Private.CoreLib] System.MemoryExtensions::IndexOf(valuetype System.ReadOnlySpan`1,!!0)[OptimizedTier1] +00007FA12F06DE60 ca instance void [System.Private.CoreLib] System.Threading.ManualResetEventSlim::Reset()[OptimizedTier1] +00007FA12F06DF50 5 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::get_Path()[OptimizedTier1] +00007FA12F06DF70 3e9 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Select(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12F06E380 35 instance void [System.Linq] System.Linq.Enumerable+SelectEnumerableIterator`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.__Canon]::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12F06E3D0 e instance void [System.Linq] System.Linq.Enumerable+Iterator`1[System.__Canon]::.ctor()[OptimizedTier1] +00007FA12F06E400 186 instance class [System.Collections]System.Collections.Generic.List`1 [System.Linq] System.Linq.Enumerable+SelectEnumerableIterator`2[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon],System.__Canon]::ToList()[OptimizedTier1] +00007FA12F06E5C0 5 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::get_Product()[OptimizedTier1] +00007FA12F06E5E0 98 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteIntegerValue(int64)[OptimizedTier1] +00007FA12F06E690 1a instance void [System.Net.Http] System.Net.Http.HttpConnection+ContentLengthReadStream::.ctor(class System.Net.Http.HttpConnection,uint64)[OptimizedTier1] +00007FA12F06E6C0 a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasFlag(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.DefaultValueHandling)[OptimizedTier1] +00007FA12F06E6E0 36 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[System.__Canon]::IntrospectiveSort(valuetype System.Span`1,class System.Comparison`1)[OptimizedTier1] +00007FA12F06E730 69 instance int32 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Matching.ILEmitTrieJumpTable+<>c__DisplayClass13_0::b__0(string,valuetype Microsoft.AspNetCore.Routing.Matching.PathSegment)[OptimizedTier1] +00007FA12F06E7C0 1b instance bool [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::get_IsInvalid()[OptimizedTier1] +00007FA12F06E7F0 f instance bool [System.Private.CoreLib] Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid::get_IsInvalid()[OptimizedTier1] +00007FA12F06E810 24 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::Dispose()[OptimizedTier1] +00007FA12F06E850 5f instance void [System.Net.Sockets] System.Net.Sockets.Socket::ReplaceHandleIfNecessaryAfterFailedConnect()[OptimizedTier1] +00007FA12F06E8D0 19 instance bool [System.Private.CoreLib] System.String::StartsWith(char)[OptimizedTier1] +00007FA12F014150 30 stub<20966> AllocateTemporaryEntryPoints +00007FA12F06E900 145 instance void [System.Private.Uri] System.Uri::CreateThis(string,bool,valuetype System.UriKind,valuetype System.UriCreationOptions&)[OptimizedTier1] +00007FA12F014180 60 stub<20967> AllocateTemporaryEntryPoints +00007FA12F06EA80 555 valuetype System.ParsingError [System.Private.Uri] System.Uri::CheckSchemeSyntax(valuetype [System.Private.CoreLib]System.ReadOnlySpan`1,class System.UriParser&)[OptimizedTier1] +00007FA12F0141E0 30 stub<20968> AllocateTemporaryEntryPoints +00007FA12F014210 a8 stub<20969> AllocateTemporaryEntryPoints +00007FA12F0142B8 90 stub<20970> AllocateTemporaryEntryPoints +00007FA12F06F020 9e6 instance int32 [System.Private.Uri] System.Uri::CheckAuthorityHelper(char*,int32,int32,valuetype System.ParsingError&,valuetype System.Uri/Flags&,class System.UriParser,string&)[OptimizedTier1] +00007FA12F06FA60 48a instance void [System.Private.Uri] System.Uri::CreateUriInfo(valuetype System.Uri/Flags)[OptimizedTier1] +00007FA12F06FF10 9 uint64 [System.Private.CoreLib] System.Threading.Interlocked::CompareExchange(uint64&,uint64,uint64)[OptimizedTier1] +00007FA12F06FF40 b04 instance void [System.Private.Uri] System.Uri::ParseRemaining()[OptimizedTier1] +00007FA12F070A80 5c void [System.Private.Uri] System.Uri::GetLengthWithoutTrailingSpaces(string,int32&,int32)[OptimizedTier1] +00007FA12F070B00 15 instance bool [System.Private.Uri] System.Uri::get_DisablePathAndQueryCanonicalization()[OptimizedTier1] +00007FA12F070B40 4a2 instance valuetype System.Uri/Check [System.Private.Uri] System.Uri::CheckCanonical(char*,int32&,int32,char)[OptimizedTier1] +00007FA12F071020 29e instance void [System.Private.Uri] System.Uri::CreateHostString()[OptimizedTier1] +00007FA12F0712F0 f8 string [System.Private.Uri] System.Uri::CreateHostStringHelper(string,int32,int32,valuetype System.Uri/Flags&,string&)[OptimizedTier1] +00007FA12F071400 37 instance !0 [System.Private.CoreLib] System.Lazy`1[Datadog.Trace.DuckTyping.DuckType+CreateTypeResult]::get_Value()[OptimizedTier1] +00007FA12F071450 6 instance class System.Collections.Generic.ICollection`1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::System.Collections.Generic.IDictionary.get_Keys()[OptimizedTier1] +00007FA12F014348 150 stub<20971> AllocateTemporaryEntryPoints +00007FA12F014498 a8 stub<20972> AllocateTemporaryEntryPoints +00007FA12F014540 18 stub<20973> AllocateTemporaryEntryPoints +00007FA12F014558 18 stub<20974> AllocateTemporaryEntryPoints +00007FA12F071470 76 instance class System.Collections.Generic.Dictionary`2/KeyCollection [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::get_Keys()[OptimizedTier1] +00007FA12F071500 6 instance class System.Collections.Generic.ICollection`1 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::System.Collections.Generic.IDictionary.get_Values()[OptimizedTier1] +00007FA12F071520 4 instance int32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Length()[OptimizedTier1] +00007FA12F071540 5 instance class [System.Collections]System.Collections.Generic.Dictionary`2 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Hashes()[OptimizedTier1] +00007FA12F071560 3e instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmCachedTargetFileHash [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+<>c::b__30_1(valuetype [System.Runtime]System.Collections.Generic.KeyValuePair`2)[OptimizedTier1] +00007FA12F0715C0 23 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmCachedTargetFileHash::.ctor(string,string)[OptimizedTier1] +00007FA12F071600 2e instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmCachedTargetFile::.ctor(string,int32,class [System.Collections]System.Collections.Generic.List`1)[OptimizedTier1] +00007FA12F071650 5 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationPath::get_Id()[OptimizedTier1] +00007FA12F071670 4 instance int32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Version()[OptimizedTier1] +00007FA12F071690 4 instance uint32 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_ApplyState()[OptimizedTier1] +00007FA12F0716B0 5 instance string [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationCache::get_Error()[OptimizedTier1] +00007FA12F0716D0 4c instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmConfigState::.ctor(string,int32,string,uint32,string)[OptimizedTier1] +00007FA12F071740 39 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(uint32)[OptimizedTier1] +00007FA12F0717A0 8d instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::PostAsync(valuetype [System.Runtime]System.ArraySegment`1,string)[OptimizedTier1] +00007FA12F071850 85 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::PostAsync(valuetype [System.Runtime]System.ArraySegment`1,string,string)[OptimizedTier1] +00007FA12F0718F0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F071910 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F071A70 f6 instance void [System.Net.Http] System.Net.Http.ByteArrayContent::.ctor(uint8[],int32,int32)[OptimizedTier1] +00007FA12F071B90 f4 void [System.Net.Http] System.Net.Http.Headers.MediaTypeHeaderValue::CheckMediaTypeFormat(string,string)[OptimizedTier1] +00007FA12F071CA0 e instance bool [System.Net.Http] System.Net.Http.ByteArrayContent::TryComputeLength(int64&)[OptimizedTier1] +00007FA12F071CC0 13 instance string [System.Net.Http] System.Net.Http.Headers.HttpHeaderParser::ToString(object)[OptimizedTier1] +00007FA12F014570 48 stub<20975> AllocateTemporaryEntryPoints +00007FA12F071CF0 94 instance string [System.Net.Http] System.Net.Http.Headers.MediaTypeHeaderValue::ToString()[OptimizedTier1] +00007FA12F071DA0 79 instance string [System.Net.Http] System.Net.Http.Headers.Int64NumberHeaderParser::ToString(object)[OptimizedTier1] +00007FA12F071E40 4e class System.Globalization.NumberFormatInfo [System.Private.CoreLib] System.Globalization.NumberFormatInfo::get_InvariantInfo()[OptimizedTier1] +00007FA12F071EB0 50 instance string [System.Private.CoreLib] System.Int64::ToString(class System.IFormatProvider)[OptimizedTier1] +00007FA12F071F20 bc instance class System.Net.Http.HttpConnection/HttpContentWriteStream [System.Net.Http] System.Net.Http.HttpConnection::CreateRequestContentStream(class System.Net.Http.HttpRequestMessage)[OptimizedTier1] +00007FA12F072000 91 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::SendRequestContentAsync(class System.Net.Http.HttpRequestMessage,class System.Net.Http.HttpConnection/HttpContentWriteStream,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0720B0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0720D0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0145B8 18 stub<20976> AllocateTemporaryEntryPoints +00007FA12F0145D0 18 stub<20977> AllocateTemporaryEntryPoints +00007FA12F0145E8 18 stub<20978> AllocateTemporaryEntryPoints +00007FA12F014600 18 stub<20979> AllocateTemporaryEntryPoints +00007FA12F014618 18 stub<20980> AllocateTemporaryEntryPoints +00007FA12F072230 635 instance void [System.Net.Http] System.Net.Http.HttpConnection+d__67::MoveNext()[OptimizedTier1] +00007FA12F0728C0 f5 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpContent::CopyToAsync(class [System.Runtime]System.IO.Stream,class [System.Net.Primitives]System.Net.TransportContext,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0729F0 10f instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpContent::InternalCopyToAsync(class [System.Runtime]System.IO.Stream,class [System.Net.Primitives]System.Net.TransportContext,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F072B30 4e instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.ByteArrayContent::SerializeToStreamAsync(class [System.Runtime]System.IO.Stream,class [System.Net.Primitives]System.Net.TransportContext,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F072BA0 115 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpBaseStream::WriteAsync(uint8[],int32,int32,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F072CD0 4c void [System.Private.CoreLib] System.IO.Stream::ValidateBufferArguments(uint8[],int32,int32)[OptimizedTier1] +00007FA12F072D30 140 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection+ContentLengthWriteStream::WriteAsync(valuetype [System.Runtime]System.ReadOnlyMemory`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F072E90 90 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::WriteAsync(valuetype [System.Runtime]System.ReadOnlyMemory`1,bool)[OptimizedTier1] +00007FA12F072F40 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F072F60 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F014630 18 stub<20981> AllocateTemporaryEntryPoints +00007FA12F014648 18 stub<20982> AllocateTemporaryEntryPoints +00007FA12F014660 18 stub<20983> AllocateTemporaryEntryPoints +00007FA12F0730C0 5b9 instance void [System.Net.Http] System.Net.Http.HttpConnection+d__75::MoveNext()[OptimizedTier1] +00007FA12F0736D0 dd instance void [System.Net.Http] System.Net.Http.HttpConnection::WriteToBuffer(valuetype [System.Runtime]System.ReadOnlyMemory`1)[OptimizedTier1] +00007FA12F0737D0 3e instance void [System.Private.CoreLib] System.Span`1[System.Byte]::.ctor(!0[],int32,int32)[OptimizedTier1] +00007FA12F073830 65 class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpContent::g__WaitAsync|56_0(valuetype [System.Runtime]System.Threading.Tasks.ValueTask)[OptimizedTier1] +00007FA12F0738B0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0738D0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F014678 18 stub<20984> AllocateTemporaryEntryPoints +00007FA12F014690 18 stub<20985> AllocateTemporaryEntryPoints +00007FA12F0146A8 18 stub<20986> AllocateTemporaryEntryPoints +00007FA12F073A30 362 instance void [System.Net.Http] System.Net.Http.HttpContent+<g__WaitAsync|56_0>d::MoveNext()[OptimizedTier1] +00007FA12F073E00 c1 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection+ContentLengthWriteStream::FinishAsync(bool)[OptimizedTier1] +00007FA12F073EE0 2d7 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0741E0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::.ctor()[OptimizedTier1] +00007FA12F074200 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::MoveNext()[OptimizedTier1] +00007FA12F074220 208 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F074450 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F074470 2c instance void [System.Net.Http] System.Net.Http.HttpContent::Dispose()[OptimizedTier1] +00007FA12F0744C0 b3 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__11]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F074590 18 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::.ctor()[OptimizedTier1] +00007FA12F0745C0 5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::set_CloseOutput(bool)[OptimizedTier1] +00007FA12F0745E0 5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::set_AutoCompleteOnClose(bool)[OptimizedTier1] +00007FA12F074600 2f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::System.IDisposable.Dispose()[OptimizedTier1] +00007FA12F074650 26 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Dispose(bool)[OptimizedTier1] +00007FA12F074690 d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::Close()[OptimizedTier1] +00007FA12F0746B0 5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_AutoCompleteOnClose()[OptimizedTier1] +00007FA12F0746E0 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::AutoCompleteAll()[OptimizedTier1] +00007FA12F074740 108 instance void [System.Private.CoreLib] System.Threading.Tasks.Task+DelayPromiseWithCancellation::.ctor(uint32,valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F074870 18 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::set_Item(string,object)[OptimizedTier1] +00007FA12F0748A0 20 valuetype System.Memory`1 [System.Private.CoreLib] System.Memory`1[System.Byte]::get_Empty()[OptimizedTier1] +00007FA12F0748E0 168 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F0146C0 60 stub<20987> AllocateTemporaryEntryPoints +00007FA12F014720 18 stub<20988> AllocateTemporaryEntryPoints +00007FA12F074A90 5b instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController::PushHeartbeatAsync()[QuickJitted] +00007FA12F014738 18 stub<20989> AllocateTemporaryEntryPoints +00007FA12F074B10 23 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[QuickJitted] +00007FA12F074B50 dc void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[QuickJitted] +00007FA12F014750 18 stub<20990> AllocateTemporaryEntryPoints +00007FA12F074C50 32d instance void [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryController+d__31::MoveNext()[QuickJitted] +00007FA12F074FC0 3f instance class Datadog.Trace.Telemetry.TelemetryData [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryDataBuilder::BuildHeartbeatData(class Datadog.Trace.Telemetry.ApplicationTelemetryData,class Datadog.Trace.Telemetry.HostTelemetryData)[QuickJitted] +00007FA12F075020 2e instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::TryPushTelemetry(class Datadog.Trace.Telemetry.TelemetryData)[QuickJitted] +00007FA12780FBA0 18 stub<20991> GenerateResolveStub +00007FA1277CD8E0 20 stub<20992> GenerateDispatchStub +00007FA12F014768 18 stub<20993> AllocateTemporaryEntryPoints +00007FA12F075070 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12F014780 18 stub<20994> AllocateTemporaryEntryPoints +00007FA12F0750C0 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12F014798 d8 stub<20995> AllocateTemporaryEntryPoints +00007FA12F014870 18 stub<20996> AllocateTemporaryEntryPoints +00007FA12F075120 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12F075390 1f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__31]::.ctor()[QuickJitted] +00007FA12F014888 18 stub<20997> AllocateTemporaryEntryPoints +00007FA12F0753D0 2f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[QuickJitted] +00007FA12F075420 43 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[QuickJitted] +00007FA12F075480 1c instance class [System.Runtime]System.Collections.Generic.ICollection`1 [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::get_PreviousConfiguration()[QuickJitted] +00007FA1277CD900 20 stub<20998> GenerateDispatchStub +00007FA12780FC10 18 stub<20999> GenerateResolveStub +00007FA1277CD920 20 stub<21000> GenerateDispatchStub +00007FA12F0754B0 31 instance void [Datadog.Trace] Datadog.Trace.Telemetry.AppDependenciesLoadedPayload::.ctor(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12F075500 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.AppDependenciesLoadedPayload::set_Dependencies(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12F075540 31 instance void [Datadog.Trace] Datadog.Trace.Telemetry.AppIntegrationsChangedPayload::.ctor(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA12F075590 2a instance void [Datadog.Trace] Datadog.Trace.Telemetry.AppIntegrationsChangedPayload::set_Integrations(class [System.Runtime]System.Collections.Generic.ICollection`1)[QuickJitted] +00007FA1277CD940 20 stub<21001> GenerateDispatchStub +00007FA12866AE70 50 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method156(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12866AF20 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method157(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12F0755D0 1c instance class [System.Runtime]System.Collections.Generic.ICollection`1 [Datadog.Trace] Datadog.Trace.Telemetry.TelemetryTransportManager::get_PreviousIntegrations()[QuickJitted] +00007FA12F075600 21 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__31]::MoveNext()[QuickJitted] +00007FA12F075640 15b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__31]::MoveNext(class System.Threading.Thread)[QuickJitted] +00007FA12F0757C0 5d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__31]::.cctor()[QuickJitted] +00007FA12F0148A0 18 stub<21002> AllocateTemporaryEntryPoints +00007FA12F075840 2a void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__31]::ExecutionContextCallback(object)[QuickJitted] +00007FA12F075880 63 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Telemetry.TelemetryController+d__31]::ClearStateUponCompletion()[QuickJitted] +00007FA12866AFB0 50 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method158(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object[])[Optimized] +00007FA12866B060 27 object [Anonymously Hosted DynamicMethods Assembly] dynamicClass::lambda_method159(System.Runtime.CompilerServices.Closure /* MT: 0x00007FA12B268BE0 */,object)[Optimized] +00007FA12F075900 1 instance void [System.Private.CoreLib] System.EventArgs::.ctor()[OptimizedTier1] +00007FA12F075920 47 instance int32 [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.__Canon]::GetHashCode(!0)[OptimizedTier1] +00007FA12F075980 4 instance !0 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Boolean]::get_Key()[OptimizedTier1] +00007FA12F0759A0 10e instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.Boolean]::MoveNext()[OptimizedTier1] +00007FA12F075AF0 1c instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Boolean]::.ctor(!0,!1)[OptimizedTier1] +00007FA12F075B20 19 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.Boolean]::set_Current(valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2)[OptimizedTier1] +00007FA12F075B50 c instance valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.Boolean]::get_Current()[OptimizedTier1] +00007FA12F075B70 5 instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Boolean]::get_Value()[OptimizedTier1] +00007FA12F0148E8 18 stub<21003> AllocateTemporaryEntryPoints +00007FA12F075BA0 47c instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Boolean]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[OptimizedTier1] +00007FA12F076060 7b instance int32 [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::GetHashCode()[OptimizedTier1] +00007FA12F076100 16 instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::get_EqualityContract()[OptimizedTier1] +00007FA12F076130 36 instance int32 [System.Private.CoreLib] System.Collections.Generic.ObjectEqualityComparer`1[System.__Canon]::GetHashCode(!0)[OptimizedTier1] +00007FA12F076180 85 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.__Canon,System.Boolean]::GetBucketAndLock(int32,uint32&)[OptimizedTier1] +00007FA12F076230 64 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Boolean]::set_Item(!0,!1)[OptimizedTier1] +00007FA12F0762B0 a7 instance bool [Datadog.Trace] Datadog.Trace.Telemetry.DependencyTelemetryData::Equals(class Datadog.Trace.Telemetry.DependencyTelemetryData)[OptimizedTier1] +00007FA12F076380 78 instance class Datadog.Trace.Telemetry.IntegrationTelemetryData [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryCollector+<>c::b__8_0(valuetype Datadog.Trace.Telemetry.IntegrationTelemetryCollector/IntegrationDetail)[OptimizedTier1] +00007FA12F076420 1a instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::.ctor(string,bool)[OptimizedTier1] +00007FA12F076450 b instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::set_Name(string)[OptimizedTier1] +00007FA12F076470 5 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::set_Enabled(bool)[OptimizedTier1] +00007FA12F076490 5 instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::set_AutoEnabled(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F0764B0 b instance void [Datadog.Trace] Datadog.Trace.Telemetry.IntegrationTelemetryData::set_Error(string)[OptimizedTier1] +00007FA12F014900 18 stub<21004> AllocateTemporaryEntryPoints +00007FA12F014918 18 stub<21005> AllocateTemporaryEntryPoints +00007FA12F014930 18 stub<21006> AllocateTemporaryEntryPoints +00007FA12F014948 18 stub<21007> AllocateTemporaryEntryPoints +00007FA12F014960 18 stub<21008> AllocateTemporaryEntryPoints +00007FA12F014978 18 stub<21009> AllocateTemporaryEntryPoints +00007FA12F0764D0 10d instance class System.Type[] [System.Private.CoreLib] System.RuntimeType::GetInterfaces()[OptimizedTier1] +00007FA12F076600 13 class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::BaseType(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F076630 8 instance string [System.Private.CoreLib] System.RuntimeType::get_Name()[OptimizedTier1] +00007FA12F014990 18 stub<21010> AllocateTemporaryEntryPoints +00007FA12F0149A8 18 stub<21011> AllocateTemporaryEntryPoints +00007FA12F0149C0 18 stub<21012> AllocateTemporaryEntryPoints +00007FA12F0149D8 18 stub<21013> AllocateTemporaryEntryPoints +00007FA12F0149F0 18 stub<21014> AllocateTemporaryEntryPoints +00007FA12F076660 248 instance class System.Reflection.RuntimePropertyInfo[] [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::PopulateProperties(valuetype System.RuntimeType/RuntimeTypeCache/Filter)[OptimizedTier1] +00007FA12F0768D0 4 instance int32 [System.Linq] System.Linq.Grouping`2[System.__Canon,System.__Canon]::System.Collections.Generic.ICollection.get_Count()[OptimizedTier1] +00007FA12F0768F0 20 class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetAssociatedMetadataType(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F076920 11a instance void [System.Private.CoreLib] System.Reflection.CerHashtable`2[System.__Canon,System.__Canon]::Rehash(int32)[OptimizedTier1] +00007FA12F076A60 c3 instance void [System.Private.CoreLib] System.Reflection.CerHashtable`2+Table[System.__Canon,System.__Canon]::.ctor(int32)[OptimizedTier1] +00007FA12F076B40 26 instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.PrimitiveParameterExpression`1[System.__Canon]::get_Type()[OptimizedTier1] +00007FA12F076B80 14 instance class [System.Runtime]System.Type [System.Linq.Expressions] System.Linq.Expressions.PropertyExpression::get_Type()[OptimizedTier1] +00007FA12F076BB0 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.Formatting]::get_HasValue()[OptimizedTier1] +00007FA12F076BD0 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.DateFormatHandling]::get_HasValue()[OptimizedTier1] +00007FA12F076BF0 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.FloatFormatHandling]::get_HasValue()[OptimizedTier1] +00007FA12F076C10 4 instance bool [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling]::get_HasValue()[OptimizedTier1] +00007FA12F076C30 42 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute(object)[OptimizedTier1] +00007FA12F076C90 2d !0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.CachedAttributeGetter`1[System.__Canon]::GetAttribute(object)[OptimizedTier1] +00007FA12F076CE0 255 bool [System.Linq] System.Linq.Enumerable::Any(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F076F70 37 instance string [System.Private.CoreLib] System.Text.Encoding::GetString(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F076FC0 87 instance bool [System.Linq] System.Linq.Lookup`2+d__17[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F077060 3a bool [System.Private.CoreLib] System.Char::IsUpper(char)[OptimizedTier1] +00007FA12F0770B0 10 valuetype [System.Runtime]System.Reflection.MemberTypes [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.TypeExtensions::MemberType(class [System.Runtime]System.Reflection.MemberInfo)[OptimizedTier1] +00007FA12F0770E0 13b instance void [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::PopulateRtFields(valuetype System.RuntimeType/RuntimeTypeCache/Filter,class System.RuntimeType,valuetype System.RuntimeType/ListBuilder`1&)[OptimizedTier1] +00007FA12F077240 3bb instance void [System.Private.CoreLib] System.RuntimeType+RuntimeTypeCache+MemberInfoCache`1[System.__Canon]::PopulateLiteralFields(valuetype System.RuntimeType/RuntimeTypeCache/Filter,class System.RuntimeType,valuetype System.RuntimeType/ListBuilder`1&)[OptimizedTier1] +00007FA12F077620 3e instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.Enumerable+Iterator`1[System.__Canon]::GetEnumerator()[OptimizedTier1] +00007FA12F077680 2bf instance class [System.Linq.Expressions]System.Linq.Expressions.Expression [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory::EnsureCastExpression(class [System.Linq.Expressions]System.Linq.Expressions.Expression,class [System.Runtime]System.Type,bool)[OptimizedTier1] +00007FA12F077960 e instance bool [System.Private.CoreLib] System.Reflection.RuntimeConstructorInfo::Equals(object)[OptimizedTier1] +00007FA12F077980 4 instance valuetype System.Linq.Expressions.ExpressionType [System.Linq.Expressions] System.Linq.Expressions.SimpleBinaryExpression::get_NodeType()[OptimizedTier1] +00007FA12F0779A0 8 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_TypeNameHandling()[OptimizedTier1] +00007FA12F0779C0 5 instance class System.Collections.Generic.IList`1 [System.Private.CoreLib] System.Collections.ObjectModel.Collection`1[System.__Canon]::get_Items()[OptimizedTier1] +00007FA12F0779E0 5d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(bool)[OptimizedTier1] +00007FA12F077A60 21 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::ToString(bool)[OptimizedTier1] +00007FA12F077AA0 40 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteValue(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F077B00 a0 class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions::ReadAsTypeAsync(class Datadog.Trace.Agent.IApiResponse)[OptimizedTier1] +00007FA12F077BC0 42 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F077C20 177 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F014A08 18 stub<21015> AllocateTemporaryEntryPoints +00007FA12F014A20 18 stub<21016> AllocateTemporaryEntryPoints +00007FA12F077DD0 335 instance void [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions+d__1`1[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F078170 50 instance !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Deserialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[OptimizedTier1] +00007FA12F0781E0 15 instance void [System.Private.CoreLib] System.IO.StreamReader::Close()[OptimizedTier1] +00007FA12F078210 5b instance void [System.Linq] System.Linq.Enumerable+SelectManySingleSelectorIterator`2[System.__Canon,System.__Canon]::Dispose()[OptimizedTier1] +00007FA12F078290 62 instance valuetype System.Threading.CancellationTokenRegistration [System.Private.CoreLib] System.Threading.CancellationToken::UnsafeRegister(class System.Action`1,object)[OptimizedTier1] +00007FA12780FC80 18 stub<21017> GenerateResolveStub +00007FA1277CD960 20 stub<21018> GenerateDispatchStub +00007FA12F014A38 18 stub<21019> AllocateTemporaryEntryPoints +00007FA12F014A50 18 stub<21020> AllocateTemporaryEntryPoints +00007FA12F014A68 18 stub<21021> AllocateTemporaryEntryPoints +00007FA12F078310 6d bool [System.Linq] System.Linq.Enumerable::SequenceEqual(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[QuickJitted] +00007FA12F014A80 18 stub<21022> AllocateTemporaryEntryPoints +00007FA12F014A98 30 stub<21023> AllocateTemporaryEntryPoints +00007FA12F014AC8 a8 stub<21024> AllocateTemporaryEntryPoints +00007FA12F014B70 18 stub<21025> AllocateTemporaryEntryPoints +00007FA12F014B88 18 stub<21026> AllocateTemporaryEntryPoints +00007FA12F014BA0 30 stub<21027> AllocateTemporaryEntryPoints +00007FA12F014BD0 d8 stub<21028> AllocateTemporaryEntryPoints +00007FA12F014CA8 d8 stub<21029> AllocateTemporaryEntryPoints +00007FA12F014D80 60 stub<21030> AllocateTemporaryEntryPoints +00007FA12F014DE0 78 stub<21031> AllocateTemporaryEntryPoints +00007FA12F016000 270 stub<21032> AllocateTemporaryEntryPoints +00007FA12F016270 270 stub<21033> AllocateTemporaryEntryPoints +00007FA12F0164E0 18 stub<21034> AllocateTemporaryEntryPoints +00007FA12F0164F8 18 stub<21035> AllocateTemporaryEntryPoints +00007FA12F016510 18 stub<21036> AllocateTemporaryEntryPoints +00007FA12F0783A0 c9b bool [System.Linq] System.Linq.Enumerable::SequenceEqual(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[QuickJitted] +00007FA12F016528 18 stub<21037> AllocateTemporaryEntryPoints +00007FA12F016540 a8 stub<21038> AllocateTemporaryEntryPoints +00007FA12E673900 18 stub<21039> GenerateLookupStub +00007FA12F079070 b7 instance bool [System.Private.CoreLib] System.Collections.Generic.ObjectEqualityComparer`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Equals(!0,!0)[QuickJitted] +00007FA12780FCF0 18 stub<21040> GenerateResolveStub +00007FA1277CD980 20 stub<21041> GenerateDispatchStub +00007FA12F079140 5 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [System.ObjectModel] System.Collections.ObjectModel.KeyedCollection`2[System.__Canon,System.__Canon]::get_Dictionary()[OptimizedTier1] +00007FA12F079160 9be instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateObject(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[OptimizedTier1] +00007FA12F079B70 4e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::ReadAndAssert()[OptimizedTier1] +00007FA12F079BE0 4cb instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadMetadataProperties(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class [System.Runtime]System.Type&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object,object&,string&)[OptimizedTier1] +00007FA12F07A0D0 5a instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasNoDefinedType(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[OptimizedTier1] +00007FA12F07A150 12c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserializing(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,object)[OptimizedTier1] +00007FA12F07A2A0 a5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserializing(object,valuetype [System.Runtime]System.Runtime.Serialization.StreamingContext)[OptimizedTier1] +00007FA12F07A380 d7 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::GetProperty(string,valuetype [System.Runtime]System.StringComparison)[OptimizedTier1] +00007FA12F07A480 4d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextReader::ParseString(char,valuetype Datadog.Trace.Vendors.Newtonsoft.Json.ReadType)[OptimizedTier1] +00007FA12F07A4F0 5 instance class [System.Runtime]System.Type [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_PropertyType()[OptimizedTier1] +00007FA12F07A510 5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreatorNonPublic()[OptimizedTier1] +00007FA12F07A530 3c instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::GetClosestMatchProperty(string)[OptimizedTier1] +00007FA12F07A590 24 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonPropertyCollection::TryGetProperty(string,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty&)[OptimizedTier1] +00007FA12F07A5D0 5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_Writable()[OptimizedTier1] +00007FA12F07A5F0 12c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserialized(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract,object)[OptimizedTier1] +00007FA12F07A740 a5 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserialized(object,valuetype [System.Runtime]System.Runtime.Serialization.StreamingContext)[OptimizedTier1] +00007FA12F07A810 8 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ObjectCreationHandling()[OptimizedTier1] +00007FA12F016648 18 stub<21042> AllocateTemporaryEntryPoints +00007FA12F016660 18 stub<21043> AllocateTemporaryEntryPoints +00007FA12F07A840 8d8 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateObject(object,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,string)[OptimizedTier1] +00007FA12F07B160 150 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_HasRequiredOrDefaultValueProperties()[OptimizedTier1] +00007FA12F07B2E0 154 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldDeserialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,object)[OptimizedTier1] +00007FA12F07B460 5 instance class [System.Runtime]System.Predicate`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty::get_ShouldDeserialize()[OptimizedTier1] +00007FA12F07B480 10b instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyPresence(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class [System.Collections]System.Collections.Generic.Dictionary`2)[OptimizedTier1] +00007FA12F07B5B0 2ef instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyValue(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,object)[OptimizedTier1] +00007FA12F07B8D0 453 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CalculatePropertyDetails(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonConverter&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContainerContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,object,bool&,object&,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract&,bool&,bool&)[OptimizedTier1] +00007FA12F07BD50 c instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.ObjectCreationHandling]::GetValueOrDefault(!0)[OptimizedTier1] +00007FA12F07BD70 22 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.DateHeaderValueManager::OnHeartbeat(valuetype [System.Runtime]System.DateTimeOffset)[OptimizedTier1] +00007FA12F07BDB0 21 instance valuetype [System.Runtime]System.DateTimeOffset [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.HeartbeatManager::get_UtcNowUnsynchronized()[OptimizedTier1] +00007FA1277CD9A0 20 stub<21044> GenerateDispatchStub +00007FA12F07BDF0 104 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::GetOrCreateProxyType(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F07BF20 22 instance void [Datadog.Trace] Datadog.Trace.DuckTyping.TypesTuple::.ctor(class [System.Runtime]System.Type,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F07BF60 123 instance !1 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::GetOrAdd(!0,class [System.Private.CoreLib]System.Func`2)[OptimizedTier1] +00007FA12F07C0B0 41 instance int32 [Datadog.Trace] Datadog.Trace.DuckTyping.TypesTuple::GetHashCode()[OptimizedTier1] +00007FA12F07C120 13a instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::TryGetValueInternal(!0,int32,!1&)[OptimizedTier1] +00007FA12F07C280 74 instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[Datadog.Trace.DuckTyping.TypesTuple,System.__Canon]::GetBucket(int32)[OptimizedTier1] +00007FA12F07C310 2d instance void [System.Private.CoreLib] System.Threading.ManualResetEventSlim::EnsureLockObjectCreated()[OptimizedTier1] +00007FA12F07C360 50 bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.DefaultJsonNameTable::TextEquals(string,char[],int32,int32)[OptimizedTier1] +00007FA12F07C3D0 4 instance valuetype System.Net.Sockets.AddressFamily [System.Net.Primitives] System.Net.DnsEndPoint::get_AddressFamily()[OptimizedTier1] +00007FA12F07C3F0 52 instance bool [System.Net.Primitives] System.Net.IPAddress::Equals(object)[OptimizedTier1] +00007FA12F016678 18 stub<21045> AllocateTemporaryEntryPoints +00007FA12F016690 18 stub<21046> AllocateTemporaryEntryPoints +00007FA12F0166A8 18 stub<21047> AllocateTemporaryEntryPoints +00007FA12F0166C0 18 stub<21048> AllocateTemporaryEntryPoints +00007FA12F0166D8 18 stub<21049> AllocateTemporaryEntryPoints +00007FA12F0166F0 18 stub<21050> AllocateTemporaryEntryPoints +00007FA12F016708 18 stub<21051> AllocateTemporaryEntryPoints +00007FA12F016720 18 stub<21052> AllocateTemporaryEntryPoints +00007FA12F016738 2b8 stub<21053> AllocateTemporaryEntryPoints +00007FA12F0169F0 18 stub<21054> AllocateTemporaryEntryPoints +00007FA12F016A08 18 stub<21055> AllocateTemporaryEntryPoints +00007FA12F016A20 18 stub<21056> AllocateTemporaryEntryPoints +00007FA12F016A38 18 stub<21057> AllocateTemporaryEntryPoints +00007FA12F016A50 18 stub<21058> AllocateTemporaryEntryPoints +00007FA12F016A68 18 stub<21059> AllocateTemporaryEntryPoints +00007FA12F07C460 d5 instance bool [System.Net.Primitives] System.Net.IPAddress::Equals(class System.Net.IPAddress)[OptimizedTier1] +00007FA12F07C550 74e instance bool [System.Net.Sockets] System.Net.Sockets.Socket::ConnectAsync(class System.Net.Sockets.SocketAsyncEventArgs,bool,bool)[OptimizedTier1] +00007FA12F07CD10 83 void [System.Net.Sockets] System.Net.SocketAddressPal::SetPort(uint8[],uint16)[OptimizedTier1] +00007FA12F07CDB0 1d instance valuetype System.Net.Sockets.AddressFamily [System.Net.Primitives] System.Net.IPEndPoint::get_AddressFamily()[OptimizedTier1] +00007FA12F07CDF0 e int64 [System.Private.CoreLib] System.Threading.Interlocked::Increment(int64&)[OptimizedTier1] +00007FA12F07CE10 5cf instance void [System.Net.Http] System.Net.Http.HttpConnection+d__98::MoveNext()[OptimizedTier1] +00007FA12F07D420 7b3 instance void [Samples.BuggyBits] BuggyBits.SelfInvoker+d__7::MoveNext()[OptimizedTier1] +00007FA12F07DC50 15 instance !0 [System.Private.CoreLib] System.Nullable`1[System.Int32]::get_Value()[OptimizedTier1] +00007FA12F07DC80 2c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F07DCD0 29 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F07DD20 253 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F07DFA0 6 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::op_Implicit(valuetype System.Span`1)[OptimizedTier1] +00007FA12F07DFC0 7 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::.ctor(!0&,int32)[OptimizedTier1] +00007FA12F07DFE0 97 instance bool [Microsoft.Extensions.FileProviders.Physical] Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken::get_HasChanged()[OptimizedTier1] +00007FA12F07E0A0 12 valuetype [System.Runtime]System.TimeSpan [Microsoft.Extensions.FileProviders.Physical] Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken::get_PollingInterval()[OptimizedTier1] +00007FA12F07E0D0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__7]::MoveNext()[OptimizedTier1] +00007FA12F07E0F0 1bb instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__7]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F07E2D0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__7]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F07E2F0 a instance bool [System.Private.CoreLib] System.Threading.CancellationTokenSource::get_IsCancellationRequested()[OptimizedTier1] +00007FA12F07E310 718 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool::CheckForHttp11ConnectionInjection()[OptimizedTier1] +00007FA12F07EA50 4e instance class System.Collections.Concurrent.ConcurrentDictionary`2/Node& [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Tables[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::GetBucketAndLock(int32,uint32&)[OptimizedTier1] +00007FA12F016A80 168 stub<21060> AllocateTemporaryEntryPoints +00007FA12F016BE8 60 stub<21061> AllocateTemporaryEntryPoints +00007FA12F016C48 18 stub<21062> AllocateTemporaryEntryPoints +00007FA12F016C60 30 stub<21063> AllocateTemporaryEntryPoints +00007FA12F016C90 18 stub<21064> AllocateTemporaryEntryPoints +00007FA12F016CA8 18 stub<21065> AllocateTemporaryEntryPoints +00007FA12F016CC0 240 stub<21066> AllocateTemporaryEntryPoints +00007FA12F016F00 18 stub<21067> AllocateTemporaryEntryPoints +00007FA12F018000 138 stub<21068> AllocateTemporaryEntryPoints +00007FA12F018138 d8 stub<21069> AllocateTemporaryEntryPoints +00007FA12F07EAC0 4ce instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F07F010 6e2 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+d__74::MoveNext()[OptimizedTier1] +00007FA12F018210 168 stub<21070> AllocateTemporaryEntryPoints +00007FA12F018378 540 stub<21071> AllocateTemporaryEntryPoints +00007FA12F0188B8 30 stub<21072> AllocateTemporaryEntryPoints +00007FA12F0188E8 18 stub<21073> AllocateTemporaryEntryPoints +00007FA12F018900 18 stub<21074> AllocateTemporaryEntryPoints +00007FA12F018918 60 stub<21075> AllocateTemporaryEntryPoints +00007FA12F07F780 467 instance void [System.Net.Http] System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F018978 18 stub<21076> AllocateTemporaryEntryPoints +00007FA12E673920 18 stub<21077> GenerateLookupStub +00007FA12E673940 18 stub<21078> GenerateLookupStub +00007FA12F018990 18 stub<21079> AllocateTemporaryEntryPoints +00007FA12F0189A8 18 stub<21080> AllocateTemporaryEntryPoints +00007FA12F07FC40 5ad instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+d__100::MoveNext()[OptimizedTier1] +00007FA12F0189C0 18 stub<21081> AllocateTemporaryEntryPoints +00007FA12F0189D8 60 stub<21082> AllocateTemporaryEntryPoints +00007FA12F018A38 18 stub<21083> AllocateTemporaryEntryPoints +00007FA12E673960 18 stub<21084> GenerateLookupStub +00007FA12E673980 18 stub<21085> GenerateLookupStub +00007FA12F018A50 60 stub<21086> AllocateTemporaryEntryPoints +00007FA12F018AB0 18 stub<21087> AllocateTemporaryEntryPoints +00007FA12F018AC8 18 stub<21088> AllocateTemporaryEntryPoints +00007FA12F018AE0 60 stub<21089> AllocateTemporaryEntryPoints +00007FA12F018B40 18 stub<21090> AllocateTemporaryEntryPoints +00007FA12F018B58 18 stub<21091> AllocateTemporaryEntryPoints +00007FA12F018B70 60 stub<21092> AllocateTemporaryEntryPoints +00007FA12F018BD0 18 stub<21093> AllocateTemporaryEntryPoints +00007FA12F018BE8 18 stub<21094> AllocateTemporaryEntryPoints +00007FA12F018C00 18 stub<21095> AllocateTemporaryEntryPoints +00007FA12E6739A0 18 stub<21096> GenerateLookupStub +00007FA12F018C18 18 stub<21097> AllocateTemporaryEntryPoints +00007FA12F018C30 18 stub<21098> AllocateTemporaryEntryPoints +00007FA12E6739C0 18 stub<21099> GenerateLookupStub +00007FA12F018C48 30 stub<21100> AllocateTemporaryEntryPoints +00007FA12F080230 df4 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+d__98::MoveNext()[OptimizedTier1] +00007FA12F018C78 60 stub<21101> AllocateTemporaryEntryPoints +00007FA12F018CD8 270 stub<21102> AllocateTemporaryEntryPoints +00007FA12F018F48 18 stub<21103> AllocateTemporaryEntryPoints +00007FA12F018F60 18 stub<21104> AllocateTemporaryEntryPoints +00007FA12F018F78 18 stub<21105> AllocateTemporaryEntryPoints +00007FA12F0810B0 a62 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+d__99::MoveNext()[OptimizedTier1] +00007FA12F018F90 18 stub<21106> AllocateTemporaryEntryPoints +00007FA12F081BC0 d28 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d::MoveNext()[OptimizedTier1] +00007FA12F082990 34 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask::.ctor(class System.Threading.Tasks.Sources.IValueTaskSource,int16)[OptimizedTier1] +00007FA12F0829E0 135 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+OperationQueue`1[System.__Canon]::ProcessAsyncOperation(!0)[OptimizedTier1] +00007FA12F082B40 505 instance void [System.Net.Sockets] System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d::MoveNext()[OptimizedTier1] +00007FA12F0830C0 70 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,int32,string)[OptimizedTier1] +00007FA12F083150 79 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,object[],int32,string)[OptimizedTier1] +00007FA12F0831F0 69 instance class [System.Private.CoreLib]System.Collections.Generic.IEnumerator`1> [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::GetEnumerator()[OptimizedTier1] +00007FA12F083280 1 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.__Canon,System.__Canon]::Dispose()[OptimizedTier1] +00007FA1277CD9C0 20 stub<21107> GenerateDispatchStub +00007FA12F0832A0 29c int64 [System.Private.Uri] System.IPv4AddressHelper::ParseNonCanonical(char*,int32,int32&,bool)[OptimizedTier1] +00007FA12F083580 aa instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+OperationQueue`1[System.__Canon]::StopAndAbort(class System.Net.Sockets.SocketAsyncContext)[OptimizedTier1] +00007FA12F083660 1b1 instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewObject(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,string,bool&)[OptimizedTier1] +00007FA12F083840 8 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ObjectConstructor`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_OverrideCreator()[OptimizedTier1] +00007FA12F01A000 a8 stub<21108> AllocateTemporaryEntryPoints +00007FA1277CD9E0 20 stub<21109> GenerateDispatchStub +00007FA12780FD60 18 stub<21110> GenerateResolveStub +00007FA1277CDA00 20 stub<21111> GenerateDispatchStub +00007FA1277CDA20 20 stub<21112> GenerateDispatchStub +00007FA12F01A0A8 18 stub<21113> AllocateTemporaryEntryPoints +00007FA12F083860 2c7 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::AppendFormatted(!!0)[OptimizedTier1] +00007FA12F083B50 4 instance int32 [System.Private.CoreLib] System.Text.Encoding::get_CodePage()[OptimizedTier1] +00007FA12F01A0C0 18 stub<21114> AllocateTemporaryEntryPoints +00007FA12F083B80 37a instance void [System.Private.CoreLib] System.Runtime.CompilerServices.DefaultInterpolatedStringHandler::AppendFormatted(!!0)[OptimizedTier1] +00007FA12F083F20 19b bool [System.Private.CoreLib] System.Number::TryUInt64ToDecStr(uint64,int32,valuetype System.Span`1,int32&)[OptimizedTier1] +00007FA12F0840D0 17 instance void [System.Private.CoreLib] System.Span`1[System.Byte]::.ctor(void*,int32)[OptimizedTier1] +00007FA12F084100 62 instance int32 [System.Threading.Tasks.Parallel] System.Threading.Tasks.ParallelOptions::get_EffectiveMaxConcurrencyLevel()[OptimizedTier1] +00007FA12F084180 6 instance int32 [System.Private.CoreLib] System.Threading.Tasks.TaskScheduler::get_MaximumConcurrencyLevel()[OptimizedTier1] +00007FA12F0841A0 12 instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.__Canon]::.ctor(!0)[OptimizedTier1] +00007FA12F0841D0 9 instance int32 [System.Private.CoreLib] System.Threading.ManualResetEventSlim::get_Waiters()[OptimizedTier1] +00007FA12F0841F0 38 string [System.Private.CoreLib] System.String::Format(class System.IFormatProvider,string,object,object,object)[OptimizedTier1] +00007FA12F084240 ec string [Datadog.Trace] Datadog.Trace.Util.RuntimeId::Get()[OptimizedTier1] +00007FA12F084350 34 instance void [Microsoft.Extensions.Primitives] Microsoft.Extensions.Primitives.StringSegment::.ctor(string)[OptimizedTier1] +00007FA12F0843A0 2c instance int16 [System.Private.CoreLib] System.Threading.PortableThreadPool::get_MinThreadsGoal()[OptimizedTier1] +00007FA12F01A0D8 228 stub<21115> AllocateTemporaryEntryPoints +00007FA12F01A300 78 stub<21116> AllocateTemporaryEntryPoints +00007FA12F01A378 18 stub<21117> AllocateTemporaryEntryPoints +00007FA12F0843F0 1d3 instance void [System.Private.CoreLib] System.Threading.ThreadLocal`1+FinalizationHelper[System.IntPtr]::Finalize()[QuickJitted] +00007FA12F084600 1b instance int32 [System.Private.CoreLib] System.Threading.ThreadLocal`1+IdManager[System.IntPtr]::get_IdsThatDoNotTrackValuesCount()[QuickJitted] +00007FA12F084630 9e instance bool [System.Private.CoreLib] System.Threading.ThreadLocal`1+IdManager[System.IntPtr]::IdTracksAllValues(int32)[QuickJitted] +00007FA12F01A390 18 stub<21118> AllocateTemporaryEntryPoints +00007FA12F084700 d6 instance int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::get_Count()[OptimizedTier1] +00007FA12F084810 7a instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::AcquireAllLocks(int32&)[OptimizedTier1] +00007FA12F0848C0 2e instance int32 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.__Canon]::GetCountInternal()[OptimizedTier1] +00007FA12F084910 11b instance void [System.Private.Uri] System.UriBuilder::SetFieldsFromUri()[OptimizedTier1] +00007FA12F084A50 69 instance string [System.Private.Uri] System.Uri::get_Host()[OptimizedTier1] +00007FA12F084AE0 cd instance string [System.Private.Uri] System.Uri::get_Query()[OptimizedTier1] +00007FA12F084BD0 cd instance string [System.Private.Uri] System.Uri::get_Fragment()[OptimizedTier1] +00007FA12F084CC0 69 instance string [System.Private.Uri] System.Uri::get_UserInfo()[OptimizedTier1] +00007FA12F084D50 81 instance class System.Globalization.CompareInfo [System.Private.CoreLib] System.Globalization.CultureInfo::get_CompareInfo()[OptimizedTier1] +00007FA12F084DF0 45 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::get_Base64Encoder()[OptimizedTier1] +00007FA12F01A420 18 stub<21119> AllocateTemporaryEntryPoints +00007FA12F01A438 18 stub<21120> AllocateTemporaryEntryPoints +00007FA12F01A450 18 stub<21121> AllocateTemporaryEntryPoints +00007FA12F01A468 18 stub<21122> AllocateTemporaryEntryPoints +00007FA12F01A480 18 stub<21123> AllocateTemporaryEntryPoints +00007FA12F084E50 932 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6::MoveNext()[OptimizedTier1] +00007FA12F0857E0 435 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29::MoveNext()[OptimizedTier1] +00007FA12F085C70 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24]::MoveNext()[OptimizedTier1] +00007FA12F085C90 197 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F085E50 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F01A498 18 stub<21124> AllocateTemporaryEntryPoints +00007FA12F01A4B0 18 stub<21125> AllocateTemporaryEntryPoints +00007FA12F01A4C8 18 stub<21126> AllocateTemporaryEntryPoints +00007FA12F085E80 650 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__24::MoveNext()[OptimizedTier1] +00007FA12F086550 2c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F0865A0 29 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0865F0 223 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F086840 5 instance class [System.Runtime]System.Collections.Generic.IList`1 [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor::get_BoundProperties()[OptimizedTier1] +00007FA12F086860 76 bool [Datadog.Trace] Datadog.Trace.Util.Http.HttpExceptionExtensions::IsSocketException(class [System.Runtime]System.Exception)[QuickJitted] +00007FA12F0868F0 17 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::AwaitUnsafeOnCompleted(!!0&,class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12F086920 53b instance void [System.Net.Http] System.Net.Http.HttpConnection+<g__ReadAheadWithZeroByteReadAsync|44_0>d::MoveNext()[OptimizedTier1] +00007FA12F086EA0 368 instance !0[] [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[System.Byte]::Rent(int32)[OptimizedTier1] +00007FA12F087230 3c instance int32 [System.Net.Http] System.Net.Http.Headers.TransferCodingHeaderParser::GetParsedValueLength(string,int32,object,object&)[OptimizedTier1] +00007FA12F087290 173 int32 [System.Net.Http] System.Net.Http.Headers.TransferCodingHeaderValue::GetTransferCodingLength(string,int32,class [System.Runtime]System.Func`1,class System.Net.Http.Headers.TransferCodingHeaderValue&)[OptimizedTier1] +00007FA12F087430 16 class System.Net.Http.Headers.TransferCodingHeaderValue [System.Net.Http] System.Net.Http.Headers.TransferCodingHeaderParser::CreateTransferCoding()[OptimizedTier1] +00007FA12F087460 3 instance class [System.Runtime]System.Collections.IEqualityComparer [System.Net.Http] System.Net.Http.Headers.HttpHeaderParser::get_Comparer()[OptimizedTier1] +00007FA12F01A4E0 18 stub<21127> AllocateTemporaryEntryPoints +00007FA12F01A4F8 18 stub<21128> AllocateTemporaryEntryPoints +00007FA12F01A510 18 stub<21129> AllocateTemporaryEntryPoints +00007FA12F087480 67 instance bool [System.Net.Http] System.Net.Http.Headers.TransferCodingHeaderValue::Equals(object)[OptimizedTier1] +00007FA12F01A528 120 stub<21130> AllocateTemporaryEntryPoints +00007FA12F01A648 a8 stub<21131> AllocateTemporaryEntryPoints +00007FA12F01A6F0 18 stub<21132> AllocateTemporaryEntryPoints +00007FA12F01A708 108 stub<21133> AllocateTemporaryEntryPoints +00007FA12F01A810 18 stub<21134> AllocateTemporaryEntryPoints +00007FA12F01A828 30 stub<21135> AllocateTemporaryEntryPoints +00007FA12F01A858 18 stub<21136> AllocateTemporaryEntryPoints +00007FA12F01A870 108 stub<21137> AllocateTemporaryEntryPoints +00007FA12F01A978 18 stub<21138> AllocateTemporaryEntryPoints +00007FA12F087500 2e6 bool [System.Net.Http] System.Net.Http.Headers.HeaderUtilities::AreEqualCollections(class System.Net.Http.Headers.ObjectCollection`1,class System.Net.Http.Headers.ObjectCollection`1,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12F087830 6 instance bool [System.Net.Http] System.Net.Http.HttpConnectionResponseContent::TryComputeLength(int64&)[OptimizedTier1] +00007FA12F087850 7b instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection+ChunkedEncodingReadStream::CopyToAsync(class [System.Runtime]System.IO.Stream,int32,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0878F0 67 instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnection+ChunkedEncodingReadStream::CopyToAsyncCore(class [System.Runtime]System.IO.Stream,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F087970 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F087990 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F01A990 18 stub<21139> AllocateTemporaryEntryPoints +00007FA12F087B00 352 instance void [System.Private.CoreLib] System.Buffers.TlsOverPerCoreLockedStacksArrayPool`1[System.Byte]::Return(!0[],bool)[OptimizedTier1] +00007FA12F087E80 20 instance bool [System.Net.Http] System.Net.Http.HttpConnection+ChunkedEncodingReadStream::get_NeedsDrain()[OptimizedTier1] +00007FA12F087EC0 8a instance int32 [System.Private.CoreLib] System.StringComparer::GetHashCode(object)[OptimizedTier1] +00007FA12F087F60 c instance !0& [System.Private.CoreLib] System.Span`1[System.Byte]::GetPinnableReference()[OptimizedTier1] +00007FA12F087F80 2b class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::CreateDefault()[OptimizedTier1] +00007FA12F087FC0 e class [System.Runtime]System.Func`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::get_DefaultSettings()[OptimizedTier1] +00007FA12F087FE0 40 class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Create(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[OptimizedTier1] +00007FA12F088040 7f instance void [System.Private.CoreLib] System.IO.StringWriter::.ctor(class System.Text.StringBuilder,class System.IFormatProvider)[OptimizedTier1] +00007FA12F0880E0 275 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F088380 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::MoveNext()[OptimizedTier1] +00007FA12F0883A0 193 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F088560 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__20`1[Datadog.Trace.Agent.Api+SendTracesState]]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F088580 21 instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.__Canon]::.ctor(!0)[OptimizedTier1] +00007FA12F0885C0 18 instance string [System.Private.CoreLib] System.Object::ToString()[OptimizedTier1] +00007FA12F0885F0 5f instance class System.Text.Encoder [System.Private.CoreLib] System.Text.UTF8Encoding::GetEncoder()[OptimizedTier1] +00007FA12F088670 1d instance int32 [System.Private.CoreLib] System.Text.UTF8Encoding+UTF8EncodingSealed::GetMaxByteCount(int32)[OptimizedTier1] +00007FA12F0886B0 8 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::.ctor(class System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0886D0 72 bool [System.Private.Uri] System.Uri::TryCreate(string,valuetype System.UriKind,class System.Uri&)[OptimizedTier1] +00007FA12F088760 291 class System.Uri [System.Private.Uri] System.Uri::CreateHelper(string,bool,valuetype System.UriKind,class System.UriFormatException&,valuetype System.UriCreationOptions&)[OptimizedTier1] +00007FA12E6739E0 18 stub<21140> GenerateLookupStub +00007FA12F088A40 9b instance bool [Microsoft.Extensions.Caching.Memory] Microsoft.Extensions.Caching.Memory.CacheEntry+CacheEntryTokens::CheckForExpiredTokens(class Microsoft.Extensions.Caching.Memory.CacheEntry)[OptimizedTier1] +00007FA12F088B00 3 instance bool [Microsoft.Extensions.FileProviders.Abstractions] Microsoft.Extensions.FileProviders.NullChangeToken::get_HasChanged()[OptimizedTier1] +00007FA12F088B20 5 instance class Datadog.Trace.Configuration.ImmutableExporterSettings [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_Exporter()[OptimizedTier1] +00007FA12F088B40 5 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableExporterSettings::get_PartialFlushEnabled()[OptimizedTier1] +00007FA12F088B60 101 instance class [System.Collections]System.Collections.Generic.List`1 [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope::BeginDispose()[OptimizedTier1] +00007FA12F088C90 7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::get_Count()[OptimizedTier1] +00007FA12F088CB0 94 instance void [System.Private.CoreLib] System.Diagnostics.Tracing.EventSource::WriteEvent(int32,int32,int32,int32)[OptimizedTier1] +00007FA12F088D60 44 instance string [System.Private.CoreLib] System.Double::ToString(string,class System.IFormatProvider)[OptimizedTier1] +00007FA12F01A9A8 18 stub<21141> AllocateTemporaryEntryPoints +00007FA12F088DC0 1992 void [System.Private.CoreLib] System.Number::NumberToStringFormat(valuetype System.Text.ValueStringBuilder&,valuetype System.Number/NumberBuffer&,valuetype System.ReadOnlySpan`1,class System.Globalization.NumberFormatInfo)[OptimizedTier1] +00007FA12F08A7E0 118 int32 [System.Private.CoreLib] System.Number::FindSection(valuetype System.ReadOnlySpan`1,int32)[OptimizedTier1] +00007FA12F08A910 34 instance valuetype System.DateTimeKind [System.Private.CoreLib] System.DateTime::get_Kind()[OptimizedTier1] +00007FA12E673A00 18 stub<21142> GenerateLookupStub +00007FA12F08A960 43 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::BeginRequestProcessing()[OptimizedTier1] +00007FA12E673A20 18 stub<21143> GenerateLookupStub +00007FA12F01A9C0 600 stub<21144> AllocateTemporaryEntryPoints +00007FA12F01C000 600 stub<21145> AllocateTemporaryEntryPoints +00007FA12F01C600 648 stub<21146> AllocateTemporaryEntryPoints +00007FA12E673A40 18 stub<21147> GenerateLookupStub +00007FA12F01CC48 90 stub<21148> AllocateTemporaryEntryPoints +00007FA12F08A9C0 41f instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Reset()[OptimizedTier1] +00007FA12F01CCD8 18 stub<21149> AllocateTemporaryEntryPoints +00007FA12F08AE10 48 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::ResetFeatureCollection()[OptimizedTier1] +00007FA12F08AE70 17e instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::FastReset()[OptimizedTier1] +00007FA12F08B010 33 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::Clear()[OptimizedTier1] +00007FA12F01CCF0 198 stub<21150> AllocateTemporaryEntryPoints +00007FA12F01CE88 108 stub<21151> AllocateTemporaryEntryPoints +00007FA12F01E000 90 stub<21152> AllocateTemporaryEntryPoints +00007FA12F01E090 18 stub<21153> AllocateTemporaryEntryPoints +00007FA12F08B060 ab instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::ClearFast()[OptimizedTier1] +00007FA12F08B130 542 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders::ClearFast()[OptimizedTier1] +00007FA12F08B690 8 int32 [System.Private.CoreLib] System.Numerics.BitOperations::PopCount(uint64)[OptimizedTier1] +00007FA12F08B6B0 5d instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.HeaderDictionary::Clear()[OptimizedTier1] +00007FA12F08B730 44 instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.HeaderDictionary::ThrowIfReadOnly()[OptimizedTier1] +00007FA12F08B790 22 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::Reset()[OptimizedTier1] +00007FA12F08B7D0 7d instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::OnReset()[OptimizedTier1] +00007FA12F08B870 1e instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::BeginRead(valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1&)[OptimizedTier1] +00007FA12F08B8B0 40 class System.Text.Encoding [System.Private.CoreLib] System.Text.Encoding::GetEncoding(string)[OptimizedTier1] +00007FA12F08B920 70 class System.Text.Encoding [System.Private.CoreLib] System.Text.EncodingProvider::GetEncodingFromProvider(string)[OptimizedTier1] +00007FA12F08B9B0 c4 int32 [System.Private.CoreLib] System.Text.EncodingTable::GetCodePageFromName(string)[OptimizedTier1] +00007FA12F01E0A8 270 stub<21154> AllocateTemporaryEntryPoints +00007FA12F08BA90 41d class System.Text.Encoding [System.Private.CoreLib] System.Text.Encoding::GetEncoding(int32)[OptimizedTier1] +00007FA12F08BEE0 71 class System.Text.Encoding [System.Private.CoreLib] System.Text.EncodingProvider::GetEncodingFromProvider(int32)[OptimizedTier1] +00007FA12F08BF70 2aa instance string [System.Private.CoreLib] System.Text.UTF8Encoding::GetString(uint8[],int32,int32)[OptimizedTier1] +00007FA12F08C240 29 void [System.Console] System.Console::WriteLine(string)[OptimizedTier1] +00007FA12F08C290 84 instance void [System.Private.CoreLib] System.IO.TextWriter+SyncTextWriter::WriteLine(string)[OptimizedTier1] +00007FA12F08C340 208 instance void [System.Private.CoreLib] System.IO.StreamWriter::WriteLine(string)[OptimizedTier1] +00007FA12F08C570 5e instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] BuggyBits.SelfInvoker::ExecuteIterationAsync(string)[OptimizedTier1] +00007FA12F08C5F0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F08C610 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F08C770 5c class [System.Runtime]System.Uri [System.Net.Http] System.Net.Http.HttpClient::CreateUri(string)[OptimizedTier1] +00007FA12F08C7F0 46 instance void [System.Private.Uri] System.Uri::.ctor(string,valuetype System.UriKind)[OptimizedTier1] +00007FA12F08C860 1ce bool [System.Private.Uri] System.DomainNameHelper::IsValidByIri(char*,int32,int32&,bool&,bool)[OptimizedTier1] +00007FA12F08CA50 c0 void [System.Private.Uri] System.Uri::CheckAuthorityHelperHandleDnsIri(char*,int32,int32,bool,valuetype System.Uri/Flags&,bool&,string&,valuetype System.ParsingError&)[OptimizedTier1] +00007FA12F08CB40 6c instance class System.Net.Http.HttpRequestMessage [System.Net.Http] System.Net.Http.HttpClient::CreateRequestMessage(class System.Net.Http.HttpMethod,class [System.Runtime]System.Uri)[OptimizedTier1] +00007FA12F08CBD0 42 instance void [System.Net.Http] System.Net.Http.HttpRequestMessage::set_Version(class [System.Runtime]System.Version)[OptimizedTier1] +00007FA12F08CC30 a1 instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource+Linked2CancellationTokenSource::.ctor(valuetype System.Threading.CancellationToken,valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F08CD00 2a8 string [Datadog.Trace] Datadog.Trace.Util.UriHelpers::GetCleanUriPath(string,string)[OptimizedTier1] +00007FA12F08CFE0 169 string [System.Private.Uri] System.DomainNameHelper::ParseCanonicalName(string,int32,int32,bool&)[OptimizedTier1] +00007FA12F01E318 30 stub<21155> AllocateTemporaryEntryPoints +00007FA12F01E348 18 stub<21156> AllocateTemporaryEntryPoints +00007FA12F01E360 18 stub<21157> AllocateTemporaryEntryPoints +00007FA12F01E378 18 stub<21158> AllocateTemporaryEntryPoints +00007FA12F01E390 18 stub<21159> AllocateTemporaryEntryPoints +00007FA12F01E3A8 18 stub<21160> AllocateTemporaryEntryPoints +00007FA12F08D1B0 ab instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.GetSpanContext()[OptimizedTier1] +00007FA12F08D280 21 instance valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.ClrProfiler.AutomaticTracer::Datadog.Trace.ClrProfiler.IDistributedTracer.GetSamplingPriority()[OptimizedTier1] +00007FA12F08D2C0 19 instance class Datadog.Trace.Sampling.ITraceSampler [Datadog.Trace] Datadog.Trace.Tracer::Datadog.Trace.IDatadogTracer.get_Sampler()[OptimizedTier1] +00007FA12F08D2F0 5 instance class Datadog.Trace.Sampling.ITraceSampler [Datadog.Trace] Datadog.Trace.TracerManager::get_Sampler()[OptimizedTier1] +00007FA12F08D320 22c instance valuetype Datadog.Trace.Sampling.SamplingDecision [Datadog.Trace] Datadog.Trace.Sampling.TraceSampler::MakeSamplingDecision(class Datadog.Trace.Span)[OptimizedTier1] +00007FA12F08D570 6 instance bool [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::IsMatch(class Datadog.Trace.Span)[OptimizedTier1] +00007FA12F08D590 219 instance float32 [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::GetSamplingRate(class Datadog.Trace.Span)[OptimizedTier1] +00007FA12F08D7E0 27 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12F08D820 274 instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Datadog.Trace.Sampling.DefaultSamplingRule+SampleRateKey,System.Single]::FindValue(!0)[OptimizedTier1] +00007FA12F08DAC0 29 instance class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.Span::SetMetric(string,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F08DB10 53 instance void [Datadog.Trace] Datadog.Trace.Tagging.InstrumentationTags::SetMetric(string,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F08DBB0 98 instance void [Datadog.Trace] Datadog.Trace.Tagging.CommonTags::SetMetric(string,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F01E3C0 18 stub<21161> AllocateTemporaryEntryPoints +00007FA12F01E3D8 18 stub<21162> AllocateTemporaryEntryPoints +00007FA12F08DCC0 232 instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::SetMetric(string,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F08DF40 52 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::.ctor()[OptimizedTier1] +00007FA12F08DFB0 2d instance void [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]::.ctor(!0,!1)[OptimizedTier1] +00007FA12F08E000 5a instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::Add(!0)[OptimizedTier1] +00007FA12F08E080 a5 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::AddWithResize(!0)[OptimizedTier1] +00007FA12F08E150 35 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::Grow(int32)[OptimizedTier1] +00007FA12F08E1A0 f9 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.Double]]::set_Capacity(int32)[OptimizedTier1] +00007FA12F08E2C0 e instance string [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::get_RuleName()[OptimizedTier1] +00007FA12F08E2E0 f2 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,!!1,!!2,int32,string)[OptimizedTier1] +00007FA12F08E400 f4 instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,!!1,!!2,int32,string)[OptimizedTier1] +00007FA12F08E520 21 instance int32 [Datadog.Trace] Datadog.Trace.Sampling.DefaultSamplingRule::get_SamplingMechanism()[OptimizedTier1] +00007FA12F08E560 8e instance valuetype Datadog.Trace.Sampling.SamplingDecision [Datadog.Trace] Datadog.Trace.Sampling.TraceSampler::MakeSamplingDecision(class Datadog.Trace.Span,float32,int32)[OptimizedTier1] +00007FA12F08E610 66 bool [Datadog.Trace] Datadog.Trace.Util.SamplingHelpers::SampleByRate(uint64,float64)[OptimizedTier1] +00007FA12F08E6A0 7 instance void [Datadog.Trace] Datadog.Trace.Sampling.SamplingDecision::.ctor(int32,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F08E6C0 a1 instance void [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::Inject(class Datadog.Trace.SpanContext,!!0,!!1)[OptimizedTier1] +00007FA12F08E790 ae instance void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::Inject(class Datadog.Trace.SpanContext,!!0,!!1)[OptimizedTier1] +00007FA12F08E860 35c string [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::CreateTraceParentHeader(class Datadog.Trace.SpanContext)[OptimizedTier1] +00007FA12F08EBE0 5 instance string [Datadog.Trace] Datadog.Trace.SpanContext::get_RawSpanId()[OptimizedTier1] +00007FA12F08EC00 494 string [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::CreateTraceStateHeader(class Datadog.Trace.SpanContext)[OptimizedTier1] +00007FA12F08F0D0 b9 string [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::SamplingPriorityToString(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F08F1C0 5 instance string [Datadog.Trace] Datadog.Trace.TraceContext::get_AdditionalW3CTraceState()[OptimizedTier1] +00007FA12F08F1E0 2a6 instance void [Datadog.Trace] Datadog.Trace.Propagators.DatadogContextPropagator::Inject(class Datadog.Trace.SpanContext,!!0,!!1)[OptimizedTier1] +00007FA12F08F4C0 36 instance string [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::ToPropagationHeader()[OptimizedTier1] +00007FA12F08F520 352 string [Datadog.Trace] Datadog.Trace.Tagging.TagPropagation::ToHeader(class Datadog.Trace.Tagging.TraceTagCollection,int32)[OptimizedTier1] +00007FA12F08F8A0 17c instance string [Datadog.Trace] Datadog.Trace.Span::GetTag(string)[OptimizedTier1] +00007FA12F08FAC0 15f instance string [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::GetTag(string)[OptimizedTier1] +00007FA12F08FD60 15e string [System.Private.Uri] System.DomainNameHelper::IdnEquivalent(string)[OptimizedTier1] +00007FA12F08FEF0 23d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F090150 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::.ctor()[OptimizedTier1] +00007FA12F01E3F0 18 stub<21163> AllocateTemporaryEntryPoints +00007FA12F01E408 18 stub<21164> AllocateTemporaryEntryPoints +00007FA12F01E420 18 stub<21165> AllocateTemporaryEntryPoints +00007FA12F01E438 18 stub<21166> AllocateTemporaryEntryPoints +00007FA12F01E450 18 stub<21167> AllocateTemporaryEntryPoints +00007FA12F090180 c16 instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27::MoveNext()[OptimizedTier1] +00007FA12F090E50 c instance valuetype [System.Runtime]System.Memory`1 [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeWriter::GetMemory(int32)[OptimizedTier1] +00007FA12F090E70 71 instance valuetype [System.Runtime]System.Memory`1 [System.IO.Pipelines] System.IO.Pipelines.Pipe::GetMemory(int32)[OptimizedTier1] +00007FA12F090F00 1bd instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketReceiver::ReceiveAsync(class [System.Net.Sockets]System.Net.Sockets.Socket,valuetype [System.Runtime]System.Memory`1)[OptimizedTier1] +00007FA12F0910E0 9 instance bool [System.IO.Pipelines] System.IO.Pipelines.FlushResult::get_IsCanceled()[OptimizedTier1] +00007FA12F091100 1c8 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketReceiver::WaitForDataAsync(class [System.Net.Sockets]System.Net.Sockets.Socket)[OptimizedTier1] +00007FA12F01E468 270 stub<21168> AllocateTemporaryEntryPoints +00007FA12F0912F0 689 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::TryParseRequest(valuetype [System.IO.Pipelines]System.IO.Pipelines.ReadResult,bool&)[OptimizedTier1] +00007FA12F091A00 257 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::.ctor(valuetype System.Buffers.ReadOnlySequence`1)[OptimizedTier1] +00007FA12F091C80 d instance valuetype System.SequencePosition [System.Memory] System.Buffers.ReadOnlySequence`1[System.Byte]::get_Start()[OptimizedTier1] +00007FA12F091CA0 3e instance void [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult]::.ctor(class System.Threading.Tasks.Sources.IValueTaskSource`1,int16)[OptimizedTier1] +00007FA12F091D00 1f1 instance void [System.Memory] System.Buffers.ReadOnlySequence`1[System.Byte]::GetFirstSpan(valuetype [System.Private.CoreLib]System.ReadOnlySpan`1&,valuetype System.SequencePosition&)[OptimizedTier1] +00007FA12F091F20 b instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::set_CurrentSpan(valuetype [System.Private.CoreLib]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12E673A60 18 stub<21169> GenerateLookupStub +00007FA12F091F40 f6 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::ParseRequest(valuetype [System.Memory]System.Buffers.SequenceReader`1&)[OptimizedTier1] +00007FA12F092060 37 instance bool [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::TryPeek(!0&)[OptimizedTier1] +00007FA12F0920B0 17 instance !0& modreq(System.Runtime.InteropServices.InAttribute) [System.Private.CoreLib] System.ReadOnlySpan`1[System.Byte]::get_Item(int32)[OptimizedTier1] +00007FA12F0920E0 6 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutControl::ResetTimeout(int64,valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.TimeoutReason)[OptimizedTier1] +00007FA12E673A80 18 stub<21170> GenerateLookupStub +00007FA12F092100 11d instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::TakeStartLine(valuetype [System.Memory]System.Buffers.SequenceReader`1&)[OptimizedTier1] +00007FA12F01E6D8 a8 stub<21171> AllocateTemporaryEntryPoints +00007FA12F01E780 18 stub<21172> AllocateTemporaryEntryPoints +00007FA12F01E798 18 stub<21173> AllocateTemporaryEntryPoints +00007FA12F01E7B0 18 stub<21174> AllocateTemporaryEntryPoints +00007FA12F092240 109 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpParser`1[Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1ParsingHandler]::ParseRequestLine(!0,valuetype [System.Memory]System.Buffers.SequenceReader`1&)[OptimizedTier1] +00007FA12F092370 ea instance bool [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::TryReadTo(valuetype [System.Private.CoreLib]System.ReadOnlySpan`1&,!0,bool)[OptimizedTier1] +00007FA12F092480 35 instance valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceStatus [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketAwaitableEventArgs::GetStatus(int16)[OptimizedTier1] +00007FA12F0924D0 2c instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::AdvanceCurrentSpan(int64)[OptimizedTier1] +00007FA12F092510 2c instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F092560 29 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0925B0 26f class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F092840 6e instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketAwaitableEventArgs::OnCompleted(class [System.Runtime]System.Action`1,object,int16,valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)[OptimizedTier1] +00007FA12F01E7C8 18 stub<21175> AllocateTemporaryEntryPoints +00007FA12F01E7E0 18 stub<21176> AllocateTemporaryEntryPoints +00007FA12F01E7F8 18 stub<21177> AllocateTemporaryEntryPoints +00007FA12F01E810 18 stub<21178> AllocateTemporaryEntryPoints +00007FA12F01E828 18 stub<21179> AllocateTemporaryEntryPoints +00007FA12F01E840 18 stub<21180> AllocateTemporaryEntryPoints +00007FA12F01E858 18 stub<21181> AllocateTemporaryEntryPoints +00007FA12F01E870 2b8 stub<21182> AllocateTemporaryEntryPoints +00007FA12F0928E0 2eb instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpParser`1[Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1ParsingHandler]::ParseRequestLine(!0,valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F092BF0 19 uint32 [System.Private.CoreLib] System.Buffers.Binary.BinaryPrimitives::ReadUInt32LittleEndian(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F092C20 1d bool [System.Private.CoreLib] System.Buffers.Binary.BinaryPrimitives::TryReadUInt64LittleEndian(valuetype System.ReadOnlySpan`1,uint64&)[OptimizedTier1] +00007FA12F092C60 14 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpVersionAndMethod::set_Version(valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpVersion)[OptimizedTier1] +00007FA12F092C90 6 valuetype System.Span`1 [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::CreateSpan(!!0&,int32)[OptimizedTier1] +00007FA12F092CB0 126 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::OnStartLine(valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpVersionAndMethod,valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength,valuetype [System.Runtime]System.Span`1)[OptimizedTier1] +00007FA12F092E00 12e instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::OnOriginFormTarget(valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength,valuetype [System.Runtime]System.Span`1)[OptimizedTier1] +00007FA12F01EB28 168 stub<21183> AllocateTemporaryEntryPoints +00007FA12F092F50 1a4 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::ParseTarget(valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.TargetOffsetPathLength,valuetype [System.Runtime]System.Span`1)[OptimizedTier1] +00007FA12F093130 4b string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.StringUtilities::GetAsciiStringNonNullCharacters(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F093190 51 void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.StringUtilities::GetAsciiStringNonNullCharacters(valuetype [System.Runtime]System.Span`1,native int)[OptimizedTier1] +00007FA12F01EC90 18 stub<21184> AllocateTemporaryEntryPoints +00007FA12F093200 1e6 string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.PathNormalizer::DecodePath(valuetype [System.Runtime]System.Span`1,bool,string,int32)[OptimizedTier1] +00007FA12F093410 29 int32 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.PathNormalizer::RemoveDotSegments(valuetype [System.Runtime]System.Span`1)[OptimizedTier1] +00007FA12F093460 15a int32 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.PathNormalizer::RemoveDotSegments(uint8*,uint8*)[OptimizedTier1] +00007FA12F093600 c4 bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.PathNormalizer::ContainsDotSegments(uint8*,uint8*)[OptimizedTier1] +00007FA12E673AA0 18 stub<21185> GenerateLookupStub +00007FA12E673AC0 18 stub<21186> GenerateLookupStub +00007FA12F093700 1bf instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::TakeMessageHeaders(valuetype [System.Memory]System.Buffers.SequenceReader`1&,bool)[OptimizedTier1] +00007FA12F093900 4cb instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpParser`1[Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1ParsingHandler]::ParseHeaders(!0,valuetype [System.Memory]System.Buffers.SequenceReader`1&)[OptimizedTier1] +00007FA12F093E00 99 instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::AdvanceToNextSpan(int64)[OptimizedTier1] +00007FA12F093EC0 34b instance void [System.Memory] System.Buffers.SequenceReader`1[System.Byte]::GetNextSpan()[OptimizedTier1] +00007FA12F094230 23 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1ParsingHandler::OnHeadersComplete(bool)[OptimizedTier1] +00007FA12F094270 1c instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::OnHeadersComplete()[OptimizedTier1] +00007FA12F0942A0 34 instance void [System.IO.Pipelines] System.IO.Pipelines.Pipe+DefaultPipeReader::AdvanceTo(valuetype [System.Memory]System.SequencePosition,valuetype [System.Memory]System.SequencePosition)[OptimizedTier1] +00007FA12F0942F0 fc instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::EnsureHostHeaderExists()[OptimizedTier1] +00007FA12F094410 d instance valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::get_HeaderHost()[OptimizedTier1] +00007FA12F094440 ae bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.HttpUtilities::IsHostHeaderValid(string)[OptimizedTier1] +00007FA12F094520 6c bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.HttpUtilities::IsHostPortValid(string,int32)[OptimizedTier1] +00007FA12F0945A0 24 instance class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.MessageBody [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::CreateMessageBody()[OptimizedTier1] +00007FA12F01ECA8 30 stub<21187> AllocateTemporaryEntryPoints +00007FA12F0945E0 25e class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.MessageBody [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1MessageBody::For(valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpVersion,class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders,class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection)[OptimizedTier1] +00007FA12F094860 15 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::get_HasTransferEncoding()[OptimizedTier1] +00007FA12F094890 df instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::InitializeBodyControl(class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.MessageBody)[OptimizedTier1] +00007FA12F094990 1bb instance valuetype [System.Runtime]System.ValueTuple`4 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.BodyControl::Start(class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.MessageBody)[OptimizedTier1] +00007FA12F094B70 4b instance void [System.Private.CoreLib] System.ValueTuple`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::.ctor(!0,!1,!2,!3)[OptimizedTier1] +00007FA12E673AE0 18 stub<21188> GenerateLookupStub +00007FA12E673B00 18 stub<21189> GenerateLookupStub +00007FA12E673B20 18 stub<21190> GenerateLookupStub +00007FA12E673B40 18 stub<21191> GenerateLookupStub +00007FA12F094BE0 16e instance class Microsoft.AspNetCore.Hosting.HostingApplication/Context [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplication::CreateContext(class [Microsoft.Extensions.Features]Microsoft.AspNetCore.Http.Features.IFeatureCollection)[OptimizedTier1] +00007FA12F094D70 8 instance !0 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection`1[System.__Canon]::Microsoft.AspNetCore.Hosting.Server.Abstractions.IHostContextContainer.get_HostContext()[OptimizedTier1] +00007FA12F094D90 bf instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::Initialize(class [Microsoft.Extensions.Features]Microsoft.AspNetCore.Http.Features.IFeatureCollection)[OptimizedTier1] +00007FA12F094E70 a instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection,int32)[OptimizedTier1] +00007FA12F094E90 7 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpContext+FeatureInterfaces]::set_Collection(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[OptimizedTier1] +00007FA12F094EB0 a instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection,int32)[OptimizedTier1] +00007FA12F094ED0 7 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpRequest+FeatureInterfaces]::set_Collection(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[OptimizedTier1] +00007FA12F094EF0 a instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::Initalize(class Microsoft.AspNetCore.Http.Features.IFeatureCollection,int32)[OptimizedTier1] +00007FA12F094F10 7 instance void [Microsoft.Extensions.Features] Microsoft.AspNetCore.Http.Features.FeatureReferences`1[Microsoft.AspNetCore.Http.DefaultHttpResponse+FeatureInterfaces]::set_Collection(class Microsoft.AspNetCore.Http.Features.IFeatureCollection)[OptimizedTier1] +00007FA12F094F30 b instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::set_FormOptions(class Microsoft.AspNetCore.Http.Features.FormOptions)[OptimizedTier1] +00007FA12F094F50 b instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::set_ServiceScopeFactory(class [Microsoft.Extensions.DependencyInjection.Abstractions]Microsoft.Extensions.DependencyInjection.IServiceScopeFactory)[OptimizedTier1] +00007FA12E673B60 18 stub<21192> GenerateLookupStub +00007FA12F094F70 2fa instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::BeginRequest(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class Microsoft.AspNetCore.Hosting.HostingApplication/Context)[OptimizedTier1] +00007FA12F0952A0 60 instance bool [System.Diagnostics.DiagnosticSource] System.Diagnostics.DiagnosticListener::IsEnabled(string,object,object)[OptimizedTier1] +00007FA12F095320 c instance bool [System.Diagnostics.DiagnosticSource] System.Diagnostics.DiagnosticListener+<>c__DisplayClass5_0::b__0(string,object,object)[OptimizedTier1] +00007FA12F01ECD8 18 stub<21193> AllocateTemporaryEntryPoints +00007FA12F01ECF0 1e0 stub<21194> AllocateTemporaryEntryPoints +00007FA12F01EED0 c0 stub<21195> AllocateTemporaryEntryPoints +00007FA12F01EF90 18 stub<21196> AllocateTemporaryEntryPoints +00007FA12F01EFA8 18 stub<21197> AllocateTemporaryEntryPoints +00007FA12F01EFC0 18 stub<21198> AllocateTemporaryEntryPoints +00007FA12F01EFD8 18 stub<21199> AllocateTemporaryEntryPoints +00007FA12F2B0000 18 stub<21200> AllocateTemporaryEntryPoints +00007FA12F095340 6bb instance class [System.Diagnostics.DiagnosticSource]System.Diagnostics.Activity [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::StartActivity(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,bool,bool,bool&)[OptimizedTier1] +00007FA12F095A50 ac instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.LegacyPropagator::ExtractTraceIdAndState(object,class System.Diagnostics.DistributedContextPropagator/PropagatorGetterCallback,string&,string&)[OptimizedTier1] +00007FA12F095B20 95 instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::.ctor(string)[OptimizedTier1] +00007FA12F095BE0 165 instance class System.Diagnostics.Activity [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::SetParentId(string)[OptimizedTier1] +00007FA12F095D60 188 instance string [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::get_ParentId()[OptimizedTier1] +00007FA12F095F10 b instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::set_TraceStateString(string)[OptimizedTier1] +00007FA12F095F30 b2 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1> [System.Diagnostics.DiagnosticSource] System.Diagnostics.LegacyPropagator::ExtractBaggage(object,class System.Diagnostics.DistributedContextPropagator/PropagatorGetterCallback)[OptimizedTier1] +00007FA12F096000 47 instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.DiagnosticListener::OnActivityImport(class System.Diagnostics.Activity,object)[OptimizedTier1] +00007FA12F096070 4c instance class [System.Diagnostics.DiagnosticSource]System.Diagnostics.Activity [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::StartActivity(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.Activity,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F2B0018 78 stub<21201> AllocateTemporaryEntryPoints +00007FA12F2B0090 60 stub<21202> AllocateTemporaryEntryPoints +00007FA12F2B00F0 d8 stub<21203> AllocateTemporaryEntryPoints +00007FA12F0960E0 637 instance class System.Diagnostics.Activity [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::Start()[OptimizedTier1] +00007FA12F096740 e bool [System.Private.CoreLib] System.DateTime::op_Equality(valuetype System.DateTime,valuetype System.DateTime)[OptimizedTier1] +00007FA12F096760 2af instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::GenerateW3CId()[OptimizedTier1] +00007FA12F096A30 10c instance bool [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::TrySetTraceIdFromParent()[OptimizedTier1] +00007FA12F096B70 77 valuetype System.Diagnostics.ActivityTraceId [System.Diagnostics.DiagnosticSource] System.Diagnostics.ActivityTraceId::CreateFromString(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F096C00 3c bool [System.Diagnostics.DiagnosticSource] System.Diagnostics.ActivityTraceId::IsLowerCaseHexAndNotAllZeros(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F096C50 109 instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::TrySetTraceFlagsFromParent()[OptimizedTier1] +00007FA12F096D80 9c uint8 [System.Diagnostics.DiagnosticSource] System.Diagnostics.ActivityTraceId::HexByteFromChars(char,char)[OptimizedTier1] +00007FA12F096E40 3c valuetype System.Diagnostics.ActivitySpanId [System.Diagnostics.DiagnosticSource] System.Diagnostics.ActivitySpanId::CreateRandom()[OptimizedTier1] +00007FA12F096EA0 52 void [System.Diagnostics.DiagnosticSource] System.Diagnostics.ActivityTraceId::SetToRandomBytes(valuetype [System.Runtime]System.Span`1)[OptimizedTier1] +00007FA12F096F10 5e class System.Diagnostics.RandomNumberGenerator [System.Diagnostics.DiagnosticSource] System.Diagnostics.RandomNumberGenerator::get_Current()[OptimizedTier1] +00007FA12F096F90 57 instance int64 [System.Diagnostics.DiagnosticSource] System.Diagnostics.RandomNumberGenerator::Next()[OptimizedTier1] +00007FA12F097000 14b string [System.Diagnostics.DiagnosticSource] System.HexConverter::ToString(valuetype [System.Runtime]System.ReadOnlySpan`1,valuetype System.HexConverter/Casing)[OptimizedTier1] +00007FA12F097170 a instance void [System.Private.CoreLib] System.ValueTuple`3[System.IntPtr,System.Int32,System.HexConverter+Casing]::.ctor(!0,!1,!2)[OptimizedTier1] +00007FA12F097190 cb string [System.Private.CoreLib] System.String::Create(int32,!!0,class System.Buffers.SpanAction`2)[OptimizedTier1] +00007FA12F097280 8 instance char& [System.Private.CoreLib] System.String::GetRawStringData()[OptimizedTier1] +00007FA12F0972A0 7 instance void [System.Private.CoreLib] System.Span`1[System.Char]::.ctor(!0&,int32)[OptimizedTier1] +00007FA12F0972C0 b3 instance void [System.Diagnostics.DiagnosticSource] System.HexConverter+<>c::b__4_0(valuetype [System.Runtime]System.Span`1,valuetype [System.Runtime]System.ValueTuple`3)[OptimizedTier1] +00007FA12F0973A0 8e void [System.Diagnostics.DiagnosticSource] System.HexConverter::EncodeToUtf16(valuetype [System.Runtime]System.ReadOnlySpan`1,valuetype [System.Runtime]System.Span`1,valuetype System.HexConverter/Casing)[OptimizedTier1] +00007FA12F097450 d8 instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.ActivitySource::NotifyActivityStart(class System.Diagnostics.Activity)[OptimizedTier1] +00007FA12F097550 2b4 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnHostingHttpRequestInStart(object)[OptimizedTier1] +00007FA12F097840 1b2 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[OptimizedTier1] +00007FA12F097A20 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInStartStruct]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F097B50 5a instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12F097BD0 741 instance class Datadog.Trace.Scope [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler::StartAspNetCorePipelineScope(class Datadog.Trace.Tracer,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest,string)[OptimizedTier1] +00007FA12F098340 1 instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+<>c__DisplayClass7_0::.ctor()[OptimizedTier1] +00007FA12F098360 23 string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.HttpUtilities::MethodToString(valuetype Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpMethod)[OptimizedTier1] +00007FA12F0983A0 5 instance class Datadog.Trace.Util.Http.QueryStringManager [Datadog.Trace] Datadog.Trace.TracerManager::get_QueryStringManager()[OptimizedTier1] +00007FA12F0983C0 a3 string [Datadog.Trace] Datadog.Trace.Util.Http.HttpRequestExtensions::GetUrl(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest,class Datadog.Trace.Util.Http.QueryStringManager)[OptimizedTier1] +00007FA12F098490 6b7 string [Datadog.Trace] Datadog.Trace.Util.Http.HttpRequestUtils::GetUrl(string,string,string,string,string,class Datadog.Trace.Util.Http.QueryStringManager)[OptimizedTier1] +00007FA12F098B70 29 instance string [Datadog.Trace] Datadog.Trace.Util.Http.QueryStringManager::Obfuscate(string)[OptimizedTier1] +00007FA12F2B01C8 90 stub<21204> AllocateTemporaryEntryPoints +00007FA12F2B0258 18 stub<21205> AllocateTemporaryEntryPoints +00007FA12F098BB0 17a instance string [Datadog.Trace] Datadog.Trace.Util.Http.QueryStringObfuscation.Obfuscator::Obfuscate(string)[OptimizedTier1] +00007FA12F098D70 a7 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler::ExtractPropagatedContext(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest)[OptimizedTier1] +00007FA12F098E40 12 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::Extract(!!0)[OptimizedTier1] +00007FA12F098E80 a3 instance class Datadog.Trace.SpanContext [Datadog.Trace] Datadog.Trace.Propagators.SpanContextPropagator::Extract(!!0,!!1)[OptimizedTier1] +00007FA12F098F40 29c instance bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::TryExtract(!!0,!!1,class Datadog.Trace.SpanContext&)[OptimizedTier1] +00007FA12F099210 b9 bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::TryGetSingle(class [System.Runtime]System.Collections.Generic.IEnumerable`1,string&)[OptimizedTier1] +00007FA12F0992F0 21a bool [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::TryParseTraceParent(string,valuetype Datadog.Trace.Propagators.W3CTraceParent&)[OptimizedTier1] +00007FA12F099530 30 instance void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceParent::.ctor(uint64,uint64,bool,string,string)[OptimizedTier1] +00007FA12F099580 e3 string [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::TrimAndJoinStrings(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F099680 4fb valuetype Datadog.Trace.Propagators.W3CTraceState [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::ParseTraceState(string)[OptimizedTier1] +00007FA12F099BC0 2f8 void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::SplitTraceStateValues(string,string&,string&)[OptimizedTier1] +00007FA12F099EE0 125 valuetype [System.Runtime]System.Nullable`1 [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceContextPropagator::SamplingPriorityToInt32(valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F09A030 3c instance void [Datadog.Trace] Datadog.Trace.Propagators.W3CTraceState::.ctor(valuetype [System.Runtime]System.Nullable`1,string,string,string)[OptimizedTier1] +00007FA12F09A090 74 instance void [Datadog.Trace] Datadog.Trace.SpanContext::.ctor(valuetype [System.Runtime]System.Nullable`1,uint64,valuetype [System.Runtime]System.Nullable`1,string,string,string,string)[OptimizedTier1] +00007FA12F09A120 2f instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_Origin(string)[OptimizedTier1] +00007FA12F09A170 b instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_PropagatedTags(string)[OptimizedTier1] +00007FA12F09A190 b instance void [Datadog.Trace] Datadog.Trace.SpanContext::set_AdditionalW3CTraceState(string)[OptimizedTier1] +00007FA12F2B0270 18 stub<21206> AllocateTemporaryEntryPoints +00007FA12F2B0288 18 stub<21207> AllocateTemporaryEntryPoints +00007FA12F2B02A0 d8 stub<21208> AllocateTemporaryEntryPoints +00007FA12F2B0378 d8 stub<21209> AllocateTemporaryEntryPoints +00007FA12F2B0450 d8 stub<21210> AllocateTemporaryEntryPoints +00007FA12F09A1B0 1ac instance class [System.Runtime]System.Collections.Generic.IEnumerable`1> [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler::ExtractHeaderTags(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest,class Datadog.Trace.Tracer)[OptimizedTier1] +00007FA12F09A390 53 bool [Datadog.Trace] Datadog.Trace.ExtensionMethods.DictionaryExtensions::IsNullOrEmpty(class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2)[OptimizedTier1] +00007FA12F09A400 40 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::Empty()[OptimizedTier1] +00007FA12F09A460 f instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::.ctor(valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString)[OptimizedTier1] +00007FA12F09A480 1f3 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::ExtraFeatureSet(class [System.Runtime]System.Type,object)[OptimizedTier1] +00007FA12F09A690 1b instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::.ctor()[OptimizedTier1] +00007FA12F09A6C0 563 class Datadog.Trace.Tagging.TraceTagCollection [Datadog.Trace] Datadog.Trace.Tagging.TagPropagation::ParseHeader(string,int32)[OptimizedTier1] +00007FA12F09ACE0 16c void [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::DecorateWebServerSpan(class Datadog.Trace.ISpan,string,string,string,string,string,class Datadog.Trace.Tagging.WebTags,class [System.Runtime]System.Collections.Generic.IEnumerable`1>)[OptimizedTier1] +00007FA12F09AE90 b instance void [Datadog.Trace] Datadog.Trace.Span::Datadog.Trace.ISpan.set_Type(string)[OptimizedTier1] +00007FA12F09AEB0 b instance void [Datadog.Trace] Datadog.Trace.Span::Datadog.Trace.ISpan.set_ResourceName(string)[OptimizedTier1] +00007FA12F09AED0 b instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpMethod(string)[OptimizedTier1] +00007FA12F09AEF0 b instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpRequestHeadersHost(string)[OptimizedTier1] +00007FA12F09AF10 b instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpUrl(string)[OptimizedTier1] +00007FA12F09AF30 b instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpUserAgent(string)[OptimizedTier1] +00007FA12F09AF50 4 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [System.Linq] System.Linq.EmptyPartition`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::GetEnumerator()[OptimizedTier1] +00007FA12F09AF70 3 instance bool [System.Linq] System.Linq.EmptyPartition`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::MoveNext()[OptimizedTier1] +00007FA12F09AF90 1 instance void [System.Linq] System.Linq.EmptyPartition`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::System.IDisposable.Dispose()[OptimizedTier1] +00007FA12F09AFB0 8 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_IpHeaderEnabled()[OptimizedTier1] +00007FA12F2B0528 18 stub<21211> AllocateTemporaryEntryPoints +00007FA12F09AFD0 65 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::RecordBeginRequestDiagnostics(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,int64)[OptimizedTier1] +00007FA12F09B060 5f class [System.Runtime]System.IDisposable [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics+Log::RequestScope(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09B0E0 238 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics+Log+HostingLogScope::.ctor(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12E673B80 18 stub<21212> GenerateLookupStub +00007FA12F09B340 a3 instance string [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::get_TraceIdentifier()[OptimizedTier1] +00007FA12F09B410 36 instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpRequestIdentifierFeature.get_TraceIdentifier()[OptimizedTier1] +00007FA12F09B460 64 instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1Connection::CreateRequestId()[OptimizedTier1] +00007FA12F09B4E0 5b string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.StringUtilities::ConcatAsHexSuffix(string,char,uint32)[OptimizedTier1] +00007FA12F09B550 28 instance void [System.Private.CoreLib] System.ValueTuple`3[System.__Canon,System.Char,System.UInt32]::.ctor(!0,!1,!2)[OptimizedTier1] +00007FA12F09B590 cb string [System.Private.CoreLib] System.String::Create(int32,!!0,class System.Buffers.SpanAction`2)[OptimizedTier1] +00007FA12F2B0540 18 stub<21213> AllocateTemporaryEntryPoints +00007FA12F2B0558 18 stub<21214> AllocateTemporaryEntryPoints +00007FA12F2B0570 18 stub<21215> AllocateTemporaryEntryPoints +00007FA12F2B0588 18 stub<21216> AllocateTemporaryEntryPoints +00007FA12F09B680 c1 void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.StringUtilities::PopulateSpanWithHexSuffix(valuetype [System.Runtime]System.Span`1,valuetype [System.Runtime]System.ValueTuple`3)[OptimizedTier1] +00007FA12F09B7B0 9e instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::LogRequestStarting(class Microsoft.AspNetCore.Hosting.HostingApplication/Context)[OptimizedTier1] +00007FA12F09B870 2e instance string [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingRequestStartingLog+<>c::<.cctor>b__16_0(object,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12E673BA0 18 stub<21217> GenerateLookupStub +00007FA12F09B8C0 a3 instance string [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_Protocol()[OptimizedTier1] +00007FA12F09B990 33 instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.get_Protocol()[OptimizedTier1] +00007FA12F09B9E0 6a instance string [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::get_HttpVersion()[OptimizedTier1] +00007FA12F09BA60 e6 instance string [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_ContentType()[OptimizedTier1] +00007FA12F09BB70 14 instance valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestHeaders::Microsoft.AspNetCore.Http.IHeaderDictionary.get_ContentType()[OptimizedTier1] +00007FA12E673BC0 18 stub<21218> GenerateLookupStub +00007FA12F09BBA0 b6 instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_ContentLength()[OptimizedTier1] +00007FA12F09BC80 10 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplication::ProcessRequestAsync(class Microsoft.AspNetCore.Hosting.HostingApplication/Context)[OptimizedTier1] +00007FA12F09BCA0 7e instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09BD40 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F09BD60 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12E673BE0 18 stub<21219> GenerateLookupStub +00007FA12F09BEC0 14e instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.HostFiltering] Microsoft.AspNetCore.HostFiltering.HostFilteringMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09C030 5c void [Microsoft.AspNetCore.HostFiltering] Microsoft.AspNetCore.HostFiltering.LoggerExtensions::AllHostsAllowed(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger)[OptimizedTier1] +00007FA12F09C0B0 99 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Diagnostics] Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12E673C00 18 stub<21220> GenerateLookupStub +00007FA12F09C170 130 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.HttpsPolicy] Microsoft.AspNetCore.HttpsPolicy.HstsMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09C2C0 5f void [Microsoft.AspNetCore.HttpsPolicy] Microsoft.AspNetCore.HttpsPolicy.HstsLoggingExtensions::SkippingInsecure(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger)[OptimizedTier1] +00007FA12E673C20 18 stub<21221> GenerateLookupStub +00007FA12F09C340 1b4 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.HttpsPolicy] Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09C520 11 instance !0 [System.Private.CoreLib] System.Lazy`1[System.Int32]::get_Value()[OptimizedTier1] +00007FA12E673C40 18 stub<21222> GenerateLookupStub +00007FA12F2B05A0 240 stub<21223> AllocateTemporaryEntryPoints +00007FA12F09C550 170 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.StaticFiles] Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09C6E0 21 bool [Microsoft.AspNetCore.StaticFiles] Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware::ValidateNoEndpointDelegate(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09C720 64 bool [Microsoft.AspNetCore.StaticFiles] Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware::ValidateMethod(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09C7A0 16 bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.HttpMethods::IsGet(string)[OptimizedTier1] +00007FA12F09C7D0 3e bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.HttpMethods::Equals(string,string)[OptimizedTier1] +00007FA12F09C830 1ce bool [Microsoft.AspNetCore.StaticFiles] Microsoft.AspNetCore.StaticFiles.Helpers::TryMatchPath(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString,bool,valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString&)[OptimizedTier1] +00007FA12F09CA20 e instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::StartsWithSegments(valuetype Microsoft.AspNetCore.Http.PathString,valuetype Microsoft.AspNetCore.Http.PathString&)[OptimizedTier1] +00007FA12F09CA40 12c instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::StartsWithSegments(valuetype Microsoft.AspNetCore.Http.PathString,valuetype [System.Runtime]System.StringComparison,valuetype Microsoft.AspNetCore.Http.PathString&)[OptimizedTier1] +00007FA12F09CB90 51 string [Microsoft.AspNetCore.StaticFiles] Microsoft.AspNetCore.StaticFiles.FileExtensionContentTypeProvider::GetExtension(string)[OptimizedTier1] +00007FA12F09CC00 15 string [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::op_Implicit(valuetype Microsoft.AspNetCore.Http.PathString)[OptimizedTier1] +00007FA12F09CC30 62 void [Microsoft.AspNetCore.StaticFiles] Microsoft.AspNetCore.StaticFiles.LoggerExtensions::FileTypeNotSupported(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,string)[OptimizedTier1] +00007FA12F2B07E0 60 stub<21224> AllocateTemporaryEntryPoints +00007FA12F2B0840 18 stub<21225> AllocateTemporaryEntryPoints +00007FA12F2B0858 60 stub<21226> AllocateTemporaryEntryPoints +00007FA12F2B08B8 18 stub<21227> AllocateTemporaryEntryPoints +00007FA12F09CCB0 169 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F2B08D0 138 stub<21228> AllocateTemporaryEntryPoints +00007FA12F2B0A08 60 stub<21229> AllocateTemporaryEntryPoints +00007FA12F2B0A68 18 stub<21230> AllocateTemporaryEntryPoints +00007FA12F2B0A80 c0 stub<21231> AllocateTemporaryEntryPoints +00007FA12F2B0B40 60 stub<21232> AllocateTemporaryEntryPoints +00007FA12F2B0BA0 18 stub<21233> AllocateTemporaryEntryPoints +00007FA12F09CE40 806 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Matching.DfaMatcher::MatchAsync(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F09D670 17 instance void [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::.ctor(void*,int32)[OptimizedTier1] +00007FA12F09D6A0 3 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences()[OptimizedTier1] +00007FA12F09D6C0 df int32 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Matching.FastPathTokenizer::Tokenize(string,valuetype [System.Runtime]System.Span`1)[OptimizedTier1] +00007FA12F09D7C0 23 instance valuetype System.Span`1 [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::Slice(int32,int32)[OptimizedTier1] +00007FA12F09D800 7 instance void [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Matching.PathSegment]::.ctor(!0&,int32)[OptimizedTier1] +00007FA12F09D820 d7 instance valuetype [System.Runtime]System.ValueTuple`2 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Matching.DfaMatcher::FindCandidateSet(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,string,valuetype [System.Runtime]System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F09D920 64 void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector::Select(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,valuetype Microsoft.AspNetCore.Routing.Matching.CandidateState[])[OptimizedTier1] +00007FA12E673C60 18 stub<21234> GenerateLookupStub +00007FA12F09D9A0 11b void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.EndpointHttpContextExtensions::SetEndpoint(class Microsoft.AspNetCore.Http.HttpContext,class Microsoft.AspNetCore.Http.Endpoint)[OptimizedTier1] +00007FA12F09DAE0 b instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IEndpointFeature.set_Endpoint(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.Endpoint)[OptimizedTier1] +00007FA12E673C80 18 stub<21235> GenerateLookupStub +00007FA12F09DB00 b5 instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::set_RouteValues(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12F09DBE0 b instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IRouteValuesFeature.set_RouteValues(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12F2B0BB8 a8 stub<21236> AllocateTemporaryEntryPoints +00007FA12F2B0C60 18 stub<21237> AllocateTemporaryEntryPoints +00007FA12F2B0C78 60 stub<21238> AllocateTemporaryEntryPoints +00007FA12F09DC00 117a instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnRoutingEndpointMatched(object)[OptimizedTier1] +00007FA12F09EE30 1b2 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[OptimizedTier1] +00007FA12F09F010 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInEndpointMatchedStruct]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F09F140 5a instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12F09F1C0 5 instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::set_IsUsingEndpointRouting(bool)[OptimizedTier1] +00007FA12F09F1E0 5 instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::set_IsFirstPipelineExecution(bool)[OptimizedTier1] +00007FA12F09F200 116 instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::MatchesOriginalPath(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest)[OptimizedTier1] +00007FA12F09F340 5 instance valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_OriginalPath()[OptimizedTier1] +00007FA12F09F360 33 instance bool [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.PathString::Equals(valuetype Microsoft.AspNetCore.Http.PathString,valuetype [System.Runtime]System.StringComparison)[OptimizedTier1] +00007FA12F09F3B0 489 instance object [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IFeatureCollection.get_Item(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F09F860 e5 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[OptimizedTier1] +00007FA12F09F970 16 instance object [DuckTypeNotVisibleAssembly.Http1Connection`1_8] Microsoft_AspNetCore_Server_Kestrel_Core__ADB9793829DDAE60.Microsoft_AspNetCore_Server_Kestrel_Core_Internal_Http_Http1Connection`1\[\[Microsoft_AspNetCore_Hosting_HostingApplication__Context\, Microsoft_AspNetCore_Hosting\, Version=7_0_0_0\, Culture=neutral\, PublicKeyToken=adb9793829ddae60\]\].Datadog_Trace_DiagnosticListeners_EndpointFeatureProxy_8::GetEndpoint()[OptimizedTier1] +00007FA12F09F9A0 1b2 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[OptimizedTier1] +00007FA12F09FB80 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F09FCB0 69 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12F09FD40 21 instance void [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.DiagnosticListeners.RouteEndpoint]::.ctor(!0)[OptimizedTier1] +00007FA12F09FD80 e instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::set_AspNetCoreEndpoint(string)[OptimizedTier1] +00007FA12F09FDA0 b instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::set_Route(string)[OptimizedTier1] +00007FA12F09FDC0 1ce !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::DuckCast(object)[OptimizedTier1] +00007FA12F09FFC0 1ce !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::Create(object)[OptimizedTier1] +00007FA12F0A01C0 1a2 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestStruct]::Create(object)[OptimizedTier1] +00007FA12F0A0390 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestStruct]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0A04C0 69 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12F0A0550 8 instance bool [Datadog.Trace] Datadog.Trace.Configuration.ImmutableTracerSettings::get_ExpandRouteTemplatesEnabled()[OptimizedTier1] +00007FA12F0A0580 ef1 string [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreResourceNameHelper::SimplifyRoutePattern(valuetype Datadog.Trace.DiagnosticListeners.RoutePattern,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary,string,string,string,bool)[OptimizedTier1] +00007FA12F0A1520 1d2 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[OptimizedTier1] +00007FA12F0A1720 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+RoutePatternParameterPartStruct]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0A1850 5a instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12F0A18D0 b instance void [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::set_ResourceName(string)[OptimizedTier1] +00007FA12F2B0CD8 18 stub<21239> AllocateTemporaryEntryPoints +00007FA12F2B0CF0 18 stub<21240> AllocateTemporaryEntryPoints +00007FA12F2B0D08 18 stub<21241> AllocateTemporaryEntryPoints +00007FA12F2B0D20 18 stub<21242> AllocateTemporaryEntryPoints +00007FA12F0A18F0 d2a instance class Datadog.Trace.ISpan [Datadog.Trace] Datadog.Trace.Span::SetTag(string,string)[OptimizedTier1] +00007FA12F0A2920 5e instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::SetTag(string,string)[OptimizedTier1] +00007FA12F0A2A00 ab instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreTags::SetTag(string,string)[OptimizedTier1] +00007FA12F0A2B50 3cf instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::SetTag(string,string)[OptimizedTier1] +00007FA12F2B0D38 18 stub<21243> AllocateTemporaryEntryPoints +00007FA12F0A30C0 20c instance void [Datadog.Trace] Datadog.Trace.Tagging.TagsList::SetTag(string,string)[OptimizedTier1] +00007FA12F0A3300 b4 instance void [System.Private.CoreLib] System.Collections.Generic.List`1[System.Collections.Generic.KeyValuePair`2[System.__Canon,System.__Canon]]::AddWithResize(!0)[OptimizedTier1] +00007FA12F0A33D0 11d void [Datadog.Trace] Datadog.Trace.AppSec.Coordinator.SecurityCoordinatorHelpers::CheckPathParams(class Datadog.Trace.AppSec.Security,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class Datadog.Trace.Span,class [System.Runtime]System.Collections.Generic.IDictionary`2)[OptimizedTier1] +00007FA12F0A3510 62 void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware+Log::MatchSuccess(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,string)[OptimizedTier1] +00007FA12F0A3590 68 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Authorization.Policy] Microsoft.AspNetCore.Authorization.AuthorizationMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F0A3620 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0A3640 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0A37A0 21 instance class [Microsoft.AspNetCore.Http.Features]Microsoft.AspNetCore.Http.Features.IItemsFeature [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext+<>c::<.cctor>b__74_0(class [Microsoft.Extensions.Features]Microsoft.AspNetCore.Http.Features.IFeatureCollection)[OptimizedTier1] +00007FA12F0A37E0 22 instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.Features.ItemsFeature::.ctor()[OptimizedTier1] +00007FA12F0A3820 76 class [System.Runtime]System.Threading.Tasks.Task`1 [Microsoft.AspNetCore.Authorization] Microsoft.AspNetCore.Authorization.AuthorizationPolicy::CombineAsync(class Microsoft.AspNetCore.Authorization.IAuthorizationPolicyProvider,class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0A38B0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0A38D0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12E673CA0 18 stub<21244> GenerateLookupStub +00007FA12E673CC0 18 stub<21245> GenerateLookupStub +00007FA12E673CE0 18 stub<21246> GenerateLookupStub +00007FA12E673D00 18 stub<21247> GenerateLookupStub +00007FA12E673D20 18 stub<21248> GenerateLookupStub +00007FA12E673D40 18 stub<21249> GenerateLookupStub +00007FA12E673D60 18 stub<21250> GenerateLookupStub +00007FA12E673D80 18 stub<21251> GenerateLookupStub +00007FA12E673DA0 18 stub<21252> GenerateLookupStub +00007FA12F2B0D50 60 stub<21253> AllocateTemporaryEntryPoints +00007FA12F2B0DB0 d8 stub<21254> AllocateTemporaryEntryPoints +00007FA12E673DC0 18 stub<21255> GenerateLookupStub +00007FA12E673DE0 18 stub<21256> GenerateLookupStub +00007FA12F2B0E88 18 stub<21257> AllocateTemporaryEntryPoints +00007FA12F2B0EA0 18 stub<21258> AllocateTemporaryEntryPoints +00007FA12F2B0EB8 18 stub<21259> AllocateTemporaryEntryPoints +00007FA12F2B0ED0 18 stub<21260> AllocateTemporaryEntryPoints +00007FA12F2B0EE8 18 stub<21261> AllocateTemporaryEntryPoints +00007FA12F2B0F00 18 stub<21262> AllocateTemporaryEntryPoints +00007FA12F2B0F18 18 stub<21263> AllocateTemporaryEntryPoints +00007FA12F0A3A40 bef instance void [Microsoft.AspNetCore.Authorization] Microsoft.AspNetCore.Authorization.AuthorizationPolicy+d__10::MoveNext()[OptimizedTier1] +00007FA12F0A46B0 a2 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Microsoft.AspNetCore.Authorization] Microsoft.AspNetCore.Authorization.DefaultAuthorizationPolicyProvider::GetFallbackPolicyAsync()[OptimizedTier1] +00007FA12E673E00 18 stub<21264> GenerateLookupStub +00007FA12F2B0F30 18 stub<21265> AllocateTemporaryEntryPoints +00007FA12F0A4770 2d1 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.EndpointMiddleware::Invoke(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F0A4A80 4e void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.EndpointMiddleware+Log::ExecutingEndpoint(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.Endpoint)[OptimizedTier1] +00007FA12F0A4AF0 2bc instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.ControllerRequestDelegateFactory+<>c__DisplayClass12_0::b__0(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F0A4DD0 a3 instance class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpRequest::get_RouteValues()[OptimizedTier1] +00007FA12F0A4EA0 4d instance void [Microsoft.AspNetCore.Routing.Abstractions] Microsoft.AspNetCore.Routing.RouteData::.ctor(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12F0A4F10 69 instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ActionContext::.ctor(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteData,class Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor)[OptimizedTier1] +00007FA12F0A4FA0 c4 instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary::.ctor(int32,int32,int32)[OptimizedTier1] +00007FA12F0A5080 4d instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ControllerContext::set_ValueProviderFactories(class [System.Runtime]System.Collections.Generic.IList`1)[OptimizedTier1] +00007FA12F0A50F0 5 instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary::set_MaxValidationDepth(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F0A5110 5 instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary::set_MaxStateDepth(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12E673E20 18 stub<21266> GenerateLookupStub +00007FA12E673E40 18 stub<21267> GenerateLookupStub +00007FA12F0A5130 1e7 instance valuetype [System.Runtime]System.ValueTuple`2 [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvokerCache::GetCachedResult(class Microsoft.AspNetCore.Mvc.ControllerContext)[OptimizedTier1] +00007FA12F0A5340 277 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::.ctor(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class Microsoft.AspNetCore.Mvc.Infrastructure.IActionContextAccessor,class Microsoft.AspNetCore.Mvc.Infrastructure.IActionResultTypeMapper,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata[],class [System.Runtime]System.Collections.Generic.IList`1)[OptimizedTier1] +00007FA12F2B0F48 60 stub<21268> AllocateTemporaryEntryPoints +00007FA12F2B0FA8 18 stub<21269> AllocateTemporaryEntryPoints +00007FA12F0A55E0 176 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::InvokeAsync()[OptimizedTier1] +00007FA12F0A5780 64 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::g__Logged|17_1(class Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker)[OptimizedTier1] +00007FA12F0A5800 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0A5820 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0A5980 1 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ActionContextAccessor+NullActionContextAccessor::set_ActionContext(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext)[OptimizedTier1] +00007FA12F0A59A0 ac void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeActionImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteData)[OptimizedTier1] +00007FA12F0A5A70 4d8 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnMvcBeforeAction(object)[OptimizedTier1] +00007FA12F0A5F80 1b2 bool [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::TryDuckCast(object,!!0&)[OptimizedTier1] +00007FA12F0A6160 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+BeforeActionStruct]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0A6290 69 instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12F2B0FC0 18 stub<21270> AllocateTemporaryEntryPoints +00007FA12F2B0FD8 18 stub<21271> AllocateTemporaryEntryPoints +00007FA12F0A6320 793 class Datadog.Trace.Span [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::StartMvcCoreSpan(class Datadog.Trace.Tracer,class Datadog.Trace.Span,valuetype Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver/BeforeActionStruct,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpRequest)[OptimizedTier1] +00007FA12F0A6B00 1b instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::.ctor()[OptimizedTier1] +00007FA12F0A6B30 5 instance bool [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_IsUsingEndpointRouting()[OptimizedTier1] +00007FA12F0A6B50 5 instance string [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_Route()[OptimizedTier1] +00007FA12F0A6B70 5 instance string [Datadog.Trace] Datadog.Trace.PlatformHelpers.AspNetCoreHttpRequestHandler+RequestTrackingFeature::get_ResourceName()[OptimizedTier1] +00007FA12F0A6B90 e instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::set_AspNetCoreAction(string)[OptimizedTier1] +00007FA12F0A6BB0 e instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::set_AspNetCoreController(string)[OptimizedTier1] +00007FA12F0A6BD0 e instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::set_AspNetCoreArea(string)[OptimizedTier1] +00007FA12F0A6BF0 e instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::set_AspNetCorePage(string)[OptimizedTier1] +00007FA12F0A6C20 4d3 void [Datadog.Trace] Datadog.Trace.AppSec.Coordinator.SecurityCoordinatorHelpers::CheckPathParamsFromAction(class Datadog.Trace.AppSec.Security,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class Datadog.Trace.Span,class [System.Runtime]System.Collections.Generic.IList`1,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteValueDictionary)[OptimizedTier1] +00007FA12F0A7120 5f class [System.Runtime]System.IDisposable [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreLoggerExtensions::ActionScope(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor)[OptimizedTier1] +00007FA12F0A71A0 4d instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreLoggerExtensions+ActionLogScope::.ctor(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor)[OptimizedTier1] +00007FA12F2B2000 18 stub<21272> AllocateTemporaryEntryPoints +00007FA12F0A7210 5f instance class [System.Runtime]System.IDisposable [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.BeginScope(!!0)[OptimizedTier1] +00007FA12E673E60 18 stub<21273> GenerateLookupStub +00007FA12E673E80 18 stub<21274> GenerateLookupStub +00007FA12F0A72A0 726 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+Log::ExecutingAction(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor)[OptimizedTier1] +00007FA12F2B2018 5e8 stub<21275> AllocateTemporaryEntryPoints +00007FA12F2B2600 c0 stub<21276> AllocateTemporaryEntryPoints +00007FA12F2B26C0 90 stub<21277> AllocateTemporaryEntryPoints +00007FA12F2B2750 a8 stub<21278> AllocateTemporaryEntryPoints +00007FA12F2B27F8 18 stub<21279> AllocateTemporaryEntryPoints +00007FA12F2B2810 78 stub<21280> AllocateTemporaryEntryPoints +00007FA12F2B2888 18 stub<21281> AllocateTemporaryEntryPoints +00007FA12F0A79F0 d instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+KeyCollection[System.__Canon,System.__Canon]::get_Count()[OptimizedTier1] +00007FA12F0A7A20 107 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+KeyCollection[System.__Canon,System.__Canon]::CopyTo(!0[],int32)[OptimizedTier1] +00007FA12F2B28A0 5e8 stub<21282> AllocateTemporaryEntryPoints +00007FA12F2B2E88 c0 stub<21283> AllocateTemporaryEntryPoints +00007FA12F2B2F48 90 stub<21284> AllocateTemporaryEntryPoints +00007FA12F2B4000 a8 stub<21285> AllocateTemporaryEntryPoints +00007FA12F2B40A8 18 stub<21286> AllocateTemporaryEntryPoints +00007FA12F2B40C0 78 stub<21287> AllocateTemporaryEntryPoints +00007FA12F2B4138 18 stub<21288> AllocateTemporaryEntryPoints +00007FA12F0A7B50 d instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection[System.__Canon,System.__Canon]::get_Count()[OptimizedTier1] +00007FA12F0A7B80 105 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+ValueCollection[System.__Canon,System.__Canon]::CopyTo(!1[],int32)[OptimizedTier1] +00007FA12F0A7CB0 a2 string [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.Extensions.Internal.TypeNameHelper::GetTypeDisplayName(class [System.Runtime]System.Type,bool,bool,bool,char)[OptimizedTier1] +00007FA12F0A7D80 1bc void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.Extensions.Internal.TypeNameHelper::ProcessType(class [System.Runtime]System.Text.StringBuilder,class [System.Runtime]System.Type,valuetype Microsoft.Extensions.Internal.TypeNameHelper/DisplayNameOptions&)[OptimizedTier1] +00007FA12F0A7F60 174 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass16_0`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,!1,!2,!3,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0A8100 cf instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0A8200 125 instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0A8350 20b instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0A8590 79 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0A8630 2a8 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F0A8910 5 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_Formatter()[OptimizedTier1] +00007FA12F0A8930 29 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_State()[OptimizedTier1] +00007FA12F2B4150 18 stub<21289> AllocateTemporaryEntryPoints +00007FA12F0A8970 41 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4+<>c[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::<.cctor>b__16_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`4,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0A89D0 29 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::ToString()[OptimizedTier1] +00007FA12F0A8A20 5d instance object[] [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]::ToArray()[OptimizedTier1] +00007FA12F0A8AA0 7f instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LogValuesFormatter::FormatWithOverwrite(object[])[OptimizedTier1] +00007FA12F0A8B40 4c2 instance string [System.Private.CoreLib] System.Reflection.RuntimeMethodInfo::ToString()[OptimizedTier1] +00007FA12F0A9030 4 instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_LogLevel()[OptimizedTier1] +00007FA12F0A9060 405 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[OptimizedTier1] +00007FA12F0A9490 b instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_EventId()[OptimizedTier1] +00007FA12F0A94B0 4 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`4[System.__Canon,System.__Canon,System.__Canon,System.__Canon]]::get_Category()[OptimizedTier1] +00007FA12F0A94D0 278 instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0A9770 4fc instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F2B4168 c0 stub<21290> AllocateTemporaryEntryPoints +00007FA12F2B4228 18 stub<21291> AllocateTemporaryEntryPoints +00007FA12F2B4240 18 stub<21292> AllocateTemporaryEntryPoints +00007FA12F0A9C90 146 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreLoggerExtensions::AuthorizationFiltersExecutionPlan(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0A9E00 146 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreLoggerExtensions::ResourceFiltersExecutionPlan(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0A9F70 146 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreLoggerExtensions::ActionFiltersExecutionPlan(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0AA0E0 146 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreLoggerExtensions::ExceptionFiltersExecutionPlan(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0AA250 146 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreLoggerExtensions::ResultFiltersExecutionPlan(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0AA3C0 c8 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::InvokeFilterPipelineAsync()[OptimizedTier1] +00007FA12F0AA4C0 6a instance void [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext::.ctor(class Microsoft.AspNetCore.Mvc.ActionContext,class [System.Runtime]System.Collections.Generic.IList`1,class [System.Runtime]System.Collections.Generic.IList`1)[OptimizedTier1] +00007FA12F0AA550 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeOnResourceExecutingImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IResourceFilter)[OptimizedTier1] +00007FA12F0AA620 107 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter::OnResourceExecuting(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext)[OptimizedTier1] +00007FA12F0AA750 21 instance bool [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.ItemsDictionary::System.Collections.Generic.IDictionary.ContainsKey(object)[OptimizedTier1] +00007FA12F0AA790 5 instance class [System.Runtime]System.Collections.Generic.IList`1 [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.FilterContext::get_Filters()[OptimizedTier1] +00007FA12E673EA0 18 stub<21293> GenerateLookupStub +00007FA12F0AA7B0 106 instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::OnStarting(class [System.Runtime]System.Func`2,object)[OptimizedTier1] +00007FA12F0AA8E0 6 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.OnStarting(class [System.Runtime]System.Func`2,object)[OptimizedTier1] +00007FA12F0AA900 da instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::OnStarting(class [System.Runtime]System.Func`2,object)[OptimizedTier1] +00007FA12F0AAA00 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterOnResourceExecutingImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IResourceFilter)[OptimizedTier1] +00007FA12F0AAAE0 11a instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::InvokeNextResourceFilter()[OptimizedTier1] +00007FA12F2B4258 60 stub<21294> AllocateTemporaryEntryPoints +00007FA12F2B42B8 18 stub<21295> AllocateTemporaryEntryPoints +00007FA12F0AAC40 c8 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::InvokeInnerFilterAsync()[OptimizedTier1] +00007FA12F0AAD40 120 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker+Log::ExecutingControllerFactory(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class Microsoft.AspNetCore.Mvc.ControllerContext)[OptimizedTier1] +00007FA12F0AAE80 6f instance object [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider+<>c__DisplayClass6_0::g__CreateController|0(class Microsoft.AspNetCore.Mvc.ControllerContext)[OptimizedTier1] +00007FA12F0AAF10 36 instance object [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider+<>c__DisplayClass7_0::b__0(class Microsoft.AspNetCore.Mvc.ControllerContext)[OptimizedTier1] +00007FA12F0AAF60 3f instance class [Microsoft.AspNetCore.Http.Features]Microsoft.AspNetCore.Http.Features.IServiceProvidersFeature [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext+<>c::<.cctor>b__74_1(class Microsoft.AspNetCore.Http.DefaultHttpContext)[OptimizedTier1] +00007FA12F0AAFC0 20 instance void [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.HttpResponse::RegisterForDisposeAsync(class [System.Runtime]System.IAsyncDisposable)[OptimizedTier1] +00007FA12E673EC0 18 stub<21296> GenerateLookupStub +00007FA12F0AB000 106 instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::OnCompleted(class [System.Runtime]System.Func`2,object)[OptimizedTier1] +00007FA12F0AB130 6 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.OnCompleted(class [System.Runtime]System.Func`2,object)[OptimizedTier1] +00007FA12F0AB150 af instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::OnCompleted(class [System.Runtime]System.Func`2,object)[OptimizedTier1] +00007FA12F0AB220 c instance class [Microsoft.Extensions.DependencyInjection.Abstractions]Microsoft.Extensions.DependencyInjection.IServiceScope [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope::CreateScope()[OptimizedTier1] +00007FA12F0AB240 5c instance class [Microsoft.Extensions.DependencyInjection.Abstractions]Microsoft.Extensions.DependencyInjection.IServiceScope [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceProvider::CreateScope()[OptimizedTier1] +00007FA12F0AB2C0 1 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor()[OptimizedTier1] +00007FA12F0AB2E0 52 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::.ctor(int32,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12F0AB350 4 instance class [System.ComponentModel]System.IServiceProvider [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope::get_ServiceProvider()[OptimizedTier1] +00007FA12F0AB380 c0 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Controllers.DefaultControllerPropertyActivator+<>c__DisplayClass4_0::g__Activate|0(class Microsoft.AspNetCore.Mvc.ControllerContext,object)[OptimizedTier1] +00007FA12F0AB460 4 instance object [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Controllers.DefaultControllerPropertyActivator+<>c::b__5_3(class Microsoft.AspNetCore.Mvc.ControllerContext)[OptimizedTier1] +00007FA12F0AB480 4d instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ControllerBase::set_ControllerContext(class Microsoft.AspNetCore.Mvc.ControllerContext)[OptimizedTier1] +00007FA12F0AB500 c0 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionaryControllerPropertyActivator+<>c__DisplayClass7_0::g__Activate|0(class [Microsoft.AspNetCore.Mvc.Core]Microsoft.AspNetCore.Mvc.ControllerContext,object)[OptimizedTier1] +00007FA12F0AB5E0 4c instance class Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionaryControllerPropertyActivator::GetViewDataDictionary(class [Microsoft.AspNetCore.Mvc.Core]Microsoft.AspNetCore.Mvc.ControllerContext)[OptimizedTier1] +00007FA12F0AB650 18c instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::.ctor(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0AB800 50 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.TemplateInfo::.ctor()[OptimizedTier1] +00007FA12E673EE0 18 stub<21297> GenerateLookupStub +00007FA12F0AB870 d9 class Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ModelMetadataProviderExtensions::GetModelExplorerForType(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider,class [System.Runtime]System.Type,object)[OptimizedTier1] +00007FA12F0AB970 ff instance class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider::GetMetadataForType(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0ABA90 bf instance valuetype Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider/ModelMetadataCacheEntry [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DefaultModelMetadataProvider::GetCacheEntry(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0ABB70 c1 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer::.ctor(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,object)[OptimizedTier1] +00007FA12F0ABC50 98 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::set_ViewData(class Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary)[OptimizedTier1] +00007FA12F0ABD00 120 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker+Log::ExecutedControllerFactory(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class Microsoft.AspNetCore.Mvc.ControllerContext)[OptimizedTier1] +00007FA12F0ABE40 9c instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::BindArgumentsAsync()[OptimizedTier1] +00007FA12F0ABF00 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeOnActionExecutionImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IAsyncActionFilter)[OptimizedTier1] +00007FA12F2B42D0 60 stub<21298> AllocateTemporaryEntryPoints +00007FA12F2B4330 18 stub<21299> AllocateTemporaryEntryPoints +00007FA12F0ABFD0 18b instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Filters.ControllerActionFilter::OnActionExecutionAsync(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)[OptimizedTier1] +00007FA12F0AC180 5 instance object [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext::get_Controller()[OptimizedTier1] +00007FA12F2B4348 60 stub<21300> AllocateTemporaryEntryPoints +00007FA12F2B43A8 18 stub<21301> AllocateTemporaryEntryPoints +00007FA12F0AC1A0 13d instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::OnActionExecutionAsync(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)[OptimizedTier1] +00007FA12F0AC300 1 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::OnActionExecuting(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)[OptimizedTier1] +00007FA12F2B43C0 60 stub<21302> AllocateTemporaryEntryPoints +00007FA12F2B4420 18 stub<21303> AllocateTemporaryEntryPoints +00007FA12F2B4438 18 stub<21304> AllocateTemporaryEntryPoints +00007FA12F2B4450 60 stub<21305> AllocateTemporaryEntryPoints +00007FA12F2B44B0 18 stub<21306> AllocateTemporaryEntryPoints +00007FA12F2B44C8 18 stub<21307> AllocateTemporaryEntryPoints +00007FA12F2B44E0 18 stub<21308> AllocateTemporaryEntryPoints +00007FA12F0AC320 af instance class [System.Runtime]System.Threading.Tasks.Task`1 [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::InvokeNextActionFilterAwaitedAsync()[OptimizedTier1] +00007FA12F0AC3F0 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeOnActionExecutingImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IActionFilter)[OptimizedTier1] +00007FA12F0AC4C0 4c instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter::OnActionExecuting(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)[OptimizedTier1] +00007FA12F2B44F8 48 stub<21309> AllocateTemporaryEntryPoints +00007FA12F2B4540 78 stub<21310> AllocateTemporaryEntryPoints +00007FA12F2B45B8 18 stub<21311> AllocateTemporaryEntryPoints +00007FA12F2B45D0 6f0 stub<21312> AllocateTemporaryEntryPoints +00007FA12E673F00 18 stub<21313> GenerateLookupStub +00007FA12E673F20 18 stub<21314> GenerateLookupStub +00007FA12F0AC540 19b bool [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter::HasUnsupportedContentTypeError(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)[OptimizedTier1] +00007FA12F0AC700 24 instance bool [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary::get_IsValid()[OptimizedTier1] +00007FA12F0AC740 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterOnActionExecutingImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IActionFilter)[OptimizedTier1] +00007FA12F2B4CC0 18 stub<21315> AllocateTemporaryEntryPoints +00007FA12E673F40 18 stub<21316> GenerateLookupStub +00007FA12E673F60 18 stub<21317> GenerateLookupStub +00007FA12F2B4CD8 60 stub<21318> AllocateTemporaryEntryPoints +00007FA12F2B4D38 18 stub<21319> AllocateTemporaryEntryPoints +00007FA12F0AC810 1d9 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::InvokeActionMethodAsync()[OptimizedTier1] +00007FA12F0ACA10 66 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::g__Logged|12_1(class Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker)[OptimizedTier1] +00007FA12F0ACA90 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0ACAB0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2B4D50 18 stub<21320> AllocateTemporaryEntryPoints +00007FA12F2B4D68 18 stub<21321> AllocateTemporaryEntryPoints +00007FA12F2B4D80 18 stub<21322> AllocateTemporaryEntryPoints +00007FA12F2B4D98 18 stub<21323> AllocateTemporaryEntryPoints +00007FA12F0ACC10 64c instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker+<g__Logged|12_1>d::MoveNext()[OptimizedTier1] +00007FA12F0AD2C0 15a object[] [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::PrepareArguments(class [System.Runtime]System.Collections.Generic.IDictionary`2,class Microsoft.Extensions.Internal.ObjectMethodExecutor)[OptimizedTier1] +00007FA12F0AD440 117 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeActionMethodImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,object)[OptimizedTier1] +00007FA12F0AD580 1b9 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker+Log::ActionMethodExecuting(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class Microsoft.AspNetCore.Mvc.ControllerContext,object[])[OptimizedTier1] +00007FA12F0AD760 113 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass12_0`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,!1,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0AD8A0 2f instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::.ctor(class Microsoft.Extensions.Logging.LogValuesFormatter,!0,!1)[OptimizedTier1] +00007FA12F0AD8F0 ac instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0AD9C0 125 instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0ADB10 1fa instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0ADD30 6c instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0ADDC0 230 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F0AE020 5 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_Formatter()[OptimizedTier1] +00007FA12F0AE040 1c instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_State()[OptimizedTier1] +00007FA12F0AE070 41 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2+<>c[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::<.cctor>b__13_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`2,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0AE0D0 96 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]::ToString()[OptimizedTier1] +00007FA12F0AE190 6 instance string [System.Private.CoreLib] System.Enum::ToString(string,class System.IFormatProvider)[OptimizedTier1] +00007FA12F2B4DB0 18 stub<21324> AllocateTemporaryEntryPoints +00007FA12F2B4DC8 18 stub<21325> AllocateTemporaryEntryPoints +00007FA12F0AE1B0 186 instance string [System.Private.CoreLib] System.Enum::ToString(string)[OptimizedTier1] +00007FA12F0AE380 43 instance string [System.Private.CoreLib] System.Enum::ToString()[OptimizedTier1] +00007FA12F2B4DE0 18 stub<21326> AllocateTemporaryEntryPoints +00007FA12F2B4DF8 18 stub<21327> AllocateTemporaryEntryPoints +00007FA12F2B4E10 18 stub<21328> AllocateTemporaryEntryPoints +00007FA12F0AE3E0 89 instance uint64 [System.Private.CoreLib] System.Enum::ToUInt64()[OptimizedTier1] +00007FA12F2B4E28 18 stub<21329> AllocateTemporaryEntryPoints +00007FA12F2B4E40 18 stub<21330> AllocateTemporaryEntryPoints +00007FA12F2B4E58 18 stub<21331> AllocateTemporaryEntryPoints +00007FA12F2B4E70 18 stub<21332> AllocateTemporaryEntryPoints +00007FA12F0AE4F0 236 string [System.Private.CoreLib] System.Enum::InternalFormat(class System.RuntimeType,uint64)[OptimizedTier1] +00007FA12F0AE750 1cd class System.Enum/EnumInfo [System.Private.CoreLib] System.Enum::GetEnumInfo(class System.RuntimeType,bool)[OptimizedTier1] +00007FA12F0AE940 63 string [System.Private.CoreLib] System.Enum::GetEnumName(class System.Enum/EnumInfo,uint64)[OptimizedTier1] +00007FA12F0AE9C0 4 instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_LogLevel()[OptimizedTier1] +00007FA12F0AE9E0 405 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[OptimizedTier1] +00007FA12F0AEE10 b instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_EventId()[OptimizedTier1] +00007FA12F0AEE30 4 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`2[System.__Canon,Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState]]::get_Category()[OptimizedTier1] +00007FA12F0AEE50 24f instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0AF0D0 493 instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0AF590 6f instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor+SyncActionResultExecutor::Execute(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class Microsoft.AspNetCore.Mvc.Infrastructure.IActionResultTypeMapper,class Microsoft.Extensions.Internal.ObjectMethodExecutor,object,object[])[OptimizedTier1] +00007FA12F0AF620 f instance void [System.Private.CoreLib] System.Diagnostics.Stopwatch::.ctor()[OptimizedTier1] +00007FA12F0AF640 44 instance void [System.Private.CoreLib] System.Diagnostics.Stopwatch::Start()[OptimizedTier1] +00007FA12F0AF6A0 9b instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Api::SendTracesAsyncImpl(class Datadog.Trace.Agent.IApiRequest,bool,valuetype Datadog.Trace.Agent.Api/SendTracesState)[OptimizedTier1] +00007FA12F0AF760 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::Start(!!0&)[OptimizedTier1] +00007FA12F0AF780 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0AF8E0 267 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0AFB70 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::.ctor()[OptimizedTier1] +00007FA12F0AFB90 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::MoveNext()[OptimizedTier1] +00007FA12F0AFBB0 1de instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0AFDB0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0AFDD0 d6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Boolean,Datadog.Trace.Agent.Api+d__22]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0AFEC0 30d instance valuetype [System.Runtime]System.DateTime [Microsoft.Extensions.FileProviders.Physical] Microsoft.Extensions.FileProviders.Physical.PollingFileChangeToken::GetLastWriteTimeUtc()[OptimizedTier1] +00007FA12F0B0200 46 instance void [System.Private.CoreLib] System.IO.FileSystemInfo::Refresh()[OptimizedTier1] +00007FA12F0B0260 1af instance void [System.Private.CoreLib] System.IO.FileStatus::RefreshCaches(class Microsoft.Win32.SafeHandles.SafeFileHandle,valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F0B0430 5f valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.IO.PathInternal::TrimEndingDirectorySeparator(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F0B04B0 2a bool [System.Private.CoreLib] System.IO.PathInternal::EndsInDirectorySeparator(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F2B4E88 18 stub<21333> AllocateTemporaryEntryPoints +00007FA12F0B04F0 25c int32 [System.Private.CoreLib] Interop+Sys::LStat(valuetype System.ReadOnlySpan`1,valuetype Interop/Sys/FileStatus&)[OptimizedTier1] +00007FA12F0B0770 1f8 instance valuetype System.Span`1 [System.Private.CoreLib] System.Text.ValueUtf8Converter::ConvertAndTerminateString(valuetype System.ReadOnlySpan`1)[OptimizedTier1] +00007FA12F0B0990 d7 int32 [System.Private.CoreLib] Interop+Sys::LStat(uint8&,valuetype Interop/Sys/FileStatus&)[OptimizedTier1] +00007FA12F0B0A90 9d instance bool [System.Private.CoreLib] System.IO.FileSystemInfo::get_Exists()[OptimizedTier1] +00007FA12F0B0B60 6 int32 [System.Private.CoreLib] System.Array::get_MaxLength()[OptimizedTier1] +00007FA12F0B0B80 3f instance class Microsoft.AspNetCore.Mvc.ViewResult [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::View(string)[OptimizedTier1] +00007FA12F0B0BE0 84 instance class Microsoft.AspNetCore.Mvc.ViewResult [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::View(string,object)[OptimizedTier1] +00007FA12F0B0C80 259 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::SetModel(object)[OptimizedTier1] +00007FA12F0B0F10 ab instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::EnsureCompatible(object)[OptimizedTier1] +00007FA12F0B0FE0 46 instance bool [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::IsCompatibleWithDeclaredType(object)[OptimizedTier1] +00007FA12F0B1040 1 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ActionResult::.ctor()[OptimizedTier1] +00007FA12F0B1060 172 instance class Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionary [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::get_TempData()[OptimizedTier1] +00007FA12780FDD0 18 stub<21334> GenerateResolveStub +00007FA1277CDA40 20 stub<21335> GenerateDispatchStub +00007FA1277CDA60 20 stub<21336> GenerateDispatchStub +00007FA1277CDA80 20 stub<21337> GenerateDispatchStub +00007FA1277CDAA0 20 stub<21338> GenerateDispatchStub +00007FA1277CDAC0 20 stub<21339> GenerateDispatchStub +00007FA1277CDAE0 20 stub<21340> GenerateDispatchStub +00007FA1277CDB00 20 stub<21341> GenerateDispatchStub +00007FA12780FE40 18 stub<21342> GenerateResolveStub +00007FA1277CDB20 20 stub<21343> GenerateDispatchStub +00007FA1277CDB40 20 stub<21344> GenerateDispatchStub +00007FA1277CDB60 20 stub<21345> GenerateDispatchStub +00007FA12F0B1200 b0 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.TempDataDictionary::.ctor(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataProvider)[OptimizedTier1] +00007FA12F0B12D0 50 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor::EnsureActionResultNotNull(class Microsoft.Extensions.Internal.ObjectMethodExecutor,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult)[OptimizedTier1] +00007FA12F0B1340 d1 instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.__Canon]::get_IsCompletedSuccessfully()[OptimizedTier1] +00007FA12F0B1430 eb void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker+Log::ActionMethodExecuted(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class Microsoft.AspNetCore.Mvc.ControllerContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult,valuetype [System.Runtime]System.TimeSpan)[OptimizedTier1] +00007FA12F0B1560 129 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+<>c__DisplayClass14_0`3[System.__Canon,System.__Canon,System.Double]::g__Log|0(class Microsoft.Extensions.Logging.ILogger,!0,!1,!2,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0B16B0 53 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]::.ctor(class Microsoft.Extensions.Logging.LogValuesFormatter,!0,!1,!2)[OptimizedTier1] +00007FA12F0B1720 bb instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Logger`1[System.__Canon]::Microsoft.Extensions.Logging.ILogger.Log(valuetype Microsoft.Extensions.Logging.LogLevel,valuetype Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0B1800 125 instance void [Microsoft.Extensions.Logging] Microsoft.Extensions.Logging.Logger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0B1950 1fd instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.ConsoleLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0B1B80 71 instance void [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::.ctor(valuetype Microsoft.Extensions.Logging.LogLevel,string,valuetype Microsoft.Extensions.Logging.EventId,!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0B1C10 28c instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::Write(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1& modreq([System.Runtime]System.Runtime.InteropServices.InAttribute),class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider,class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F0B1ED0 5 instance class [System.Runtime]System.Func`3 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_Formatter()[OptimizedTier1] +00007FA12F0B1EF0 21 instance !0 [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_State()[OptimizedTier1] +00007FA12F0B1F30 41 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3+<>c[System.__Canon,System.__Canon,System.Double]::<.cctor>b__14_0(valuetype Microsoft.Extensions.Logging.LoggerMessage/LogValues`3,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0B1F90 bf instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]::ToString()[OptimizedTier1] +00007FA12F0B2080 9a instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.LogValuesFormatter::Format(object,object,object)[OptimizedTier1] +00007FA12F0B2140 4 instance valuetype Microsoft.Extensions.Logging.LogLevel [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_LogLevel()[OptimizedTier1] +00007FA12F0B2160 405 instance void [Microsoft.Extensions.Logging.Console] Microsoft.Extensions.Logging.Console.SimpleConsoleFormatter::CreateDefaultLogMessage(class [System.Runtime]System.IO.TextWriter,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.Abstractions.LogEntry`1&,string,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.IExternalScopeProvider)[OptimizedTier1] +00007FA12F0B2590 b instance valuetype Microsoft.Extensions.Logging.EventId [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_EventId()[OptimizedTier1] +00007FA12F0B25B0 4 instance string [Microsoft.Extensions.Logging.Abstractions] Microsoft.Extensions.Logging.Abstractions.LogEntry`1[Microsoft.Extensions.Logging.LoggerMessage+LogValues`3[System.__Canon,System.__Canon,System.Double]]::get_Category()[OptimizedTier1] +00007FA12F0B25D0 25f instance void [Microsoft.Extensions.Logging.Debug] Microsoft.Extensions.Logging.Debug.DebugLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0B2860 4bd instance void [Microsoft.Extensions.Logging.EventSource] Microsoft.Extensions.Logging.EventSource.EventSourceLogger::Log(valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.LogLevel,valuetype [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.EventId,!!0,class [System.Runtime]System.Exception,class [System.Runtime]System.Func`3)[OptimizedTier1] +00007FA12F0B2D40 148 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterActionMethodImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,object,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult)[OptimizedTier1] +00007FA12F0B2EB0 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeOnActionExecutedImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IActionFilter)[OptimizedTier1] +00007FA12F0B2F80 1 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter::OnActionExecuted(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext)[OptimizedTier1] +00007FA12F0B2FA0 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterOnActionExecutedImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IActionFilter)[OptimizedTier1] +00007FA12F0B3070 1 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::OnActionExecuted(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext)[OptimizedTier1] +00007FA12F0B3090 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterOnActionExecutionImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IAsyncActionFilter)[OptimizedTier1] +00007FA12F0B3160 42 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::Rethrow(class Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker/ActionExecutedContextSealed)[OptimizedTier1] +00007FA12F0B31C0 5 instance bool [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext::get_ExceptionHandled()[OptimizedTier1] +00007FA12F0B31E0 5 instance class [System.Runtime]System.Runtime.ExceptionServices.ExceptionDispatchInfo [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext::get_ExceptionDispatchInfo()[OptimizedTier1] +00007FA12F0B3200 1e instance class [System.Runtime]System.Exception [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext::get_Exception()[OptimizedTier1] +00007FA12F0B3240 d5 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::InvokeResultFilters()[OptimizedTier1] +00007FA12F0B3340 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeOnResultExecutingImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IResultFilter)[OptimizedTier1] +00007FA12F0B3410 1 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter::OnResultExecuting(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext)[OptimizedTier1] +00007FA12F0B3430 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterOnResultExecutingImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IResultFilter)[OptimizedTier1] +00007FA12F2B4F18 18 stub<21346> AllocateTemporaryEntryPoints +00007FA12F2B4F30 18 stub<21347> AllocateTemporaryEntryPoints +00007FA12F2B4F48 18 stub<21348> AllocateTemporaryEntryPoints +00007FA12F2B4F60 18 stub<21349> AllocateTemporaryEntryPoints +00007FA12F0B3500 1c3 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::InvokeNextResultFilterAsync()[OptimizedTier1] +00007FA12F0B3700 5b instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::InvokeResultAsync(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult)[OptimizedTier1] +00007FA12F0B3780 58 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::g__Logged|22_0(class Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult)[OptimizedTier1] +00007FA12F0B37F0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B3810 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0B3970 9c void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeActionResultImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult)[OptimizedTier1] +00007FA12F0B3A30 4b void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+Log::BeforeExecutingActionResult(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0B3AA0 59 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewResult::ExecuteResultAsync(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext)[OptimizedTier1] +00007FA12F0B3B10 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B3B30 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0B3C90 67 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor::ExecuteAsync(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class Microsoft.AspNetCore.Mvc.ViewResult)[OptimizedTier1] +00007FA12F0B3D10 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B3D30 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12E673F80 18 stub<21350> GenerateLookupStub +00007FA12E673FA0 18 stub<21351> GenerateLookupStub +00007FA12E673FC0 18 stub<21352> GenerateLookupStub +00007FA12F0B3E90 2e9 instance class Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor::FindView(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class Microsoft.AspNetCore.Mvc.ViewResult)[OptimizedTier1] +00007FA12E673FE0 18 stub<21353> GenerateLookupStub +00007FA12E674000 18 stub<21354> GenerateLookupStub +00007FA12F0B41C0 278 instance class Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine::GetView(string,string,bool)[OptimizedTier1] +00007FA12F0B4460 113 instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine::GetView(string,string,bool)[OptimizedTier1] +00007FA12F0B45A0 31a instance class Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewEngines.CompositeViewEngine::FindView(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,string,bool)[OptimizedTier1] +00007FA12F0B48E0 15e instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine::FindView(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,string,bool)[OptimizedTier1] +00007FA12E674020 18 stub<21355> GenerateLookupStub +00007FA12E674040 18 stub<21356> GenerateLookupStub +00007FA12F0B4A60 10e instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine::CreateViewEngineResult(class Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheResult,string)[OptimizedTier1] +00007FA12F0B4B90 4 instance int32 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::get_Count()[OptimizedTier1] +00007FA12F0B4BB0 36 instance !0 [System.Private.CoreLib] System.Collections.Generic.List`1[Microsoft.AspNetCore.Mvc.Razor.ViewLocationCacheItem]::get_Item(int32)[OptimizedTier1] +00007FA12F0B4C00 210 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView::.ctor(class Microsoft.AspNetCore.Mvc.Razor.IRazorViewEngine,class Microsoft.AspNetCore.Mvc.Razor.IRazorPageActivator,class [System.Runtime]System.Collections.Generic.IReadOnlyList`1,class Microsoft.AspNetCore.Mvc.Razor.IRazorPage,class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder,class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener)[OptimizedTier1] +00007FA12F0B4E30 e3 class Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult::Found(string,class Microsoft.AspNetCore.Mvc.ViewEngines.IView)[OptimizedTier1] +00007FA12F0B4F30 4e void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+Log::ViewResultExecuting(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,string)[OptimizedTier1] +00007FA12F0B4FA0 197 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor::OutputDiagnostics(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class Microsoft.AspNetCore.Mvc.ViewResult,string,class Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult)[OptimizedTier1] +00007FA12F0B5160 18 instance string [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView::get_Path()[OptimizedTier1] +00007FA12F0B5190 67 void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+Log::ViewFound(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,string,float64)[OptimizedTier1] +00007FA12F0B5220 fe instance class Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult::EnsureSuccessful(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0B5340 7a instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor::ExecuteAsync(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class Microsoft.AspNetCore.Mvc.ViewEngines.IView,class Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary,class Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionary,string,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F0B53E0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B5400 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0B5560 263 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.ViewContext::.ctor(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class Microsoft.AspNetCore.Mvc.ViewEngines.IView,class Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary,class Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionary,class [System.Runtime]System.IO.TextWriter,class Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelperOptions)[OptimizedTier1] +00007FA12F0B57F0 4d instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Rendering.ViewContext::set_FormContext(class Microsoft.AspNetCore.Mvc.ViewFeatures.FormContext)[OptimizedTier1] +00007FA12F0B5860 78 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor::ExecuteAsync(class Microsoft.AspNetCore.Mvc.Rendering.ViewContext,string,valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F0B58F0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B5910 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0B5A70 f8 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Internal.ResponseContentTypeHelper::ResolveContentTypeAndEncoding(string,string,valuetype [System.Runtime]System.ValueTuple`2,class [System.Runtime]System.Func`2,string&,class [System.Runtime]System.Text.Encoding&)[OptimizedTier1] +00007FA12E674060 18 stub<21357> GenerateLookupStub +00007FA12F0B5B90 17b instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::set_ContentType(string)[OptimizedTier1] +00007FA12F0B5D30 8a instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders::Microsoft.AspNetCore.Http.IHeaderDictionary.set_ContentType(valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues)[OptimizedTier1] +00007FA12F0B5DE0 1a9 void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpHeaders::ValidateHeaderValueCharacters(string,valuetype [Microsoft.Extensions.Primitives]Microsoft.Extensions.Primitives.StringValues,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12F0B5FC0 cf void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpHeaders::ValidateHeaderValueCharacters(string,bool)[OptimizedTier1] +00007FA12E674080 18 stub<21358> GenerateLookupStub +00007FA12F0B60B0 60 void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor::OnExecuting(class Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12E6740A0 18 stub<21359> GenerateLookupStub +00007FA12F0B6130 a3 instance class [System.Runtime]System.IO.Stream [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::get_Body()[OptimizedTier1] +00007FA12F0B6200 8 instance class [System.Runtime]System.IO.Stream [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::Microsoft.AspNetCore.Http.Features.IHttpResponseBodyFeature.get_Stream()[OptimizedTier1] +00007FA12F0B6220 cf instance class [System.Runtime]System.IO.TextWriter [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.MemoryPoolHttpResponseStreamWriterFactory::CreateWriter(class [System.Runtime]System.IO.Stream,class [System.Runtime]System.Text.Encoding)[OptimizedTier1] +00007FA12F2B6000 168 stub<21360> AllocateTemporaryEntryPoints +00007FA12F0B6310 369 instance void [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::.ctor(class [System.Runtime]System.IO.Stream,class [System.Runtime]System.Text.Encoding,int32,class [System.Runtime]System.Buffers.ArrayPool`1,class [System.Runtime]System.Buffers.ArrayPool`1)[OptimizedTier1] +00007FA12F0B66B0 6 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseStream::get_CanWrite()[OptimizedTier1] +00007FA12F0B66D0 9c void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.MvcViewFeaturesDiagnosticListenerExtensions::BeforeViewImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class Microsoft.AspNetCore.Mvc.ViewEngines.IView,class Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12F0B6790 58 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView::RenderAsync(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12F0B6800 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B6820 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0B6980 be instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey,System.__Canon]::Initialize(int32)[OptimizedTier1] +00007FA12F0B6A60 5e instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView::RenderViewStartsAsync(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12F0B6AE0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B6B00 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12E6740C0 18 stub<21361> GenerateLookupStub +00007FA12E6740E0 18 stub<21362> GenerateLookupStub +00007FA12E674100 18 stub<21363> GenerateLookupStub +00007FA12F2B6168 18 stub<21364> AllocateTemporaryEntryPoints +00007FA12E674120 18 stub<21365> GenerateLookupStub +00007FA12F2B6180 18 stub<21366> AllocateTemporaryEntryPoints +00007FA12F2B6198 18 stub<21367> AllocateTemporaryEntryPoints +00007FA12F0B6C60 3ea instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView+d__21::MoveNext()[OptimizedTier1] +00007FA12F0B70A0 33e instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::.ctor(class Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary,object,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0B7410 a9 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.CopyOnWriteDictionary`2[System.__Canon,System.__Canon]::.ctor(class [System.Runtime]System.Collections.Generic.IDictionary`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12F0B74E0 89 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.TemplateInfo::.ctor(class Microsoft.AspNetCore.Mvc.ViewFeatures.TemplateInfo)[OptimizedTier1] +00007FA12F0B7590 15 instance bool [System.Private.CoreLib] System.Collections.Generic.ObjectEqualityComparer`1[System.__Canon]::Equals(object)[OptimizedTier1] +00007FA12F2B61B0 60 stub<21368> AllocateTemporaryEntryPoints +00007FA12F0B75C0 140 instance void [System.Private.CoreLib] System.Collections.Generic.HashSet`1[System.__Canon]::ConstructFrom(class System.Collections.Generic.HashSet`1)[OptimizedTier1] +00007FA12F0B7720 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_ModelExpressionProvider(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider)[OptimizedTier1] +00007FA12F0B7740 c1 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.EndpointRoutingUrlHelper::.ctor(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.LinkGenerator,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger`1)[OptimizedTier1] +00007FA12F0B7820 ee instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Routing.UrlHelperBase::.ctor(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext)[OptimizedTier1] +00007FA12F0B7930 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_Url(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IUrlHelper)[OptimizedTier1] +00007FA12F0B7950 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_Component(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.IViewComponentHelper)[OptimizedTier1] +00007FA12F0B7970 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_Json(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper)[OptimizedTier1] +00007FA12F0B7990 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::set_Html(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper`1)[OptimizedTier1] +00007FA12F0B79B0 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart::ExecuteAsync()[OptimizedTier1] +00007FA12F0B7A20 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B7A40 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0B7BA0 192 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views__ViewStart+d__0::MoveNext()[OptimizedTier1] +00007FA12F0B7D70 9b instance string [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine::GetAbsolutePath(string,string)[OptimizedTier1] +00007FA12F0B7E30 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_ModelExpressionProvider(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider)[OptimizedTier1] +00007FA12F0B7E50 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_Url(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IUrlHelper)[OptimizedTier1] +00007FA12F0B7E70 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_Component(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.IViewComponentHelper)[OptimizedTier1] +00007FA12F0B7E90 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_Json(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper)[OptimizedTier1] +00007FA12F0B7EB0 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::set_Html(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper`1)[OptimizedTier1] +00007FA12F0B7ED0 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::ExecuteAsync()[OptimizedTier1] +00007FA12F0B7F40 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B7F60 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0B80C0 2ab instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index+d__0::MoveNext()[OptimizedTier1] +00007FA12F2B6210 5e8 stub<21369> AllocateTemporaryEntryPoints +00007FA12F2B67F8 78 stub<21370> AllocateTemporaryEntryPoints +00007FA12F2B6870 18 stub<21371> AllocateTemporaryEntryPoints +00007FA12F0B83A0 c5 instance void [Microsoft.AspNetCore.Mvc.Core] Microsoft.Extensions.Internal.CopyOnWriteDictionary`2[System.__Canon,System.__Canon]::set_Item(!0,!1)[OptimizedTier1] +00007FA12F0B8490 8a instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::.ctor(class System.Collections.Generic.IDictionary`2,class System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12F0B8540 18 instance int32 [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::get_Count()[OptimizedTier1] +00007FA12F0B8580 287 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.__Canon]::AddRange(class System.Collections.Generic.IEnumerable`1>)[OptimizedTier1] +00007FA12F0B8840 18 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1> [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary::System.Collections.Generic.IEnumerable>.GetEnumerator()[OptimizedTier1] +00007FA12F0B8870 9 instance string [System.Private.CoreLib] System.Int64::ToString()[OptimizedTier1] +00007FA12F0B8890 3d string [System.Private.CoreLib] System.Number::Int64ToDecStr(int64)[OptimizedTier1] +00007FA12F0B88F0 8 instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper`1 [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Products_Index::get_Html()[OptimizedTier1] +00007FA12F0B8910 48 instance class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContent [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.HtmlHelper::Raw(object)[OptimizedTier1] +00007FA12F0B8970 b instance void [Microsoft.AspNetCore.Html.Abstractions] Microsoft.AspNetCore.Html.HtmlString::.ctor(string)[OptimizedTier1] +00007FA12F0B8990 74 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView::RenderLayoutAsync(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext,class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBufferTextWriter)[OptimizedTier1] +00007FA12F0B8A20 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B8A40 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12E674140 18 stub<21372> GenerateLookupStub +00007FA12E674160 18 stub<21373> GenerateLookupStub +00007FA12F0B8BA0 151 instance class Microsoft.AspNetCore.Mvc.Razor.IRazorPage [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorView::GetLayoutPage(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext,string,string)[OptimizedTier1] +00007FA12F0B8D10 1d9 instance valuetype Microsoft.AspNetCore.Mvc.Razor.RazorPageResult [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine::GetPage(string,string)[OptimizedTier1] +00007FA12F0B8F10 ae instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageResult::.ctor(string,class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0B8FE0 21c instance valuetype Microsoft.AspNetCore.Mvc.Razor.RazorPageResult [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorViewEngine::FindPage(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,string)[OptimizedTier1] +00007FA12F0B9220 ad instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageResult::.ctor(string,class Microsoft.AspNetCore.Mvc.Razor.IRazorPage)[OptimizedTier1] +00007FA12F0B92F0 8 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::set_IsLayoutBeingRendered(bool)[OptimizedTier1] +00007FA12F0B9310 5 instance class [System.Runtime]System.Collections.Generic.IDictionary`2 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::get_SectionWriters()[OptimizedTier1] +00007FA12F0B9330 b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::set_PreviousSectionWriters(class [System.Runtime]System.Collections.Generic.IDictionary`2)[OptimizedTier1] +00007FA12F0B9350 b instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPageBase::set_BodyContent(class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContent)[OptimizedTier1] +00007FA12F0B9370 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_ModelExpressionProvider(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider)[OptimizedTier1] +00007FA12F0B9390 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_Url(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IUrlHelper)[OptimizedTier1] +00007FA12F0B93B0 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_Component(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.IViewComponentHelper)[OptimizedTier1] +00007FA12F0B93D0 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_Json(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper)[OptimizedTier1] +00007FA12F0B93F0 e instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::set_Html(class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper`1)[OptimizedTier1] +00007FA12F0B9410 4f instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::ExecuteAsync()[OptimizedTier1] +00007FA12F0B9480 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0B94A0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2B6888 18 stub<21374> AllocateTemporaryEntryPoints +00007FA12F2B68A0 18 stub<21375> AllocateTemporaryEntryPoints +00007FA12F0B9600 682 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+d__28::MoveNext()[OptimizedTier1] +00007FA12F0B9CD0 11d instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager::.ctor(class [System.Runtime]System.Action`1,class [System.Runtime]System.Func`1)[OptimizedTier1] +00007FA12F0B9E10 88 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelperComponentManager::.ctor(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0B9EC0 87 instance void [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::PushWithResize(!0)[OptimizedTier1] +00007FA12F0B9F60 39 instance void [System.Collections] System.Collections.Generic.Stack`1[Microsoft.AspNetCore.Mvc.Razor.RazorPageBase+TagHelperScopeInfo]::Grow(int32)[OptimizedTier1] +00007FA12F0B9FB0 bf void [System.Private.CoreLib] System.Array::Resize(!!0[]&,int32)[OptimizedTier1] +00007FA12F0BA090 22 void [System.Private.CoreLib] System.Buffer::Memmove(!!0&,!!0&,native uint)[OptimizedTier1] +00007FA12F0BA0D0 4f instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_0()[OptimizedTier1] +00007FA12F0BA140 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BA160 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2B68B8 18 stub<21376> AllocateTemporaryEntryPoints +00007FA12F2B68D0 18 stub<21377> AllocateTemporaryEntryPoints +00007FA12F0BA2C0 7c9 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_0>d::MoveNext()[OptimizedTier1] +00007FA12F0BAAE0 46 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_2()[OptimizedTier1] +00007FA12F0BAB40 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BAB60 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BACC0 169 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_2>d::MoveNext()[OptimizedTier1] +00007FA12F0BAE60 46 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_3()[OptimizedTier1] +00007FA12F0BAEC0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BAEE0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BB040 169 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_3>d::MoveNext()[OptimizedTier1] +00007FA12F0BB1E0 4f instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_1()[OptimizedTier1] +00007FA12F0BB250 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BB270 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2B68E8 18 stub<21378> AllocateTemporaryEntryPoints +00007FA12F2B6900 18 stub<21379> AllocateTemporaryEntryPoints +00007FA12F0BB3D0 274d instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_1>d::MoveNext()[OptimizedTier1] +00007FA12F0BDBC0 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_4()[OptimizedTier1] +00007FA12F0BDC30 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BDC50 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BDDB0 199 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_4>d::MoveNext()[OptimizedTier1] +00007FA12F0BDF80 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_5()[OptimizedTier1] +00007FA12F0BDFF0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BE010 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BE170 199 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_5>d::MoveNext()[OptimizedTier1] +00007FA12F0BE340 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_6()[OptimizedTier1] +00007FA12F0BE3B0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BE3D0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BE530 199 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_6>d::MoveNext()[OptimizedTier1] +00007FA12F0BE700 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_7()[OptimizedTier1] +00007FA12F0BE770 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BE790 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BE8F0 199 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_7>d::MoveNext()[OptimizedTier1] +00007FA12F0BEAC0 71 void [System.Private.CoreLib] System.Array::Sort(!!0[],int32,int32,class System.Collections.Generic.IComparer`1)[OptimizedTier1] +00007FA12F0BEB50 8 !!0& [System.Private.CoreLib] System.Runtime.InteropServices.MemoryMarshal::GetArrayDataReference(!!0[])[OptimizedTier1] +00007FA12F0BEB70 7 instance void [System.Private.CoreLib] System.Span`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::.ctor(!0&,int32)[OptimizedTier1] +00007FA12F0BEB90 e class System.Collections.Generic.IArraySortHelper`1 [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::get_Default()[OptimizedTier1] +00007FA12F0BEBB0 13e instance void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::Sort(valuetype System.Span`1,class System.Collections.Generic.IComparer`1)[OptimizedTier1] +00007FA12F0BED40 28 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::IntrospectiveSort(valuetype System.Span`1,class System.Comparison`1)[OptimizedTier1] +00007FA12F0BED80 302 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::IntroSort(valuetype System.Span`1,int32,class System.Comparison`1)[OptimizedTier1] +00007FA12F0BF0B0 a4 void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult]::SwapIfGreater(valuetype System.Span`1,class System.Comparison`1,int32,int32)[OptimizedTier1] +00007FA12F0BF180 225 instance int32 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Tree.LinkGenerationDecisionTree+OutboundMatchResultComparer::Compare(valuetype Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult,valuetype Microsoft.AspNetCore.Routing.Tree.OutboundMatchResult)[OptimizedTier1] +00007FA12F0BF3D0 47 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValuesAddressScheme::GetEndpoints(class [System.Runtime]System.Collections.Generic.IList`1,int32)[OptimizedTier1] +00007FA12F0BF430 6 instance class [System.Runtime]System.Collections.IEnumerator [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValuesAddressScheme+d__5::System.Collections.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12F0BF450 67 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValuesAddressScheme+d__5::System.Collections.Generic.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12F0BF4D0 1 instance void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.RouteValuesAddressScheme+d__5::System.IDisposable.Dispose()[OptimizedTier1] +00007FA12F0BF4F0 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_8()[OptimizedTier1] +00007FA12F0BF560 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BF580 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BF6E0 199 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_8>d::MoveNext()[OptimizedTier1] +00007FA12F0BF8B0 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_9()[OptimizedTier1] +00007FA12F0BF920 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BF940 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BFAA0 199 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_9>d::MoveNext()[OptimizedTier1] +00007FA12F0BFC70 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_10()[OptimizedTier1] +00007FA12F0BFCE0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0BFD00 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0BFE60 199 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_10>d::MoveNext()[OptimizedTier1] +00007FA12F0C0030 50 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout::b__28_11()[OptimizedTier1] +00007FA12F0C00A0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0C00C0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0C0220 199 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<b__28_11>d::MoveNext()[OptimizedTier1] +00007FA12F0C03F0 69 instance class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.IHtmlContent [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage::RenderBody()[OptimizedTier1] +00007FA12F0C0480 46 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_12()[OptimizedTier1] +00007FA12F0C04E0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0C0500 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0C0660 169 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_12>d::MoveNext()[OptimizedTier1] +00007FA12F0C0800 46 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_13()[OptimizedTier1] +00007FA12F0C0860 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0C0880 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0C09E0 169 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_13>d::MoveNext()[OptimizedTier1] +00007FA12F0C0B80 b instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper::set_Src(string)[OptimizedTier1] +00007FA12F0C0BA0 8 instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper::set_AppendVersion(valuetype [System.Runtime]System.Nullable`1)[OptimizedTier1] +00007FA12F0C0BC0 9 instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper::get_AppendVersion()[OptimizedTier1] +00007FA12F0C0BE0 9d instance void [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext::AddTagHelperAttribute(string,object,valuetype [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle)[OptimizedTier1] +00007FA12F0C0CA0 1ab instance void [System.Private.CoreLib] System.Collections.Generic.ArraySortHelper`1[System.__Canon]::Sort(valuetype System.Span`1,class System.Collections.Generic.IComparer`1)[OptimizedTier1] +00007FA12E674180 18 stub<21380> GenerateLookupStub +00007FA12F0C0EA0 4e instance int32 [Microsoft.AspNetCore.Razor.Runtime] Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner+SortTagHelpers::Compare(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.ITagHelper,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.ITagHelper)[OptimizedTier1] +00007FA12F0C0F10 6 instance int32 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::get_Order()[OptimizedTier1] +00007FA12F0C0F30 6 instance int32 [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper::get_Order()[OptimizedTier1] +00007FA12E6741A0 18 stub<21381> GenerateLookupStub +00007FA12F0C0F50 34a instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper::Process(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput)[OptimizedTier1] +00007FA12F0C12C0 181 void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.TagHelperOutputExtensions::CopyHtmlAttribute(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput,string,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext)[OptimizedTier1] +00007FA12F0C1480 112 void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.TagHelperOutputExtensions::CopyHtmlAttribute(int32,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext)[OptimizedTier1] +00007FA12F0C15C0 7b int32 [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.TagHelperOutputExtensions::IndexOfFirstMatch(string,class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList)[OptimizedTier1] +00007FA12F0C1660 86 instance bool [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::TryResolveUrl(string,string&)[OptimizedTier1] +00007FA12F2B6918 48 stub<21382> AllocateTemporaryEntryPoints +00007FA12F2B6960 60 stub<21383> AllocateTemporaryEntryPoints +00007FA12F0C1720 17e bool [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.AttributeMatcher::TryDetermineMode(class [Microsoft.AspNetCore.Razor]Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext,class Microsoft.AspNetCore.Mvc.TagHelpers.ModeAttributes`1[],class [System.Runtime]System.Func`3,!!0&)[OptimizedTier1] +00007FA12F0C18C0 5 instance int32 [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper+<>c::<.cctor>b__82_0(valuetype Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper/Mode,valuetype Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper/Mode)[OptimizedTier1] +00007FA12F0C18E0 8b instance void [Microsoft.AspNetCore.Mvc.TagHelpers] Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper::EnsureFileVersionProvider()[OptimizedTier1] +00007FA12F0C19A0 b4 instance int32 [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList::IndexOfName(string)[OptimizedTier1] +00007FA12F0C1A70 5 instance class [Microsoft.AspNetCore.Mvc.ViewFeatures]Microsoft.AspNetCore.Mvc.Rendering.ViewContext [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper::get_ViewContext()[OptimizedTier1] +00007FA12E6741C0 18 stub<21384> GenerateLookupStub +00007FA12E6741E0 18 stub<21385> GenerateLookupStub +00007FA12E674200 18 stub<21386> GenerateLookupStub +00007FA12F2B69C0 90 stub<21387> AllocateTemporaryEntryPoints +00007FA12F2B6A50 30 stub<21388> AllocateTemporaryEntryPoints +00007FA12F0C1A90 31f instance string [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.Infrastructure.DefaultFileVersionProvider::AddFileVersionToPath(valuetype [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.PathString,string)[OptimizedTier1] +00007FA12F0C1DD0 73 instance bool [System.Private.Uri] System.Uri::get_IsFile()[OptimizedTier1] +00007FA12F0C1E60 2c instance class Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContent [Microsoft.AspNetCore.Razor] Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput::get_PostElement()[OptimizedTier1] +00007FA12F0C1EA0 46 instance class [System.Runtime]System.Threading.Tasks.Task [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c::b__28_14()[OptimizedTier1] +00007FA12F0C1F00 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0C1F20 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0C2080 169 instance void [Samples.BuggyBits] AspNetCoreGeneratedDocument.Views_Shared__Layout+<>c+<b__28_14>d::MoveNext()[OptimizedTier1] +00007FA12F0C2220 ac instance class [Microsoft.AspNetCore.Html.Abstractions]Microsoft.AspNetCore.Html.HtmlString [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage::RenderSection(string,bool)[OptimizedTier1] +00007FA12F0C22F0 58 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage::EnsureMethodCanBeInvoked(string)[OptimizedTier1] +00007FA12F0C2370 6b instance class [System.Runtime]System.Threading.Tasks.Task`1 [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage::RenderSectionAsyncCore(string,bool)[OptimizedTier1] +00007FA12F0C2400 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0C2420 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12E674220 18 stub<21389> GenerateLookupStub +00007FA12F2B6A80 18 stub<21390> AllocateTemporaryEntryPoints +00007FA12F2B6A98 18 stub<21391> AllocateTemporaryEntryPoints +00007FA12F2B6AB0 18 stub<21392> AllocateTemporaryEntryPoints +00007FA12F2B6AC8 18 stub<21393> AllocateTemporaryEntryPoints +00007FA12F2B6AE0 18 stub<21394> AllocateTemporaryEntryPoints +00007FA12F2B6AF8 18 stub<21395> AllocateTemporaryEntryPoints +00007FA12F0C2580 3b5 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage+d__14::MoveNext()[OptimizedTier1] +00007FA12E674240 18 stub<21396> GenerateLookupStub +00007FA12E674260 18 stub<21397> GenerateLookupStub +00007FA12F2B6B10 18 stub<21398> AllocateTemporaryEntryPoints +00007FA12F2B6B28 d8 stub<21399> AllocateTemporaryEntryPoints +00007FA12F2B6C00 18 stub<21400> AllocateTemporaryEntryPoints +00007FA12F2B6C18 18 stub<21401> AllocateTemporaryEntryPoints +00007FA12F0C2970 263 instance void [Microsoft.AspNetCore.Mvc.Razor] Microsoft.AspNetCore.Mvc.Razor.RazorPage::EnsureRenderedBodyOrSections()[OptimizedTier1] +00007FA12F0C2C00 82 instance class [System.Runtime]System.IO.TextWriter [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.MemoryPoolViewBufferScope::CreateWriter(class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F0C2CA0 d2 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter::.ctor(class [System.Runtime]System.Buffers.ArrayPool`1,class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F0C2D90 61 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer::WriteToAsync(class [System.Runtime]System.IO.TextWriter,class [System.Text.Encodings.Web]System.Text.Encodings.Web.HtmlEncoder)[OptimizedTier1] +00007FA12F0C2E10 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0C2E30 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0C2F90 29 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::FireOnStarting()[OptimizedTier1] +00007FA12F0C2FD0 59 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::g__ProcessEvents|241_0(class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol,class [System.Collections]System.Collections.Generic.Stack`1,object>>)[OptimizedTier1] +00007FA12F0C3040 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0C3060 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2B6C30 18 stub<21402> AllocateTemporaryEntryPoints +00007FA12F2B6C48 18 stub<21403> AllocateTemporaryEntryPoints +00007FA12F2B6C60 18 stub<21404> AllocateTemporaryEntryPoints +00007FA12F0C31C0 2aa instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+<g__ProcessEvents|241_0>d::MoveNext()[OptimizedTier1] +00007FA12F0C34B0 2e instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter+<>c::<.cctor>b__12_0(object)[OptimizedTier1] +00007FA12F0C3500 74 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter::OnStarting(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F0C3590 72 class Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter/SaveTempDataContext [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter::GetTempDataContext(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12E674280 18 stub<21405> GenerateLookupStub +00007FA12E6742A0 18 stub<21406> GenerateLookupStub +00007FA12E6742C0 18 stub<21407> GenerateLookupStub +00007FA12E6742E0 18 stub<21408> GenerateLookupStub +00007FA12F0C3620 d8 void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter::SaveTempData(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult,class Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory,class [System.Runtime]System.Collections.Generic.IList`1,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12E674300 18 stub<21409> GenerateLookupStub +00007FA12F2B6C78 18 stub<21410> AllocateTemporaryEntryPoints +00007FA12F0C3720 10a instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.TempDataDictionary::Save()[OptimizedTier1] +00007FA12E674320 18 stub<21411> GenerateLookupStub +00007FA12E674340 18 stub<21412> GenerateLookupStub +00007FA12E674360 18 stub<21413> GenerateLookupStub +00007FA12E674380 18 stub<21414> GenerateLookupStub +00007FA12F0C3850 323 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::FirstWriteAsyncInternal(valuetype [System.Runtime]System.ReadOnlyMemory`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F2B6C90 180 stub<21415> AllocateTemporaryEntryPoints +00007FA12F0C3BA0 3fc instance class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::CreateResponseHeaders(bool)[OptimizedTier1] +00007FA12F0C3FC0 32 instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::CanWriteResponseBody()[OptimizedTier1] +00007FA12F0C4010 171 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::FirstWriteChunkedAsync(int32,string,class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders,bool,valuetype [System.Runtime]System.ReadOnlySpan`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0C41C0 220 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::WriteResponseHeadersInternal(valuetype System.Buffers.BufferWriter`1&,int32,string,class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders,bool)[OptimizedTier1] +00007FA12F0C4400 58e uint8[] [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.ReasonPhrases::ToStatusBytes(int32,string)[OptimizedTier1] +00007FA12F0C4B10 60 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders::CopyTo(valuetype System.Buffers.BufferWriter`1&)[OptimizedTier1] +00007FA12F0C4BA0 b25 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpResponseHeaders::CopyToFast(valuetype System.Buffers.BufferWriter`1&)[OptimizedTier1] +00007FA12F0C57A0 ae void [Microsoft.AspNetCore.Server.Kestrel.Core] System.Buffers.BufferExtensions::WriteAscii(valuetype System.Buffers.BufferWriter`1&,string)[OptimizedTier1] +00007FA12F2B8000 6f0 stub<21416> AllocateTemporaryEntryPoints +00007FA12F2B86F0 78 stub<21417> AllocateTemporaryEntryPoints +00007FA12F2B8768 a8 stub<21418> AllocateTemporaryEntryPoints +00007FA12F2B8810 18 stub<21419> AllocateTemporaryEntryPoints +00007FA12F2B8828 18 stub<21420> AllocateTemporaryEntryPoints +00007FA12F2B8840 18 stub<21421> AllocateTemporaryEntryPoints +00007FA12F2B8858 60 stub<21422> AllocateTemporaryEntryPoints +00007FA12F2B88B8 18 stub<21423> AllocateTemporaryEntryPoints +00007FA12F0C5880 579 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::WriteDataWrittenBeforeHeaders(valuetype System.Buffers.BufferWriter`1&)[OptimizedTier1] +00007FA12F0C5E30 a instance bool [System.Private.CoreLib] System.Memory`1[System.Byte]::get_IsEmpty()[OptimizedTier1] +00007FA12F0C5E50 2a instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedBufferedTextWriter::Dispose(bool)[OptimizedTier1] +00007FA12F0C5EA0 8d instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.PagedCharBuffer::Dispose()[OptimizedTier1] +00007FA12F0C5F50 9c void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.MvcViewFeaturesDiagnosticListenerExtensions::AfterViewImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class Microsoft.AspNetCore.Mvc.ViewEngines.IView,class Microsoft.AspNetCore.Mvc.Rendering.ViewContext)[OptimizedTier1] +00007FA12F0C6010 1d instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::FlushAsync()[OptimizedTier1] +00007FA12F0C6050 70 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::DisposeAsync()[OptimizedTier1] +00007FA12F0C60E0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0C6100 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2B88D0 18 stub<21424> AllocateTemporaryEntryPoints +00007FA12F2B88E8 18 stub<21425> AllocateTemporaryEntryPoints +00007FA12F2B8900 18 stub<21426> AllocateTemporaryEntryPoints +00007FA12F2B8918 18 stub<21427> AllocateTemporaryEntryPoints +00007FA12F2B8930 18 stub<21428> AllocateTemporaryEntryPoints +00007FA12F0C6260 442 instance void [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter+d__40::MoveNext()[OptimizedTier1] +00007FA12F0C66F0 10e instance void [Microsoft.AspNetCore.WebUtilities] Microsoft.AspNetCore.WebUtilities.HttpResponseStreamWriter::Dispose(bool)[OptimizedTier1] +00007FA12F0C6830 67 void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+Log::ViewResultExecuted(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,string,float64)[OptimizedTier1] +00007FA12F0C68C0 9c void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterActionResultImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.IActionResult)[OptimizedTier1] +00007FA12F0C6980 4b void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+Log::AfterExecutingActionResult(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0C69F0 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeOnResultExecutedImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IResultFilter)[OptimizedTier1] +00007FA12F0C6AC0 82 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter::OnResultExecuted(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext)[OptimizedTier1] +00007FA12F0C6B60 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterOnResultExecutedImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IResultFilter)[OptimizedTier1] +00007FA12F0C6C30 42 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::Rethrow(class Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/ResultExecutedContextSealed)[OptimizedTier1] +00007FA12F0C6C90 5 instance bool [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext::get_ExceptionHandled()[OptimizedTier1] +00007FA12F0C6CB0 5 instance class [System.Runtime]System.Runtime.ExceptionServices.ExceptionDispatchInfo [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext::get_ExceptionDispatchInfo()[OptimizedTier1] +00007FA12F0C6CD0 1e instance class [System.Runtime]System.Exception [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext::get_Exception()[OptimizedTier1] +00007FA12F0C6D10 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::BeforeOnResourceExecutedImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IResourceFilter)[OptimizedTier1] +00007FA12F0C6DE0 55 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.SaveTempDataFilter::OnResourceExecuted(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext)[OptimizedTier1] +00007FA12F0C6E50 aa void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterOnResourceExecutedImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IResourceFilter)[OptimizedTier1] +00007FA12F0C6F20 42 void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::Rethrow(class Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/ResourceExecutedContextSealed)[OptimizedTier1] +00007FA12F0C6F80 5 instance bool [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext::get_ExceptionHandled()[OptimizedTier1] +00007FA12F0C6FA0 5 instance class [System.Runtime]System.Runtime.ExceptionServices.ExceptionDispatchInfo [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext::get_ExceptionDispatchInfo()[OptimizedTier1] +00007FA12F0C6FC0 1e instance class [System.Runtime]System.Exception [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext::get_Exception()[OptimizedTier1] +00007FA12F2B8948 60 stub<21429> AllocateTemporaryEntryPoints +00007FA12F2B89A8 18 stub<21430> AllocateTemporaryEntryPoints +00007FA12F0C7000 11a instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::ReleaseResourcesCore(class [System.Runtime]System.IDisposable)[OptimizedTier1] +00007FA12F0C7150 78 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker::ReleaseResources()[OptimizedTier1] +00007FA12F0C71E0 32 valuetype [System.Runtime]System.Threading.Tasks.ValueTask [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider::SyncDisposeAsync(class Microsoft.AspNetCore.Mvc.ControllerContext,object)[OptimizedTier1] +00007FA12F0C7230 6e void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider::Dispose(class Microsoft.AspNetCore.Mvc.ControllerContext,object)[OptimizedTier1] +00007FA12F0C72C0 17 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::Dispose()[OptimizedTier1] +00007FA12F0C72F0 1 instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.Controller::Dispose(bool)[OptimizedTier1] +00007FA12F0C7310 19b valuetype [System.Runtime]System.Threading.Tasks.ValueTask [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::g__HandleReleaseErrors|18_1(class [System.Runtime]System.IDisposable,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0C74E0 15c void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+Log::ExecutedAction(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor,valuetype [System.Runtime]System.TimeSpan)[OptimizedTier1] +00007FA12F0C7690 b instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::set_HttpStatusCode(string)[OptimizedTier1] +00007FA12F0C76B0 ac void [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.MvcCoreDiagnosticListenerExtensions::AfterActionImpl(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.DiagnosticListener,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [Microsoft.AspNetCore.Routing.Abstractions]Microsoft.AspNetCore.Routing.RouteData)[OptimizedTier1] +00007FA12F0C7780 29a instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnMvcAfterAction(object)[OptimizedTier1] +00007FA12F0C7A70 56 instance bool [Datadog.Trace] Datadog.Trace.TraceContext::g__ShouldTriggerPartialFlush|45_0()[OptimizedTier1] +00007FA12F0C7AE0 4e void [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.EndpointMiddleware+Log::ExecutedEndpoint(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.Endpoint)[OptimizedTier1] +00007FA12F0C7B50 14b instance bool [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::VerifyResponseContentLength(class [System.Runtime]System.Exception&)[OptimizedTier1] +00007FA12F0C7CC0 f5 instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::ProduceEnd()[OptimizedTier1] +00007FA12E6743A0 18 stub<21431> GenerateLookupStub +00007FA12F2B89C0 60 stub<21432> AllocateTemporaryEntryPoints +00007FA12F2B8A20 18 stub<21433> AllocateTemporaryEntryPoints +00007FA12F2B8A38 60 stub<21434> AllocateTemporaryEntryPoints +00007FA12F0C7DD0 1ed instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::WriteSuffix()[OptimizedTier1] +00007FA12F0C7FE0 84 instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::PreventRequestAbortedCancellation()[OptimizedTier1] +00007FA12F0C8090 12b instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::WriteStreamSuffixAsync()[OptimizedTier1] +00007FA12F0C81F0 166 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1OutputProducer::WriteAsyncInternal(valuetype System.Buffers.BufferWriter`1&,valuetype [System.Runtime]System.ReadOnlySpan`1,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0C8380 62 void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure.KestrelTrace+ConnectionsLog::ConnectionKeepAlive(class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger,string)[OptimizedTier1] +00007FA12F0C8400 59 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol::g__ProcessEvents|242_0(class Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol,class [System.Collections]System.Collections.Generic.Stack`1,object>>)[OptimizedTier1] +00007FA12F0C8470 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0C8490 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2B8A98 18 stub<21435> AllocateTemporaryEntryPoints +00007FA12F2B8AB0 18 stub<21436> AllocateTemporaryEntryPoints +00007FA12F2B8AC8 18 stub<21437> AllocateTemporaryEntryPoints +00007FA12F0C8600 2fb instance void [Microsoft.AspNetCore.Server.Kestrel.Core] Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+<g__ProcessEvents|242_0>d::MoveNext()[OptimizedTier1] +00007FA12F0C8940 eb instance class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Http.Abstractions] Microsoft.AspNetCore.Http.HttpResponse+<>c::<.cctor>b__35_1(object)[OptimizedTier1] +00007FA12F2B8AE0 60 stub<21438> AllocateTemporaryEntryPoints +00007FA12F2B8B40 18 stub<21439> AllocateTemporaryEntryPoints +00007FA12F0C8A50 1d2 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.Features.RequestServicesFeature::DisposeAsync()[OptimizedTier1] +00007FA12F2B8B58 60 stub<21440> AllocateTemporaryEntryPoints +00007FA12F2B8BB8 18 stub<21441> AllocateTemporaryEntryPoints +00007FA12F0C8C60 2ce instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [Microsoft.Extensions.DependencyInjection] Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope::DisposeAsync()[OptimizedTier1] +00007FA12F0C8F80 9e instance void [Microsoft.AspNetCore.Mvc.ViewFeatures] Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.MemoryPoolViewBufferScope::Dispose()[OptimizedTier1] +00007FA12E6743C0 18 stub<21442> GenerateLookupStub +00007FA12F0C9040 2e1 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplication::DisposeContext(class Microsoft.AspNetCore.Hosting.HostingApplication/Context,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0C9350 b5 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::LogRequestFinished(class Microsoft.AspNetCore.Hosting.HostingApplication/Context,int64,int64)[OptimizedTier1] +00007FA12F0C9430 2e instance string [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingRequestFinishedLog+<>c::<.cctor>b__14_0(object,class [System.Runtime]System.Exception)[OptimizedTier1] +00007FA12F0C9480 608 instance string [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingRequestFinishedLog::ToString()[OptimizedTier1] +00007FA12F0C9AD0 68 instance string [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingRequestStartingLog::ToStringWithoutPreamble()[OptimizedTier1] +00007FA12F0C9B50 b6 instance valuetype [System.Runtime]System.Nullable`1 [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::get_ContentLength()[OptimizedTier1] +00007FA12F0C9C40 222 bool [System.Private.CoreLib] System.Number+Grisu3::TryDigitGenCounted(valuetype System.Number/DiyFp&,int32,valuetype System.Span`1,int32&,int32&)[OptimizedTier1] +00007FA12F0C9EA0 a3 bool [System.Private.CoreLib] System.Number+Grisu3::TryRoundWeedCounted(valuetype System.Span`1,int32,uint64,uint64,uint64,int32&)[OptimizedTier1] +00007FA12F0C9F60 65 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::RecordEndRequestDiagnostics(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,int64)[OptimizedTier1] +00007FA12F0C9FF0 28 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::StopActivity(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [System.Diagnostics.DiagnosticSource]System.Diagnostics.Activity,bool)[OptimizedTier1] +00007FA12F0CA030 75 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplicationDiagnostics::StopActivity(class [System.Diagnostics.DiagnosticSource]System.Diagnostics.Activity,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext)[OptimizedTier1] +00007FA12F0CA0D0 8 instance valuetype [System.Runtime]System.TimeSpan [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::get_Duration()[OptimizedTier1] +00007FA12F0CA0F0 b2 instance class System.Diagnostics.Activity [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::SetEndTime(valuetype [System.Runtime]System.DateTime)[OptimizedTier1] +00007FA12F0CA1C0 459 instance void [Datadog.Trace] Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver::OnHostingHttpRequestInStop(object)[OptimizedTier1] +00007FA12F0CA650 17a !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckTypeExtensions::DuckCast(object)[OptimizedTier1] +00007FA12F0CA800 17a !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType::Create(object)[OptimizedTier1] +00007FA12F0CA9B0 181 !0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInStopStruct]::Create(object)[OptimizedTier1] +00007FA12F0CAB60 107 valuetype Datadog.Trace.DuckTyping.DuckType/CreateTypeResult [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateCache`1[Datadog.Trace.DiagnosticListeners.AspNetCoreDiagnosticObserver+HttpRequestInStopStruct]::GetProxy(class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0CAC90 5a instance !!0 [Datadog.Trace] Datadog.Trace.DuckTyping.DuckType+CreateTypeResult::CreateInstance(object)[OptimizedTier1] +00007FA12F0CAD10 6a bool [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::HasHttpStatusCode(class Datadog.Trace.Span)[OptimizedTier1] +00007FA12F0CADA0 b instance void [Datadog.Trace] Datadog.Trace.Tagging.WebTags::set_HttpStatusCode(string)[OptimizedTier1] +00007FA12F0CADC0 a3 instance class [Microsoft.AspNetCore.Http.Features]Microsoft.AspNetCore.Http.IHeaderDictionary [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpResponse::get_Headers()[OptimizedTier1] +00007FA12F0CAEA0 1d5 void [Datadog.Trace] Datadog.Trace.ExtensionMethods.SpanExtensions::SetHeaderTags(class Datadog.Trace.ISpan,!!0,class [System.Runtime]System.Collections.Generic.IReadOnlyDictionary`2,string)[OptimizedTier1] +00007FA12F0CB0D0 10f instance void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.ContextTracker::SetEndpoint(uint64,string)[OptimizedTier1] +00007FA12F0CB210 c void [Datadog.Trace] Datadog.Trace.ContinuousProfiler.NativeInterop::SetEndpoint(string,uint64,string)[OptimizedTier1] +00007FA12F0CB230 293 instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.Activity::Stop()[OptimizedTier1] +00007FA12F0CB4E0 d8 instance void [System.Diagnostics.DiagnosticSource] System.Diagnostics.ActivitySource::NotifyActivityStop(class System.Diagnostics.Activity)[OptimizedTier1] +00007FA12F0CB5E0 a4 instance void [Microsoft.AspNetCore.Http] Microsoft.AspNetCore.Http.DefaultHttpContext::Uninitialize()[OptimizedTier1] +00007FA12F0CB6A0 65 instance void [Microsoft.AspNetCore.Hosting] Microsoft.AspNetCore.Hosting.HostingApplication+Context::Reset()[OptimizedTier1] +00007FA12F0CB720 93 void [System.Private.CoreLib] System.Threading.ExecutionContext::RestoreInternal(class System.Threading.ExecutionContext)[OptimizedTier1] +00007FA12F0CB7E0 167e instance void [Datadog.Trace] Datadog.Trace.Tagging.HttpTags::EnumerateTags(!!0&)[OptimizedTier1] +00007FA12F0CCEA0 1607 instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::EnumerateTags(!!0&)[OptimizedTier1] +00007FA12F0CE4D0 8 instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::get_AspNetCoreArea()[OptimizedTier1] +00007FA12F0CE4F0 8 instance string [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreMvcTags::get_AspNetCorePage()[OptimizedTier1] +00007FA12F0CE520 6c3 instance void [Datadog.Trace] Datadog.Trace.Tagging.AspNetCoreEndpointTags::EnumerateTags(!!0&)[OptimizedTier1] +00007FA12F0CEC10 126 instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource+Linked2CancellationTokenSource::Dispose(bool)[OptimizedTier1] +00007FA12F0CED60 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::MoveNext()[OptimizedTier1] +00007FA12F0CED80 1a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0CEF50 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F2B8BD0 1e0 stub<21443> AllocateTemporaryEntryPoints +00007FA12F2B8DB0 60 stub<21444> AllocateTemporaryEntryPoints +00007FA12F2B8E10 18 stub<21445> AllocateTemporaryEntryPoints +00007FA12F0CEF70 10b instance class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpContent::ReadAsStringAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F2B8E28 18 stub<21446> AllocateTemporaryEntryPoints +00007FA12F0CF0A0 ad class [System.Runtime]System.Threading.Tasks.Task`1 [System.Net.Http] System.Net.Http.HttpContent::WaitAndReturnAsync(class [System.Runtime]System.Threading.Tasks.Task,!!0,class [System.Runtime]System.Func`2)[OptimizedTier1] +00007FA12F0CF170 42 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0CF1D0 177 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2B8E40 60 stub<21447> AllocateTemporaryEntryPoints +00007FA12F2B8EA0 18 stub<21448> AllocateTemporaryEntryPoints +00007FA12F2B8EB8 18 stub<21449> AllocateTemporaryEntryPoints +00007FA12F2B8ED0 18 stub<21450> AllocateTemporaryEntryPoints +00007FA12F2B8EE8 18 stub<21451> AllocateTemporaryEntryPoints +00007FA12F2B8F00 18 stub<21452> AllocateTemporaryEntryPoints +00007FA12F0CF380 1dd instance void [System.Net.Http] System.Net.Http.HttpContent+d__82`2[System.__Canon,System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F0CF590 b instance string [System.Net.Http] System.Net.Http.HttpContent+<>c::b__36_0(class System.Net.Http.HttpContent)[OptimizedTier1] +00007FA12F0CF5B0 d8 instance string [System.Net.Http] System.Net.Http.HttpContent::ReadBufferedContentAsString()[OptimizedTier1] +00007FA12F0CF6B0 1b6 string [System.Net.Http] System.Net.Http.HttpContent::ReadBufferAsString(valuetype [System.Runtime]System.ArraySegment`1,class System.Net.Http.Headers.HttpContentHeaders)[OptimizedTier1] +00007FA12F0CF890 69 instance class System.Net.Http.Headers.MediaTypeHeaderValue [System.Net.Http] System.Net.Http.Headers.HttpContentHeaders::get_ContentType()[OptimizedTier1] +00007FA12F0CF910 3c instance int32 [System.Net.Http] System.Net.Http.Headers.MediaTypeHeaderParser::GetParsedValueLength(string,int32,object,object&)[OptimizedTier1] +00007FA12F0CF970 162 int32 [System.Net.Http] System.Net.Http.Headers.MediaTypeHeaderValue::GetMediaTypeLength(string,int32,class [System.Runtime]System.Func`1,class System.Net.Http.Headers.MediaTypeHeaderValue&)[OptimizedTier1] +00007FA12F0CFB00 16 class System.Net.Http.Headers.MediaTypeHeaderValue [System.Net.Http] System.Net.Http.Headers.MediaTypeHeaderParser::CreateMediaType()[OptimizedTier1] +00007FA12F0CFB30 39 instance class [System.Runtime]System.Collections.Generic.ICollection`1 [System.Net.Http] System.Net.Http.Headers.MediaTypeHeaderValue::get_Parameters()[OptimizedTier1] +00007FA12F0CFBA0 ff int32 [System.Net.Http] System.Net.Http.Headers.NameValueHeaderValue::GetNameValueListLength(string,int32,char,class System.Net.Http.Headers.UnvalidatedObjectCollection`1)[OptimizedTier1] +00007FA12F0CFCC0 1aa int32 [System.Net.Http] System.Net.Http.Headers.NameValueHeaderValue::GetNameValueLength(string,int32,class [System.Runtime]System.Func`1,class System.Net.Http.Headers.NameValueHeaderValue&)[OptimizedTier1] +00007FA12F0CFE90 7b int32 [System.Net.Http] System.Net.Http.Headers.NameValueHeaderValue::GetValueLength(string,int32)[OptimizedTier1] +00007FA12F0CFF30 16 class System.Net.Http.Headers.NameValueHeaderValue [System.Net.Http] System.Net.Http.Headers.NameValueHeaderValue::CreateNameValue()[OptimizedTier1] +00007FA12F2B8F18 60 stub<21453> AllocateTemporaryEntryPoints +00007FA12F0CFF60 1ba instance void [System.Net.Http] System.Net.Http.Headers.ObjectCollection`1[System.__Canon]::Add(!0)[OptimizedTier1] +00007FA12F0D0140 29 instance void [System.Net.Http] System.Net.Http.Headers.UnvalidatedObjectCollection`1[System.__Canon]::Validate(!0)[OptimizedTier1] +00007FA12F0D0180 2d instance string [System.Net.Http] System.Net.Http.Headers.MediaTypeHeaderValue::get_CharSet()[OptimizedTier1] +00007FA12F2B8F78 18 stub<21454> AllocateTemporaryEntryPoints +00007FA12F0D01E0 a8 class System.Net.Http.Headers.NameValueHeaderValue [System.Net.Http] System.Net.Http.Headers.NameValueHeaderValue::Find(class System.Net.Http.Headers.UnvalidatedObjectCollection`1,string)[OptimizedTier1] +00007FA12F2BA000 120 stub<21455> AllocateTemporaryEntryPoints +00007FA12F2BA120 a8 stub<21456> AllocateTemporaryEntryPoints +00007FA12F2BA1C8 18 stub<21457> AllocateTemporaryEntryPoints +00007FA12F2BA1E0 60 stub<21458> AllocateTemporaryEntryPoints +00007FA12F0D02B0 cb instance bool [System.Net.Http] System.Net.Http.Headers.ObjectCollection`1+Enumerator[System.__Canon]::MoveNext()[OptimizedTier1] +00007FA12F0D03A0 228 int32 [System.Net.Http] System.Net.Http.HttpContent::GetPreambleLength(valuetype [System.Runtime]System.ArraySegment`1,class [System.Runtime]System.Text.Encoding)[OptimizedTier1] +00007FA12F0D05F0 15 instance void [System.Private.Uri] System.Text.ValueStringBuilder::.ctor(valuetype [System.Private.CoreLib]System.Span`1)[OptimizedTier1] +00007FA12F0D0620 fb bool [System.Private.CoreLib] System.Number::TryFormatUInt32(uint32,valuetype System.ReadOnlySpan`1,class System.IFormatProvider,valuetype System.Span`1,int32&)[OptimizedTier1] +00007FA12F0D0730 9e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,BuggyBits.SelfInvoker+d__10]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0D07F0 8e instance void [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketAwaitableEventArgs::OnCompleted(class [System.Net.Sockets]System.Net.Sockets.SocketAsyncEventArgs)[OptimizedTier1] +00007FA12F0D08A0 5 instance object [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::get_UserToken()[OptimizedTier1] +00007FA12F0D08C0 18 instance void [System.IO.Pipelines] System.IO.Pipelines.InlineScheduler::Schedule(class [System.Runtime]System.Action`1,object)[OptimizedTier1] +00007FA12F0D08F0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27]::MoveNext()[OptimizedTier1] +00007FA12F0D0910 1d7 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D0B10 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection+d__27]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D0B30 9f instance valuetype Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketOperationResult [Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets] Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketAwaitableEventArgs::GetResult(int16)[OptimizedTier1] +00007FA12F0D0BF0 51 instance void [System.Private.CoreLib] System.ArraySegment`1[System.Byte]::.ctor(!0[],int32,int32)[OptimizedTier1] +00007FA12F0D0C60 157 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Api::SendTracesAsync(valuetype [System.Runtime]System.ArraySegment`1,int32,bool,int64,int64)[OptimizedTier1] +00007FA12F0D0DE0 51 instance void [Datadog.Trace] Datadog.Trace.Agent.Api+SendTracesState::.ctor(valuetype [System.Runtime]System.ArraySegment`1,int32,bool,int64,int64)[OptimizedTier1] +00007FA12F0D0E50 a5 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Api::SendWithRetry(class [System.Runtime]System.Uri,class Datadog.Trace.Agent.Api/SendCallback`1,!!0)[OptimizedTier1] +00007FA12F0D0F20 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean]::Start(!!0&)[OptimizedTier1] +00007FA12F0D0F40 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0D10A0 63 class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions::ReadAsStringAsync(class Datadog.Trace.Agent.IApiResponse)[OptimizedTier1] +00007FA12F0D1120 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0D1140 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2BA240 18 stub<21459> AllocateTemporaryEntryPoints +00007FA12F2BA258 18 stub<21460> AllocateTemporaryEntryPoints +00007FA12F2BA270 18 stub<21461> AllocateTemporaryEntryPoints +00007FA12F2BA288 18 stub<21462> AllocateTemporaryEntryPoints +00007FA12F2BA2A0 18 stub<21463> AllocateTemporaryEntryPoints +00007FA12F2BA2B8 18 stub<21464> AllocateTemporaryEntryPoints +00007FA12F2BA2D0 18 stub<21465> AllocateTemporaryEntryPoints +00007FA12F2BA2E8 18 stub<21466> AllocateTemporaryEntryPoints +00007FA12F0D12A0 468 instance void [Datadog.Trace] Datadog.Trace.Agent.ApiResponseExtensions+d__0::MoveNext()[OptimizedTier1] +00007FA12F0D1760 13 instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.IO.StreamReader::ReadToEndAsync()[OptimizedTier1] +00007FA12F2BA300 60 stub<21467> AllocateTemporaryEntryPoints +00007FA12F2BA360 18 stub<21468> AllocateTemporaryEntryPoints +00007FA12F2BA378 18 stub<21469> AllocateTemporaryEntryPoints +00007FA12F2BA390 18 stub<21470> AllocateTemporaryEntryPoints +00007FA12F2BA3A8 18 stub<21471> AllocateTemporaryEntryPoints +00007FA12F0D1790 6c instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.IO.StreamReader::ReadToEndAsync(valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0D1820 68 instance class System.Threading.Tasks.Task`1 [System.Private.CoreLib] System.IO.StreamReader::ReadToEndAsyncInternal(valuetype System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0D18A0 e6 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2BA3C0 18 stub<21472> AllocateTemporaryEntryPoints +00007FA12F2BA3D8 18 stub<21473> AllocateTemporaryEntryPoints +00007FA12F2BA3F0 18 stub<21474> AllocateTemporaryEntryPoints +00007FA12F2BA408 18 stub<21475> AllocateTemporaryEntryPoints +00007FA12F0D19C0 422 instance void [System.Private.CoreLib] System.IO.StreamReader+d__66::MoveNext()[OptimizedTier1] +00007FA12780FEB0 18 stub<21476> GenerateResolveStub +00007FA1277CDB80 20 stub<21477> GenerateDispatchStub +00007FA1277CDBA0 20 stub<21478> GenerateDispatchStub +00007FA1277CDBC0 20 stub<21479> GenerateDispatchStub +00007FA1277CDBE0 20 stub<21480> GenerateDispatchStub +00007FA1277CDC00 20 stub<21481> GenerateDispatchStub +00007FA12780FF20 18 stub<21482> GenerateResolveStub +00007FA1277CDC20 20 stub<21483> GenerateDispatchStub +00007FA1277CDC40 20 stub<21484> GenerateDispatchStub +00007FA1277CDC60 20 stub<21485> GenerateDispatchStub +00007FA1277CDC80 20 stub<21486> GenerateDispatchStub +00007FA1277CDCA0 20 stub<21487> GenerateDispatchStub +00007FA1277CDCC0 20 stub<21488> GenerateDispatchStub +00007FA12F0D1E20 245 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA1277CDCE0 20 stub<21489> GenerateDispatchStub +00007FA12F0D2090 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::.ctor()[OptimizedTier1] +00007FA12780FF90 18 stub<21490> GenerateResolveStub +00007FA1277CDD00 20 stub<21491> GenerateDispatchStub +00007FA127810000 18 stub<21492> GenerateResolveStub +00007FA1277CDD20 20 stub<21493> GenerateDispatchStub +00007FA127810070 18 stub<21494> GenerateResolveStub +00007FA1277CDD40 20 stub<21495> GenerateDispatchStub +00007FA12F0D20B0 277 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D2350 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::.ctor()[OptimizedTier1] +00007FA12F0D2370 233 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D25D0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::.ctor()[OptimizedTier1] +00007FA12F0D25F0 271 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D2890 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::.ctor()[OptimizedTier1] +00007FA12F0D28B0 259 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D2B30 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::.ctor()[OptimizedTier1] +00007FA12F0D2B50 24f class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D2DC0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::.ctor()[OptimizedTier1] +00007FA12F0D2DE0 229 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D3030 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::.ctor()[OptimizedTier1] +00007FA12F0D3050 233 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D32B0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::.ctor()[OptimizedTier1] +00007FA12F2BA420 60 stub<21496> AllocateTemporaryEntryPoints +00007FA12F2BA480 18 stub<21497> AllocateTemporaryEntryPoints +00007FA12F0D32D0 a3 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::g__Awaited|30_0(class Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker,class [System.Runtime]System.Threading.Tasks.Task,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/State,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/Scope,object,bool)[OptimizedTier1] +00007FA12F0D3390 42 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0D33F0 177 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0D35A0 56 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F0D3620 5f void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D36A0 298 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D3960 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::.ctor()[OptimizedTier1] +00007FA12F0D3980 70 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::g__Awaited|28_0(class Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker,class [System.Runtime]System.Threading.Tasks.Task,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/State,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/Scope,object,bool)[OptimizedTier1] +00007FA12F0D3A10 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0D3A30 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0D3B90 237 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D3DF0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::.ctor()[OptimizedTier1] +00007FA12F0D3E10 70 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::g__Awaited|25_0(class Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker,class [System.Runtime]System.Threading.Tasks.Task,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/State,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/Scope,object,bool)[OptimizedTier1] +00007FA12F0D3EA0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0D3EC0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0D4020 237 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D4280 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::.ctor()[OptimizedTier1] +00007FA12F0D42A0 70 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker::g__Awaited|20_0(class Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker,class [System.Runtime]System.Threading.Tasks.Task,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/State,valuetype Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker/Scope,object,bool)[OptimizedTier1] +00007FA12F0D4330 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0D4350 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0D44B0 237 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D4710 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::.ctor()[OptimizedTier1] +00007FA12F0D4730 25d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D49B0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::.ctor()[OptimizedTier1] +00007FA12F0D49D0 5c class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.EndpointMiddleware::g__AwaitRequestTask|6_0(class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.Endpoint,class [System.Runtime]System.Threading.Tasks.Task,class [Microsoft.Extensions.Logging.Abstractions]Microsoft.Extensions.Logging.ILogger)[OptimizedTier1] +00007FA12F0D4A50 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0D4A70 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0D4BD0 233 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D4E30 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::.ctor()[OptimizedTier1] +00007FA12F0D4E50 269 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D50E0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::.ctor()[OptimizedTier1] +00007FA12F0D5100 62 class [System.Runtime]System.Threading.Tasks.Task [Microsoft.AspNetCore.Diagnostics] Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl::g__Awaited|8_0(class Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl,class [Microsoft.AspNetCore.Http.Abstractions]Microsoft.AspNetCore.Http.HttpContext,class [System.Runtime]System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12F0D5180 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0D51A0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0D5300 23d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D5560 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::.ctor()[OptimizedTier1] +00007FA12F0D5580 285 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D5830 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::.ctor()[OptimizedTier1] +00007FA12F0D5850 56 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F0D58D0 5f void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D5950 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::MoveNext()[OptimizedTier1] +00007FA12F0D5970 1ad instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D5B40 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers.ViewBuffer+d__23]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D5B60 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::MoveNext()[OptimizedTier1] +00007FA12F0D5B80 1d0 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D5D70 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__22]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D5D90 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::MoveNext()[OptimizedTier1] +00007FA12F0D5DB0 19b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D5F70 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Razor.RazorView+d__18]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D5F90 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::MoveNext()[OptimizedTier1] +00007FA12F0D5FB0 1d0 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D61A0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__22]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D61C0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::MoveNext()[OptimizedTier1] +00007FA12F0D61E0 1bb instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D63C0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor+d__21]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D63E0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::MoveNext()[OptimizedTier1] +00007FA12F0D6400 1b4 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D65E0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewFeatures.ViewResultExecutor+d__7]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D6600 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::MoveNext()[OptimizedTier1] +00007FA12F0D6620 197 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D67E0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.ViewResult+d__26]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D6800 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::MoveNext()[OptimizedTier1] +00007FA12F0D6820 19b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D69E0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|22_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D6A00 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::MoveNext()[OptimizedTier1] +00007FA12F0D6A20 217 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D6C60 41 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|30_0>d`2[System.__Canon,System.__Canon]]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D6CC0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::MoveNext()[OptimizedTier1] +00007FA12F0D6CE0 1a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D6EB0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|28_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D6ED0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::MoveNext()[OptimizedTier1] +00007FA12F0D6EF0 1a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D70C0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|25_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D70E0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::MoveNext()[OptimizedTier1] +00007FA12F0D7100 1a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D72D0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Awaited|20_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D72F0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::MoveNext()[OptimizedTier1] +00007FA12F0D7310 1c2 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D7500 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker+<g__Logged|17_1>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D7520 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::MoveNext()[OptimizedTier1] +00007FA12F0D7540 19b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D7700 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Routing.EndpointMiddleware+<g__AwaitRequestTask|6_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D7720 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::MoveNext()[OptimizedTier1] +00007FA12F0D7740 1c2 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D7930 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Authorization.AuthorizationMiddleware+d__9]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D7950 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::MoveNext()[OptimizedTier1] +00007FA12F0D7970 1a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D7B40 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddlewareImpl+<g__Awaited|8_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D7B60 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::MoveNext()[OptimizedTier1] +00007FA12F0D7B80 1de instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D7D80 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.ClrProfiler.AutoInstrumentation.AspNetCore.BlockingMiddleware+d__4]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D7DA0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::MoveNext()[OptimizedTier1] +00007FA12F0D7DC0 b9 instance bool [System.Private.CoreLib] System.StringComparer::Equals(object,object)[OptimizedTier1] +00007FA12F0D7E90 56 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F0D7F10 5f void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D7F90 6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol+d__238`1[System.__Canon]]::ExecuteFromThreadPool(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D7FB0 82 instance void [System.Private.CoreLib] System.Threading.PortableThreadPool+HillClimbing::ChangeThreadCount(int32,valuetype System.Threading.PortableThreadPool/HillClimbing/StateOrTransition)[OptimizedTier1] +00007FA12F0D8060 1d9 instance void [System.Private.CoreLib] System.Threading.PortableThreadPool+HillClimbing::LogTransition(int32,float64,valuetype System.Threading.PortableThreadPool/HillClimbing/StateOrTransition)[OptimizedTier1] +00007FA12F0D8260 ca instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,!!1,int32,string)[OptimizedTier1] +00007FA12F0D8350 dc instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,!!1,int32,string)[OptimizedTier1] +00007FA12F0D8450 70 instance valuetype [System.Runtime]System.ArraySegment`1 [Datadog.Trace] Datadog.Trace.Agent.SpanBuffer::get_Data()[OptimizedTier1] +00007FA12F0D84E0 223 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D8730 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::.ctor()[OptimizedTier1] +00007FA12F0D8750 237 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D89B0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::.ctor()[OptimizedTier1] +00007FA12F0D89D0 22d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0D8C20 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::.ctor()[OptimizedTier1] +00007FA12F0D8C40 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::MoveNext()[OptimizedTier1] +00007FA12F0D8C60 197 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D8E20 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D8E40 37 instance void [Datadog.Trace] Datadog.Trace.Agent.MovingAverageKeepRateCalculator::IncrementKeeps(int32)[OptimizedTier1] +00007FA12F0D8E90 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::MoveNext()[OptimizedTier1] +00007FA12F0D8EB0 1a6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D9080 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D90A0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::MoveNext()[OptimizedTier1] +00007FA12F0D90C0 19b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0D9280 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0D92A0 97 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__45]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0D9350 9e instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+d__46]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0D9410 93 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.Agent.AgentWriter+<>c__DisplayClass46_0+<g__InternalBufferFlush|0>d]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0D94C0 307 instance bool [Datadog.Trace] Datadog.Trace.Tagging.TraceTagCollection::SetTag(string,string,bool)[OptimizedTier1] +00007FA12F0D9800 6e class System.Threading.IAsyncLocalValueMap [System.Private.CoreLib] System.Threading.AsyncLocalValueMap::Create(class System.Threading.IAsyncLocal,object,bool)[OptimizedTier1] +00007FA12F0D9890 71 instance string[] [System.Private.CoreLib] System.String::CreateSplitArrayOfThisAsSoleValue(valuetype System.StringSplitOptions,int32)[OptimizedTier1] +00007FA12F0D9920 22a class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata[] [Microsoft.AspNetCore.Mvc.Core] Microsoft.AspNetCore.Mvc.Filters.FilterFactory::CreateUncachedFilters(class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.IFilterProvider[],class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.ActionContext,class [Microsoft.AspNetCore.Mvc.Abstractions]Microsoft.AspNetCore.Mvc.Filters.FilterItem[])[OptimizedTier1] +00007FA12F0D9B70 5 instance class Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata[] [Microsoft.AspNetCore.Mvc.Abstractions] Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor::get_CachedReusableFilters()[OptimizedTier1] +00007FA12F0D9B90 5f instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequest::GetAsync()[OptimizedTier1] +00007FA12F0D9C10 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0D9C30 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0D9D90 16 void [System.Private.CoreLib] System.Runtime.CompilerServices.TaskAwaiter::ValidateEnd(class System.Threading.Tasks.Task)[OptimizedTier1] +00007FA12F0D9DC0 58 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService::ProcessDiscoveryResponse(class Datadog.Trace.Agent.IApiResponse)[OptimizedTier1] +00007FA12F0D9E30 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0D9E50 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2BA498 18 stub<21498> AllocateTemporaryEntryPoints +00007FA12F2BA4B0 18 stub<21499> AllocateTemporaryEntryPoints +00007FA12F2BA4C8 18 stub<21500> AllocateTemporaryEntryPoints +00007FA12F2BA4E0 18 stub<21501> AllocateTemporaryEntryPoints +00007FA12F0D9FC0 75f instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.DiscoveryService+d__24::MoveNext()[OptimizedTier1] +00007FA12F0DA960 248 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonContract)[OptimizedTier1] +00007FA12F0DABE0 6 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::.ctor()[OptimizedTier1] +00007FA12F0DAC00 6c instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[OptimizedTier1] +00007FA12F0DAC90 6a instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,bool)[OptimizedTier1] +00007FA12F0DAD20 1a8 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::WriteToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,bool,bool,bool)[OptimizedTier1] +00007FA12F0DAF00 1c1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::WriteToken(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,bool,bool,bool)[OptimizedTier1] +00007FA12F0DB0F0 56 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::CalculateWriteTokenInitialDepth(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[OptimizedTier1] +00007FA12F0DB160 71 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::IsWriteTokenIncomplete(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,bool,int32)[OptimizedTier1] +00007FA12F0DB1F0 57 instance int32 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::CalculateWriteTokenFinalDepth(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader)[OptimizedTier1] +00007FA12F0DB260 f instance class Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JToken [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::get_Token()[OptimizedTier1] +00007FA12F0DB280 d instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JTokenWriter::Close()[OptimizedTier1] +00007FA12F0DB2A0 42 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Value(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0DB300 db !!1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Value(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0DB400 13 !!0 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Value(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0DB430 b0 !!1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Value(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0DB500 171 !!1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Convert(!!0)[OptimizedTier1] +00007FA12F0DB6A0 56 instance class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.JContainer::Values()[OptimizedTier1] +00007FA12F0DB710 69 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions::Convert(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0DB7A0 11 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::.ctor(int32)[OptimizedTier1] +00007FA12F0DB7D0 65 instance class [System.Runtime]System.Collections.Generic.IEnumerator`1 [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::System.Collections.Generic.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12F0DB850 5c instance void [System.Linq] System.Collections.Generic.ArrayBuilder`1[System.__Canon]::Add(!0)[OptimizedTier1] +00007FA12F0DB8D0 c1 instance void [System.Linq] System.Collections.Generic.ArrayBuilder`1[System.__Canon]::EnsureCapacity(int32)[OptimizedTier1] +00007FA12F0DB9B0 34 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Linq.Extensions+d__14`2[System.__Canon,System.__Canon]::System.IDisposable.Dispose()[OptimizedTier1] +00007FA12F0DBA00 72 instance void [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.AgentConfiguration::.ctor(string,string,string,string,string,string,bool)[OptimizedTier1] +00007FA12F0DBAA0 162 instance class System.Text.StringBuilder [System.Private.CoreLib] System.Text.StringBuilder::Append(char,int32)[OptimizedTier1] +00007FA12F0DBC20 41 valuetype System.Threading.PortableThreadPool/HillClimbing/Complex [System.Private.CoreLib] System.Threading.PortableThreadPool+HillClimbing+Complex::op_Division(valuetype System.Threading.PortableThreadPool/HillClimbing/Complex,valuetype System.Threading.PortableThreadPool/HillClimbing/Complex)[OptimizedTier1] +00007FA12F0DBCA0 2e class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::CreateDefault(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializerSettings)[OptimizedTier1] +00007FA12F0DBCF0 2a7 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0DBFC0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::.ctor()[OptimizedTier1] +00007FA12F0DBFE0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::MoveNext()[OptimizedTier1] +00007FA12F0DC000 1e4 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0DC210 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0DC230 11e instance bool [Datadog.Trace] Datadog.Trace.Agent.DiscoveryService.AgentConfiguration::Equals(class Datadog.Trace.Agent.DiscoveryService.AgentConfiguration)[OptimizedTier1] +00007FA12F0DC370 e class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[System.Boolean]::get_Default()[OptimizedTier1] +00007FA12F0DC390 1b instance bool [System.Private.CoreLib] System.Collections.Generic.GenericEqualityComparer`1[System.Boolean]::Equals(!0,!0)[OptimizedTier1] +00007FA12F0DC3C0 93 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.Agent.Transports.HttpClientRequest+d__8]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0DC470 51 instance int64 [System.Private.CoreLib] System.Diagnostics.Stopwatch::GetRawElapsedTicks()[OptimizedTier1] +00007FA12F0DC4E0 223 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0DC730 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::.ctor()[OptimizedTier1] +00007FA12F0DC750 249 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0DC9C0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::MoveNext()[OptimizedTier1] +00007FA12F0DC9E0 197 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0DCBA0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0DCBC0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::MoveNext()[OptimizedTier1] +00007FA12F0DCBE0 1b4 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0DCDC0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+ChunkedEncodingReadStream+d__8]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0DCDE0 93 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__99]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0DCEA0 389 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::Resize(int32,bool)[OptimizedTier1] +00007FA12F0DD250 23 instance void [System.Net.Http] System.Net.Http.HttpConnection+ChunkedEncodingReadStream::.ctor(class System.Net.Http.HttpConnection,class System.Net.Http.HttpResponseMessage)[OptimizedTier1] +00007FA12F0DD290 c instance int32 [System.Private.CoreLib] System.Threading.ManualResetEventSlim::get_SpinCount()[OptimizedTier1] +00007FA12F0DD2C0 110 instance bool [System.Private.CoreLib] System.Threading.Tasks.TaskScheduler::TryRunInline(class System.Threading.Tasks.Task,bool)[OptimizedTier1] +00007FA12F2BA4F8 18 stub<21502> AllocateTemporaryEntryPoints +00007FA12F2BA510 18 stub<21503> AllocateTemporaryEntryPoints +00007FA12F2BA528 18 stub<21504> AllocateTemporaryEntryPoints +00007FA12F2BA540 18 stub<21505> AllocateTemporaryEntryPoints +00007FA12F2BA558 18 stub<21506> AllocateTemporaryEntryPoints +00007FA12F2BA570 18 stub<21507> AllocateTemporaryEntryPoints +00007FA12F2BA588 18 stub<21508> AllocateTemporaryEntryPoints +00007FA12F2BA5A0 18 stub<21509> AllocateTemporaryEntryPoints +00007FA12F2BA5B8 18 stub<21510> AllocateTemporaryEntryPoints +00007FA12F2BA5D0 18 stub<21511> AllocateTemporaryEntryPoints +00007FA12F0DD3F0 3d instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::AreAllBucketsEmpty()[OptimizedTier1] +00007FA12F0DD450 18 valuetype System.Span`1 [System.Private.CoreLib] System.MemoryExtensions::AsSpan(!!0[])[OptimizedTier1] +00007FA12F0DD480 31 int32 [System.Private.CoreLib] System.MemoryExtensions::IndexOfAnyExcept(valuetype System.Span`1,!!0)[OptimizedTier1] +00007FA12F0DD4D0 102 instance void [System.Net.Http] System.Net.Http.HttpConnectionPoolManager::SetCleaningTimer(valuetype [System.Runtime]System.TimeSpan)[OptimizedTier1] +00007FA12F0DD630 8c instance bool [System.Private.CoreLib] System.Threading.Timer::Change(valuetype System.TimeSpan,valuetype System.TimeSpan)[OptimizedTier1] +00007FA12F0DD700 1c3 instance bool [System.Private.CoreLib] System.Threading.Timer::Change(int64,int64)[OptimizedTier1] +00007FA12F0DD8E0 b instance void [System.Private.CoreLib] System.Threading.TimerQueueTimer::System.Threading.IThreadPoolWorkItem.Execute()[OptimizedTier1] +00007FA12F0DD900 3e instance void [System.Net.Http] System.Net.Http.HttpConnectionPoolManager+<>c::<.ctor>b__11_0(object)[OptimizedTier1] +00007FA12E6743E0 18 stub<21512> GenerateLookupStub +00007FA12F0DD960 23a instance void [System.Net.Http] System.Net.Http.HttpConnectionPoolManager::RemoveStalePools()[OptimizedTier1] +00007FA12F0DDBF0 66 instance class [System.Private.CoreLib]System.Collections.Generic.IEnumerator`1> [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::GetEnumerator()[OptimizedTier1] +00007FA12F0DDC70 16 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::.ctor(class System.Collections.Concurrent.ConcurrentDictionary`2)[OptimizedTier1] +00007FA12F0DDCA0 2b instance valuetype [System.Private.CoreLib]System.Collections.Generic.KeyValuePair`2 [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::get_Current()[OptimizedTier1] +00007FA12F0DDCE0 4 instance !1 [System.Private.CoreLib] System.Collections.Generic.KeyValuePair`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::get_Value()[OptimizedTier1] +00007FA12F0DDD00 257 instance bool [System.Net.Http] System.Net.Http.HttpConnectionPool::CleanCacheAndDisposeIfUnused()[OptimizedTier1] +00007FA12F0DDF90 1 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Enumerator[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::Dispose()[OptimizedTier1] +00007FA12F0DDFC0 f6 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.Net.Http.HttpConnectionPoolManager+HttpConnectionKey,System.__Canon]::get_IsEmpty()[OptimizedTier1] +00007FA12F0DE0F0 1d instance uint8[] [System.Private.CoreLib] System.Text.UTF8Encoding+UTF8EncodingSealed::GetBytes(string)[OptimizedTier1] +00007FA12F0DE130 47 bool [System.Private.CoreLib] System.Threading.PortableThreadPool+GateThread::SufficientDelaySinceLastDequeue(class System.Threading.PortableThreadPool)[OptimizedTier1] +00007FA12F0DE190 4 instance !0 [System.Private.CoreLib] System.Nullable`1[Datadog.Trace.Vendors.Newtonsoft.Json.Formatting]::GetValueOrDefault()[OptimizedTier1] +00007FA12F2BA5E8 6f0 stub<21513> AllocateTemporaryEntryPoints +00007FA12F2BACD8 78 stub<21514> AllocateTemporaryEntryPoints +00007FA12F2BAD50 a8 stub<21515> AllocateTemporaryEntryPoints +00007FA12F2BADF8 18 stub<21516> AllocateTemporaryEntryPoints +00007FA12F2BAE10 18 stub<21517> AllocateTemporaryEntryPoints +00007FA12F2BAE28 18 stub<21518> AllocateTemporaryEntryPoints +00007FA12F0DE1C0 242 int32 [System.Net.Http] System.Net.Http.HttpConnectionPool::g__ScavengeConnectionList|118_1(class [System.Collections]System.Collections.Generic.List`1,class [System.Collections]System.Collections.Generic.List`1&,int64,valuetype [System.Runtime]System.TimeSpan,valuetype [System.Runtime]System.TimeSpan)[OptimizedTier1] +00007FA12E674400 18 stub<21519> GenerateLookupStub +00007FA12E674420 18 stub<21520> GenerateLookupStub +00007FA12F0DE440 186 void [Microsoft.Extensions.FileProviders.Physical] Microsoft.Extensions.FileProviders.Physical.PhysicalFilesWatcher::RaiseChangeEvents(object)[OptimizedTier1] +00007FA12F0DE600 bb instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldSetPropertyValue(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,object)[OptimizedTier1] +00007FA12F2BAE40 18 stub<21521> AllocateTemporaryEntryPoints +00007FA12F0DE6E0 116 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExpressionValueProvider::SetValue(object,object)[OptimizedTier1] +00007FA12F0DE830 1a5 instance int32 [System.Private.CoreLib] System.IO.StringReader::Read(char[],int32,int32)[OptimizedTier1] +00007FA12F0DE9F0 7 instance int32 [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[System.__Canon,System.Single]::get_Count()[OptimizedTier1] +00007FA12F0DEA10 10f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetExtensionData(class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,string,object)[OptimizedTier1] +00007FA12F0DEB50 8 instance class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.ExtensionDataSetter [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonObjectContract::get_ExtensionDataSetter()[OptimizedTier1] +00007FA12F0DEB80 61 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader::Skip()[OptimizedTier1] +00007FA12F0DEC00 9c void [System.Private.CoreLib] System.Buffer::_BulkMoveWithWriteBarrier(uint8&,uint8&,native uint)[OptimizedTier1] +00007FA12F0DECC0 59 instance valuetype System.Threading.PortableThreadPool/ThreadCounts [System.Private.CoreLib] System.Threading.PortableThreadPool+ThreadCounts::InterlockedSetNumThreadsGoal(int16)[OptimizedTier1] +00007FA12F0DED30 a3 instance int32 [System.Private.CoreLib] System.Text.UTF8Encoding::GetByteCount(string)[OptimizedTier1] +00007FA12F2BAE58 18 stub<21522> AllocateTemporaryEntryPoints +00007FA12F0DEDF0 9fc instance void [System.Net.Sockets] System.Net.Sockets.Socket::Dispose(bool)[OptimizedTier1] +00007FA12F0DF870 53 instance void [System.Net.Sockets] System.Net.Sockets.Socket::SetToDisconnected()[OptimizedTier1] +00007FA12F0DF8E0 2b instance void [System.Private.CoreLib] System.Runtime.InteropServices.SafeHandle::Dispose()[OptimizedTier1] +00007FA12F0DF930 b instance void [System.Private.CoreLib] System.Runtime.InteropServices.SafeHandle::Dispose(bool)[OptimizedTier1] +00007FA12F0DF950 b2 int32 [System.Net.Sockets] Interop+Sys::Close(native int)[OptimizedTier1] +00007FA12F0DFA30 38 valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketErrorPal::GetSocketErrorForNativeError(valuetype Interop/Error)[OptimizedTier1] +00007FA12F0DFA80 20 instance bool [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::TryGetValue(!0,!1&)[OptimizedTier1] +00007FA12F0DFAC0 16f instance !1& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::FindValue(!0)[OptimizedTier1] +00007FA12F0DFC60 38 instance int32& [System.Private.CoreLib] System.Collections.Generic.Dictionary`2[Interop+Error,System.Net.Sockets.SocketError]::GetBucket(uint32)[OptimizedTier1] +00007FA12F0DFCB0 e class System.Collections.Generic.EqualityComparer`1 [System.Private.CoreLib] System.Collections.Generic.EqualityComparer`1[Interop+Error]::get_Default()[OptimizedTier1] +00007FA12F0DFCD0 8 instance bool [System.Private.CoreLib] System.Collections.Generic.EnumEqualityComparer`1[Interop+Error]::Equals(!0,!0)[OptimizedTier1] +00007FA12F0DFCF0 8 bool [System.Private.CoreLib] System.Runtime.CompilerServices.RuntimeHelpers::EnumEquals(!!0,!!0)[OptimizedTier1] +00007FA12F2BAE70 18 stub<21523> AllocateTemporaryEntryPoints +00007FA12F2BAE88 18 stub<21524> AllocateTemporaryEntryPoints +00007FA12F0DFD10 d3 instance void [System.Net.Sockets] System.Net.Sockets.Socket::DisposeCachedTaskSocketAsyncEventArgs()[OptimizedTier1] +00007FA12F0DFE00 126 bool [System.Private.CoreLib] System.Threading.ThreadPool::QueueUserWorkItem(class System.Action`1,!!0,bool)[OptimizedTier1] +00007FA12F0DFF50 5 instance bool [System.Private.CoreLib] System.Threading.ExecutionContext::get_IsDefault()[OptimizedTier1] +00007FA12F0DFF70 28 instance void [System.Private.CoreLib] System.Threading.QueueUserWorkItemCallbackDefaultContext`1[System.ValueTuple`2[System.__Canon,System.Net.Http.HttpConnectionPool+RequestQueue`1+QueueItem[System.__Canon]]]::.ctor(class System.Action`1,!0)[OptimizedTier1] +00007FA12F0DFFB0 1 instance void [System.Private.CoreLib] System.Threading.QueueUserWorkItemCallbackBase::.ctor()[OptimizedTier1] +00007FA12F2BAEA0 f0 stub<21525> AllocateTemporaryEntryPoints +00007FA12F2BC000 240 stub<21526> AllocateTemporaryEntryPoints +00007FA12F2BC240 d8 stub<21527> AllocateTemporaryEntryPoints +00007FA12F2BC318 60 stub<21528> AllocateTemporaryEntryPoints +00007FA12F2BC378 18 stub<21529> AllocateTemporaryEntryPoints +00007FA12F2BC390 18 stub<21530> AllocateTemporaryEntryPoints +00007FA12F0DFFD0 ef instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1[System.__Canon]::WaitForConnectionAsync(bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E00E0 42 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0E0140 177 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2BC3A8 18 stub<21531> AllocateTemporaryEntryPoints +00007FA12F0E02F0 68 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Threading.Tasks.TaskCompletionSourceWithCancellation`1[System.__Canon]::WaitWithCancellationAsync(bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F2BC3C0 f0 stub<21532> AllocateTemporaryEntryPoints +00007FA12F2BC4B0 a8 stub<21533> AllocateTemporaryEntryPoints +00007FA12F2BC558 60 stub<21534> AllocateTemporaryEntryPoints +00007FA12F2BC5B8 18 stub<21535> AllocateTemporaryEntryPoints +00007FA12F0E0370 e0 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Threading.Tasks.TaskCompletionSourceWithCancellation`1[System.__Canon]::WaitWithCancellationAsync(valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E0470 42 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0E04D0 177 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0E0680 5e instance void [System.Private.CoreLib] System.Threading.QueueUserWorkItemCallbackDefaultContext`1[System.ValueTuple`2[System.__Canon,System.Net.Http.HttpConnectionPool+RequestQueue`1+QueueItem[System.__Canon]]]::Execute()[OptimizedTier1] +00007FA12F0E0700 1 instance void [System.Private.CoreLib] System.Threading.QueueUserWorkItemCallbackBase::Execute()[OptimizedTier1] +00007FA12F0E0720 1e instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+<>c::b__75_0(valuetype [System.Runtime]System.ValueTuple`2>)[OptimizedTier1] +00007FA12F0E0760 6e instance class [System.Runtime]System.Threading.Tasks.Task [System.Net.Http] System.Net.Http.HttpConnectionPool::AddHttp11ConnectionAsync(valuetype System.Net.Http.HttpConnectionPool/RequestQueue`1/QueueItem)[OptimizedTier1] +00007FA12F0E07F0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0E0810 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0E0970 6e instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource::.ctor(valuetype System.TimeSpan)[OptimizedTier1] +00007FA12F0E0A20 118 instance void [System.Private.CoreLib] System.Threading.CancellationTokenSource::InitializeWithTimer(uint32)[OptimizedTier1] +00007FA12F0E0B60 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0E0CC0 7e instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1> [System.Net.Http] System.Net.Http.HttpConnectionPool::ConnectAsync(class System.Net.Http.HttpRequestMessage,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E0D60 11 valuetype System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::Create()[OptimizedTier1] +00007FA12F0E0D90 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::Start(!!0&)[OptimizedTier1] +00007FA12F0E0DB0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0E0F10 9b instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPool::ConnectToTcpHostAsync(string,int32,class System.Net.Http.HttpRequestMessage,bool,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E0FD0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0E0FF0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0E1150 11f instance void [System.Net.Primitives] System.Net.DnsEndPoint::.ctor(string,int32,valuetype System.Net.Sockets.AddressFamily)[OptimizedTier1] +00007FA12F0E1290 18 void [System.Private.CoreLib] System.ArgumentException::ThrowIfNullOrEmpty(string,string)[OptimizedTier1] +00007FA12F0E12C0 cc instance void [System.Net.Sockets] System.Net.Sockets.Socket::.ctor(valuetype [System.Net.Primitives]System.Net.Sockets.AddressFamily,valuetype System.Net.Sockets.SocketType,valuetype System.Net.Sockets.ProtocolType)[OptimizedTier1] +00007FA12F0E13B0 218 valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketPal::CreateSocket(valuetype [System.Net.Primitives]System.Net.Sockets.AddressFamily,valuetype System.Net.Sockets.SocketType,valuetype System.Net.Sockets.ProtocolType,class System.Net.Sockets.SafeSocketHandle&)[OptimizedTier1] +00007FA12F0E15F0 32 instance void [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::.ctor()[OptimizedTier1] +00007FA12F0E1640 2d instance void [System.Private.CoreLib] Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid::.ctor(bool)[OptimizedTier1] +00007FA12F0E1690 5 void [System.Private.CoreLib] System.Runtime.InteropServices.Marshal::InitHandle(class System.Runtime.InteropServices.SafeHandle,native int)[OptimizedTier1] +00007FA12F0E16B0 10d instance void [System.Net.Sockets] System.Net.Sockets.Socket::SetSocketOption(valuetype System.Net.Sockets.SocketOptionLevel,valuetype System.Net.Sockets.SocketOptionName,int32)[OptimizedTier1] +00007FA12F0E17E0 205 instance void [System.Net.Sockets] System.Net.Sockets.Socket::SetSocketOption(valuetype System.Net.Sockets.SocketOptionLevel,valuetype System.Net.Sockets.SocketOptionName,int32,bool)[OptimizedTier1] +00007FA12F0E1A20 17b valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketPal::SetSockOpt(class System.Net.Sockets.SafeSocketHandle,valuetype System.Net.Sockets.SocketOptionLevel,valuetype System.Net.Sockets.SocketOptionName,int32)[OptimizedTier1] +00007FA12F0E1BC0 ad valuetype Interop/Error [System.Net.Sockets] Interop+Sys::SetSockOpt(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,valuetype System.Net.Sockets.SocketOptionLevel,valuetype System.Net.Sockets.SocketOptionName,uint8*,int32)[OptimizedTier1] +00007FA12F0E1CA0 dc instance void [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::TrackOption(valuetype System.Net.Sockets.SocketOptionLevel,valuetype System.Net.Sockets.SocketOptionName)[OptimizedTier1] +00007FA12F0E1DB0 1ae instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Sockets] System.Net.Sockets.Socket::ConnectAsync(class [System.Net.Primitives]System.Net.EndPoint,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E1F90 103 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::ConnectAsync(class System.Net.Sockets.Socket)[OptimizedTier1] +00007FA12F2BC5D0 120 stub<21536> AllocateTemporaryEntryPoints +00007FA12F2BC6F0 a8 stub<21537> AllocateTemporaryEntryPoints +00007FA12F2BC798 18 stub<21538> AllocateTemporaryEntryPoints +00007FA12F2BC7B0 18 stub<21539> AllocateTemporaryEntryPoints +00007FA12F0E20D0 47b class [System.Runtime]System.Threading.Tasks.Task [System.Net.NameResolution] System.Net.Dns::GetHostEntryOrAddressesCoreAsync(string,bool,bool,bool,valuetype [System.Net.Primitives]System.Net.Sockets.AddressFamily,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E2570 52 bool [System.Net.Primitives] System.Net.IPAddress::TryParse(string,class System.Net.IPAddress&)[OptimizedTier1] +00007FA12F2BC7C8 18 stub<21540> AllocateTemporaryEntryPoints +00007FA12F2BC7E0 60 stub<21541> AllocateTemporaryEntryPoints +00007FA12F2BC840 18 stub<21542> AllocateTemporaryEntryPoints +00007FA12F0E25E0 1a0 class System.Net.IPAddress [System.Net.Primitives] System.Net.IPAddressParser::Parse(valuetype [System.Runtime]System.ReadOnlySpan`1,bool)[OptimizedTier1] +00007FA12F0E27A0 21 bool [System.Private.CoreLib] System.MemoryExtensions::Contains(valuetype System.ReadOnlySpan`1,!!0)[OptimizedTier1] +00007FA12F0E27E0 63 bool [System.Net.Primitives] System.Net.IPAddressParser::Ipv4StringToAddress(valuetype [System.Runtime]System.ReadOnlySpan`1,int64&)[OptimizedTier1] +00007FA12F0E2860 29c int64 [System.Net.Primitives] System.IPv4AddressHelper::ParseNonCanonical(char*,int32,int32&,bool)[OptimizedTier1] +00007FA12F0E2B30 65 instance void [System.Net.Primitives] System.Net.IPAddress::.ctor(int64)[OptimizedTier1] +00007FA12F0E2BB0 e8 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::CopyBufferFrom(class System.Net.Sockets.SocketAsyncEventArgs)[OptimizedTier1] +00007FA12F0E2CC0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0E2E20 85 instance void [System.Net.Primitives] System.Net.IPEndPoint::.ctor(class System.Net.IPAddress,int32)[OptimizedTier1] +00007FA12F0E2EC0 137 instance class System.Net.Internals.SocketAddress [System.Net.Sockets] System.Net.Sockets.Socket::Serialize(class [System.Net.Primitives]System.Net.EndPoint&)[OptimizedTier1] +00007FA12F0E3020 8c class System.Net.Internals.SocketAddress [System.Net.Sockets] System.Net.Sockets.IPEndPointExtensions::Serialize(class [System.Net.Primitives]System.Net.EndPoint)[OptimizedTier1] +00007FA12F0E30D0 1a8 instance void [System.Net.Sockets] System.Net.Internals.SocketAddress::.ctor(class [System.Net.Primitives]System.Net.IPAddress)[OptimizedTier1] +00007FA12F0E32A0 99 instance void [System.Net.Sockets] System.Net.Internals.SocketAddress::.ctor(valuetype [System.Net.Primitives]System.Net.Sockets.AddressFamily,int32)[OptimizedTier1] +00007FA12F0E3360 80 void [System.Net.Sockets] System.Net.SocketAddressPal::SetAddressFamily(uint8[],valuetype [System.Net.Primitives]System.Net.Sockets.AddressFamily)[OptimizedTier1] +00007FA12F0E3400 42 instance int64 [System.Net.Primitives] System.Net.IPAddress::get_Address()[OptimizedTier1] +00007FA12F0E3460 7c void [System.Net.Sockets] System.Net.SocketAddressPal::SetIPv4Address(uint8[],uint32)[OptimizedTier1] +00007FA12F0E34F0 89 instance void [System.Net.Sockets] System.Net.Sockets.SocketsTelemetry::ConnectStart(class System.Net.Internals.SocketAddress)[OptimizedTier1] +00007FA12F0E35A0 9d instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::DoOperationConnect(class System.Net.Sockets.Socket,class System.Net.Sockets.SafeSocketHandle)[OptimizedTier1] +00007FA12F0E3660 7d instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::.ctor(class System.Net.Sockets.SafeSocketHandle)[OptimizedTier1] +00007FA12F0E3700 149 instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::ConnectAsync(uint8[],int32,class [System.Runtime]System.Action`1)[OptimizedTier1] +00007FA12F0E3870 a2 int32 [System.Net.Sockets] Interop+Sys+Fcntl::SetIsNonBlocking(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,int32)[OptimizedTier1] +00007FA12F0E3940 a1 bool [System.Net.Sockets] System.Net.Sockets.SocketPal::TryStartConnect(class System.Net.Sockets.SafeSocketHandle,uint8[],int32,valuetype [System.Net.Primitives]System.Net.Sockets.SocketError&)[OptimizedTier1] +00007FA12F0E3A00 93 valuetype Interop/Error [System.Net.Sockets] Interop+Sys::Connect(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,uint8*,int32)[OptimizedTier1] +00007FA12F2BC858 18 stub<21543> AllocateTemporaryEntryPoints +00007FA12F0E3AC0 14f instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::TryRegister(valuetype Interop/Error&)[OptimizedTier1] +00007FA12F0E3C50 94 bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncEngine::TryRegisterSocket(native int,class System.Net.Sockets.SocketAsyncContext,class System.Net.Sockets.SocketAsyncEngine&,valuetype Interop/Error&)[OptimizedTier1] +00007FA12F0E3D00 17 int32 [System.Private.CoreLib] System.Math::Abs(int32)[OptimizedTier1] +00007FA12F0E3D30 16c instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncEngine::TryRegisterCore(native int,class System.Net.Sockets.SocketAsyncContext,valuetype Interop/Error&)[OptimizedTier1] +00007FA12F0E3EC0 3c instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryAdd(!0,!1)[OptimizedTier1] +00007FA12F0E3F20 3ae instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryAddInternal(!0,valuetype [System.Private.CoreLib]System.Nullable`1,!1,bool,bool,!1&)[OptimizedTier1] +00007FA12F0E4310 34 instance void [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2+Node[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::.ctor(!0,!1,int32,class System.Collections.Concurrent.ConcurrentDictionary`2/Node)[OptimizedTier1] +00007FA12F2BC870 18 stub<21544> AllocateTemporaryEntryPoints +00007FA12F0E4360 14 instance valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceStatus [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs+MultiConnectSocketAsyncEventArgs::GetStatus(int16)[OptimizedTier1] +00007FA12F0E4390 5f instance valuetype System.Threading.Tasks.Sources.ValueTaskSourceStatus [System.Private.CoreLib] System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1[System.Boolean]::GetStatus(int16)[OptimizedTier1] +00007FA12F0E4410 6a instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask::get_IsCompleted()[OptimizedTier1] +00007FA12F0E44A0 152 instance valuetype System.Threading.Tasks.ValueTask`1 [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::get_Task()[OptimizedTier1] +00007FA12F0E4620 148 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+WriteOperation::System.Threading.IThreadPoolWorkItem.Execute()[OptimizedTier1] +00007FA12F0E4790 3f instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+ConnectOperation::DoTryComplete(class System.Net.Sockets.SocketAsyncContext)[OptimizedTier1] +00007FA12F0E47F0 d9 bool [System.Net.Sockets] System.Net.Sockets.SocketPal::TryCompleteConnect(class System.Net.Sockets.SafeSocketHandle,int32,valuetype [System.Net.Primitives]System.Net.Sockets.SocketError&)[OptimizedTier1] +00007FA12F0E4900 c8 valuetype Interop/Error [System.Net.Sockets] Interop+Sys::Poll(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,valuetype Interop/PollEvents,int32,valuetype Interop/PollEvents&)[OptimizedTier1] +00007FA12F0E4A00 82 valuetype Interop/Error [System.Net.Sockets] Interop+Sys::GetSocketErrorOption(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,valuetype Interop/Error*)[OptimizedTier1] +00007FA12F0E4AB0 1c instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+ConnectOperation::InvokeCallback(bool)[OptimizedTier1] +00007FA12F0E4AE0 12e instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::ConnectCompletionCallback(valuetype [System.Net.Primitives]System.Net.Sockets.SocketError)[OptimizedTier1] +00007FA12F0E4C30 96 instance void [System.Net.Sockets] System.Net.Sockets.Socket::SetToConnected()[OptimizedTier1] +00007FA12F0E4CE0 c1 bool [System.Net.Sockets] System.Net.Sockets.Socket::IsWildcardEndPoint(class [System.Net.Primitives]System.Net.EndPoint)[OptimizedTier1] +00007FA12F0E4DC0 17 void [System.Private.CoreLib] System.Threading.ExecutionContext::Run(class System.Threading.ExecutionContext,class System.Threading.ContextCallback,object)[OptimizedTier1] +00007FA12F0E4DF0 42 void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::ExecutionCallback(object)[OptimizedTier1] +00007FA12F0E4E50 151 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs::AfterConnectAcceptTelemetry()[OptimizedTier1] +00007FA12F0E4FC0 13 int64 [System.Private.CoreLib] System.Threading.Interlocked::Decrement(int64&)[OptimizedTier1] +00007FA12F0E4FF0 68 instance void [System.Net.Sockets] System.Net.Sockets.SocketsTelemetry::ConnectStop()[OptimizedTier1] +00007FA12F0E5070 11 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs+MultiConnectSocketAsyncEventArgs::OnCompleted(class System.Net.Sockets.SocketAsyncEventArgs)[OptimizedTier1] +00007FA12F0E50A0 a instance void [System.Private.CoreLib] System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1[System.Boolean]::SetResult(!0)[OptimizedTier1] +00007FA12F0E50C0 ae instance void [System.Private.CoreLib] System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1[System.Boolean]::SignalCompletion()[OptimizedTier1] +00007FA12F0E5190 33 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs+MultiConnectSocketAsyncEventArgs::GetResult(int16)[OptimizedTier1] +00007FA12F0E51E0 3f instance !0 [System.Private.CoreLib] System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1[System.Boolean]::GetResult(int16)[OptimizedTier1] +00007FA12F0E5240 19e instance void [System.Net.Sockets] System.Net.Sockets.NetworkStream::.ctor(class System.Net.Sockets.Socket,valuetype [System.Runtime]System.IO.FileAccess,bool)[OptimizedTier1] +00007FA12F0E5410 df instance bool [System.Net.Sockets] System.Net.Sockets.Socket::get_Connected()[OptimizedTier1] +00007FA12F0E5510 3f instance void [System.Net.Sockets] System.Net.Sockets.Socket::CheckNonBlockingConnectCompleted()[OptimizedTier1] +00007FA12F0E5570 27 instance bool [System.Net.Http] System.Net.Http.HttpConnectionPool::get_IsSecure()[OptimizedTier1] +00007FA12F0E55B0 8e instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPool::ConstructHttp11ConnectionAsync(bool,class [System.Runtime]System.IO.Stream,class [System.Net.Primitives]System.Net.TransportContext,class System.Net.Http.HttpRequestMessage,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E5660 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0E5680 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2BC888 18 stub<21545> AllocateTemporaryEntryPoints +00007FA12F2BC8A0 18 stub<21546> AllocateTemporaryEntryPoints +00007FA12F2BC8B8 18 stub<21547> AllocateTemporaryEntryPoints +00007FA12F2BC8D0 18 stub<21548> AllocateTemporaryEntryPoints +00007FA12F2BC8E8 18 stub<21549> AllocateTemporaryEntryPoints +00007FA12F0E57E0 41c instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+d__103::MoveNext()[OptimizedTier1] +00007FA12F0E5C40 8e instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1 [System.Net.Http] System.Net.Http.HttpConnectionPool::ApplyPlaintextFilterAsync(bool,class [System.Runtime]System.IO.Stream,class [System.Runtime]System.Version,class System.Net.Http.HttpRequestMessage,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E5CF0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0E5D10 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F2BC900 18 stub<21550> AllocateTemporaryEntryPoints +00007FA12F2BC918 18 stub<21551> AllocateTemporaryEntryPoints +00007FA12F2BC930 18 stub<21552> AllocateTemporaryEntryPoints +00007FA12F2BC948 18 stub<21553> AllocateTemporaryEntryPoints +00007FA12F0E5E70 600 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool+d__102::MoveNext()[OptimizedTier1] +00007FA12F0E6500 141 instance void [System.Net.Http] System.Net.Http.HttpConnection::.ctor(class System.Net.Http.HttpConnectionPool,class [System.Runtime]System.IO.Stream,class [System.Net.Primitives]System.Net.TransportContext)[OptimizedTier1] +00007FA12F0E6660 7 instance void [System.Private.CoreLib] System.WeakReference`1[System.__Canon]::.ctor(!0)[OptimizedTier1] +00007FA12F0E6680 79 instance valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Http] System.Net.Http.HttpConnection::InitialFillAsync(bool)[OptimizedTier1] +00007FA12F0E6720 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0E6740 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0E68A0 223 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0E6AF0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::.ctor()[OptimizedTier1] +00007FA12F0E6B10 56 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F0E6B90 8d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0E6C40 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::MoveNext()[OptimizedTier1] +00007FA12F0E6C60 197 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0E6E20 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0E6E40 93 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnection+d__98]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0E6EF0 199 string [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonConvert::SerializeObjectInternal(object,class [System.Runtime]System.Type,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[OptimizedTier1] +00007FA12F0E70D0 c0 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::.ctor(class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F0E71B0 23 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::UpdateCharEscapeFlags()[OptimizedTier1] +00007FA12F0E71F0 3e bool[] [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.JavaScriptUtils::GetCharEscapeFlags(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.StringEscapeHandling,char)[OptimizedTier1] +00007FA12F0E7250 7 instance valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Formatting [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::get_Formatting()[OptimizedTier1] +00007FA12F0E7270 56 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::set_Formatting(valuetype Datadog.Trace.Vendors.Newtonsoft.Json.Formatting)[OptimizedTier1] +00007FA12F0E72E0 13 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::Serialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0E7310 578 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer::SerializeInternal(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0E78B0 17 instance class [System.Runtime]System.Globalization.CultureInfo [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_Culture()[OptimizedTier1] +00007FA12F0E78E0 50 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::.ctor(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonSerializer)[OptimizedTier1] +00007FA12F0E7950 1b0 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::Serialize(class Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter,object,class [System.Runtime]System.Type)[OptimizedTier1] +00007FA12F0E7B40 29 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::Close()[OptimizedTier1] +00007FA12F0E7B90 5e instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::CloseBufferAndWriter()[OptimizedTier1] +00007FA12F0E7C10 5 instance bool [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonWriter::get_CloseOutput()[OptimizedTier1] +00007FA12F0E7C30 15 instance void [System.Private.CoreLib] System.IO.StringWriter::Close()[OptimizedTier1] +00007FA12F0E7C60 e instance void [System.Private.CoreLib] System.IO.StringWriter::Dispose(bool)[OptimizedTier1] +00007FA12F0E7C80 c instance string [System.Private.CoreLib] System.IO.StringWriter::ToString()[OptimizedTier1] +00007FA12F0E7CA0 19 instance int32 [Microsoft.AspNetCore.Routing] Microsoft.AspNetCore.Routing.Matching.ILEmitTrieJumpTable::GetDestination(string,valuetype Microsoft.AspNetCore.Routing.Matching.PathSegment)[OptimizedTier1] +00007FA12F0E7CD0 b instance void [System.Net.Http] System.Net.Http.HttpConnection::Dispose()[OptimizedTier1] +00007FA12F2BC960 18 stub<21554> AllocateTemporaryEntryPoints +00007FA12F2BC978 18 stub<21555> AllocateTemporaryEntryPoints +00007FA12F0E7CF0 126 instance void [System.Net.Http] System.Net.Http.HttpConnection::Dispose(bool)[OptimizedTier1] +00007FA12F0E7E40 83 instance void [System.Net.Http] System.Net.Http.HttpConnectionPool::InvalidateHttp11Connection(class System.Net.Http.HttpConnection,bool)[OptimizedTier1] +00007FA12F0E7EF0 5f instance void [System.Net.Sockets] System.Net.Sockets.NetworkStream::Dispose(bool)[OptimizedTier1] +00007FA12F0E7F70 67 instance void [System.Net.Sockets] System.Net.Sockets.Socket::InternalShutdown(valuetype System.Net.Sockets.SocketShutdown)[OptimizedTier1] +00007FA12F0E8000 80 valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SocketPal::Shutdown(class System.Net.Sockets.SafeSocketHandle,bool,bool,valuetype System.Net.Sockets.SocketShutdown)[OptimizedTier1] +00007FA12F0E80A0 80 valuetype Interop/Error [System.Net.Sockets] Interop+Sys::Shutdown(class [System.Runtime]System.Runtime.InteropServices.SafeHandle,valuetype System.Net.Sockets.SocketShutdown)[OptimizedTier1] +00007FA12F0E8150 12a instance void [System.Net.Sockets] System.Net.Sockets.Socket::Close(int32)[OptimizedTier1] +00007FA12F0E82A0 ad instance void [System.Net.Sockets] System.Net.Sockets.Socket::Dispose()[OptimizedTier1] +00007FA12F0E8380 147 instance void [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::CloseAsIs(bool)[OptimizedTier1] +00007FA12F0E84F0 d2 instance bool [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::ReleaseHandle()[OptimizedTier1] +00007FA12F0E85E0 10b instance bool [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::CloseHandle(bool,bool)[OptimizedTier1] +00007FA12F0E8710 85 instance bool [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext::StopAndAbort()[OptimizedTier1] +00007FA12F0E87B0 12 instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryRemove(!0,!1&)[OptimizedTier1] +00007FA12F2BC990 18 stub<21556> AllocateTemporaryEntryPoints +00007FA12F2BC9A8 a8 stub<21557> AllocateTemporaryEntryPoints +00007FA12F0E87E0 2cc instance bool [System.Collections.Concurrent] System.Collections.Concurrent.ConcurrentDictionary`2[System.IntPtr,System.Net.Sockets.SocketAsyncEngine+SocketAsyncContextWrapper]::TryRemoveInternal(!0,!1&,bool,!1)[OptimizedTier1] +00007FA12F0E8AF0 2ce instance valuetype [System.Net.Primitives]System.Net.Sockets.SocketError [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::DoCloseHandle(bool)[OptimizedTier1] +00007FA12F2BCA50 18 stub<21558> AllocateTemporaryEntryPoints +00007FA12F2BCA68 18 stub<21559> AllocateTemporaryEntryPoints +00007FA12F0E8DE0 16c instance valuetype Interop/Error [System.Net.Sockets] System.Net.Sockets.SafeSocketHandle::CloseHandle(native int)[OptimizedTier1] +00007FA12F0E8F70 56 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F0E8FF0 8d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0E90A0 2c3 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0E9390 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::.ctor()[OptimizedTier1] +00007FA12F0E93B0 56 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&)[OptimizedTier1] +00007FA12F0E9430 8d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::AwaitUnsafeOnCompleted(!!0&,!!1&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0E94E0 2c3 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0E97D0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::.ctor()[OptimizedTier1] +00007FA12F0E97F0 291 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0E9AB0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::.ctor()[OptimizedTier1] +00007FA12F0E9AD0 14 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncEventArgs+MultiConnectSocketAsyncEventArgs::OnCompleted(class [System.Runtime]System.Action`1,object,int16,valuetype [System.Runtime]System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)[OptimizedTier1] +00007FA12F2BCA80 60 stub<21560> AllocateTemporaryEntryPoints +00007FA12F2BCAE0 60 stub<21561> AllocateTemporaryEntryPoints +00007FA12F2BCB40 60 stub<21562> AllocateTemporaryEntryPoints +00007FA12F0E9B00 2cb instance void [System.Private.CoreLib] System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1[System.Boolean]::OnCompleted(class System.Action`1,object,int16,valuetype System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)[OptimizedTier1] +00007FA12F0E9DF0 9c valuetype [System.Runtime]System.Threading.Tasks.ValueTask [System.Net.Sockets] System.Net.Sockets.Socket::g__WaitForConnectWithCancellation|281_0(class System.Net.Sockets.Socket/AwaitableSocketAsyncEventArgs,valuetype [System.Runtime]System.Threading.Tasks.ValueTask,valuetype [System.Runtime]System.Threading.CancellationToken)[OptimizedTier1] +00007FA12F0E9EB0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0E9ED0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0EA030 24d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0EA2A0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::.ctor()[OptimizedTier1] +00007FA12F0EA2C0 303 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0EA5F0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::.ctor()[OptimizedTier1] +00007FA12F0EA610 2f5 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0EA930 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::.ctor()[OptimizedTier1] +00007FA12F0EA950 8 instance void [System.Private.CoreLib] System.Threading.Tasks.Task`1[System.ValueTuple`2[System.__Canon,System.__Canon]]::.ctor()[OptimizedTier1] +00007FA12F0EA970 2f5 class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0EAC90 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::.ctor()[OptimizedTier1] +00007FA12F0EACB0 12d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1+ConfiguredValueTaskAwaiter[System.ValueTuple`2[System.__Canon,System.__Canon]]::System.Runtime.CompilerServices.IStateMachineBoxAwareAwaiter.AwaitUnsafeOnCompleted(class System.Runtime.CompilerServices.IAsyncStateMachineBox)[OptimizedTier1] +00007FA12F0EAE00 26d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0EB090 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::.ctor()[OptimizedTier1] +00007FA12F0EB0B0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::MoveNext()[OptimizedTier1] +00007FA12F0EB0D0 193 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EB290 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0EB2B0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::MoveNext()[OptimizedTier1] +00007FA12F0EB2D0 1bb instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EB4B0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0EB4D0 5d instance void [System.Net.Sockets] System.Net.Sockets.Socket+AwaitableSocketAsyncEventArgs::System.Threading.Tasks.Sources.IValueTaskSource.GetResult(int16)[OptimizedTier1] +00007FA12F0EB550 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::MoveNext()[OptimizedTier1] +00007FA12F0EB570 22b instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EB7C0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0EB7E0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::MoveNext()[OptimizedTier1] +00007FA12F0EB800 220 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EBA40 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0EBA60 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::MoveNext()[OptimizedTier1] +00007FA12F0EBA80 21d instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EBCC0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0EBCE0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::MoveNext()[OptimizedTier1] +00007FA12F0EBD00 1c9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EBEF0 d void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0EBF10 c1 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Http.HttpConnectionPool+d__74]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0EBFF0 c8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__100]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0EC0D0 cb instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.ValueTuple`2[System.__Canon,System.__Canon],System.Net.Http.HttpConnectionPool+d__98]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0EC1C0 d6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+d__99]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0EC2B0 b3 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.Socket+<g__WaitForConnectWithCancellation|281_0>d]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0EC380 8f instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,System.Net.Sockets.SocketAsyncEventArgs+<g__Core|112_0>d]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0EC430 6 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::ExecuteFromThreadPool(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EC450 225 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EC6A0 41 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0EC700 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::MoveNext()[OptimizedTier1] +00007FA12F0EC720 225 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::MoveNext(class System.Threading.Thread)[OptimizedTier1] +00007FA12F0EC970 41 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::ExecutionContextCallback(object)[OptimizedTier1] +00007FA12F0EC9D0 ac instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Net.Http.HttpConnectionPool+HttpConnectionWaiter`1+d__5[System.__Canon]]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F0ECAA0 ac instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,System.Threading.Tasks.TaskCompletionSourceWithCancellation`1+d__1[System.__Canon]]::ClearStateUponCompletion()[OptimizedTier1] +00007FA12F2BCBA0 60 stub<21563> AllocateTemporaryEntryPoints +00007FA12F2BCC00 18 stub<21564> AllocateTemporaryEntryPoints +00007FA12F2BCC18 18 stub<21565> AllocateTemporaryEntryPoints +00007FA12F2BCC30 18 stub<21566> AllocateTemporaryEntryPoints +00007FA12F2BCC48 18 stub<21567> AllocateTemporaryEntryPoints +00007FA12F2BCC60 18 stub<21568> AllocateTemporaryEntryPoints +00007FA12F2BE000 540 stub<21569> AllocateTemporaryEntryPoints +00007FA12F2BE540 30 stub<21570> AllocateTemporaryEntryPoints +00007FA12F2BE570 30 stub<21571> AllocateTemporaryEntryPoints +00007FA12F2BE5A0 540 stub<21572> AllocateTemporaryEntryPoints +00007FA12F2BEAE0 30 stub<21573> AllocateTemporaryEntryPoints +00007FA12F0ECB70 372 void [System.Net.Http] System.Net.Http.HttpConnectionBase::IgnoreExceptions(valuetype [System.Runtime]System.Threading.Tasks.ValueTask`1)[OptimizedTier1] +00007FA12F0ECF00 68 instance bool [System.Private.CoreLib] System.Threading.Tasks.ValueTask`1[System.Int32]::get_IsFaulted()[OptimizedTier1] +00007FA12F2BEB10 108 stub<21574> AllocateTemporaryEntryPoints +00007FA12F2BEC18 a8 stub<21575> AllocateTemporaryEntryPoints +00007FA12F2BECC0 18 stub<21576> AllocateTemporaryEntryPoints +00007FA12F2BECD8 18 stub<21577> AllocateTemporaryEntryPoints +00007FA12F2BECF0 48 stub<21578> AllocateTemporaryEntryPoints +00007FA12F0ECF80 93 class [System.Runtime]System.Collections.Generic.IEnumerable`1 [System.Linq] System.Linq.Enumerable::SelectMany(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2>)[OptimizedTier1] +00007FA12F0ED030 b instance bool [System.Private.CoreLib] System.Threading.WaitHandle::WaitOne()[OptimizedTier1] +00007FA12F0ED050 5f instance class System.Uri [System.Private.Uri] System.UriBuilder::get_Uri()[OptimizedTier1] +00007FA12F0ED0E0 78f instance string [System.Private.Uri] System.UriBuilder::ToString()[OptimizedTier1] +00007FA12F0ED8A0 77 class System.UriParser [System.Private.Uri] System.UriParser::GetSyntax(string)[OptimizedTier1] +00007FA12F0ED930 49 instance void [System.Private.Uri] System.Uri::.ctor(string)[OptimizedTier1] +00007FA12F0ED990 2d bool [System.Private.Uri] System.IPv4AddressHelper::IsValid(char*,int32,int32&,bool,bool,bool)[OptimizedTier1] +00007FA12F0ED9E0 292 string [System.Private.Uri] System.IPv4AddressHelper::ParseCanonicalName(string,int32,int32,bool&)[OptimizedTier1] +00007FA12F0EDC90 75 bool [System.Private.Uri] System.IPv4AddressHelper::Parse(string,uint8*,int32,int32)[OptimizedTier1] +00007FA12F0EDD20 6da instance object [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateDictionary(class [System.Runtime]System.Collections.IDictionary,class Datadog.Trace.Vendors.Newtonsoft.Json.JsonReader,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonDictionaryContract,class Datadog.Trace.Vendors.Newtonsoft.Json.Serialization.JsonProperty,string)[OptimizedTier1] +00007FA12F0EE450 7e int32 [System.Private.CoreLib] System.Convert::ToBase64_CalculateAndValidateOutputLength(int32,bool)[OptimizedTier1] +00007FA12F0EE500 2a1 int32 [System.Private.CoreLib] System.Convert::ConvertToBase64Array(char*,uint8*,int32,int32,bool)[OptimizedTier1] +00007FA12F0EE7C0 25 instance void [System.Net.Sockets] System.Net.Sockets.SocketAsyncContext+AsyncOperation::.ctor(class System.Net.Sockets.SocketAsyncContext)[OptimizedTier1] +00007FA12F0EE800 112 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2[System.__Canon,System.__Canon]::Add(!0,!1)[OptimizedTier1] +00007FA12F0EE960 cf instance int32 [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2+Container[System.__Canon,System.__Canon]::FindEntry(!0,object&)[OptimizedTier1] +00007FA12F0EEA50 c9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2+Container[System.__Canon,System.__Canon]::CreateEntryNoResize(!0,!1)[OptimizedTier1] +00007FA12F0EEB40 59 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.ConditionalWeakTable`2+Container[System.__Canon,System.__Canon]::VerifyIntegrity()[OptimizedTier1] +00007FA12F0EEBC0 5e instance valuetype System.Threading.ThreadHandle [System.Private.CoreLib] System.Threading.Thread::GetNativeHandle()[OptimizedTier1] +00007FA12F0EEC40 1fc bool [System.Linq] System.Linq.Enumerable::Any(class [System.Runtime]System.Collections.Generic.IEnumerable`1)[OptimizedTier1] +00007FA12F0EEE70 54 instance class [System.Runtime]System.Threading.Tasks.Task [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::Poll()[OptimizedTier1] +00007FA12F0EEEE0 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start(!!0&)[OptimizedTier1] +00007FA12F0EEF00 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0EF060 3fa class [System.Collections]System.Collections.Generic.Dictionary`2 [System.Linq] System.Linq.Enumerable::ToDictionary(class [System.Runtime]System.Collections.Generic.IEnumerable`1,class [System.Runtime]System.Func`2,class [System.Runtime]System.Func`2,class [System.Runtime]System.Collections.Generic.IEqualityComparer`1)[OptimizedTier1] +00007FA12F0EF4A0 43 instance void [System.Private.CoreLib] System.Threading.ThreadPoolWorkQueueThreadLocals::TransferLocalWork()[OptimizedTier1] +00007FA12F0EF500 5b1 instance class Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmRequest [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager::BuildRequest(class [System.Runtime]System.Collections.Generic.IDictionary`2)[OptimizedTier1] +00007FA12F0EFAF0 37 instance uint8[] [System.Runtime.Numerics] System.Numerics.BigInteger::ToByteArray(bool,bool)[OptimizedTier1] +00007FA12F320000 318 stub<21579> AllocateTemporaryEntryPoints +00007FA12F0EFB40 45d instance uint8[] [System.Runtime.Numerics] System.Numerics.BigInteger::TryGetBytes(valuetype System.Numerics.BigInteger/GetBytesMode,valuetype [System.Runtime]System.Span`1,bool,bool,int32&)[OptimizedTier1] +00007FA12F0EFFD0 45 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClientState::.ctor(int32,int32,class [System.Collections]System.Collections.Generic.List`1,bool,string,string)[OptimizedTier1] +00007FA12F0F0030 60 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClient::.ctor(string,class [System.Runtime]System.Collections.Generic.ICollection`1,class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClientTracer,class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClientState,uint8[])[OptimizedTier1] +00007FA12F0F00B0 23 instance void [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmRequest::.ctor(class Datadog.Trace.RemoteConfigurationManagement.Protocol.RcmClient,class [System.Collections]System.Collections.Generic.List`1)[OptimizedTier1] +00007FA12F0F00F0 72 instance class [System.Runtime]System.Threading.Tasks.Task`1 [Datadog.Trace] Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi::GetConfigs(class Datadog.Trace.RemoteConfigurationManagement.Protocol.GetRcmRequest)[OptimizedTier1] +00007FA12F0F0180 9 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::Start(!!0&)[OptimizedTier1] +00007FA12F0F01A0 138 void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncMethodBuilderCore::Start(!!0&)[OptimizedTier1] +00007FA12F0F0300 a instance class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Agent.Transports.HttpClientRequestFactory::GetEndpoint(string)[OptimizedTier1] +00007FA12F0F0320 5c class [System.Runtime]System.Uri [Datadog.Trace] Datadog.Trace.Util.UriHelpers::Combine(class [System.Runtime]System.Uri,string)[OptimizedTier1] +00007FA12F0F03A0 de instance void [System.Private.Uri] System.UriBuilder::.ctor(class System.Uri)[OptimizedTier1] +00007FA12F0F04A0 5 instance string [System.Private.Uri] System.UriBuilder::get_Path()[OptimizedTier1] +00007FA12F0F04C0 316 string [Datadog.Trace] Datadog.Trace.Util.UriHelpers::Combine(string,string)[OptimizedTier1] +00007FA12F0F0800 8 instance bool [System.Private.CoreLib] System.String::EndsWith(string)[OptimizedTier1] +00007FA12F320318 270 stub<21580> AllocateTemporaryEntryPoints +00007FA12F320588 18 stub<21581> AllocateTemporaryEntryPoints +00007FA12F3205A0 18 stub<21582> AllocateTemporaryEntryPoints +00007FA12F3205B8 18 stub<21583> AllocateTemporaryEntryPoints +00007FA12F3205D0 18 stub<21584> AllocateTemporaryEntryPoints +00007FA12F3205E8 18 stub<21585> AllocateTemporaryEntryPoints +00007FA12F320600 18 stub<21586> AllocateTemporaryEntryPoints +00007FA12F0F0820 117 instance bool [System.Private.CoreLib] System.Globalization.CompareInfo::IsSuffix(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.Globalization.CompareOptions)[OptimizedTier1] +00007FA12F0F0950 8d instance bool [System.Private.CoreLib] System.Globalization.CompareInfo::IcuEndsWith(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.Globalization.CompareOptions,int32*)[OptimizedTier1] +00007FA12F0F0A00 1bf instance bool [System.Private.CoreLib] System.Globalization.CompareInfo::EndsWithOrdinalHelper(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.Globalization.CompareOptions,int32*)[OptimizedTier1] +00007FA12F0F0BE0 30 instance bool [System.Private.CoreLib] System.String::StartsWith(string)[OptimizedTier1] +00007FA12F0F0C30 ed instance bool [System.Private.CoreLib] System.Globalization.CompareInfo::IsPrefix(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.Globalization.CompareOptions)[OptimizedTier1] +00007FA12F0F0D40 8b instance bool [System.Private.CoreLib] System.Globalization.CompareInfo::IcuStartsWith(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.Globalization.CompareOptions,int32*)[OptimizedTier1] +00007FA12F0F0DE0 1ce instance bool [System.Private.CoreLib] System.Globalization.CompareInfo::StartsWithOrdinalHelper(valuetype System.ReadOnlySpan`1,valuetype System.ReadOnlySpan`1,valuetype System.Globalization.CompareOptions,int32*)[OptimizedTier1] +00007FA12F0F0FD0 69 instance void [System.Private.Uri] System.UriBuilder::set_Path(string)[OptimizedTier1] +00007FA12F0F1060 39 string [System.Private.Uri] System.Uri::InternalEscapeString(string)[OptimizedTier1] +00007FA12F0F10B0 17 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[System.Boolean]::.ctor(void*,int32)[OptimizedTier1] +00007FA12F320618 18 stub<21587> AllocateTemporaryEntryPoints +00007FA12F0F10E0 288 string [System.Private.Uri] System.UriHelper::EscapeString(string,bool,valuetype [System.Private.CoreLib]System.ReadOnlySpan`1,char,char)[OptimizedTier1] +00007FA12F0F1390 17 instance void [System.Private.CoreLib] System.Span`1[System.Boolean]::.ctor(void*,int32)[OptimizedTier1] +00007FA12F0F13C0 29 instance void [System.Private.CoreLib] System.ReadOnlySpan`1[System.Boolean]::CopyTo(valuetype System.Span`1)[OptimizedTier1] +00007FA12F0F1400 6 valuetype System.ReadOnlySpan`1 [System.Private.CoreLib] System.Span`1[System.Boolean]::op_Implicit(valuetype System.Span`1)[OptimizedTier1] +00007FA12F320630 108 stub<21588> AllocateTemporaryEntryPoints +00007FA12F320738 18 stub<21589> AllocateTemporaryEntryPoints +00007FA12F0F1420 84 instance class System.Collections.IEnumerator [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+KeyCollection[System.__Canon,System.__Canon]::System.Collections.IEnumerable.GetEnumerator()[OptimizedTier1] +00007FA12F0F14D0 1 instance void [System.Private.CoreLib] System.Collections.Generic.Dictionary`2+KeyCollection+Enumerator[System.__Canon,System.__Canon]::Dispose()[OptimizedTier1] +00007FA12F0F14F0 106 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.JsonTextWriter::WriteValue(uint8[])[OptimizedTier1] +00007FA12F0F1620 7f instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::.ctor(class [System.Runtime]System.IO.TextWriter)[OptimizedTier1] +00007FA12F0F16C0 1cb instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::Encode(uint8[],int32,int32)[OptimizedTier1] +00007FA12F0F18B0 116 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::ValidateEncode(uint8[],int32,int32)[OptimizedTier1] +00007FA12F0F19E0 b1 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::StoreLeftOverBytes(uint8[],int32,int32&)[OptimizedTier1] +00007FA12F0F1AC0 49 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::Flush()[OptimizedTier1] +00007FA12F0F1B30 9 int32 [System.Private.CoreLib] System.Convert::ToBase64CharArray(uint8[],int32,int32,char[],int32)[OptimizedTier1] +00007FA12F0F1B50 411 int32 [System.Private.CoreLib] System.Convert::ToBase64CharArray(uint8[],int32,int32,char[],int32,valuetype System.Base64FormattingOptions)[OptimizedTier1] +00007FA12F0F1F90 13 instance void [Datadog.Trace] Datadog.Trace.Vendors.Newtonsoft.Json.Utilities.Base64Encoder::WriteChars(char[],int32,int32)[OptimizedTier1] +00007FA12F0F1FC0 8e instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Debug(string,!!0,int32,string)[OptimizedTier1] +00007FA12F0F2070 9d instance void [Datadog.Trace] Datadog.Trace.Logging.DatadogSerilogLogger::Write(valuetype Datadog.Trace.Vendors.Serilog.Events.LogEventLevel,class [System.Runtime]System.Exception,string,!!0,int32,string)[OptimizedTier1] +00007FA12F0F2130 2db class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.__Canon]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0F2430 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.__Canon,Datadog.Trace.RemoteConfigurationManagement.Transport.RemoteConfigurationApi+d__6]::.ctor()[OptimizedTier1] +00007FA12F0F2450 22d class System.Runtime.CompilerServices.IAsyncStateMachineBox [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Threading.Tasks.VoidTaskResult]::GetStateMachineBox(!!0&,class System.Threading.Tasks.Task`1&)[OptimizedTier1] +00007FA12F0F26A0 8 instance void [System.Private.CoreLib] System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.Threading.Tasks.VoidTaskResult,Datadog.Trace.RemoteConfigurationManagement.RemoteConfigurationManager+d__29]::.ctor()[OptimizedTier1] diff --git a/test/ddprof_exporter-ut.cc b/test/ddprof_exporter-ut.cc index bb48552ef..9c12177a4 100644 --- a/test/ddprof_exporter-ut.cc +++ b/test/ddprof_exporter-ut.cc @@ -79,7 +79,7 @@ void fill_mock_exporter_input(ExporterInput &exporter_input, exporter_input.agentless = "yes"; exporter_input.environment = "unit-test"; exporter_input.host = url.first.c_str(); - exporter_input.site = "datadog_is_cool.com"; + exporter_input.url = "datadog_is_cool.com"; exporter_input.port = url.second.c_str(); exporter_input.service = MYNAME; exporter_input.service_version = "42"; @@ -104,20 +104,28 @@ TEST(DDProfExporter, url) { EXPECT_EQ(strcmp(exporter._url, "datadog_is_cool.com"), 0); ddprof_exporter_free(&exporter); - // Default to host if site not found // To be discussed : should we fail here ? - exporter_input.site = nullptr; + exporter_input.url = nullptr; res = ddprof_exporter_init(&exporter_input, &exporter); EXPECT_TRUE(IsDDResOK(res)); - EXPECT_EQ(strcmp(exporter._url, "25.04.1988.0"), 0); + EXPECT_EQ(strcmp(exporter._url, "http://25.04.1988.0:1234"), 0); ddprof_exporter_free(&exporter); // If no API key --> expect host fill_mock_exporter_input(exporter_input, url, false); + exporter_input.url = nullptr; res = ddprof_exporter_init(&exporter_input, &exporter); EXPECT_TRUE(IsDDResOK(res)); EXPECT_EQ(strcmp(exporter._url, "http://25.04.1988.0:1234"), 0); ddprof_exporter_free(&exporter); + + // UDS --> expect UDS + fill_mock_exporter_input(exporter_input, url, false); + exporter_input.url = "unix://some/uds/socket.sock"; + res = ddprof_exporter_init(&exporter_input, &exporter); + EXPECT_TRUE(IsDDResOK(res)); + EXPECT_EQ(strcmp(exporter._url, "unix://some/uds/socket.sock"), 0); + ddprof_exporter_free(&exporter); } TEST(DDProfExporter, simple) { @@ -152,7 +160,7 @@ TEST(DDProfExporter, simple) { res = pprof_create_profile(&pprofs, &ctx); EXPECT_TRUE(IsDDResOK(res)); - res = pprof_aggregate(&mock_output, &symbol_hdr, 1000, 1, &ctx.watchers[0], + res = pprof_aggregate(&mock_output, symbol_hdr, 1000, 1, &ctx.watchers[0], &pprofs); EXPECT_TRUE(IsDDResOK(res)); } diff --git a/test/ddprof_file_info-ut.cc b/test/ddprof_file_info-ut.cc index 799889dc5..e5e1795e0 100644 --- a/test/ddprof_file_info-ut.cc +++ b/test/ddprof_file_info-ut.cc @@ -10,14 +10,8 @@ namespace ddprof { TEST(FileInfo, move) { LogHandle handle; std::string file_path = UNIT_TEST_DATA "/test_int_value.txt"; - int fd = open(file_path.c_str(), O_RDONLY); FileInfo file_info(file_path, 24, 25); - FileInfoValue value(std::move(file_info), 1, fd); - int dup_fd = value._fd; - { - auto new_val = std::move(value); - EXPECT_EQ(new_val._fd, dup_fd); - } - EXPECT_EQ(value._fd, -1); + FileInfoValue value(std::move(file_info), 1); + EXPECT_EQ(value._info._path, file_path); } } // namespace ddprof diff --git a/test/ddprof_input-ut.cc b/test/ddprof_input-ut.cc index 276c040e6..a11be06a4 100644 --- a/test/ddprof_input-ut.cc +++ b/test/ddprof_input-ut.cc @@ -6,6 +6,7 @@ #include "ddprof_input.hpp" #include "constants.hpp" +#include "ddprof_cmdline.hpp" #include "ddprof_context.hpp" #include "ddprof_context_lib.hpp" #include "defer.hpp" @@ -19,6 +20,12 @@ using namespace std::literals; +// mocks +bool s_version_called = false; +void print_version() { s_version_called = true; } +string_view str_version() { return STRING_VIEW_LITERAL("1.2.3"); } + +namespace ddprof { class InputTest : public ::testing::Test { protected: void SetUp() override {} @@ -26,9 +33,14 @@ class InputTest : public ::testing::Test { LogHandle _handle; }; -bool s_version_called = false; -void print_version() { s_version_called = true; } -string_view str_version() { return STRING_VIEW_LITERAL("1.2.3"); } +TEST_F(InputTest, watcher_from_str) { + LogHandle handle; + const char *str_event = "sALLOC mode=l"; + PerfWatcher watcher; + bool ret = watcher_from_str(str_event, &watcher); + ASSERT_TRUE(ret); + log_watcher(&watcher, 0); +} TEST_F(InputTest, default_values) { DDProfInput input; @@ -106,7 +118,7 @@ TEST_F(InputTest, event_from_env) { DDProfInput input; bool contine_exec = true; const char *input_values[] = {MYNAME, "my_program"}; - setenv(k_events_env_variable, "sCPU,1000", 1); + setenv(k_events_env_variable, "sCPU period=1000", 1); DDRes res = ddprof_input_parse( std::size(input_values), (char **)input_values, &input, &contine_exec); @@ -139,7 +151,7 @@ TEST_F(InputTest, event_from_env) { DDProfInput input; bool contine_exec = true; const char *input_values[] = {MYNAME, "my_program"}; - setenv(k_events_env_variable, ";sCPU,1000;", 1); + setenv(k_events_env_variable, ";sCPU period=1000;", 1); DDRes res = ddprof_input_parse( std::size(input_values), (char **)input_values, &input, &contine_exec); @@ -158,8 +170,8 @@ TEST_F(InputTest, event_from_env) { { DDProfInput input; bool contine_exec = true; - const char *input_values[] = {MYNAME, "-e", "hINST,456", "my_program"}; - setenv(k_events_env_variable, "sCPU,1000;hCPU,123", 1); + const char *input_values[] = {MYNAME, "-e", "hINST per=456", "my_program"}; + setenv(k_events_env_variable, "sCPU period=1000;hCPU period=123", 1); DDRes res = ddprof_input_parse( std::size(input_values), (char **)input_values, &input, &contine_exec); @@ -192,8 +204,8 @@ TEST_F(InputTest, duplicate_events) { // Duplicate events (except tracepoints) are disallowed DDProfInput input; bool contine_exec = true; - const char *input_values[] = {MYNAME, "-e", "sCPU,456", - "-e", "sCPU,123", "my_program"}; + const char *input_values[] = { + MYNAME, "-e", "sCPU period=456", "-e", "sCPU period=123", "my_program"}; DDRes res = ddprof_input_parse( std::size(input_values), (char **)input_values, &input, &contine_exec); @@ -201,18 +213,18 @@ TEST_F(InputTest, duplicate_events) { EXPECT_TRUE(contine_exec); DDProfContext ctx; - res = ddprof_context_set(&input, &ctx); + res = context_set(&input, &ctx); EXPECT_FALSE(IsDDResOK(res)); ddprof_input_free(&input); - ddprof_context_free(&ctx); + context_free(&ctx); } { // Duplicate events (except tracepoints) are disallowed DDProfInput input; bool contine_exec = true; - const char *input_values[] = {MYNAME, "-e", "sCPU,456", "my_program"}; - setenv(k_events_env_variable, "sCPU,1000", 1); + const char *input_values[] = {MYNAME, "-e", "sCPU per=456", "my_program"}; + setenv(k_events_env_variable, "sCPU per=1000", 1); DDRes res = ddprof_input_parse( std::size(input_values), (char **)input_values, &input, &contine_exec); @@ -220,15 +232,16 @@ TEST_F(InputTest, duplicate_events) { EXPECT_TRUE(contine_exec); DDProfContext ctx; - res = ddprof_context_set(&input, &ctx); + res = context_set(&input, &ctx); EXPECT_FALSE(IsDDResOK(res)); ddprof_input_free(&input); - ddprof_context_free(&ctx); + context_free(&ctx); } } TEST_F(InputTest, presets) { + LogHandle handle; { // Default preset should be CPU + ALLOC DDProfInput input; @@ -241,7 +254,7 @@ TEST_F(InputTest, presets) { EXPECT_TRUE(contine_exec); DDProfContext ctx; - res = ddprof_context_set(&input, &ctx); + res = context_set(&input, &ctx); EXPECT_TRUE(IsDDResOK(res)); ddprof::span watchers{ctx.watchers, static_cast(ctx.num_watchers)}; @@ -260,8 +273,9 @@ TEST_F(InputTest, presets) { watchers.end()); ddprof_input_free(&input); - ddprof_context_free(&ctx); + context_free(&ctx); } + { // Default preset for PID mode should be CPU DDProfInput input; @@ -274,14 +288,14 @@ TEST_F(InputTest, presets) { EXPECT_TRUE(contine_exec); DDProfContext ctx; - res = ddprof_context_set(&input, &ctx); + res = context_set(&input, &ctx); EXPECT_TRUE(IsDDResOK(res)); EXPECT_EQ(ctx.num_watchers, 1); EXPECT_EQ(ctx.watchers[0].ddprof_event_type, DDPROF_PWE_sCPU); ddprof_input_free(&input); - ddprof_context_free(&ctx); + context_free(&ctx); } { // Check cpu_only preset @@ -295,7 +309,7 @@ TEST_F(InputTest, presets) { EXPECT_TRUE(contine_exec); DDProfContext ctx; - res = ddprof_context_set(&input, &ctx); + res = context_set(&input, &ctx); EXPECT_TRUE(IsDDResOK(res)); ddprof::span watchers{ctx.watchers, static_cast(ctx.num_watchers)}; @@ -304,7 +318,7 @@ TEST_F(InputTest, presets) { EXPECT_EQ(ctx.watchers[0].ddprof_event_type, DDPROF_PWE_sCPU); ddprof_input_free(&input); - ddprof_context_free(&ctx); + context_free(&ctx); } { // Check alloc_only preset @@ -319,7 +333,7 @@ TEST_F(InputTest, presets) { EXPECT_TRUE(contine_exec); DDProfContext ctx; - res = ddprof_context_set(&input, &ctx); + res = context_set(&input, &ctx); EXPECT_TRUE(IsDDResOK(res)); EXPECT_EQ(ctx.num_watchers, 2); @@ -327,7 +341,56 @@ TEST_F(InputTest, presets) { EXPECT_EQ(ctx.watchers[0].ddprof_event_type, DDPROF_PWE_sDUM); ddprof_input_free(&input); - ddprof_context_free(&ctx); + context_free(&ctx); + } + { + // Check manual setting of live allocation + DDProfInput input; + bool contine_exec = true; + const char *input_values[] = {MYNAME, "-e", "sALLOC mode=l", "my_program"}; + DDRes res = ddprof_input_parse( + std::size(input_values), (char **)input_values, &input, &contine_exec); + + EXPECT_TRUE(IsDDResOK(res)); + EXPECT_TRUE(contine_exec); + + DDProfContext ctx; + res = context_set(&input, &ctx); + EXPECT_TRUE(IsDDResOK(res)); + + EXPECT_EQ(ctx.num_watchers, 2); + EXPECT_EQ(ctx.watchers[1].ddprof_event_type, DDPROF_PWE_sALLOC); + EXPECT_EQ(ctx.watchers[1].output_mode, EventConfMode::kLiveCallgraph); + log_watcher(&ctx.watchers[0], 0); + log_watcher(&ctx.watchers[1], 1); + + ddprof_input_free(&input); + context_free(&ctx); + } + { + // Check cpu_live_heap preset + DDProfInput input; + bool contine_exec = true; + const char *input_values[] = {MYNAME, "--preset", "cpu_live_heap", + "my_program"}; + DDRes res = ddprof_input_parse( + std::size(input_values), (char **)input_values, &input, &contine_exec); + + EXPECT_TRUE(IsDDResOK(res)); + EXPECT_TRUE(contine_exec); + + DDProfContext ctx; + res = context_set(&input, &ctx); + EXPECT_TRUE(IsDDResOK(res)); + + EXPECT_EQ(ctx.num_watchers, 2); + EXPECT_EQ(ctx.watchers[1].ddprof_event_type, DDPROF_PWE_sALLOC); + EXPECT_EQ(ctx.watchers[1].output_mode, EventConfMode::kLiveCallgraph); + EXPECT_EQ(ctx.watchers[0].ddprof_event_type, DDPROF_PWE_sCPU); + EXPECT_EQ(ctx.watchers[0].output_mode, EventConfMode::kCallgraph); + + ddprof_input_free(&input); + context_free(&ctx); } { // Default preset should not be loaded if an event is given in input @@ -341,21 +404,21 @@ TEST_F(InputTest, presets) { EXPECT_TRUE(contine_exec); DDProfContext ctx; - res = ddprof_context_set(&input, &ctx); + res = context_set(&input, &ctx); EXPECT_TRUE(IsDDResOK(res)); EXPECT_EQ(ctx.num_watchers, 1); EXPECT_EQ(ctx.watchers[0].ddprof_event_type, DDPROF_PWE_sCPU); ddprof_input_free(&input); - ddprof_context_free(&ctx); + context_free(&ctx); } { // If preset is explicit given in input, then another event with the same // name as one of the preset events should override the preset event values DDProfInput input; bool contine_exec = true; - const char *input_values[] = {MYNAME, "-e", "sCPU,1234", + const char *input_values[] = {MYNAME, "-e", "sCPU per=1234", "--preset", "default", "my_program"}; DDRes res = ddprof_input_parse( std::size(input_values), (char **)input_values, &input, &contine_exec); @@ -364,7 +427,7 @@ TEST_F(InputTest, presets) { EXPECT_TRUE(contine_exec); DDProfContext ctx; - res = ddprof_context_set(&input, &ctx); + res = context_set(&input, &ctx); EXPECT_TRUE(IsDDResOK(res)); EXPECT_EQ(ctx.num_watchers, 2); @@ -373,6 +436,7 @@ TEST_F(InputTest, presets) { EXPECT_EQ(ctx.watchers[1].ddprof_event_type, DDPROF_PWE_sALLOC); ddprof_input_free(&input); - ddprof_context_free(&ctx); + context_free(&ctx); } } +} // namespace ddprof diff --git a/test/ddprof_pprof-ut.cc b/test/ddprof_pprof-ut.cc index 21d06bf3b..d8f5db010 100644 --- a/test/ddprof_pprof-ut.cc +++ b/test/ddprof_pprof-ut.cc @@ -36,12 +36,12 @@ TEST(DDProfPProf, init_profiles) { } void test_pprof(const DDProfPProf *pprofs) { - const ddog_Profile *profile = pprofs->_profile; + const ddog_prof_Profile *profile = pprofs->_profile; - struct ddog_SerializeResult serialized_result = - ddog_Profile_serialize(profile, nullptr, nullptr); + struct ddog_prof_Profile_SerializeResult serialized_result = + ddog_prof_Profile_serialize(profile, nullptr, nullptr); - ASSERT_EQ(serialized_result.tag, DDOG_SERIALIZE_RESULT_OK); + ASSERT_EQ(serialized_result.tag, DDOG_PROF_PROFILE_SERIALIZE_RESULT_OK); ddog_Timespec start = serialized_result.ok.start; @@ -49,7 +49,7 @@ void test_pprof(const DDProfPProf *pprofs) { time_t local_time = time(NULL); EXPECT_TRUE(local_time - start.seconds < 2); - ddog_Vec_u8 profile_vec = serialized_result.ok.buffer; + ddog_Vec_U8 profile_vec = serialized_result.ok.buffer; EXPECT_TRUE(profile_vec.ptr); @@ -57,7 +57,7 @@ void test_pprof(const DDProfPProf *pprofs) { EXPECT_TRUE(profile_vec.len > 500); EXPECT_TRUE(profile_vec.capacity >= profile_vec.len); - ddog_SerializeResult_drop(serialized_result); + ddog_prof_EncodedProfile_drop(&serialized_result.ok); } TEST(DDProfPProf, aggregate) { @@ -74,7 +74,7 @@ TEST(DDProfPProf, aggregate) { ctx.num_watchers = 1; DDRes res = pprof_create_profile(&pprof, &ctx); EXPECT_TRUE(IsDDResOK(res)); - res = pprof_aggregate(&mock_output, &symbol_hdr, 1000, 1, &ctx.watchers[0], + res = pprof_aggregate(&mock_output, symbol_hdr, 1000, 1, &ctx.watchers[0], &pprof); EXPECT_TRUE(IsDDResOK(res)); diff --git a/test/ddprofcmdline-ut.cc b/test/ddprofcmdline-ut.cc index 4a6def2e4..44e2afb13 100644 --- a/test/ddprofcmdline-ut.cc +++ b/test/ddprofcmdline-ut.cc @@ -4,6 +4,7 @@ // Datadog, Inc. #include "ddprof_cmdline.hpp" +#include "perf_archmap.hpp" #include "perf_watcher.hpp" #include @@ -47,11 +48,270 @@ TEST(CmdLineTst, NullPatterns) { TEST(CmdLineTst, FirstEventHit) { char const *str = "hCPU"; PerfWatcher watcher = {}; - ASSERT_TRUE(watcher_from_event(str, &watcher)); + ASSERT_TRUE(watcher_from_str(str, &watcher)); ASSERT_EQ(watcher.type, PERF_TYPE_HARDWARE); ASSERT_EQ(watcher.type, PERF_COUNT_HW_CPU_CYCLES); } +TEST(CmdLineTst, ParserKeyPatterns) { + PerfWatcher watcher = {}; + + // Simple events without qualification are valid event names + ASSERT_TRUE(watcher_from_str("hCPU", &watcher)); + + // Events should be tolerant of padding whitespace + // Three checks on each side to ensure fully recursive (base, 1, 2) stripping + ASSERT_TRUE(watcher_from_str(" hCPU", &watcher)); + ASSERT_TRUE(watcher_from_str(" hCPU", &watcher)); + ASSERT_TRUE(watcher_from_str(" hCPU", &watcher)); + ASSERT_TRUE(watcher_from_str("hCPU ", &watcher)); + ASSERT_TRUE(watcher_from_str("hCPU ", &watcher)); + ASSERT_TRUE(watcher_from_str("hCPU ", &watcher)); + ASSERT_TRUE(watcher_from_str(" hCPU ", &watcher)); + + // Checking only the two-sided fully recursive whitespace stripping for + // value is sufficient? + ASSERT_EQ(watcher.type, PERF_TYPE_HARDWARE); + ASSERT_EQ(watcher.config, PERF_COUNT_HW_CPU_CYCLES); + + // Extended events: e|event|eventname + ASSERT_TRUE(watcher_from_str("eventname=hCPU", &watcher)); + ASSERT_TRUE(watcher_from_str("event=hCPU", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU", &watcher)); + ASSERT_EQ(watcher.type, PERF_TYPE_HARDWARE); + ASSERT_EQ(watcher.config, PERF_COUNT_HW_CPU_CYCLES); + + // Extended events are also whitespace insensitive + ASSERT_TRUE(watcher_from_str(" e=hCPU ", &watcher)); + ASSERT_EQ(watcher.type, PERF_TYPE_HARDWARE); + ASSERT_EQ(watcher.config, PERF_COUNT_HW_CPU_CYCLES); + + // Events fail if invalid + ASSERT_FALSE(watcher_from_str("invalidEvent", &watcher)); + ASSERT_FALSE(watcher_from_str("e=invalidEvent", &watcher)); + + // Extended events with a group are tracepoints, and tracepoints are checked + // against tracefs for validity. We don't have a positive check, since that + // assumes access to tracefs + ASSERT_FALSE(watcher_from_str("e=invalidEvent g=group", &watcher)); + + // Extended events _do_ require a valid event to be specified + ASSERT_TRUE(watcher_from_str("e=hCPU l=myLabel", &watcher)); + ASSERT_FALSE(watcher_from_str("l=myLabel", &watcher)); + + // s|arg_scale|scale + ASSERT_TRUE(watcher_from_str("e=hCPU s=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU value_scale=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU scale=1", &watcher)); + + // Scale be floats and/or have sign, be zero + ASSERT_TRUE(watcher_from_str("e=hCPU s=1.0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=+1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=-1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=+1.0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=-1.0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=+0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=-0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=+0.0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU s=-0.0", &watcher)); + + // but it is too weird for scale to be given in hex? + ASSERT_FALSE(watcher_from_str("e=hCPU s=0x0f", &watcher)); + + // Floats can't be exponentials + ASSERT_FALSE(watcher_from_str("e=hCPU s=1e1", &watcher)); + + // f|frequency|freq + ASSERT_TRUE(watcher_from_str("e=hCPU f=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU freq=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU frequency=1", &watcher)); + + // p|period|per + // FIXME periods should never be negative, but we allow it for the + // allocation profiler + ASSERT_TRUE(watcher_from_str("e=hCPU p=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU per=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU period=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU period=-1", &watcher)); + + // period + frequency is ambiguous, failure + ASSERT_FALSE(watcher_from_str("e=hCPU p=1 f=1", &watcher)); + + // l|label + ASSERT_TRUE(watcher_from_str("e=hCPU l=foo", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU label=foo", &watcher)); + + // Labels can contain numbers + ASSERT_TRUE(watcher_from_str("e=hCPU label=foo123", &watcher)); + + // Labels ("words") cannot start with numbers + ASSERT_FALSE(watcher_from_str("e=hCPU label=14b31", &watcher)); + + // Labels cannot _be_ numbers + ASSERT_FALSE(watcher_from_str("e=hCPU label=14631", &watcher)); + + // m|mode + ASSERT_TRUE(watcher_from_str("e=hCPU m=g", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU mode=g", &watcher)); + + // Mode is permissive + ASSERT_TRUE(watcher_from_str("e=hCPU mode=magnanimous", &watcher)); + ASSERT_TRUE(Any(watcher.output_mode & EventConfMode::kCallgraph)); + ASSERT_TRUE(Any(watcher.output_mode & EventConfMode::kMetric)); + + // A or a designate all + ASSERT_TRUE(watcher_from_str("e=hCPU mode=A", &watcher)); + ASSERT_TRUE(Any(watcher.output_mode & EventConfMode::kCallgraph)); + ASSERT_TRUE(Any(watcher.output_mode & EventConfMode::kMetric)); + ASSERT_TRUE(watcher_from_str("e=hCPU mode=a", &watcher)); + ASSERT_TRUE(Any(watcher.output_mode & + EventConfMode::kCallgraph)); // watcher.output_mode <= + // EventConfMode::kCallgraph + ASSERT_TRUE(Any( + watcher.output_mode & + EventConfMode::kMetric)); // watcher.output_mode <= EventConfMode::kMetric + + // both m and g together designate all + ASSERT_TRUE(watcher_from_str("e=hCPU mode=MG", &watcher)); + ASSERT_TRUE(Any(watcher.output_mode & + EventConfMode::kCallgraph)); // watcher.output_mode <= + // EventConfMode::kCallgraph + ASSERT_TRUE(Any( + watcher.output_mode & + EventConfMode::kMetric)); // watcher.output_mode <= EventConfMode::kMetric + ASSERT_TRUE(watcher_from_str("e=hCPU mode=mg", &watcher)); + ASSERT_TRUE(Any(watcher.output_mode & + EventConfMode::kCallgraph)); // watcher.output_mode <= + // EventConfMode::kCallgraph + ASSERT_TRUE(Any( + watcher.output_mode & + EventConfMode::kMetric)); // watcher.output_mode <= EventConfMode::kMetric + + // M or m is a metric (no callgraph unless specified) + ASSERT_TRUE(watcher_from_str("e=hCPU mode=M", &watcher)); + ASSERT_FALSE(Any(watcher.output_mode & + EventConfMode::kCallgraph)); // watcher.output_mode <= + // EventConfMode::kCallgraph + ASSERT_TRUE(Any( + watcher.output_mode & + EventConfMode::kMetric)); // watcher.output_mode <= EventConfMode::kMetric + ASSERT_TRUE(watcher_from_str("e=hCPU mode=m", &watcher)); + ASSERT_FALSE(Any(watcher.output_mode & + EventConfMode::kCallgraph)); // watcher.output_mode <= + // EventConfMode::kCallgraph + ASSERT_TRUE(Any( + watcher.output_mode & + EventConfMode::kMetric)); // watcher.output_mode <= EventConfMode::kMetric + + // G or g designate callgraph (default) + ASSERT_TRUE(watcher_from_str("e=hCPU", &watcher)); + ASSERT_TRUE(Any(watcher.output_mode & + EventConfMode::kCallgraph)); // watcher.output_mode <= + // EventConfMode::kCallgraph + ASSERT_FALSE(Any( + watcher.output_mode & + EventConfMode::kMetric)); // watcher.output_mode <= EventConfMode::kMetric + ASSERT_TRUE(watcher_from_str("e=hCPU mode=G", &watcher)); + ASSERT_TRUE(Any(watcher.output_mode & + EventConfMode::kCallgraph)); // watcher.output_mode <= + // EventConfMode::kCallgraph + ASSERT_FALSE(Any( + watcher.output_mode & + EventConfMode::kMetric)); // watcher.output_mode <= EventConfMode::kMetric + ASSERT_TRUE(watcher_from_str("e=hCPU mode=g", &watcher)); + ASSERT_TRUE(Any(watcher.output_mode & + EventConfMode::kCallgraph)); // watcher.output_mode <= + // EventConfMode::kCallgraph + ASSERT_FALSE(Any( + watcher.output_mode & + EventConfMode::kMetric)); // watcher.output_mode <= EventConfMode::kMetric + + // n|arg_num|argno + ASSERT_TRUE(watcher_from_str("e=hCPU n=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU argno=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU arg_num=1", &watcher)); + + // argno should expand the given number into the correct sys-V register + // for the given 1-indexed parameter value + ASSERT_TRUE(watcher_from_str("e=hCPU n=1", &watcher)); + ASSERT_EQ(watcher.regno, param_to_perf_regno(1)); + ASSERT_TRUE(watcher_from_str("e=hCPU n=2", &watcher)); + ASSERT_EQ(watcher.regno, param_to_perf_regno(2)); + ASSERT_TRUE(watcher_from_str("e=hCPU n=3", &watcher)); + ASSERT_EQ(watcher.regno, param_to_perf_regno(3)); + + // 0-parameter is an error + ASSERT_FALSE(watcher_from_str("e=hCPU n=0", &watcher)); + + // argno should be bounds-checked + ASSERT_FALSE(watcher_from_str("e=hCPU n=100", &watcher)); + + // argno can only be a uint + ASSERT_FALSE(watcher_from_str("e=hCPU n=1.0", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU n=-1", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU n=rax", &watcher)); + + // ... but it CAN be a hex uint because all uints can be + ASSERT_TRUE(watcher_from_str("e=hCPU n=0x01", &watcher)); + + // o|raw_offset|rawoff + ASSERT_TRUE(watcher_from_str("e=hCPU o=0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU rawoff=0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU raw_offset=0", &watcher)); + + // rawoff is a uint. If it has an upper bound, I don't know what it is yet. + ASSERT_FALSE(watcher_from_str("e=hCPU o=1.0", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU o=-1", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU o=rax", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU o=0x0", &watcher)); + + // p|period|per + ASSERT_TRUE(watcher_from_str("e=hCPU p=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU per=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU period=1", &watcher)); + + // Period is a uint. + // FIXME temporarily relaxing this + ASSERT_FALSE(watcher_from_str("e=hCPU p=1.0", &watcher)); + // ASSERT_FALSE(watcher_from_str("e=hCPU p=-1", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU p=lots", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU p=0x0", &watcher)); + + // r|register|regno + ASSERT_TRUE(watcher_from_str("e=hCPU r=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU regno=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU register=1", &watcher)); + + // Right now the register is the linux/perf register number, which can be 0 + ASSERT_TRUE(watcher_from_str("e=hCPU r=0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU r=0x1", &watcher)); + + // ... but is still bounded by the architecture + ASSERT_FALSE(watcher_from_str("e=hCPU r=100", &watcher)); + + // z|raw_size|rawsz + ASSERT_TRUE(watcher_from_str("e=hCPU z=4", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU rawsz=4", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU raw_size=4", &watcher)); + + // Check for allowed integer sizes + ASSERT_FALSE(watcher_from_str("e=hCPU z=-1", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=0", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU z=1", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU z=2", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=3", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU z=4", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=5", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=6", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=7", &watcher)); + ASSERT_TRUE(watcher_from_str("e=hCPU z=8", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=9", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=16", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=32", &watcher)); + ASSERT_FALSE(watcher_from_str("e=hCPU z=64", &watcher)); +} + TEST(CmdLineTst, LastEventHit) { int idx = DDPROF_PWE_LENGTH - 1; const PerfWatcher *w1 = ewatcher_from_idx(idx); @@ -63,10 +323,10 @@ TEST(CmdLineTst, LastEventHit) { } TEST(CmdLineTst, LiteralEventWithGoodValue) { - char const *str = "hCPU,555"; + char const *str = "event=hCPU period=555"; PerfWatcher watcher = {}; watcher.sample_period = 12345; - ASSERT_TRUE(watcher_from_event(str, &watcher)); + ASSERT_TRUE(watcher_from_str(str, &watcher)); ASSERT_EQ(watcher.sample_period, 555); // value changed } @@ -76,17 +336,17 @@ TEST(CmdLineTst, LiteralEventWithGoodValue) { TEST(CmdLineTst, LiteralEventWithNoComma) { char const *str = "hCPU1"; PerfWatcher watcher = {}; - ASSERT_FALSE(watcher_from_event(str, &watcher)); + ASSERT_FALSE(watcher_from_str(str, &watcher)); } TEST(CmdLineTst, LiteralEventWithVeryBadValue) { - char const *str = "hCPU,apples"; + char const *str = "hCPU period=apples"; PerfWatcher watcher = {}; - ASSERT_FALSE(watcher_from_event(str, &watcher)); + ASSERT_FALSE(watcher_from_str(str, &watcher)); } TEST(CmdLineTst, LiteralEventWithKindaBadValue) { - char const *str = "hCPU,123apples"; + char const *str = "hCPU period=123apples"; PerfWatcher watcher = {}; - ASSERT_FALSE(watcher_from_event(str, &watcher)); + ASSERT_FALSE(watcher_from_str(str, &watcher)); } diff --git a/test/ddres-ut.cc b/test/ddres-ut.cc index a05533a3e..c4350da27 100644 --- a/test/ddres-ut.cc +++ b/test/ddres-ut.cc @@ -41,6 +41,11 @@ DDRes mock_fatal_generator() { "Test the log and return function %d", 42); } +DDRes mock_warn_generator() { + ++s_call_counter; + DDRES_RETURN_WARN_LOG(DD_WHAT_UNITTEST, + "Test the warn log and return function %d", 42); +} DDRes mock_fatal_default_message() { ++s_call_counter; DDRES_RETURN_ERROR_LOG(DD_WHAT_UNITTEST, DDRES_NOLOG); @@ -51,6 +56,11 @@ DDRes dderr_wrapper() { return ddres_init(); } +DDRes ddwarn_wrapper() { + DDRES_CHECK_FWD_STRICT(mock_warn_generator()); + return ddres_init(); +} + int minus_one_generator(void) { return -1; } bool false_generator(void) { return false; } @@ -80,6 +90,11 @@ TEST(DDRes, FillFatal) { ASSERT_TRUE(ddres_equal(ddres, ddres_error(DD_WHAT_UNITTEST))); } EXPECT_EQ(s_call_counter, 3); + { + DDRes ddres = ddwarn_wrapper(); + ASSERT_TRUE(ddres_equal(ddres, ddres_warn(DD_WHAT_UNITTEST))); + } + EXPECT_EQ(s_call_counter, 4); } } diff --git a/test/demangle-ut.cc b/test/demangle-ut.cc index 3e026dcf1..73316b878 100644 --- a/test/demangle-ut.cc +++ b/test/demangle-ut.cc @@ -3,7 +3,7 @@ // developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present // Datadog, Inc. -#include "llvm/Demangle/Demangle.h" +#include "demangler/demangler.hpp" #include @@ -35,12 +35,147 @@ std::vector s_demangle_cases = { "std::char_traits, std::allocator > > >&, bool, " "llvm::yaml::EmptyContext&)"}, {"_ZWowThisIsWrong", "_ZWowThisIsWrong"}, + + // Following cases were taken by the libiberty project and are used here + // with recognition + {"_ZN4main4main17he714a2e23ed7db23E", "main::main"}, + {"_ZN4main4main17he714a2e23ed7db23E", "main::main"}, + {"_ZN4main4main18h1e714a2e23ed7db23E", "main::main::h1e714a2e23ed7db23"}, + {"_ZN4main4main16h714a2e23ed7db23E", "main::main::h714a2e23ed7db23"}, + {"_ZN4main4main17he714a2e23ed7db2gE", "main::main::he714a2e23ed7db2g"}, + {"_ZN4main4$99$17he714a2e23ed7db23E", "main::$99$"}, + {"_ZN71_$LT$Test$u20$$u2b$$u20$$u27$static$u20$as$u20$foo..Bar$LT$Test$GT$$" + "GT$3bar17h930b740aa94f1d3aE", + ">::bar"}, + {"_ZN54_$LT$I$u20$as$u20$core..iter..traits..IntoIterator$GT$9into_" + "iter17h8581507801fb8615E", + "::into_iter"}, + {"_ZN10parse_tsan4main17hdbbfdf1c6a7e27d9E", "parse_tsan::main"}, + {"_ZN65_$LT$std..env..Args$u20$as$u20$core..iter..iterator..Iterator$GT$" + "4next17h420a7c8d0c7eef40E", + "::next"}, + {"_ZN4core3str9from_utf817hdcea28871313776dE", "core::str::from_utf8"}, + {"_ZN4core3mem7size_of17h18bde9bb8c22e2cfE", "core::mem::size_of"}, + {"_ZN5alloc4heap8allocate17hd55c03e6cb81d924E", "alloc::heap::allocate"}, + {"_ZN4core3ptr8null_mut17h736cce09ca0ac11aE", "core::ptr::null_mut"}, + {"_ZN40_$LT$alloc..raw_vec..RawVec$LT$T$GT$$GT$6double17h4166e2b47539e1ffE", + ">::double"}, + {"_ZN39_$LT$collections..vec..Vec$LT$T$GT$$GT$4push17hd4b6b23c1b88141aE", + ">::push"}, + {"_ZN70_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$" + "GT$9deref_mut17hf299b860dc5a831cE", + " as core::ops::DerefMut>::deref_mut"}, + {"_ZN63_$LT$core..ptr..Unique$LT$T$GT$$u20$as$u20$core..ops..Deref$GT$" + "5deref17hc784b4a166cb5e5cE", + " as core::ops::Deref>::deref"}, + {"_ZN40_$LT$alloc..raw_vec..RawVec$LT$T$GT$$GT$3ptr17h7570b6e9070b693bE", + ">::ptr"}, + {"_ZN53_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$10as_mut_" + "ptr17h153241df1c7d1666E", + "<[T] as core::slice::SliceExt>::as_mut_ptr"}, + {"_ZN4core3ptr5write17h651fe53ec860e780E", "core::ptr::write"}, + {"_ZN65_$LT$std..env..Args$u20$as$u20$core..iter..iterator..Iterator$GT$" + "4next17h420a7c8d0c7eef40E", + "::next"}, + {"_ZN54_$LT$I$u20$as$u20$core..iter..traits..IntoIterator$GT$9into_" + "iter17he06cb713aae5b465E", + "::into_iter"}, + {"_ZN71_$LT$collections..vec..IntoIter$LT$T$GT$$u20$as$u20$core..ops..Drop$" + "GT$4drop17hf7f23304ebe62eedE", + " as core::ops::Drop>::drop"}, + {"_ZN86_$LT$collections..vec..IntoIter$LT$T$GT$$u20$as$u20$core..iter.." + "iterator..Iterator$GT$4next17h04b3fbf148c39713E", + " as core::iter::iterator::Iterator>::next"}, + {"_ZN75_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator.." + "Iterator$GT$4next17ha050492063e0fd20E", + "<&'a mut I as core::iter::iterator::Iterator>::next"}, + {"_ZN13drop_contents17hfe3c0a68c8ad1c74E", "drop_contents"}, + {"_ZN13drop_contents17h48cb59bef15bb555E", "drop_contents"}, + {"_ZN4core3mem7size_of17h900b33157bf58f26E", "core::mem::size_of"}, + {"_ZN67_$LT$alloc..raw_vec..RawVec$LT$T$GT$$u20$as$u20$core..ops..Drop$GT$" + "4drop17h96a5cf6e94807905E", + " as core::ops::Drop>::drop"}, + {"_ZN68_$LT$core..nonzero..NonZero$LT$T$GT$$u20$as$u20$core..ops..Deref$GT$" + "5deref17hc49056f882aa46dbE", + " as core::ops::Deref>::deref"}, + {"_ZN63_$LT$core..ptr..Unique$LT$T$GT$$u20$as$u20$core..ops..Deref$GT$" + "5deref17h19f2ad4920655e85E", + " as core::ops::Deref>::deref"}, + {"_ZN11issue_609253foo37Foo$LT$issue_60925..llv$u6d$..Foo$GT$" + "3foo17h059a991a004536adE", + "issue_60925::foo::Foo::foo"}, + {"_RNvC6_123foo3bar", "123foo::bar"}, + {"_RNqCs4fqI2P2rA04_11utf8_identsu30____7hkackfecea1cbdathfdh9hlq6y", + "utf8_idents::საჭმელად_გემრიელი_სადილი"}, + {"_RNCNCNgCs6DXkGYLi8lr_2cc5spawn00B5_", + "cc::spawn::{closure#0}::{closure#0}"}, + {"_RNCINkXs25_NgCsbmNqQUJIY6D_4core5sliceINyB9_4IterhENuNgNoBb_" + "4iter8iterator8Iterator9rpositionNCNgNpB9_6memchr7memrchrs_0E0Bb_", + " as " + "core::iter::iterator::Iterator>::rposition::::{closure#0}"}, + {"_RINbNbCskIICzLVDPPb_5alloc5alloc8box_freeDINbNiB4_" + "5boxed5FnBoxuEp6OutputuEL_ECs1iopQbuBiw2_3std", + "alloc::alloc::box_free::>"}, + {"_RNvMC0INtC8arrayvec8ArrayVechKj7b_E3new", + ">::new"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_8UnsignedKhb_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_6SignedKs98_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_6SignedKanb_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4BoolKb0_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4BoolKb1_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4CharKc76_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4CharKca_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4CharKc2202_E", + ">"}, + {"_RNvNvMCs4fqI2P2rA04_13const_genericINtB4_3FooKpE3foo3FOO", + ">::foo::FOO"}, + {"_RNvC6_123foo3bar", "123foo::bar"}, + {"_RNqCs4fqI2P2rA04_11utf8_identsu30____7hkackfecea1cbdathfdh9hlq6y", + "utf8_idents::საჭმელად_გემრიელი_სადილი"}, + {"_RNCNCNgCs6DXkGYLi8lr_2cc5spawn00B5_", + "cc::spawn::{closure#0}::{closure#0}"}, + {"_RNCINkXs25_NgCsbmNqQUJIY6D_4core5sliceINyB9_4IterhENuNgNoBb_" + "4iter8iterator8Iterator9rpositionNCNgNpB9_6memchr7memrchrs_0E0Bb_", + " as " + "core::iter::iterator::Iterator>::rposition::::{closure#0}"}, + {"_RINbNbCskIICzLVDPPb_5alloc5alloc8box_freeDINbNiB4_" + "5boxed5FnBoxuEp6OutputuEL_ECs1iopQbuBiw2_3std", + "alloc::alloc::box_free::>"}, + {"_RNvMC0INtC8arrayvec8ArrayVechKj7b_E3new", + ">::new"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_8UnsignedKhb_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_6SignedKs98_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_6SignedKanb_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4BoolKb0_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4BoolKb1_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4CharKc76_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4CharKca_E", + ">"}, + {"_RMCs4fqI2P2rA04_13const_genericINtB0_4CharKc2202_E", + ">"}, + {"_RNvNvMCs4fqI2P2rA04_13const_genericINtB4_3FooKpE3foo3FOO", + ">::foo::FOO"}, }; #define BUF_LEN 1024 TEST(DemangleTest, Positive) { for (auto const &tcase : s_demangle_cases) { - std::string demangled_func = llvm::demangle(tcase.test); + std::string demangled_func = Demangler::demangle(tcase.test); EXPECT_EQ(demangled_func, tcase.answer); } } diff --git a/test/dso-ut.cc b/test/dso-ut.cc index 112d4b902..823d1ef53 100644 --- a/test/dso-ut.cc +++ b/test/dso-ut.cc @@ -106,7 +106,8 @@ TEST(DSOTest, intersections) { fill_mock_hdr(dso_hdr); { Dso dso_inter(10, 900, 1700); - DsoRange range = dso_hdr.get_intersection(dso_hdr._map[10], dso_inter); + DsoRange range = + dso_hdr.get_intersection(dso_hdr._pid_map[10]._map, dso_inter); EXPECT_EQ(range.first->second._pid, 10); EXPECT_EQ(range.first->second._start, 1000); // contains the 1500 -> 1999 element, WARNING the end element is after the @@ -116,21 +117,24 @@ TEST(DSOTest, intersections) { } { Dso dso_no(10, 400, 500); - DsoRange range = dso_hdr.get_intersection(dso_hdr._map[10], dso_no); + DsoRange range = + dso_hdr.get_intersection(dso_hdr._pid_map[10]._map, dso_no); DsoHdr::DsoFindRes not_found = dso_hdr.find_res_not_found(10); EXPECT_EQ(range.first, not_found.first); EXPECT_EQ(range.second, not_found.first); } { Dso dso_other_pid(9, 900, 1700); - DsoRange range = dso_hdr.get_intersection(dso_hdr._map[9], dso_other_pid); + DsoRange range = + dso_hdr.get_intersection(dso_hdr._pid_map[9]._map, dso_other_pid); DsoHdr::DsoFindRes not_found = dso_hdr.find_res_not_found(9); EXPECT_EQ(range.first, not_found.first); EXPECT_EQ(range.second, not_found.first); } { // single element Dso dso_equal_addr(10, 1200, 1400); - DsoRange range = dso_hdr.get_intersection(dso_hdr._map[10], dso_equal_addr); + DsoRange range = + dso_hdr.get_intersection(dso_hdr._pid_map[10]._map, dso_equal_addr); DsoHdr::DsoFindRes not_found = dso_hdr.find_res_not_found(10); ASSERT_TRUE(range.first != not_found.first); ASSERT_TRUE(range.second != not_found.first); @@ -154,7 +158,7 @@ TEST(DSOTest, find_same) { { Dso dso_equal_addr(10, 1000, 1400); // larger DsoFindRes find_res = - dso_hdr.dso_find_adjust_same(dso_hdr._map[10], dso_equal_addr); + dso_hdr.dso_find_adjust_same(dso_hdr._pid_map[10]._map, dso_equal_addr); ASSERT_FALSE(find_res.second); EXPECT_EQ(find_res.first->second._start, 1000); } @@ -179,16 +183,17 @@ TEST(DSOTest, insert_erase_overlap) { Dso dso_overlap(10, 1100, 1700); dso_hdr.insert_erase_overlap(std::move(dso_overlap)); } - DsoFindRes find_res = - dso_hdr.dso_find_adjust_same(dso_hdr._map[10], build_dso_10_1000()); + DsoFindRes find_res = dso_hdr.dso_find_adjust_same( + dso_hdr._pid_map[10]._map, build_dso_10_1000()); EXPECT_FALSE(find_res.second); - find_res = - dso_hdr.dso_find_adjust_same(dso_hdr._map[10], build_dso_10_1500()); + find_res = dso_hdr.dso_find_adjust_same(dso_hdr._pid_map[10]._map, + build_dso_10_1500()); EXPECT_FALSE(find_res.second); EXPECT_EQ(dso_hdr.get_nb_dso(), 3); { Dso dso_overlap_2(10, 1100, 1700); - find_res = dso_hdr.dso_find_adjust_same(dso_hdr._map[10], dso_overlap_2); + find_res = dso_hdr.dso_find_adjust_same(dso_hdr._pid_map[10]._map, + dso_overlap_2); EXPECT_TRUE(find_res.second); } } @@ -202,21 +207,22 @@ TEST(DSOTest, path_type) { } // clang-format off -static const char *s_exec_line = "55d7883a1000-55d7883a5000 r-xp 00002000 fe:01 3287864 /usr/local/bin/BadBoggleSolver_run"; -static const char *s_exec_line2 = "55d788391000-55d7883a1000 r-xp 00002000 fe:01 0 /usr/local/bin/BadBoggleSolver_run_2"; -static const char *s_exec_line3 = "55d788391000-55d7883a1001 r-xp 00002000 fe:01 0 /usr/local/bin/BadBoggleSolver_run_3"; +static const char *const s_exec_line = "55d7883a1000-55d7883a5000 r-xp 00002000 fe:01 3287864 /usr/local/bin/BadBoggleSolver_run"; +static const char *const s_exec_line2 = "55d788391000-55d7883a1000 r-xp 00002000 fe:01 0 /usr/local/bin/BadBoggleSolver_run_2"; +static const char *const s_exec_line3 = "55d788391000-55d7883a1001 r-xp 00002000 fe:01 0 /usr/local/bin/BadBoggleSolver_run_3"; // same as number 3 though smaller -static const char *s_exec_line4 = "55d788391000-55d7883a1000 r-xp 00002000 fe:01 0 /usr/local/bin/BadBoggleSolver_run_3"; +static const char *const s_exec_line4 = "55d788391000-55d7883a1000 r-xp 00002000 fe:01 0 /usr/local/bin/BadBoggleSolver_run_3"; -static const char *s_line_noexec = "7f531437a000-7f531437b000 r--p 00000000 fe:01 3932979 /usr/lib/x86_64-linux-gnu/ld-2.31.so"; -static const char *s_vdso_lib = "7ffcd6ce6000-7ffcd6ce8000 r-xp 00000000 00:00 0 [vdso]"; -static const char *s_stack_line = "7ffcd6c68000-7ffcd6c89000 rw-p 00000000 00:00 0 [stack]"; -static const char *s_inode_line = "7ffcd6c89000-7ffcd6c92000 rw-p 00000000 00:00 0 anon_inode:[perf_event]"; +static const char *const s_line_noexec = "7f531437a000-7f531437b000 r--p 00000000 fe:01 3932979 /usr/lib/x86_64-linux-gnu/ld-2.31.so"; +static const char *const s_vdso_lib = "7ffcd6ce6000-7ffcd6ce8000 r-xp 00000000 00:00 0 [vdso]"; +static const char *const s_stack_line = "7ffcd6c68000-7ffcd6c89000 rw-p 00000000 00:00 0 [stack]"; +static const char *const s_inode_line = "7ffcd6c89000-7ffcd6c92000 rw-p 00000000 00:00 0 anon_inode:[perf_event]"; -static const char *s_jsa_line = "0x800000000-0x800001fff rw-p 00000000 00:00 0 /usr/local/openjdk-11/lib/server/classes.jsa"; +static const char *const s_jsa_line = "0x800000000-0x800001fff rw-p 00000000 00:00 0 /usr/local/openjdk-11/lib/server/classes.jsa"; -static const char *s_dd_profiling = "0x800000000-0x800001fff rw-p 00000000 00:00 0 /tmp/libdd_profiling.so.1234"; -static const char *s_dotnet_line = "7fbd4f1e4000-7fbd4f1ec000 r--s 00000000 ca:01 140372 /usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.5/System.Runtime.dll"; +static const char *const s_dd_profiling = "0x800000000-0x800001fff rw-p 00000000 00:00 0 /tmp/libdd_profiling.so.1234"; +static const char *const s_dotnet_line = "7fbd4f1e4000-7fbd4f1ec000 r--s 00000000 ca:01 140372 /usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.5/System.Runtime.dll"; +static const char *const s_jitdump_line = "7b5242e44000-7b5242e45000 r-xp 00000000 fd:06 22295230 /home/r1viollet/.debug/jit/llvm-IR-jit-20230131-981d92/jit-3237589.dump"; // clang-format on TEST(DSOTest, dso_from_procline) { @@ -289,6 +295,11 @@ TEST(DSOTest, dso_from_procline) { DsoHdr::dso_from_procline(10, const_cast(s_dd_profiling)); EXPECT_EQ(dd_profiling_dso._type, dso::kDDProfiling); } + { + Dso jitdump_dso = + DsoHdr::dso_from_procline(3237589, const_cast(s_jitdump_line)); + EXPECT_EQ(jitdump_dso._type, dso::kJITDump); + } } // Retrieves instruction pointer @@ -318,7 +329,7 @@ TEST(DSOTest, backpopulate) { EXPECT_EQ(filename_procfs, filename_disk); // manually erase the unit test's binary - dso_hdr._map[getpid()].erase(find_res.first); + dso_hdr._pid_map[getpid()]._map.erase(find_res.first); find_res = dso_hdr.dso_find_or_backpopulate(getpid(), ip); EXPECT_FALSE(find_res.second); } @@ -351,24 +362,37 @@ TEST(DSOTest, mmap_into_backpop) { int nb_elts; dso_hdr.pid_backpopulate(my_pid, nb_elts); EXPECT_TRUE(nb_elts); - DsoHdr::DsoMap &map = dso_hdr._map[my_pid]; + DsoHdr::PidMapping &pid_mapping = dso_hdr._pid_map[my_pid]; bool found = false; - for (auto &el : map) { + for (auto &el : pid_mapping._map) { Dso &dso = el.second; // emulate an insert of big size if (dso._filename.find("c++") != std::string::npos && dso._pgoff == 0) { Dso copy(dso); copy._end = copy._start + 0x388FFF; found = true; - dso_hdr.insert_erase_overlap(map, std::move(copy)); + dso_hdr.insert_erase_overlap(pid_mapping, std::move(copy)); } } EXPECT_TRUE(found); - dso_hdr.pid_backpopulate(my_pid, nb_elts); // TODO: To be discussed - should we erase overlaping or not } +TEST(DSOTest, insert_jitdump) { + // mmap the jitdump file + DsoHdr dso_hdr; + // pid from dso line (important for the jitdump name) + pid_t test_pid = 3237589; + Dso jitdump_dso = + DsoHdr::dso_from_procline(test_pid, const_cast(s_jitdump_line)); + EXPECT_EQ(jitdump_dso._type, dso::kJITDump); + ProcessAddress_t start = jitdump_dso._start; + DsoHdr::PidMapping &pid_mapping = dso_hdr._pid_map[test_pid]; + dso_hdr.insert_erase_overlap(pid_mapping, std::move(jitdump_dso)); + EXPECT_EQ(start, pid_mapping._jitdump_addr); +} + TEST(DSOTest, exe_name) { LogHandle handle; ElfAddress_t ip = _THIS_IP_; @@ -413,4 +437,21 @@ TEST(DSOTest, user_change) { } } +TEST(DSOTest, large_backpopulate) { + LogHandle handle; + // This is a test of the same java application one minute apart + // This can be useful to bench the backpopulate + std::string path_to_proc = std::string(UNIT_TEST_DATA) + "/dso-ut/step-1"; + DsoHdr dso_hdr(path_to_proc); + int elts_added; + dso_hdr.pid_backpopulate(2, elts_added); + path_to_proc = std::string(UNIT_TEST_DATA) + "/dso-ut/step-2"; + ASSERT_EQ(dso_hdr.get_nb_dso(), 1759); + ASSERT_EQ(dso_hdr.get_nb_dso(), elts_added); + dso_hdr.reset_backpopulate_state(0); + dso_hdr.set_path_to_proc(path_to_proc); + dso_hdr.pid_backpopulate(2, elts_added); + // check that there is no growth + ASSERT_EQ(dso_hdr.get_nb_dso(), 1759); +} } // namespace ddprof diff --git a/test/dwfl_module-ut.cc b/test/dwfl_module-ut.cc index c9b41c93f..5d545d939 100644 --- a/test/dwfl_module-ut.cc +++ b/test/dwfl_module-ut.cc @@ -1,16 +1,23 @@ -#include "dso_hdr.hpp" -#include "dwfl_hdr.hpp" - +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. #include -#include #include "ddprof_module.hpp" -#include "ddprof_module_lib.hpp" - +#include "dso_hdr.hpp" +#include "dwfl_hdr.hpp" #include "dwfl_internals.hpp" #include "dwfl_symbol.hpp" #include "loghandle.hpp" +#include +#include +#include +#include +#include +#include + namespace ddprof { // Retrieves instruction pointer @@ -21,55 +28,150 @@ namespace ddprof { (unsigned long)&&__here; \ }) +namespace fs = std::filesystem; + +int cound_fds(pid_t pid) { + std::string proc_dir = "/proc/" + std::to_string(pid) + "/fd"; + int fd_count = 0; + for ([[maybe_unused]] const auto &entry : fs::directory_iterator(proc_dir)) { + ++fd_count; + } + return fd_count; +} + TEST(DwflModule, inconsistency_test) { + pid_t my_pid = getpid(); + int nb_fds_start = cound_fds(my_pid); + printf("-- Start open file descriptors: %d\n", nb_fds_start); LogHandle handle; // Load DSOs from our unit test ElfAddress_t ip = _THIS_IP_; DsoHdr dso_hdr; - pid_t my_pid = getpid(); DsoHdr::DsoFindRes find_res = dso_hdr.dso_find_or_backpopulate(my_pid, ip); // Check that we found the DSO matching this IP ASSERT_TRUE(find_res.second); + { + DwflWrapper dwfl_wrapper; + // retrieve the map associated to pid + DsoHdr::DsoMap &dso_map = dso_hdr._pid_map[my_pid]._map; - DwflWrapper dwfl_wrapper; - // retrieve the map associated to pid - DsoHdr::DsoMap &dso_map = dso_hdr._map[my_pid]; + for (auto it = dso_map.begin(); it != dso_map.end(); ++it) { + Dso &dso = it->second; + if (!dso::has_relevant_path(dso._type) || !dso._executable) { + continue; // skip non exec / non standard (anon/vdso...) + } - for (auto it = dso_map.begin(); it != dso_map.end(); ++it) { - Dso &dso = it->second; - if (!dso::has_relevant_path(dso._type) || !dso._executable) { - continue; // skip non exec / non standard (anon/vdso...) + FileInfoId_t file_info_id = dso_hdr.get_or_insert_file_info(dso); + ASSERT_TRUE(file_info_id > k_file_info_error); + + const FileInfoValue &file_info_value = + dso_hdr.get_file_info_value(file_info_id); + DDProfMod *ddprof_mod = + dwfl_wrapper.register_mod(dso._start, dso, file_info_value); + ASSERT_TRUE(ddprof_mod->_mod); + if (find_res.first == it) { + Symbol symbol; + GElf_Sym elf_sym; + Offset_t lbiais; + bool res = + symbol_get_from_dwfl(ddprof_mod->_mod, ip, symbol, elf_sym, lbiais); + EXPECT_TRUE(res); + EXPECT_EQ("ddprof::DwflModule_inconsistency_test_Test::TestBody()", + symbol._demangle_name); + EXPECT_EQ(lbiais, ddprof_mod->_sym_bias); + FileAddress_t elf_addr = ip - ddprof_mod->_sym_bias; + FileAddress_t start_sym, end_sym = {}; + res = compute_elf_range(elf_addr, elf_sym, start_sym, end_sym); + EXPECT_TRUE(res); + printf("Start --> 0x%lx - end %lx - lbiais 0x%lx <--\n", start_sym, + end_sym, lbiais); + EXPECT_GE(elf_addr, start_sym); + EXPECT_LE(elf_addr, end_sym); + + // Only expect build-id on this binary (as we can not force it on + // others) + EXPECT_FALSE(ddprof_mod->_build_id.empty()); + } + // check that we loaded all mods matching the DSOs + EXPECT_EQ(ddprof_mod->_status, DDProfMod::kUnknown); } + } + int nb_fds_end = cound_fds(my_pid); + printf("-- End open file descriptors: %d\n", nb_fds_end); + EXPECT_EQ(nb_fds_start, nb_fds_end); +} + +TEST(DwflModule, short_lived) { + // Here we are testing that short lived forks don't keep the reference of + // first file we encounter. By accessing the file through /proc we can fail to + // access the same file for later pids. + LogHandle handle; + // Load DSOs from our unit test + ElfAddress_t ip = _THIS_IP_; + DsoHdr dso_hdr; + + pid_t child_pid = fork(); + if (child_pid == 0) { + // First child process + sleep(1); + exit(0); + } + // Parse the first pid + dso_hdr.dso_find_or_backpopulate(child_pid, ip); + + { + DwflWrapper dwfl_wrapper; + // retrieve the map associated to pid + DsoHdr::DsoMap &dso_map = dso_hdr._pid_map[child_pid]._map; + + for (auto it = dso_map.begin(); it != dso_map.end(); ++it) { + Dso &dso = it->second; + if (!dso::has_relevant_path(dso._type) || !dso._executable) { + continue; // skip non exec / non standard (anon/vdso...) + } + + FileInfoId_t file_info_id = dso_hdr.get_or_insert_file_info(dso); + ASSERT_TRUE(file_info_id > k_file_info_error); + + const FileInfoValue &file_info_value = + dso_hdr.get_file_info_value(file_info_id); + DDProfMod *ddprof_mod = + dwfl_wrapper.register_mod(dso._start, dso, file_info_value); + ASSERT_TRUE(ddprof_mod->_mod); + } + } + // Wait for the first PID to die + waitpid(child_pid, nullptr, 0); + + pid_t second_child_pid = fork(); + if (second_child_pid == 0) { + // Second child process + sleep(1); + exit(0); + } + + // Parse the second pid + dso_hdr.dso_find_or_backpopulate(second_child_pid, ip); + { + DwflWrapper dwfl_wrapper; + // retrieve the map associated to pid + DsoHdr::DsoMap &dso_map = dso_hdr._pid_map[second_child_pid]._map; + + for (auto it = dso_map.begin(); it != dso_map.end(); ++it) { + Dso &dso = it->second; + if (!dso::has_relevant_path(dso._type) || !dso._executable) { + continue; // skip non exec / non standard (anon/vdso...) + } + + FileInfoId_t file_info_id = dso_hdr.get_or_insert_file_info(dso); + ASSERT_TRUE(file_info_id > k_file_info_error); - FileInfoId_t file_info_id = dso_hdr.get_or_insert_file_info(dso); - ASSERT_TRUE(file_info_id > k_file_info_error); - - const FileInfoValue &file_info_value = - dso_hdr.get_file_info_value(file_info_id); - DDProfMod *ddprof_mod = - dwfl_wrapper.register_mod(dso._start, dso, file_info_value); - EXPECT_TRUE(ddprof_mod->_mod); - if (find_res.first == it) { - Symbol symbol; - GElf_Sym elf_sym; - Offset_t lbiais; - bool res = - symbol_get_from_dwfl(ddprof_mod->_mod, ip, symbol, elf_sym, lbiais); - EXPECT_TRUE(res); - EXPECT_EQ("ddprof::DwflModule_inconsistency_test_Test::TestBody()", - symbol._demangle_name); - EXPECT_EQ(lbiais, ddprof_mod->_sym_bias); - FileAddress_t elf_addr = ip - ddprof_mod->_sym_bias; - FileAddress_t start_sym, end_sym = {}; - res = compute_elf_range(elf_addr, elf_sym, start_sym, end_sym); - EXPECT_TRUE(res); - printf("Start --> 0x%lx - end %lx - lbiais 0x%lx <--\n", start_sym, - end_sym, lbiais); - EXPECT_GE(elf_addr, start_sym); - EXPECT_LE(elf_addr, end_sym); + const FileInfoValue &file_info_value = + dso_hdr.get_file_info_value(file_info_id); + DDProfMod *ddprof_mod = + dwfl_wrapper.register_mod(dso._start, dso, file_info_value); + ASSERT_TRUE(ddprof_mod->_mod); } - // check that we loaded all mods matching the DSOs - EXPECT_EQ(ddprof_mod->_status, DDProfMod::kUnknown); } } diff --git a/test/jitdump-ut.cc b/test/jitdump-ut.cc new file mode 100644 index 000000000..aa0e3fb0a --- /dev/null +++ b/test/jitdump-ut.cc @@ -0,0 +1,33 @@ +#include + +#include "jit/jitdump.hpp" +#include "loghandle.hpp" + +namespace ddprof { + +TEST(JITTest, SimpleRead) { + LogHandle handle; + std::string jit_path = + std::string(UNIT_TEST_DATA) + "/" + std::string("jit-simple-julia.dump"); + JITDump jit_dump; + DDRes res = jitdump_read(jit_path, jit_dump); + ASSERT_TRUE(IsDDResOK(res)); + EXPECT_EQ(jit_dump.header.version, k_jit_header_version); + EXPECT_EQ(jit_dump.code_load.size(), 13); + EXPECT_EQ(jit_dump.debug_info.size(), 8); +} + +TEST(JITTest, DotnetJITDump) { + LogHandle handle; + std::string jit_path = std::string(UNIT_TEST_DATA) + "/" + + std::string("jit-dotnet-partial.dump"); + JITDump jit_dump; + DDRes res = jitdump_read(jit_path, jit_dump); + // File is incomplete + ASSERT_TRUE(!IsDDResFatal(res) && !IsDDResOK(res)); + EXPECT_EQ(jit_dump.header.version, k_jit_header_version); + EXPECT_EQ(jit_dump.code_load.size(), 8424); + EXPECT_EQ(jit_dump.debug_info.size(), 0); +} + +} // namespace ddprof diff --git a/test/live_allocation-ut.cc b/test/live_allocation-ut.cc new file mode 100644 index 000000000..2137fbd28 --- /dev/null +++ b/test/live_allocation-ut.cc @@ -0,0 +1,131 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. This product includes software +// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present +// Datadog, Inc. + +#include "live_allocation.hpp" +#include "loghandle.hpp" + +#include + +namespace ddprof { + +TEST(LiveAllocationTest, simple) { + LogHandle handle; + UnwindOutput uo; + uo.pid = 123; + uo.tid = 456; + uo.is_incomplete = false; + uo.locs.push_back({0x1234, 0x5678, 0x9abc}); + uo.locs.push_back({0x4321, 0x8765, 0xcba9}); + + LiveAllocation live_alloc; + int watcher_pos = 0; + pid_t pid = 12; + int64_t value = 10; + int64_t nb_registered_allocs = 10; + { // allocate 10 + uintptr_t addr = 0x10; + for (int i = 0; i < nb_registered_allocs; ++i) { + live_alloc.register_allocation(uo, addr, value, watcher_pos, pid); + addr += 0x10; + } + } + // Check that the hash values are equal + // EXPECT_EQ(hash_value, expected_hash_value); + auto &pid_map = live_alloc._watcher_vector[0]; + EXPECT_EQ(pid_map.size(), 1); + auto &pid_stacks = pid_map[pid]; + // all allocations are registerd + EXPECT_EQ(pid_stacks._address_map.size(), nb_registered_allocs); + // though the stack is the same + ASSERT_EQ(pid_stacks._unique_stacks.size(), 1); + const auto &el = pid_stacks._unique_stacks[uo]; + EXPECT_EQ(el._value, 100); + + { // allocate 10 + uintptr_t addr = 0x10; + for (int i = 0; i < nb_registered_allocs; ++i) { + live_alloc.register_deallocation(addr, watcher_pos, pid); + addr += 0x10; + } + } + // all allocations are de-registerd + EXPECT_EQ(pid_stacks._address_map.size(), 0); + // though the stack is the same + EXPECT_EQ(pid_stacks._unique_stacks.size(), 0); +} + +TEST(LiveAllocationTest, invalid_inputs) { + LiveAllocation live_alloc; + int watcher_pos = 0; + pid_t pid = 12; + int64_t value = 10; + UnwindOutput uo; + + // Register allocation with empty UnwindOutput + uintptr_t addr = 0x10; + EXPECT_NO_THROW( + live_alloc.register_allocation(uo, addr, value, watcher_pos, pid)); + auto &pid_map = live_alloc._watcher_vector[0]; + auto &pid_stacks = pid_map[pid]; + // for now we don't consider them + EXPECT_EQ(pid_stacks._address_map.size(), 0); + EXPECT_EQ(pid_stacks._unique_stacks.size(), 0); + + // Register allocation with negative value + uo.pid = 123; + uo.tid = 456; + uo.is_incomplete = false; + uo.locs.push_back({0x1234, 0x5678, 0x9abc}); + // We will register them (though probably cause a UI bug...) + EXPECT_NO_THROW( + live_alloc.register_allocation(uo, addr, -1, watcher_pos, pid)); + // Register deallocation with invalid address + EXPECT_NO_THROW(live_alloc.register_deallocation(0, watcher_pos, pid)); +} + +TEST(LiveAllocationTest, overlap_registrations) { + LogHandle handle; + LiveAllocation live_alloc; + int watcher_pos = 0; + pid_t pid = 12; + int64_t value = 10; + UnwindOutput uo; + + uintptr_t addr = 0x10; + uo.pid = 123; + uo.tid = 456; + uo.is_incomplete = false; + uo.locs.push_back({0x1234, 0x5678, 0x9abc}); + + // Register the first allocation + live_alloc.register_allocation(uo, addr, value, watcher_pos, pid); + auto &pid_map = live_alloc._watcher_vector[0]; + auto &pid_stacks = pid_map[pid]; + EXPECT_EQ(pid_stacks._address_map.size(), 1); + EXPECT_EQ(pid_stacks._unique_stacks.size(), 1); + + // Register a second allocation at the same address + // elements can arrive out of order, so this can be expected + live_alloc.register_allocation(uo, addr, value * 2, watcher_pos, pid); + EXPECT_EQ(pid_stacks._address_map.size(), 1); + EXPECT_EQ(pid_stacks._unique_stacks.size(), 1); + + // Check that the value and count have the latest value + auto &el = pid_stacks._unique_stacks[uo]; + EXPECT_EQ(el._value, value * 2); + EXPECT_EQ(el._count, 1); + + // Deallocate the first allocation + live_alloc.register_deallocation(addr, watcher_pos, pid); + EXPECT_EQ(pid_stacks._address_map.size(), 0); + EXPECT_EQ(pid_stacks._unique_stacks.size(), 0); + + // Deallocate the second allocation + live_alloc.register_deallocation(addr, watcher_pos, pid); + EXPECT_EQ(pid_stacks._address_map.size(), 0); + EXPECT_EQ(pid_stacks._unique_stacks.size(), 0); +} + +} // namespace ddprof diff --git a/test/mmap-ut.cc b/test/mmap-ut.cc index d080e0d61..129459954 100644 --- a/test/mmap-ut.cc +++ b/test/mmap-ut.cc @@ -47,7 +47,7 @@ TEST(MMapTest, PerfOpen) { // Pure-userspace software events should all pass. Anything else should hit // this filter if (watcher->type != PERF_TYPE_SOFTWARE || - watcher->options.is_kernel == kPerfWatcher_Required) { + watcher->options.use_kernel == PerfWatcherUseKernel::kRequired) { continue; } EXPECT_TRUE(perf_fd != -1); diff --git a/test/perf_ringbuffer-ut.cc b/test/perf_ringbuffer-ut.cc index a70a7807e..ab2404c65 100644 --- a/test/perf_ringbuffer-ut.cc +++ b/test/perf_ringbuffer-ut.cc @@ -46,6 +46,11 @@ bool sample_eq(struct perf_event_sample *s1, struct perf_event_sample *s2) { return false; } + if (s1->size_raw && memcmp(s1->data_raw, s2->data_raw, s1->size_raw)) { + printf("Raw mismatch\n"); + return false; + } + // TODO hardcoded register number, should get from ABI if (s1->abi && memcmp(s1->regs, s2->regs, 3)) { printf("Register mismatch\n"); @@ -58,10 +63,14 @@ bool sample_eq(struct perf_event_sample *s1, struct perf_event_sample *s2) { TEST(PerfRingbufferTest, SampleSymmetryx86) { // Setup the reference sample uint64_t mask = perf_event_default_sample_type(); - mask |= PERF_SAMPLE_IDENTIFIER | PERF_SAMPLE_IP | PERF_SAMPLE_ADDR; + mask |= PERF_SAMPLE_IDENTIFIER | PERF_SAMPLE_IP | PERF_SAMPLE_ADDR | + PERF_SAMPLE_RAW; char default_stack[4096] = {0}; for (uint64_t i = 0; i < std::size(default_stack); i++) default_stack[i] = i & 255; + char default_raw[16] = {0}; + for (uint64_t i = 0; i < sizeof(default_raw) / sizeof(*default_raw); i++) + default_raw[i] = (i + 11) & 255; uint64_t default_regs[PERF_REGS_COUNT] = {}; for (int i = 0; i < PERF_REGS_COUNT; ++i) { default_regs[i] = 1ull << i; @@ -76,7 +85,9 @@ TEST(PerfRingbufferTest, SampleSymmetryx86) { sample.time = 0x5 * default_val; sample.addr = 0x6 * default_val; sample.period = 0x7 * default_val; - // s_id, v, nr, ips, size_raw, data_raw, bnr, lbr -- untested because unused! + // s_id, v, nr, ips, bnr, lbr -- untested because unused! + sample.size_raw = sizeof(default_raw) / sizeof(*default_raw); + sample.data_raw = default_raw; sample.abi = PERF_SAMPLE_REGS_ABI_64; sample.regs = default_regs; sample.size_stack = 4096; diff --git a/test/pthread_deadlock-ut.sh b/test/pthread_deadlock-ut.sh index 571a1d4b4..3467c4f0d 100755 --- a/test/pthread_deadlock-ut.sh +++ b/test/pthread_deadlock-ut.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash set -euo pipefail -timeout 5s ./ddprof -X no -e sALLOC,1 ./test/pthread_deadlock +timeout 5s ./ddprof -X no -e 'sALLOC period=1' ./test/pthread_deadlock diff --git a/test/runtime_symbol_lookup-ut.cc b/test/runtime_symbol_lookup-ut.cc index 2113f0174..1fbea0fae 100644 --- a/test/runtime_symbol_lookup-ut.cc +++ b/test/runtime_symbol_lookup-ut.cc @@ -60,4 +60,119 @@ TEST(runtime_symbol_lookup, overflow) { } } +TEST(runtime_symbol_lookup, jitdump_simple) { + LogHandle log_handle; + pid_t mypid = getpid(); + SymbolTable symbol_table; + RuntimeSymbolLookup runtime_symbol_lookup(""); + ProcessAddress_t pc = 0x7bea23b00390; + std::string jit_path = + std::string(UNIT_TEST_DATA) + "/" + "jit-simple-julia.dump"; + SymbolIdx_t symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + mypid, pc, symbol_table, jit_path); + ASSERT_NE(symbol_idx, -1); + ASSERT_EQ(std::string("julia_b_11"), symbol_table[symbol_idx]._demangle_name); +} + +TEST(runtime_symbol_lookup, double_load) { + // ensure we don't increase number of symbols when we load several times + LogHandle log_handle; + pid_t mypid = getpid(); + SymbolTable symbol_table; + RuntimeSymbolLookup runtime_symbol_lookup(""); + ProcessAddress_t pc = 0xbadbeef; + std::string jit_path = + std::string(UNIT_TEST_DATA) + "/" + "jit-simple-julia.dump"; + SymbolIdx_t symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + mypid, pc, symbol_table, jit_path); + ASSERT_EQ(symbol_idx, -1); + auto current_table_size = symbol_table.size(); + symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + mypid, pc, symbol_table, jit_path); + auto new_table_size = symbol_table.size(); + // Check that we did not grow in number of symbols (as they are the same) + ASSERT_EQ(current_table_size, new_table_size); +} + +TEST(runtime_symbol_lookup, jitdump_partial) { + // Test what happens when the file is altered + LogHandle log_handle; + pid_t mypid = getpid(); + SymbolTable symbol_table; + RuntimeSymbolLookup runtime_symbol_lookup(""); + ProcessAddress_t pc = 0xbadbeef; + { + std::string jit_path = + std::string(UNIT_TEST_DATA) + "/" + "jit-julia-partial.dump"; + SymbolIdx_t symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + mypid, pc, symbol_table, jit_path); + ASSERT_EQ(symbol_idx, -1); + } + { + std::string jit_path = + std::string(UNIT_TEST_DATA) + "/" + "jit-dotnet-partial.dump"; + SymbolIdx_t symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + mypid, pc, symbol_table, jit_path); + ASSERT_EQ(symbol_idx, -1); + ASSERT_NE(symbol_table.size(), 0); + } +} + +TEST(runtime_symbol_lookup, jitdump_bad_file) { + LogHandle log_handle; + pid_t mypid = getpid(); + SymbolTable symbol_table; + RuntimeSymbolLookup runtime_symbol_lookup(""); + ProcessAddress_t pc = 0xbadbeef; + std::string jit_path = std::string(UNIT_TEST_DATA) + "/" + "bad_file.dump"; + SymbolIdx_t symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + mypid, pc, symbol_table, jit_path); + ASSERT_EQ(symbol_idx, -1); + + // this should not trigger another read + symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + mypid, pc, symbol_table, jit_path); + ASSERT_EQ(symbol_idx, -1); +} + +TEST(runtime_symbol_lookup, jitdump_vs_perfmap) { + LogHandle log_handle; + pid_t mypid = 8; + // check that we are loading the same symbol on both sides + std::string expected_sym = + "instance void [System.Private.CoreLib] " + "System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+" + "AsyncStateMachineBox`1[System.__Canon,System.Net.Http." + "HttpConnectionPool+d__100]::.ctor()[" + "OptimizedTier1]"; + + // load jitdump on one side + SymbolTable symbol_table; + RuntimeSymbolLookup runtime_symbol_lookup(""); + ProcessAddress_t pc = 0x7fa12f0eac90; + std::string jit_path = + std::string(UNIT_TEST_DATA) + "/" + "jit-dotnet-8.dump"; + SymbolIdx_t symbol_idx = runtime_symbol_lookup.get_or_insert_jitdump( + mypid, pc, symbol_table, jit_path); + ASSERT_NE(symbol_idx, -1); + EXPECT_EQ(symbol_table[symbol_idx]._symname, expected_sym); + { + RuntimeSymbolLookup::Stats stats = runtime_symbol_lookup.get_stats(); + EXPECT_EQ(stats._symbol_count, 20809); + } + + // load perfmap on the other + RuntimeSymbolLookup runtime_symbol_lookup_perfmap(UNIT_TEST_DATA); + SymbolTable symbol_table_perfmap; + symbol_idx = runtime_symbol_lookup_perfmap.get_or_insert( + mypid, pc, symbol_table_perfmap); + ASSERT_NE(symbol_idx, -1); + EXPECT_EQ(symbol_table_perfmap[symbol_idx]._symname, expected_sym); + { + RuntimeSymbolLookup::Stats stats = + runtime_symbol_lookup_perfmap.get_stats(); + EXPECT_EQ(stats._symbol_count, 11605); + } +} + } // namespace ddprof diff --git a/test/savecontext-bench.cc b/test/savecontext-bench.cc index f6e536337..fe98197ff 100644 --- a/test/savecontext-bench.cc +++ b/test/savecontext-bench.cc @@ -36,10 +36,12 @@ DDPROF_NOINLINE static void *get_stack_start_tls() { static void BM_SaveContext(benchmark::State &state) { uint64_t regs[PERF_REGS_COUNT]; std::byte stack[PERF_SAMPLE_STACK_SIZE]; - auto *stack_end = retrieve_stack_end_address(); - + ddprof::span stack_bounds = retrieve_stack_bounds(); + if (stack_bounds.empty()) { + exit(1); + } for (auto _ : state) { - save_context(stack_end, regs, stack); + save_context(stack_bounds, regs, stack); } } diff --git a/test/savecontext-ut.cc b/test/savecontext-ut.cc index a6470a343..9efbb30f7 100644 --- a/test/savecontext-ut.cc +++ b/test/savecontext-ut.cc @@ -27,7 +27,7 @@ std::byte stack[PERF_SAMPLE_STACK_SIZE]; void funcB() { UnwindState state; uint64_t regs[K_NB_REGS_UNWIND]; - size_t stack_size = save_context(retrieve_stack_end_address(), regs, stack); + size_t stack_size = save_context(retrieve_stack_bounds(), regs, stack); ddprof::unwind_init_sample(&state, regs, getpid(), stack_size, reinterpret_cast(stack)); @@ -35,12 +35,12 @@ void funcB() { auto &symbol_table = state.symbol_hdr._symbol_table; - for (size_t iloc = 0; iloc < state.output.nb_locs; ++iloc) { + for (size_t iloc = 0; iloc < state.output.locs.size(); ++iloc) { auto &symbol = symbol_table[state.output.locs[iloc]._symbol_idx]; printf("%zu: %s\n", iloc, symbol._demangle_name.c_str()); } - EXPECT_GT(state.output.nb_locs, 3); + EXPECT_GT(state.output.locs.size(), 3); auto &symbol0 = symbol_table[state.output.locs[0]._symbol_idx]; EXPECT_TRUE(symbol0._demangle_name.starts_with("save_context(")); auto &symbol1 = symbol_table[state.output.locs[1]._symbol_idx]; @@ -56,8 +56,11 @@ void funcA() { TEST(getcontext, getcontext) { funcA(); } -// unwinding from signal handler does not work well on aarch64 -#ifdef __x86_64__ +#if defined(__x86_64__) && !defined(MUSL_LIBC) +// The matrix of where it works well is slightly more complex +// There are also differences depending on vdso (as this can be a kernel +// mechanism). We should revisit if we needed. + static std::atomic stop; static std::mutex mutex; static std::condition_variable cv; @@ -65,7 +68,7 @@ static uint64_t regs[K_NB_REGS_UNWIND]; static size_t stack_size; DDPROF_NO_SANITIZER_ADDRESS void handler(int sig) { - stack_size = save_context(retrieve_stack_end_address(), regs, stack); + stack_size = save_context(retrieve_stack_bounds(), regs, stack); stop = true; } @@ -101,7 +104,7 @@ TEST(getcontext, unwind_from_sighandler) { auto &symbol_table = state.symbol_hdr._symbol_table; - for (size_t iloc = 0; iloc < state.output.nb_locs; ++iloc) { + for (size_t iloc = 0; iloc < state.output.locs.size(); ++iloc) { auto &symbol = symbol_table[state.output.locs[iloc]._symbol_idx]; printf("%zu: %s %lx \n", iloc, symbol._demangle_name.c_str(), state.output.locs[iloc].ip); @@ -110,25 +113,16 @@ TEST(getcontext, unwind_from_sighandler) { return symbol_table[state.output.locs[idx]._symbol_idx]; }; - EXPECT_GT(state.output.nb_locs, 5); + EXPECT_GT(state.output.locs.size(), 5); + EXPECT_LT(state.output.locs.size(), 25); EXPECT_TRUE(get_symbol(0)._demangle_name.starts_with("save_context(")); EXPECT_EQ(get_symbol(1)._demangle_name, "handler(int)"); size_t next_idx = 3; -# ifndef MUSL_LIBC - while (next_idx < state.output.nb_locs - 1 && + while (next_idx < state.output.locs.size() - 1 && get_symbol(next_idx)._demangle_name != "funcD()") { ++next_idx; } EXPECT_EQ(get_symbol(next_idx)._demangle_name, "funcD()"); EXPECT_EQ(get_symbol(next_idx + 1)._demangle_name, "funcC()"); -# else - // On alpine release builds we are not able to find the funcD function. - while (next_idx < state.output.nb_locs - 1 && - get_symbol(next_idx)._demangle_name != "funcC()") { - - ++next_idx; - } - EXPECT_EQ(get_symbol(next_idx)._demangle_name, "funcC()"); -# endif } #endif diff --git a/test/self_unwind/CMakeLists.txt b/test/self_unwind/CMakeLists.txt deleted file mode 100644 index 409b1d7a3..000000000 --- a/test/self_unwind/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -# External dependencies (json package) -find_package(nlohmann_json 3.10.2 REQUIRED) - -add_exe( - selfuw self_unwind.cc stackchecker.cpp - LIBRARIES DDProf::Native nlohmann_json::nlohmann_json - DEFINITIONS "MYNAME=\"selfuw\"" "STACK_DATA=\"${CMAKE_CURRENT_SOURCE_DIR}/data\"") - -disable_clangtidy(selfuw) -target_static_libcxx(selfuw) - -# slightly hacky : we should only include public headers -target_include_directories(selfuw PRIVATE ../../include ../../include/lib) -install(TARGETS selfuw DESTINATION selfuw) diff --git a/test/self_unwind/data/BadBoggleSolver_run_ref.json b/test/self_unwind/data/BadBoggleSolver_run_ref.json deleted file mode 100644 index a112cce66..000000000 --- a/test/self_unwind/data/BadBoggleSolver_run_ref.json +++ /dev/null @@ -1,210 +0,0 @@ -[ - { - "demangle_name": "tng::Boggle::Node::IsValidPostion(std::array const&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "std::locale::~locale()", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "__read", - "src_path": "../sysdeps/unix/sysv/linux/read.c" - }, - { - "demangle_name": "_IO_un_link", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/libio/genops.c" - }, - { - "demangle_name": "fileno_unlocked", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/libio/fileno.c" - }, - { - "demangle_name": "tng::Boggle::ConsiderPos(std::array, 4ul> const&, std::array const&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "tng::Boggle::operator+(std::array const&, std::array const&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "std::__basic_file::close()", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "fclose@@GLIBC_2.2.5", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/libio/iofclose.c" - }, - { - "demangle_name": "_IO_file_close_it@@GLIBC_2.2.5", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/libio/fileops.c" - }, - { - "demangle_name": "_IO_setb", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/libio/genops.c" - }, - { - "demangle_name": "std::basic_istream >& std::getline, std::allocator >(std::basic_istream >&, std::__cxx11::basic_string, std::allocator >&, char)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "std::vector >::~vector()", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "std::istream::sentry::sentry(std::istream&, bool)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "systrim.isra.1.constprop.11", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/malloc/malloc.c" - }, - { - "demangle_name": "std::basic_filebuf >::close()", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "toupper", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/ctype/ctype.c" - }, - { - "demangle_name": "__gnu_cxx::__normal_iterator, std::allocator > > std::__find_if<__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__ops::_Iter_pred >(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__ops::_Iter_pred, std::random_access_iterator_tag)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "_int_malloc", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/malloc/malloc.c" - }, - { - "demangle_name": "std::basic_filebuf >::_M_destroy_internal_buffer()", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "operator new(unsigned long)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "__memcmp_avx2_movbe", - "src_path": "../sysdeps/x86_64/multiarch/memcmp-avx2-movbe.S" - }, - { - "demangle_name": "void std::__make_heap<__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, __gnu_cxx::__ops::_Iter_less_iter>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, __gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, __gnu_cxx::__ops::_Iter_less_iter&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "__dynamic_cast", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "void std::__introsort_loop<__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, long, __gnu_cxx::__ops::_Iter_less_iter>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, __gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, long, __gnu_cxx::__ops::_Iter_less_iter) (.isra.84)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "tng::InvalidChar(char)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "__libc_free", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/malloc/malloc.c" - }, - { - "demangle_name": "malloc", - "src_path": "/build/glibc-S9d2JN/glibc-2.27/malloc/malloc.c" - }, - { - "demangle_name": "void std::__adjust_heap<__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, long, std::__cxx11::basic_string, std::allocator >, __gnu_cxx::__ops::_Iter_less_iter>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, long, long, std::__cxx11::basic_string, std::allocator >, __gnu_cxx::__ops::_Iter_less_iter)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "std::__cxx11::basic_string, std::allocator >::_M_mutate(unsigned long, unsigned long, char const*, unsigned long)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "tng::main(int, char**)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "__libc_start_main", - "src_path": "../csu/libc-start.c" - }, - { - "demangle_name": "__memchr_avx2", - "src_path": "../sysdeps/x86_64/multiarch/memchr-avx2.S" - }, - { - "demangle_name": "_start", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "std::__basic_file::xsgetn(char*, long)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "std::basic_filebuf >::underflow()", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "operator delete[](void*)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "tng::Boggle::ExpandNode(tng::Boggle::Node&, std::array, 4ul> const&, tng::WordDict const&, std::array, 4ul> const&, std::__cxx11::basic_string, std::allocator > const&, std::vector, std::allocator >, std::allocator, std::allocator > > >&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "__memmove_avx_unaligned_erms", - "src_path": "../sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S" - }, - { - "demangle_name": "tng::Boggle::FindAllWords[abi:cxx11](std::array, 4ul> const&, tng::WordDict const&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "tng::Boggle::Node::createChildren(std::array, 4ul> const&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "void std::__insertion_sort<__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, __gnu_cxx::__ops::_Iter_less_iter>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, __gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, __gnu_cxx::__ops::_Iter_less_iter)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "std::ctype const& std::use_facet >(std::locale const&)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "void std::vector >::_M_realloc_insert&, tng::Boggle::Node*>(__gnu_cxx::__normal_iterator > >, std::array&, tng::Boggle::Node*&&)", - "src_path": "/usr/local/bin/BadBoggleSolver_run" - }, - { - "demangle_name": "std::__cxx11::basic_string, std::allocator >::_M_append(char const*, unsigned long)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "operator delete(void*)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "__cxxabiv1::__vmi_class_type_info::__do_dyncast(long, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "bool std::has_facet >(std::locale const&)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "std::basic_ios >::_M_cache_locale(std::locale const&)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - }, - { - "demangle_name": "std::basic_ios >::init(std::basic_streambuf >*)", - "src_path": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25" - } -] \ No newline at end of file diff --git a/test/self_unwind/self_unwind.cc b/test/self_unwind/self_unwind.cc deleted file mode 100644 index 575cfd62b..000000000 --- a/test/self_unwind/self_unwind.cc +++ /dev/null @@ -1,131 +0,0 @@ -// Unless explicitly stated otherwise all files in this repository are licensed -// under the Apache License Version 2.0. This product includes software -// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present -// Datadog, Inc. - -#include "ddprof.hpp" -#include "ddprof_context.hpp" -#include "ddprof_context_lib.hpp" -#include "ddprof_input.hpp" -#include "ddprof_output.hpp" -#include "ddres.hpp" -#include "stack_handler.hpp" -#include "stackchecker.hpp" - -#include -#include -#include - -static const char *k_test_executable = "BadBoggleSolver_run"; - -// Callback to give to ddprof -static bool stack_addtomap(const UnwindOutput *unwind_output, - const DDProfContext *ctx, void *callback_ctx, - int perf_option_pos); - -namespace suw { - -static pid_t launch_test_prog(void) { - pid_t pid = fork(); - if (pid == -1) { - // pid == -1 means error occured - printf("can't fork, error occured\n"); - exit(EXIT_FAILURE); - } else if (pid == 0) { // child test prog - char *argv[] = {const_cast(k_test_executable), - const_cast("5"), (char *)NULL}; - int ret = execvp(argv[0], argv); - exit(ret); - } else { // parent - return pid; - } -} - -void log_run_info(const SymbolMap &symbol_map) { - std::cerr << "Number of symbols = " << symbol_map.size() << std::endl; -} - -void capture_symbol(DDProfContext *ctx, SymbolMap *symbol_map) { - const StackHandler stack_handler = {.apply = stack_addtomap, - .callback_ctx = - reinterpret_cast(symbol_map)}; - ddprof_attach_handler(ctx, &stack_handler); -} - -int main(int argc, char *const argv[]) { - DDProfInput input; - int ret = 0; - bool continue_exec; - pid_t pid_test_prog = launch_test_prog(); - std::string data_directory(""); - const std::string exe_name(k_test_executable); - - if (argc >= 2) { - data_directory = argv[1]; - std::cerr << "Override test data path with : " << data_directory - << std::endl; - } - - std::string str_pid = std::to_string(pid_test_prog); - const char *argv_override[] = {MYNAME, "--pid", str_pid.c_str(), - "--event", "sCPU,1000", (char *)NULL}; - SymbolMap symbol_map; - DDProfContext ctx; - - // size - 1 as we add a null char at the end - if (IsDDResNotOK(ddprof_input_parse(std::size(argv_override) - 1, - const_cast(argv_override), - &input, &continue_exec))) { - std::cerr << "unable to init input " << std::endl; - ret = -1; - goto CLEANUP_INPUT; - } - if (!continue_exec) { - std::cerr << "Bad arguments... EXIT" << std::endl; - ret = -1; - goto CLEANUP_INPUT; - } - - if (IsDDResNotOK(ddprof_context_set(&input, &ctx))) { - std::cerr << "unable to init input " << std::endl; - ret = -1; - goto CLEANUP; - } - // Launch profiling - capture_symbol(&ctx, &symbol_map); - - log_run_info(symbol_map); - // Capture new file (to help user create new reference) - write_json_file(exe_name, symbol_map, data_directory); - - // Compare to reference stored in json file - ret = compare_to_ref(exe_name, symbol_map, data_directory); - -CLEANUP: - ddprof_context_free(&ctx); -CLEANUP_INPUT: - ddprof_input_free(&input); - return ret; -} - -} // namespace suw - -int main(int argc, char *argv[]) { return suw::main(argc, argv); } - -bool stack_addtomap(const UnwindOutput *unwind_output, const DDProfContext *ctx, - void *callback_ctx, int perf_option_pos) { - // if it is not 0, things are strange - assert(callback_ctx); - suw::SymbolMap *symbol_map = reinterpret_cast(callback_ctx); - assert(perf_option_pos == 0); - for (unsigned i = 0; i < unwind_output->nb_locs; ++i) { - const ddprof::Symbol &symbol = ddprof::get_symbol(ctx, unwind_output, i); - if (symbol._demangle_name.find("0x") != std::string::npos) { - // skip non symbolized frames - continue; - } - suw::DwflSymbolKey key(symbol); - (*symbol_map)[key] = symbol; - } - return true; -} diff --git a/test/self_unwind/stackchecker.cpp b/test/self_unwind/stackchecker.cpp deleted file mode 100644 index 979baeef2..000000000 --- a/test/self_unwind/stackchecker.cpp +++ /dev/null @@ -1,111 +0,0 @@ -// Unless explicitly stated otherwise all files in this repository are licensed -// under the Apache License Version 2.0. This product includes software -// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present -// Datadog, Inc. - -#include "stackchecker.hpp" - -#include -#include -#include -#include -#include -#include - -namespace suw { - -using Symbol = ddprof::Symbol; - -void to_json(json &j, const Symbol &symbol) { - j = json{{"src_path", symbol._srcpath}, - {"demangle_name", symbol._demangle_name}}; -} - -void from_json(const json &j, Symbol &symbol) { - j.at("src_path").get_to(symbol._srcpath); - j.at("demangle_name").get_to(symbol._demangle_name); -} - -void add_symbol(json &j, const Symbol &symbol) { - json symbol_j; - to_json(symbol_j, symbol); - j.push_back(symbol_j); -} -static void write_json_file(const std::string &exe_name, const json &data, - std::string_view data_directory) { - std::string file_path; - if (data_directory.empty()) - file_path = std::string(STACK_DATA); - else - file_path = std::string(data_directory); - file_path += "/" + exe_name + ".json"; - std::cerr << "--> Writing json data to file: " << file_path << std::endl; - std::ofstream file(file_path); - if (!file) { - throw std::runtime_error("Unable to open " + file_path + " for writing"); - } - constexpr int k_indent_spaces = 2; - file << data.dump(k_indent_spaces); -} - -void write_json_file(const std::string &exe_name, const SymbolMap &map, - std::string_view data_directory) { - json unique_symbol; - for (const auto &info : map) { - add_symbol(unique_symbol, info.second); - } - write_json_file(exe_name, unique_symbol, data_directory); -} - -json parse_json_file(const std::string &filePath) { - json ret; - std::ifstream file(filePath); - if (!file) { - throw std::runtime_error("Unable to open " + filePath + " for reading"); - } - ret = json::parse(std::string((std::istreambuf_iterator(file)), - std::istreambuf_iterator())); - - return ret; -} - -int compare_to_ref(const std::string &exe_name, const SymbolMap &map, - std::string_view data_directory) { - std::string file_path; - if (data_directory.empty()) - file_path = std::string(STACK_DATA); - else - file_path = std::string(data_directory); - - file_path += "/" + exe_name + "_ref" + ".json"; - json ref_json = parse_json_file(file_path); - SymbolMap ref_symbol_map; - for (auto json_el : ref_json) { - Symbol symbol; - from_json(json_el, symbol); - DwflSymbolKey key(symbol); - ref_symbol_map[key] = symbol; - } - if (ref_symbol_map.empty()) { - throw std::runtime_error("Unable to create reference set"); - } - // Loop on all reference elements - int cpt_not_found = 0; - for (const auto &pair_el : ref_symbol_map) { - if (map.find(pair_el.first) == map.end()) { - ++cpt_not_found; - std::cerr << "Unable to find :" << pair_el.second._demangle_name - << std::endl; - } - } - int failures = cpt_not_found * 100 / ref_symbol_map.size(); - std::cerr << "******************************" << std::endl; - std::cerr << "Failures (%) = " << failures << std::endl; - std::cerr << "******************************" << std::endl; - if (failures > k_failure_threshold) { - return 1; - } - return 0; -} - -} // namespace suw \ No newline at end of file diff --git a/test/self_unwind/stackchecker.hpp b/test/self_unwind/stackchecker.hpp deleted file mode 100644 index cfd02afe5..000000000 --- a/test/self_unwind/stackchecker.hpp +++ /dev/null @@ -1,60 +0,0 @@ -// Unless explicitly stated otherwise all files in this repository are licensed -// under the Apache License Version 2.0. This product includes software -// developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present -// Datadog, Inc. - -#pragma once - -#include "symbol_table.hpp" -#include -#include -#include -#include - -namespace suw { - -// Avoid flaky CI failures -static const int k_failure_threshold = 45; - -static inline std::size_t hash_combine(std::size_t lhs, std::size_t rhs) { - return rhs + 0x9e3779b9 + (lhs << 6) + (lhs >> 2); -} - -// Only consider demangled name for now -struct DwflSymbolKey { - explicit DwflSymbolKey(const ddprof::Symbol &symbol) - : _demangle_name(symbol._demangle_name) {} - std::string _demangle_name; - - bool operator==(const DwflSymbolKey &other) const { - return (_demangle_name == other._demangle_name); - } -}; - -} // namespace suw - -namespace std { -template <> struct hash { - std::size_t operator()(const suw::DwflSymbolKey &k) const { - return hash()(k._demangle_name); - } -}; - -} // namespace std - -namespace suw { - -using json = nlohmann::json; - -using SymbolMap = std::unordered_map; - -// Append ip info to a json file -void add_symbol(json &j, const ddprof::Symbol &symbol); - -void write_json_file(const std::string &exe_name, const SymbolMap &map, - std::string_view data_directory = {}); - -int compare_to_ref(const std::string &exe_name, const SymbolMap &map, - std::string_view data_directory = {}); - -} // namespace suw \ No newline at end of file diff --git a/test/simple_malloc-ut.sh b/test/simple_malloc-ut.sh index 1d4faffb2..1cf68e4b6 100755 --- a/test/simple_malloc-ut.sh +++ b/test/simple_malloc-ut.sh @@ -9,7 +9,7 @@ export DD_PROFILING_NATIVE_LOG_LEVEL=debug export LD_LIBRARY_PATH=$PWD export DD_PROFILING_NATIVE_PRESET=default # force deterministic sampling -export DD_PROFILING_NATIVE_EVENTS="sALLOC,-524288" +export DD_PROFILING_NATIVE_EVENTS="sALLOC period=-524288" # Get available cpus # ddprof will be allowed to run on those cpus @@ -50,13 +50,21 @@ check() { grep -Fq "Profiling terminated" <&"${COPROC[0]}" kill "$COPROC_PID" fi - if [[ "${expected_pids}" -ne 0 ]]; then - if [[ $(count "${log_file}" "alloc-samples" "pid") -ne "${expected_pids}" || - $(count "${log_file}" "cpu-samples" "pid") -ne "${expected_pids}" || - $(count "${log_file}" "alloc-samples" "tid") -ne "${expected_tids}" || - $(count "${log_file}" "cpu-samples" "tid") -ne "${expected_tids}" ]]; then + + counted_pids_alloc=$(count "${log_file}" "alloc-samples" "pid") + counted_pids_cpu=$(count "${log_file}" "cpu-samples" "pid") + counted_tids_alloc=$(count "${log_file}" "alloc-samples" "tid") + counted_tids_cpu=$(count "${log_file}" "cpu-samples" "tid") + if [[ $counted_pids_alloc -ne "${expected_pids}" || + $counted_pids_cpu -ne "${expected_pids}" || + $counted_tids_alloc -ne "${expected_tids}" || + $counted_tids_cpu -ne "${expected_tids}" ]]; then echo "Incorrect number of sample found for: $cmd" + echo "counted_pids_alloc = $counted_pids_alloc" + echo "counted_pids_cpu = ${counted_pids_cpu}" + echo "counted_tids_alloc = ${counted_tids_alloc}" + echo "counted_tids_cpu = ${counted_tids_cpu}" cat "${log_file}" exit 1 fi @@ -85,6 +93,9 @@ check "./test/simple_malloc-shared --profile ${opts}" 1 # Test wrapper mode check "./ddprof ./test/simple_malloc ${opts}" 1 +# Test live heap mode +check "./ddprof --preset cpu_live_heap ./test/simple_malloc ${opts} --skip-free 100" 1 + # Test wrapper mode with forks + threads check "./ddprof ./test/simple_malloc ${opts} --fork 2 --threads 2" 2 4 diff --git a/test/simple_malloc.cc b/test/simple_malloc.cc index 4239180e6..65723bc9a 100644 --- a/test/simple_malloc.cc +++ b/test/simple_malloc.cc @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -24,6 +25,28 @@ # include "dd_profiling.h" #endif +#ifdef __GLIBC__ +# include +#endif + +/***************************** SIGSEGV Handler *******************************/ +static void sigsegv_handler(int sig, siginfo_t *si, void *uc) { + // TODO this really shouldn't call printf-family functions... + (void)uc; +#ifdef __GLIBC__ + static void *buf[4096] = {0}; + size_t sz = backtrace(buf, 4096); +#endif + fprintf(stderr, "simplemalloc[%d]:has encountered an error and will exit\n", + getpid()); + if (sig == SIGSEGV) + printf("Fault address: %p\n", si->si_addr); +#ifdef __GLIBC__ + backtrace_symbols_fd(buf, sz, STDERR_FILENO); +#endif + exit(-1); +} + struct thread_cpu_clock { using duration = std::chrono::nanoseconds; using rep = duration::rep; @@ -57,6 +80,7 @@ struct Options { std::chrono::milliseconds timeout_duration; uint32_t callstack_depth; uint32_t frame_size; + uint32_t skip_free; }; extern "C" DDPROF_NOINLINE void do_lot_of_allocations(const Options &options, @@ -67,6 +91,7 @@ extern "C" DDPROF_NOINLINE void do_lot_of_allocations(const Options &options, auto start_time = std::chrono::steady_clock::now(); auto deadline_time = start_time + options.timeout_duration; auto start_cpu = thread_cpu_clock::now(); + unsigned skip_free = 0; for (uint64_t i = 0; i < options.loop_count; ++i) { void *p = nullptr; if (options.malloc_size) { @@ -84,7 +109,12 @@ extern "C" DDPROF_NOINLINE void do_lot_of_allocations(const Options &options, p2 = p; } ddprof::DoNotOptimize(p2); - free(p2); + + if (skip_free++ >= options.skip_free) { + free(p2); + skip_free = 0; + } + if (options.sleep_duration_per_loop.count()) { std::this_thread::sleep_for(options.sleep_duration_per_loop); } @@ -142,6 +172,11 @@ void print_stats(pid_t pid, const Stats &stats) { } int main(int argc, char *argv[]) { + struct sigaction sigaction_handlers = {}; + sigaction_handlers.sa_sigaction = sigsegv_handler; + sigaction_handlers.sa_flags = SA_SIGINFO; + sigaction(SIGSEGV, &(sigaction_handlers), NULL); + try { CLI::App app{"Simple allocation test"}; @@ -170,6 +205,9 @@ int main(int argc, char *argv[]) { app.add_option("--frame-size", opts.frame_size, "Size to allocate on the stack for each frame") ->default_val(0); + app.add_option("--skip-free", opts.skip_free, + "Only free every N allocations (default is 0)") + ->default_val(0); app.add_option( "--timeout", opts.timeout_duration, "Timeout after N milliseconds") diff --git a/test/tags-ut.cc b/test/tags-ut.cc index be501876a..43795dd60 100644 --- a/test/tags-ut.cc +++ b/test/tags-ut.cc @@ -48,6 +48,17 @@ TEST(Tags, more_tags) { EXPECT_EQ(tags[1].second, "anderson"); } +TEST(Tags, runtime_id) { + LogHandle handle; + const char *tag_input = + "someUUID:0dbe19c2-a86b-11ed-afa1-0242ac120002,123some:badtag"; + Tags tags; + split(tag_input, tags); + ASSERT_EQ(tags.size(), 1); + EXPECT_EQ(tags[0].first, "someUUID"); + EXPECT_EQ(tags[0].second, "0dbe19c2-a86b-11ed-afa1-0242ac120002"); +} + TEST(Tags, user_tags) { LogHandle handle; diff --git a/test/tracepoint_config-ut.cc b/test/tracepoint_config-ut.cc new file mode 100644 index 000000000..074fb391c --- /dev/null +++ b/test/tracepoint_config-ut.cc @@ -0,0 +1,20 @@ +#include + +#include "loghandle.hpp" +#include "tracepoint_config.hpp" + +namespace ddprof { + +TEST(tracepoint_config, getid) { + LogHandle handle; + int64_t id = tracepoint_get_id("raw_syscalls", "sys_exit"); + // This can fail without the appropriate permissions + LG_DBG("Tracepoint: raw_syscall/sys_exit id=%ld ", id); +#if defined(__x86_64__) + if (id != -1) { + EXPECT_EQ(id, 348); + } +#endif +} + +} // namespace ddprof diff --git a/test/unwind_output_mock.hpp b/test/unwind_output_mock.hpp index e4f7d59fd..69742f504 100644 --- a/test/unwind_output_mock.hpp +++ b/test/unwind_output_mock.hpp @@ -38,16 +38,16 @@ static inline void fill_symbol_table_1(SymbolTable &symbol_table) { static inline void fill_mapinfo_table_1(MapInfoTable &mapinfo_table) { for (unsigned i = 0; i < K_MOCK_LOC_SIZE; ++i) { mapinfo_table.emplace_back(100 + i, 200 + i, 10 + i, - std::string(s_so_paths[0])); + std::string(s_so_paths[0]), BuildIdStr()); } } static inline void fill_unwind_output_1(UnwindOutput &uw_output) { - uw_output_clear(&uw_output); - uw_output.nb_locs = K_MOCK_LOC_SIZE; + uw_output.clear(); + uw_output.locs.resize(K_MOCK_LOC_SIZE); - FunLoc *locs = uw_output.locs; - for (unsigned i = 0; i < uw_output.nb_locs; ++i) { + std::vector &locs = uw_output.locs; + for (unsigned i = 0; i < uw_output.locs.size(); ++i) { locs[i].ip = 42 + i; locs[i]._symbol_idx = i; locs[i]._map_info_idx = i; diff --git a/tools/check_for_unsafe_libc_functions.py b/tools/check_for_unsafe_libc_functions.py new file mode 100755 index 000000000..21ffbd23d --- /dev/null +++ b/tools/check_for_unsafe_libc_functions.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 + +# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0. +# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc. + +import argparse +from collections import defaultdict +import re +import subprocess +import sys + +unsafe_functions = [ + {"name": "pthread_mutex_init"}, + {"name": "pthread_attr_init"}, + {"name": "pthread_mutexattr_init"}, + {"name": "pthread_condattr_init"}, + {"name": "pthread_barrierattr_init"}, + {"name": "mtx_init"}, + { + "name": "pthread_getattr_np", + "exceptions": ["_Z23pthread_getattr_np_safemP14pthread_attr_t"], + }, +] + +func_start_re = re.compile("^<([a-zA-Z0-9@_.*+]+)>:$") +call_instr_re = re.compile("^\t(?:bl|call)\t<([a-zA-Z0-9@_.*+]+)>$") + + +def extract_calls(lib_path): + res = subprocess.run( + ["objdump", "-d", "--no-show-raw-insn", "--no-addresses", lib_path], + check=True, + capture_output=True, + text=True, + ) + callers = defaultdict(list) + cur_func = None + for line in res.stdout.splitlines(): + m = func_start_re.match(line) + if m: + cur_func = m.group(1) + else: + m = call_instr_re.match(line) + if m: + callers[m.group(1)].append(cur_func) + + return callers + + +def check_functions(callers, unsafe_functions): + ok = True + for func in unsafe_functions: + name = func["name"] + "@plt" + for caller in callers[name]: + if caller not in func.get("exceptions", []): + print(f'Unsafe function {func["name"]} called by {caller}') + ok = False + return ok + + +def main(): + parser = argparse.ArgumentParser( + description="Check that no unsafe libc function (that are not ABI compatible between musl and glibc) is used in injected lib." + ) + parser.add_argument("lib", help="shared library to check") + args = parser.parse_args() + + callers = extract_calls(args.lib) + if not check_functions(callers, unsafe_functions): + return 1 + + +sys.exit(main()) diff --git a/tools/elfutils.patch b/tools/elfutils.patch index 36bf69ac0..b4fc59dd5 100644 --- a/tools/elfutils.patch +++ b/tools/elfutils.patch @@ -109,3 +109,22 @@ diff -ur elfutils-0.186/libdwfl/linux-pid-attach.c elfutils-0.186_patched/libdwf #ifdef HAVE_PROCESS_VM_READV if (read_cached_memory (pid_arg, addr, result)) { +diff -ur elfutils-0.188/src/src/readelf.c elfutils-0.188_patched/src/src/readelf.c +--- elfutils-0.188/src/readelf.c 2023-02-20 16:57:42.054882047 +0100 ++++ elfutils-0.188_patched/src/readelf.c 2023-02-20 16:53:16.996986189 +0100 +@@ -10226,7 +10226,6 @@ + Dwarf_Off ncu = 0; + size_t hsize; + struct mac_culist *culist = NULL; +- size_t nculist = 0; + while (dwarf_nextcu (dbg, offset = ncu, &ncu, &hsize, NULL, NULL, NULL) == 0) + { + Dwarf_Die cudie; +@@ -10247,7 +10246,6 @@ + newp->files = NULL; + newp->next = culist; + culist = newp; +- ++nculist; + } + + const unsigned char *readp = (const unsigned char *) data->d_buf; diff --git a/tools/fetch_libdatadog.sh b/tools/fetch_libdatadog.sh index 4c656fe1c..2e8143b1c 100755 --- a/tools/fetch_libdatadog.sh +++ b/tools/fetch_libdatadog.sh @@ -43,6 +43,12 @@ TAR_LIBDATADOG=libdatadog-${MARCH}-${DISTRIBUTION}.tar.gz GITHUB_URL_LIBDATADOG=https://github.com/DataDog/libdatadog/releases/download/${TAG_LIBDATADOG}/${TAR_LIBDATADOG} SHA256_LIBDATADOG=$(grep "${TAR_LIBDATADOG}" "${CHECKSUM_FILE}") +if echo "${SHA256_LIBDATADOG}" | grep -qE '^[[:xdigit:]]{64}[[:space:]]{2}'; then + echo "Using libdatadog sha256: ${SHA256_LIBDATADOG}" +else + echo "Badly formatted sha256. There should be 2 spaces between sha and file name." + exit 1 +fi mkdir -p "$TARGET_EXTRACT" || true cd "$TARGET_EXTRACT" @@ -56,7 +62,7 @@ else fi echo "Checking libdatadog sha256" -if ! echo "${SHA256_LIBDATADOG}" | sha256sum -c; then +if ! echo "${SHA256_LIBDATADOG}" | sha256sum -c -; then echo "Error validating libdatadog SHA256" echo "Please clear $TARGET_EXTRACT before restarting" exit 1 diff --git a/tools/help_generate.sh b/tools/help_generate.sh index c7280f0cd..0ea196c4a 100755 --- a/tools/help_generate.sh +++ b/tools/help_generate.sh @@ -23,11 +23,8 @@ if [ $# != 0 ] && [ $1 == "-b" ]; then BUILD_FOLDER="$PWD" cd $CURRENTDIR shift - PARAM_FOUND=1 - continue fi - FILE=${TOP_LVL_DIR}/docs/Commands.md echo "# ddprof Commands" > ${FILE} echo "" >> ${FILE} diff --git a/tools/launch_local_build.sh b/tools/launch_local_build.sh index 9208d7f47..d07f664c2 100755 --- a/tools/launch_local_build.sh +++ b/tools/launch_local_build.sh @@ -43,6 +43,7 @@ if [ $# != 0 ] && [ "$1" == "-h" ]; then fi PERFORM_CLEAN=0 +# This default is to ensure that users that compile from source are likely to have a compatible libc UBUNTU_VERSION=18 COMPILER="gcc" @@ -120,16 +121,18 @@ echo "Considering docker image : $DOCKER_NAME" echo " Built from : $BASE_DOCKERFILE" echo " Mount command : ${MOUNT_CMD}" +CACHE_OPTION="" if [ $PERFORM_CLEAN -eq 1 ]; then echo "Clean image : ${DOCKER_NAME}" # if docker image does not exist, we should not fail docker image rm "${DOCKER_NAME}" || true + CACHE_OPTION="--no-cache" fi # Check if base image exists if [ ! ${CUSTOM_ID:-,,} == "yes" ] && ! docker images | awk '{print $1}'| grep -qE "^${DOCKER_NAME}$"; then echo "Building image" - BUILD_CMD="docker build -t ${DOCKER_NAME} --build-arg COMPILER=$COMPILER --build-arg UBUNTU_VERSION=${UBUNTU_VERSION} -f $BASE_DOCKERFILE ." + BUILD_CMD="docker build $CACHE_OPTION -t ${DOCKER_NAME} --build-arg COMPILER=$COMPILER --build-arg UBUNTU_VERSION=${UBUNTU_VERSION} -f $BASE_DOCKERFILE ." #echo "${BUILD_CMD}" eval "${BUILD_CMD}" else diff --git a/tools/libdatadog_checksums.txt b/tools/libdatadog_checksums.txt index 538cec404..61225d866 100644 --- a/tools/libdatadog_checksums.txt +++ b/tools/libdatadog_checksums.txt @@ -1,4 +1,4 @@ -68919ddf9bc6491927bf16fb819b18fd052209d77774097b57f7879ebafc9bdf libdatadog-aarch64-alpine-linux-musl.tar.gz -9c6dd7058c7d0c9af8ffe18b4565fcda08462debc81f60ce0eb87aa5f7b74a0b libdatadog-aarch64-unknown-linux-gnu.tar.gz -e410300255d93f016562e7e072dcb09f94d0550ff3e289f97fff4cd155a4d3a4 libdatadog-x86_64-alpine-linux-musl.tar.gz -94f52edaed31f8c2a25cd569b0b065f8bb221120706d57ef2ca592b0512333f2 libdatadog-x86_64-unknown-linux-gnu.tar.gz +7a5f8f37b2925ee3e54cc1da8db1a461a4db082f8fd0492e40d4b33c5e771306 libdatadog-aarch64-alpine-linux-musl.tar.gz +a326e9552e65b945c64e7119c23d670ffdfb99aa96d9d90928a8a2ff6427199d libdatadog-aarch64-unknown-linux-gnu.tar.gz +59f8e014b80b5e44bfcc325d03cdcf7c147987e2a106883d91fe80e1cba79f4b libdatadog-x86_64-alpine-linux-musl.tar.gz +e9ee7172dd7b8f12ff8125e0ee699d01df7698604f64299c4094ae47629ccec1 libdatadog-x86_64-unknown-linux-gnu.tar.gz diff --git a/tools/style-check.sh b/tools/style-check.sh index f97481d2c..a8a5c6469 100755 --- a/tools/style-check.sh +++ b/tools/style-check.sh @@ -10,7 +10,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) cd "$SCRIPT_DIR/.." # Find most recent clang-format, defaulting to an unqualified default -CLANG_FORMAT=$(command -v clang-format{-13,-12,-11,-10,-9,} | head -n1) +CLANG_FORMAT=$(command -v clang-format{-15,-13,-12,-11,-10,-9,} | head -n1) if [ -z "${CLANG_FORMAT}" ]; then echo "No suitable clang-format found" exit 1