ruby-prof 1.4.4-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGES +608 -0
- data/LICENSE +25 -0
- data/README.md +5 -0
- data/Rakefile +98 -0
- data/bin/ruby-prof +328 -0
- data/bin/ruby-prof-check-trace +45 -0
- data/ext/ruby_prof/extconf.rb +22 -0
- data/ext/ruby_prof/rp_aggregate_call_tree.c +59 -0
- data/ext/ruby_prof/rp_aggregate_call_tree.h +13 -0
- data/ext/ruby_prof/rp_allocation.c +287 -0
- data/ext/ruby_prof/rp_allocation.h +31 -0
- data/ext/ruby_prof/rp_call_tree.c +367 -0
- data/ext/ruby_prof/rp_call_tree.h +43 -0
- data/ext/ruby_prof/rp_call_trees.c +288 -0
- data/ext/ruby_prof/rp_call_trees.h +28 -0
- data/ext/ruby_prof/rp_measure_allocations.c +47 -0
- data/ext/ruby_prof/rp_measure_memory.c +46 -0
- data/ext/ruby_prof/rp_measure_process_time.c +66 -0
- data/ext/ruby_prof/rp_measure_wall_time.c +64 -0
- data/ext/ruby_prof/rp_measurement.c +237 -0
- data/ext/ruby_prof/rp_measurement.h +50 -0
- data/ext/ruby_prof/rp_method.c +491 -0
- data/ext/ruby_prof/rp_method.h +62 -0
- data/ext/ruby_prof/rp_profile.c +915 -0
- data/ext/ruby_prof/rp_profile.h +35 -0
- data/ext/ruby_prof/rp_stack.c +212 -0
- data/ext/ruby_prof/rp_stack.h +53 -0
- data/ext/ruby_prof/rp_thread.c +362 -0
- data/ext/ruby_prof/rp_thread.h +39 -0
- data/ext/ruby_prof/ruby_prof.c +52 -0
- data/ext/ruby_prof/ruby_prof.h +26 -0
- data/ext/ruby_prof/vc/ruby_prof.sln +39 -0
- data/ext/ruby_prof/vc/ruby_prof.vcxproj +160 -0
- data/lib/3.1/ruby_prof.so +0 -0
- data/lib/ruby-prof/assets/call_stack_printer.html.erb +711 -0
- data/lib/ruby-prof/assets/call_stack_printer.png +0 -0
- data/lib/ruby-prof/assets/graph_printer.html.erb +355 -0
- data/lib/ruby-prof/call_tree.rb +57 -0
- data/lib/ruby-prof/call_tree_visitor.rb +36 -0
- data/lib/ruby-prof/compatibility.rb +99 -0
- data/lib/ruby-prof/exclude_common_methods.rb +198 -0
- data/lib/ruby-prof/measurement.rb +17 -0
- data/lib/ruby-prof/method_info.rb +78 -0
- data/lib/ruby-prof/printers/abstract_printer.rb +137 -0
- data/lib/ruby-prof/printers/call_info_printer.rb +53 -0
- data/lib/ruby-prof/printers/call_stack_printer.rb +180 -0
- data/lib/ruby-prof/printers/call_tree_printer.rb +147 -0
- data/lib/ruby-prof/printers/dot_printer.rb +132 -0
- data/lib/ruby-prof/printers/flat_printer.rb +53 -0
- data/lib/ruby-prof/printers/graph_html_printer.rb +63 -0
- data/lib/ruby-prof/printers/graph_printer.rb +113 -0
- data/lib/ruby-prof/printers/multi_printer.rb +127 -0
- data/lib/ruby-prof/profile.rb +37 -0
- data/lib/ruby-prof/rack.rb +95 -0
- data/lib/ruby-prof/task.rb +147 -0
- data/lib/ruby-prof/thread.rb +20 -0
- data/lib/ruby-prof/version.rb +3 -0
- data/lib/ruby-prof.rb +52 -0
- data/lib/unprof.rb +10 -0
- data/ruby-prof.gemspec +64 -0
- data/test/abstract_printer_test.rb +26 -0
- data/test/alias_test.rb +122 -0
- data/test/basic_test.rb +43 -0
- data/test/call_tree_visitor_test.rb +32 -0
- data/test/call_trees_test.rb +66 -0
- data/test/duplicate_names_test.rb +32 -0
- data/test/dynamic_method_test.rb +67 -0
- data/test/enumerable_test.rb +21 -0
- data/test/exceptions_test.rb +24 -0
- data/test/exclude_methods_test.rb +151 -0
- data/test/exclude_threads_test.rb +53 -0
- data/test/fiber_test.rb +129 -0
- data/test/gc_test.rb +100 -0
- data/test/inverse_call_tree_test.rb +175 -0
- data/test/line_number_test.rb +158 -0
- data/test/marshal_test.rb +145 -0
- data/test/measure_allocations.rb +26 -0
- data/test/measure_allocations_test.rb +333 -0
- data/test/measure_memory_test.rb +688 -0
- data/test/measure_process_time_test.rb +1614 -0
- data/test/measure_times.rb +56 -0
- data/test/measure_wall_time_test.rb +426 -0
- data/test/multi_printer_test.rb +71 -0
- data/test/no_method_class_test.rb +15 -0
- data/test/pause_resume_test.rb +175 -0
- data/test/prime.rb +54 -0
- data/test/prime_script.rb +6 -0
- data/test/printer_call_stack_test.rb +27 -0
- data/test/printer_call_tree_test.rb +30 -0
- data/test/printer_flat_test.rb +99 -0
- data/test/printer_graph_html_test.rb +59 -0
- data/test/printer_graph_test.rb +40 -0
- data/test/printers_test.rb +141 -0
- data/test/printing_recursive_graph_test.rb +81 -0
- data/test/profile_test.rb +16 -0
- data/test/rack_test.rb +93 -0
- data/test/recursive_test.rb +430 -0
- data/test/singleton_test.rb +38 -0
- data/test/stack_printer_test.rb +64 -0
- data/test/start_stop_test.rb +109 -0
- data/test/test_helper.rb +13 -0
- data/test/thread_test.rb +144 -0
- data/test/unique_call_path_test.rb +136 -0
- data/test/yarv_test.rb +60 -0
- metadata +187 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
/* Copyright (C) 2005-2019 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
|
2
|
+
Please see the LICENSE file for copyright and distribution information */
|
3
|
+
|
4
|
+
/* ruby-prof tracks the time spent executing every method in ruby programming.
|
5
|
+
The main players are:
|
6
|
+
|
7
|
+
profile_t - This represents 1 profile.
|
8
|
+
thread_data_t - Stores data about a single thread.
|
9
|
+
prof_stack_t - The method call stack in a particular thread
|
10
|
+
prof_method_t - Profiling information about each method
|
11
|
+
prof_call_tree_t - Keeps track a method's callers and callees.
|
12
|
+
|
13
|
+
The final result is an instance of a profile object which has a hash table of
|
14
|
+
thread_data_t, keyed on the thread id. Each thread in turn has a hash table
|
15
|
+
of prof_method_t, keyed on the method id. A hash table is used for quick
|
16
|
+
look up when doing a profile. However, it is exposed to Ruby as an array.
|
17
|
+
|
18
|
+
Each prof_method_t has two hash tables, parent and children, of prof_call_tree_t.
|
19
|
+
These objects keep track of a method's callers (who called the method) and its
|
20
|
+
callees (who the method called). These are keyed the method id, but once again,
|
21
|
+
are exposed to Ruby as arrays. Each prof_call_into_t maintains a pointer to the
|
22
|
+
caller or callee method, thereby making it easy to navigate through the call
|
23
|
+
hierarchy in ruby - which is very helpful for creating call graphs.
|
24
|
+
*/
|
25
|
+
|
26
|
+
#include "ruby_prof.h"
|
27
|
+
|
28
|
+
#include "rp_allocation.h"
|
29
|
+
#include "rp_measurement.h"
|
30
|
+
#include "rp_method.h"
|
31
|
+
#include "rp_call_tree.h"
|
32
|
+
#include "rp_aggregate_call_tree.h"
|
33
|
+
#include "rp_call_trees.h"
|
34
|
+
#include "rp_profile.h"
|
35
|
+
#include "rp_stack.h"
|
36
|
+
#include "rp_thread.h"
|
37
|
+
|
38
|
+
VALUE mProf;
|
39
|
+
|
40
|
+
void Init_ruby_prof()
|
41
|
+
{
|
42
|
+
mProf = rb_define_module("RubyProf");
|
43
|
+
|
44
|
+
rp_init_allocation();
|
45
|
+
rp_init_call_tree();
|
46
|
+
rp_init_aggregate_call_tree();
|
47
|
+
rp_init_call_trees();
|
48
|
+
rp_init_measure();
|
49
|
+
rp_init_method_info();
|
50
|
+
rp_init_profile();
|
51
|
+
rp_init_thread();
|
52
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/* Copyright (C) 2005-2019 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
|
2
|
+
Please see the LICENSE file for copyright and distribution information */
|
3
|
+
|
4
|
+
#ifndef __RUBY_PROF_H__
|
5
|
+
#define __RUBY_PROF_H__
|
6
|
+
|
7
|
+
#include <ruby.h>
|
8
|
+
#include <ruby/debug.h>
|
9
|
+
#include <stdio.h>
|
10
|
+
#include <stdbool.h>
|
11
|
+
|
12
|
+
#ifndef rb_st_lookup
|
13
|
+
#define rb_st_foreach st_foreach
|
14
|
+
#define rb_st_free_table st_free_table
|
15
|
+
#define rb_st_init_numtable st_init_numtable
|
16
|
+
#define rb_st_insert st_insert
|
17
|
+
#define rb_st_lookup st_lookup
|
18
|
+
#endif
|
19
|
+
|
20
|
+
|
21
|
+
extern VALUE mProf;
|
22
|
+
|
23
|
+
// This method is not exposed in Ruby header files - at least not as of Ruby 2.6.3 :(
|
24
|
+
extern size_t rb_obj_memsize_of(VALUE);
|
25
|
+
|
26
|
+
#endif //__RUBY_PROF_H__
|
@@ -0,0 +1,39 @@
|
|
1
|
+
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
3
|
+
# Visual Studio Version 16
|
4
|
+
VisualStudioVersion = 16.0.28803.452
|
5
|
+
MinimumVisualStudioVersion = 10.0.40219.1
|
6
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ruby_prof", "ruby_prof.vcxproj", "{6B4978F4-3B5F-4D38-81A8-069EC28CC069}"
|
7
|
+
EndProject
|
8
|
+
Global
|
9
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
10
|
+
Debug|ARM = Debug|ARM
|
11
|
+
Debug|ARM64 = Debug|ARM64
|
12
|
+
Debug|x64 = Debug|x64
|
13
|
+
Debug|x86 = Debug|x86
|
14
|
+
Release|ARM = Release|ARM
|
15
|
+
Release|ARM64 = Release|ARM64
|
16
|
+
Release|x64 = Release|x64
|
17
|
+
Release|x86 = Release|x86
|
18
|
+
EndGlobalSection
|
19
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
20
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Debug|ARM.ActiveCfg = Debug|Win32
|
21
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Debug|ARM64.ActiveCfg = Debug|Win32
|
22
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Debug|x64.ActiveCfg = Debug|x64
|
23
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Debug|x64.Build.0 = Debug|x64
|
24
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Debug|x86.ActiveCfg = Debug|Win32
|
25
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Debug|x86.Build.0 = Debug|Win32
|
26
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Release|ARM.ActiveCfg = Release|Win32
|
27
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Release|ARM64.ActiveCfg = Release|Win32
|
28
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Release|x64.ActiveCfg = Release|x64
|
29
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Release|x64.Build.0 = Release|x64
|
30
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Release|x86.ActiveCfg = Release|Win32
|
31
|
+
{6B4978F4-3B5F-4D38-81A8-069EC28CC069}.Release|x86.Build.0 = Release|Win32
|
32
|
+
EndGlobalSection
|
33
|
+
GlobalSection(SolutionProperties) = preSolution
|
34
|
+
HideSolutionNode = FALSE
|
35
|
+
EndGlobalSection
|
36
|
+
GlobalSection(ExtensibilityGlobals) = postSolution
|
37
|
+
SolutionGuid = {9E7746F2-2467-4738-9746-4472B5CBF1DA}
|
38
|
+
EndGlobalSection
|
39
|
+
EndGlobal
|
@@ -0,0 +1,160 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup Label="ProjectConfigurations">
|
4
|
+
<ProjectConfiguration Include="Debug|Win32">
|
5
|
+
<Configuration>Debug</Configuration>
|
6
|
+
<Platform>Win32</Platform>
|
7
|
+
</ProjectConfiguration>
|
8
|
+
<ProjectConfiguration Include="Debug|x64">
|
9
|
+
<Configuration>Debug</Configuration>
|
10
|
+
<Platform>x64</Platform>
|
11
|
+
</ProjectConfiguration>
|
12
|
+
<ProjectConfiguration Include="Release|Win32">
|
13
|
+
<Configuration>Release</Configuration>
|
14
|
+
<Platform>Win32</Platform>
|
15
|
+
</ProjectConfiguration>
|
16
|
+
<ProjectConfiguration Include="Release|x64">
|
17
|
+
<Configuration>Release</Configuration>
|
18
|
+
<Platform>x64</Platform>
|
19
|
+
</ProjectConfiguration>
|
20
|
+
</ItemGroup>
|
21
|
+
<PropertyGroup Label="Globals">
|
22
|
+
<ProjectGuid>{6B4978F4-3B5F-4D38-81A8-069EC28CC069}</ProjectGuid>
|
23
|
+
<Keyword>Win32Proj</Keyword>
|
24
|
+
<RootNamespace>ruby_prof</RootNamespace>
|
25
|
+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
26
|
+
</PropertyGroup>
|
27
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
28
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
29
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
30
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
31
|
+
<CharacterSet>Unicode</CharacterSet>
|
32
|
+
<PlatformToolset>v143</PlatformToolset>
|
33
|
+
</PropertyGroup>
|
34
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
35
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
36
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
37
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
38
|
+
<CharacterSet>Unicode</CharacterSet>
|
39
|
+
<PlatformToolset>v143</PlatformToolset>
|
40
|
+
</PropertyGroup>
|
41
|
+
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
42
|
+
<PlatformToolset>v143</PlatformToolset>
|
43
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
44
|
+
</PropertyGroup>
|
45
|
+
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
46
|
+
<PlatformToolset>v143</PlatformToolset>
|
47
|
+
</PropertyGroup>
|
48
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
49
|
+
<ImportGroup Label="ExtensionSettings">
|
50
|
+
</ImportGroup>
|
51
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
52
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
53
|
+
</ImportGroup>
|
54
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
55
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
56
|
+
</ImportGroup>
|
57
|
+
<PropertyGroup Label="UserMacros" />
|
58
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
59
|
+
<LinkIncremental>true</LinkIncremental>
|
60
|
+
<OutDir>..\..\..\lib\2.0</OutDir>
|
61
|
+
<TargetExt>.so</TargetExt>
|
62
|
+
<TargetName>ruby_prof</TargetName>
|
63
|
+
</PropertyGroup>
|
64
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
65
|
+
<LinkIncremental>false</LinkIncremental>
|
66
|
+
</PropertyGroup>
|
67
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
68
|
+
<TargetExt>.so</TargetExt>
|
69
|
+
<OutDir>$(SolutionDir)\..</OutDir>
|
70
|
+
</PropertyGroup>
|
71
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
72
|
+
<ClCompile>
|
73
|
+
<PrecompiledHeader>
|
74
|
+
</PrecompiledHeader>
|
75
|
+
<WarningLevel>Level3</WarningLevel>
|
76
|
+
<Optimization>Disabled</Optimization>
|
77
|
+
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;RUBY_PROF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
78
|
+
<AdditionalIncludeDirectories>C:\MinGW\local\ruby200vc\include\ruby-2.0.0;C:\MinGW\local\ruby200vc\include\ruby-2.0.0\i386-mswin32_100;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
79
|
+
</ClCompile>
|
80
|
+
<Link>
|
81
|
+
<SubSystem>Windows</SubSystem>
|
82
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
83
|
+
<AdditionalLibraryDirectories>C:\MinGW\local\ruby200vc\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
84
|
+
<AdditionalDependencies>msvcr100-ruby200.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
85
|
+
<ModuleDefinitionFile>ruby_prof.def</ModuleDefinitionFile>
|
86
|
+
</Link>
|
87
|
+
</ItemDefinitionGroup>
|
88
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
89
|
+
<ClCompile>
|
90
|
+
<WarningLevel>Level3</WarningLevel>
|
91
|
+
<PrecompiledHeader>
|
92
|
+
</PrecompiledHeader>
|
93
|
+
<Optimization>MaxSpeed</Optimization>
|
94
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
95
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
96
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;RUBY_PROF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
97
|
+
</ClCompile>
|
98
|
+
<Link>
|
99
|
+
<SubSystem>Windows</SubSystem>
|
100
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
101
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
102
|
+
<OptimizeReferences>true</OptimizeReferences>
|
103
|
+
</Link>
|
104
|
+
</ItemDefinitionGroup>
|
105
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
106
|
+
<ClCompile>
|
107
|
+
<AdditionalIncludeDirectories>C:\msys64\usr\local\ruby-3.1.2-vc\include\ruby-3.1.0\x64-mswin64_140;C:\msys64\usr\local\ruby-3.1.2-vc\include\ruby-3.1.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
108
|
+
<Optimization>Disabled</Optimization>
|
109
|
+
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
110
|
+
<WarningLevel>Level3</WarningLevel>
|
111
|
+
</ClCompile>
|
112
|
+
<Link>
|
113
|
+
<AdditionalLibraryDirectories>C:\msys64\usr\local\ruby-3.1.2-vc\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
114
|
+
<AdditionalDependencies>x64-vcruntime140-ruby310.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
115
|
+
<ModuleDefinitionFile>ruby_prof.def</ModuleDefinitionFile>
|
116
|
+
<SubSystem>Console</SubSystem>
|
117
|
+
</Link>
|
118
|
+
</ItemDefinitionGroup>
|
119
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
120
|
+
<ClCompile>
|
121
|
+
<AdditionalIncludeDirectories>C:\msys64\usr\local\ruby-2.7.1vc\include\ruby-2.7.0\x64-mswin64_140;C:\msys64\usr\local\ruby-2.7.1vc\include\ruby-2.7.0;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
122
|
+
</ClCompile>
|
123
|
+
<Link>
|
124
|
+
<AdditionalLibraryDirectories>C:\msys64\usr\local\ruby-2.7.1vc\lib</AdditionalLibraryDirectories>
|
125
|
+
<AdditionalDependencies>x64-vcruntime140-ruby270.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
126
|
+
<ModuleDefinitionFile>ruby_prof.def</ModuleDefinitionFile>
|
127
|
+
</Link>
|
128
|
+
</ItemDefinitionGroup>
|
129
|
+
<ItemGroup>
|
130
|
+
<ClInclude Include="..\rp_aggregate_call_tree.h" />
|
131
|
+
<ClInclude Include="..\rp_allocation.h" />
|
132
|
+
<ClInclude Include="..\rp_call_tree.h" />
|
133
|
+
<ClInclude Include="..\rp_call_trees.h" />
|
134
|
+
<ClInclude Include="..\rp_measurement.h" />
|
135
|
+
<ClInclude Include="..\rp_method.h" />
|
136
|
+
<ClInclude Include="..\rp_profile.h" />
|
137
|
+
<ClInclude Include="..\rp_stack.h" />
|
138
|
+
<ClInclude Include="..\rp_thread.h" />
|
139
|
+
<ClInclude Include="..\ruby_prof.h" />
|
140
|
+
</ItemGroup>
|
141
|
+
<ItemGroup>
|
142
|
+
<ClCompile Include="..\rp_aggregate_call_tree.c" />
|
143
|
+
<ClCompile Include="..\rp_allocation.c" />
|
144
|
+
<ClCompile Include="..\rp_call_tree.c" />
|
145
|
+
<ClCompile Include="..\rp_call_trees.c" />
|
146
|
+
<ClCompile Include="..\rp_measurement.c" />
|
147
|
+
<ClCompile Include="..\rp_measure_allocations.c" />
|
148
|
+
<ClCompile Include="..\rp_measure_memory.c" />
|
149
|
+
<ClCompile Include="..\rp_measure_process_time.c" />
|
150
|
+
<ClCompile Include="..\rp_measure_wall_time.c" />
|
151
|
+
<ClCompile Include="..\rp_method.c" />
|
152
|
+
<ClCompile Include="..\rp_profile.c" />
|
153
|
+
<ClCompile Include="..\rp_stack.c" />
|
154
|
+
<ClCompile Include="..\rp_thread.c" />
|
155
|
+
<ClCompile Include="..\ruby_prof.c" />
|
156
|
+
</ItemGroup>
|
157
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
158
|
+
<ImportGroup Label="ExtensionTargets">
|
159
|
+
</ImportGroup>
|
160
|
+
</Project>
|
Binary file
|