[ruby-core:17586] Re: rubyspec reports for ruby_1_8, ruby_1_8_7, and v1_8_6_p265
From:
"M. Edward (Ed) Borasky" <znmeb@...>
Date:
2008-07-04 05:02:33 UTC
List:
ruby-core #17586
Igal Koshevoy wrote: > Stephen Bannasch wrote: [snip] > For now, I'll keep hacking on rubychecker and experiment with its > Ruby-based port. Hopefully one us, or Ryan Davis who was also apparently > working on something, will come up with a good solution. :) > > -igal Well, I have the "gcov" and "oprofile" stuff to the point where I'm willing to let other people look at it. :) Since both myself and Komodo are git-illiterate, I've put it on RubyForge in Subversion. Everything is stashed in http://cougar.rubyforge.org/svn/trunk/PTR2/ All of the output was generated from running Igal's "rubychecker.sh" script. The reports from the tests are in "reports". The Ruby version is 1_8_6 right out of the Subversion repository. That's defined as a constant at the top of the Rakefile at the moment, because I'm really only interested in that particular version of MRI. Specifically: $ ./ruby --version ruby 1.8.6 (2008-07-03 patchlevel 265) [x86_64-linux] The best place to start on the coverage analysis is with "gcov_summary.txt". This lists each function and a summary of how many lines it has, and what percentage of those lines were executed. In the directory "gcovs" you will find annotated listings of each routine that was compiled and executed by any of the tests. And "gcov_errors.txt" lists all the source files that didn't generate any output, either because they weren't compiled or were compiled but didn't execute. The ones that didn't execute might need some tests added to the test suite. :) On to the "oprofile" analysis. I don't have a lot of confidence in this, since it's test suites and not benchmarks. The benchmarks are going to get done some time this weekend, however. But the way you read it is this: 1. "oprofile_report.txt" is a standard sort of profile by function, with the most often called functions at the top. The numbers on the left are the number of samples. "oprofile" takes an interrupt every so often, and when the interrupt hits, it looks at the instruction counter and what program was running, and keeps a tally of the samples. So essentially this is a histogram of what was running when the interrupts happened. 2. "annotated_source.txt" is the annotated source as "oprofile" saw it. The per-line counts aren't necessarily 100 percent accurate -- they can be off a line or two because of the randomness of the interrupt process on modern CPUs. 3. "annotated_assembler.txt" is the annotated assembler source as "oprofile" saw it. Again, there can be an error of an instruction or two because of random interrupts. The 10,000 foot view is that the test suites spend more of their time in the garbage collector than anywhere else. The profile shows the same "hot spots" as the "gprof" runs I did last year, which is also not a great surprise. About the only other interesting thing is the Rakefile. If you want to see how the builds are done and the post-processing happens, that's the place to look. "oprofile" itself runs as "root", so I've been running it from a command line manually. The next phase of this is to run the Ruby benchmark suite with MRI 1_8_6 and capture the same information. I think that's going to give some more interesting profiles. Then I'm planning to do Rubinius and 1.9.x for some value of "x". Please feel free to send me email off-list or on-list, or to extract pieces of this for any continuous integration schemes you might be building. I don't know what sort of development platforms people have, but this should run on anything GNU/Linux (well, I'd avoid the 2.4 kernel because "oprofile" is a PITA on it,) :) and I'm sure it could be adapted to run on MacOS with "dtrace" instead of "oprofile". P.S.: Does "git" run on Windows? If it does, I think I'll poke ActiveState about teaching Komodo how to work with it. -- M. Edward (Ed) Borasky http://ruby-perspectives.blogspot.com/ "A mathematician is a machine for turning coffee into theorems." -- Paul Erdos
Attachments (3)
gcov_summary.txt
(194 KB, text/plain)
oprofile_report.txt
(85.3 KB, text/plain)
CPU: AMD64 processors, speed 2210.02 MHz (estimated) Counted CPU_CLK_UNHALTED events (Cycles outside of halt state) with a unit mask of 0x00 (No unit mask) count 100000 samples % image name symbol name 1326684 12.0633 ruby gc_mark_children 1009160 9.1761 ruby rb_eval 920076 8.3661 ruby st_lookup 713401 6.4868 ruby gc_sweep 610078 5.5473 ruby gc_mark 589361 5.3590 ruby st_foreach 482057 4.3833 ruby rb_special_const_p 421625 3.8338 ruby rb_call0 257504 2.3414 ruby rb_clear_cache_by_id 243442 2.2136 ruby re_match_exec 217288 1.9758 ruby ruby_yyparse 217204 1.9750 ruby rb_call 159124 1.4469 ruby rb_yield_0 155059 1.4099 ruby mark_source_filename 113027 1.0277 ruby rb_is_const_id 110216 1.0022 ruby obj_free 105331 0.9578 ruby ruby_yylex 103873 0.9445 ruby call_cfunc 86278 0.7845 ruby rb_newobj 80450 0.7315 ruby ruby_xmalloc 74272 0.6753 ruby is_pointer_to_heap 71733 0.6523 ruby fc_i 68576 0.6236 ruby rb_str_hash 62954 0.5724 ruby strhash 61937 0.5632 ruby mark_entry 57256 0.5206 ruby st_insert 56166 0.5107 ruby rb_obj_is_kind_of 52400 0.4765 ruby rb_class_of 49365 0.4489 ruby rb_clear_cache_by_class 43135 0.3922 ruby new_dvar 42026 0.3821 ruby str_alloc 41016 0.3730 ruby rb_type 40577 0.3690 ruby nextc 40332 0.3667 ruby ruby_re_compile_pattern 40206 0.3656 ruby rb_type 40201 0.3655 ruby st_add_direct 39451 0.3587 ruby rb_get_method_body 38346 0.3487 ruby mark_keyvalue 36323 0.3303 ruby str_independent 36103 0.3283 ruby numhash 35311 0.3211 ruby search_method 34005 0.3092 ruby ruby_re_search 33950 0.3087 ruby foreach_safe_i 33657 0.3060 ruby rb_ary_modify_check 31274 0.2844 ruby st_free_table 29746 0.2705 ruby rb_mem_clear 29628 0.2694 ruby rb_scan_args 27860 0.2533 ruby dvar_asgn_internal 27424 0.2494 ruby assign 27071 0.2462 ruby rehash 26700 0.2428 ruby rb_ary_store 26480 0.2408 ruby str_buf_cat 26249 0.2387 ruby ev_const_get 25796 0.2346 ruby rb_node_newnode 25646 0.2332 ruby rb_const_get_0 24565 0.2234 ruby ary_alloc 23964 0.2179 ruby str_new 23594 0.2145 ruby init_regs 21943 0.1995 ruby bm_search 21674 0.1971 ruby rb_clear_cache 21599 0.1964 ruby os_obj_of 20799 0.1891 ruby rb_type 20024 0.1821 ruby rb_feature_p 19389 0.1763 ruby ivar_get 19358 0.1760 ruby rb_dvar_ref 19174 0.1743 ruby rb_any_hash 19031 0.1730 ruby ary_new 18024 0.1639 ruby bm_init_skip 17696 0.1609 ruby rb_reg_search 17568 0.1597 ruby frame_dup 17520 0.1593 ruby mark_locations_array 17452 0.1587 ruby .plt 16894 0.1536 ruby rb_type 16874 0.1534 ruby rb_intern 15810 0.1438 ruby rb_gc_force_recycle 15154 0.1378 ruby rb_class_real 14787 0.1345 ruby rb_ary_modify 14510 0.1319 ruby rb_str_new4 14361 0.1306 ruby rb_string_value 14331 0.1303 ruby rb_class_of 14134 0.1285 ruby massign 14070 0.1279 ruby vafuncall 13857 0.1260 ruby add_heap 13701 0.1246 ruby dvar_asgn_curr 13685 0.1244 ruby rb_gc_call_finalizer_at_exit 13136 0.1194 ruby rb_yield 13112 0.1192 ruby rb_check_convert_type 13083 0.1190 ruby convert_type 13023 0.1184 ruby rb_ivar_set 12753 0.1160 ruby rb_id2name 12685 0.1153 ruby rb_obj_class 12484 0.1135 ruby rb_ary_new3 12455 0.1133 ruby tokadd 12243 0.1113 ruby rb_block_given_p 12215 0.1111 ruby ruby_re_compile_fastmap 11953 0.1087 ruby rb_f_send 11135 0.1012 ruby rb_ary_push 10300 0.0937 ruby rb_ary_shift 10271 0.0934 ruby rb_str_buf_append 10265 0.0933 ruby rb_method_boundp 10068 0.0915 ruby rb_type 10038 0.0913 ruby ruby_xrealloc 10034 0.0912 ruby rb_str_new3 9935 0.0903 ruby rb_funcall 9613 0.0874 ruby ruby_stack_check 9456 0.0860 ruby tr_setup_table 9439 0.0858 ruby is_defined 9355 0.0851 ruby rb_ary_new2 9283 0.0844 ruby rb_convert_type 9230 0.0839 ruby blk_mark 9099 0.0827 ruby rb_str_modify 8768 0.0797 ruby rb_gc_mark 8744 0.0795 ruby frame_free 8569 0.0779 ruby ruby_xfree 8534 0.0776 ruby rb_str_append 8513 0.0774 ruby tokadd_string 8414 0.0765 ruby scope_dup 8296 0.0754 ruby rb_need_block 8218 0.0747 ruby rb_svar 7998 0.0727 ruby appendline 7993 0.0727 ruby mark_tbl 7724 0.0702 ruby str_new3 7558 0.0687 ruby rb_type 7197 0.0654 ruby rb_ivar_get 7132 0.0649 ruby rb_check_array_type 7058 0.0642 ruby to_ary 6985 0.0635 ruby rb_check_type 6950 0.0632 ruby rb_str_new 6854 0.0623 ruby rb_hash_aset 6599 0.0600 ruby rb_ary_select 6565 0.0597 ruby lex_get_str 6552 0.0596 ruby rb_ary_new4 6364 0.0579 ruby rb_str_cmp 6107 0.0555 ruby rb_str_new2 6038 0.0549 ruby rb_funcall2 6005 0.0546 ruby rb_reserved_word 5896 0.0536 ruby rb_str_replace 5833 0.0530 ruby rb_hash_modify 5616 0.0511 ruby rb_to_id 5409 0.0492 ruby str_make_independent 5366 0.0488 ruby rb_any_cmp 5297 0.0482 ruby rb_str_format 5294 0.0481 ruby local_id 5261 0.0478 ruby insert_jump 5114 0.0465 ruby rb_ary_join 5074 0.0461 ruby method_entry 5056 0.0460 ruby svalue_to_mrhs 4881 0.0444 ruby rb_obj_respond_to 4853 0.0441 ruby rb_ary_collect 4768 0.0434 ruby is_in_list_sbc 4760 0.0433 ruby rb_str_buf_new 4715 0.0429 ruby str_new4 4712 0.0428 ruby remove_begin 4681 0.0426 ruby ruby_xcalloc 4585 0.0417 ruby ruby_re_copy_registers 4521 0.0411 ruby rb_memcmp 4498 0.0409 ruby rb_ary_elt 4475 0.0407 ruby proc_invoke 4345 0.0395 ruby block_pass 4193 0.0381 ruby rb_str_equal 4175 0.0380 ruby gcov_exit 4169 0.0379 ruby hash_foreach_iter 4143 0.0377 ruby rb_str_to_s 4070 0.0370 ruby rb_Array 4017 0.0365 ruby is_in_list 4009 0.0365 ruby rb_str_resize 4006 0.0364 ruby rb_clear_cache_for_undef 3987 0.0363 ruby rb_reg_initialize 3980 0.0362 ruby list_i 3964 0.0360 ruby sv_i 3883 0.0353 ruby rb_ivar_defined 3872 0.0352 ruby rb_reg_quote 3826 0.0348 ruby rb_ary_each 3807 0.0346 ruby cvar_cbase 3753 0.0341 ruby str_gsub 3728 0.0339 ruby rb_obj_alloc 3691 0.0336 ruby rb_ensure 3666 0.0333 ruby return_jump 3645 0.0331 ruby rb_cstr_to_inum 3632 0.0330 ruby st_foreach_safe 3511 0.0319 ruby ins_methods_push 3505 0.0319 ruby value_expr0 3502 0.0318 ruby gettable 3501 0.0318 ruby rb_iterate 3439 0.0313 ruby splat_value 3311 0.0301 ruby st_init_table_with_size 3308 0.0301 ruby rb_reg_check 3288 0.0299 ruby rb_type 3273 0.0298 ruby glob_helper 3068 0.0279 ruby rb_hash_aref 3017 0.0274 ruby rb_check_frozen 3012 0.0274 ruby make_regexp 2996 0.0272 ruby rb_ary_aref 2984 0.0271 ruby rb_ary_concat 2966 0.0270 ruby rb_add_method 2907 0.0264 ruby mark_hash 2904 0.0264 ruby rb_io_getline_fast 2903 0.0264 ruby rb_reg_match 2891 0.0263 ruby block_append 2862 0.0260 ruby has_magic 2861 0.0260 ruby pushback 2857 0.0260 ruby proc_alloc 2852 0.0259 ruby obj_respond_to 2850 0.0259 ruby eval 2803 0.0255 ruby rb_str_substr 2786 0.0253 ruby rb_obj_call_init 2758 0.0251 ruby parse_string 2738 0.0249 ruby rb_str_dump 2720 0.0247 ruby rb_io_gets 2708 0.0246 ruby local_cnt 2687 0.0244 ruby rb_include_module 2647 0.0241 ruby rb_class_new_instance 2627 0.0239 ruby rb_respond_to 2594 0.0236 ruby rb_backref_set 2544 0.0231 ruby rb_call_super 2541 0.0231 ruby rb_io_check_closed 2532 0.0230 ruby rb_obj_as_string 2488 0.0226 ruby rb_str_intern 2464 0.0224 ruby rb_const_get 2453 0.0223 ruby rb_equal 2402 0.0218 ruby rb_io_taint_check 2397 0.0218 ruby rb_string_value_ptr 2395 0.0218 ruby hash 2390 0.0217 ruby rb_attr_get 2389 0.0217 ruby rb_data_object_alloc 2371 0.0216 ruby rb_method_node 2302 0.0209 ruby rb_obj_equal 2252 0.0205 ruby rb_int2inum 2237 0.0203 ruby rb_yield_values 2204 0.0200 ruby rb_ary_splice 2186 0.0199 ruby assignable 2183 0.0198 ruby rb_hash_default 2135 0.0194 ruby ruby_brace_expand 2126 0.0193 ruby hash_alloc 2104 0.0191 ruby new_size 2089 0.0190 ruby find_dirsep 2068 0.0188 ruby calculate_must_string 2058 0.0187 ruby rb_mod_ancestors 2047 0.0186 ruby rb_hash_has_key 2026 0.0184 ruby rb_cvar_get 2001 0.0182 ruby fixpos 2001 0.0182 ruby rb_str_downcase_bang 1993 0.0181 ruby rb_str_split_m 1983 0.0180 ruby rb_check_string_type 1974 0.0179 ruby rb_ary_new 1947 0.0177 ruby newtok 1938 0.0176 ruby newline_node 1838 0.0167 ruby get_pat 1793 0.0163 ruby match_alloc 1776 0.0161 ruby dln_find_1 1772 0.0161 ruby sym_to_s 1760 0.0160 ruby rb_str_squeeze_bang 1758 0.0160 ruby rb_io_check_readable 1744 0.0159 ruby rb_ary_includes 1724 0.0157 ruby fix_equal 1660 0.0151 ruby rb_secure 1650 0.0150 ruby rb_kcode_reset_option 1639 0.0149 ruby st_delete 1629 0.0148 ruby ruby_re_match 1584 0.0144 ruby backtrace 1583 0.0144 ruby rb_ary_diff 1562 0.0142 ruby lex_getline 1561 0.0142 ruby stack_check 1533 0.0139 ruby exec_under 1525 0.0139 ruby rb_fix2str 1518 0.0138 ruby hash_alloc0 1508 0.0137 ruby rb_jump_context 1504 0.0137 ruby ary_make_hash 1494 0.0136 ruby yycompile 1488 0.0135 ruby rb_hash_foreach 1444 0.0131 ruby rb_hash_new 1423 0.0129 ruby rb_str_dup 1418 0.0129 ruby rb_const_defined_0 1377 0.0125 ruby remove_backslashes 1372 0.0125 ruby fix_plus 1370 0.0125 ruby rb_reg_nth_match 1370 0.0125 ruby rb_thread_schedule 1361 0.0124 ruby rb_str_concat 1353 0.0123 ruby st_init_table 1337 0.0122 ruby rb_float_new 1337 0.0122 ruby specific_eval 1332 0.0121 ruby rb_ary_dup 1328 0.0121 ruby rb_find_file_ext 1327 0.0121 ruby rb_kcode_set_option 1326 0.0121 ruby rb_mod_eqq 1316 0.0120 ruby rb_class_superclass 1290 0.0117 ruby module_setup 1278 0.0116 ruby thread_no_ensure 1263 0.0115 ruby rb_gc_finalize_deferred 1248 0.0113 ruby gcov_read_words 1241 0.0113 ruby ruby_re_free_pattern 1240 0.0113 ruby io_fwrite 1222 0.0111 ruby rb_singleton_class 1203 0.0109 ruby rb_class_allocate_instance 1202 0.0109 ruby rb_symname_p 1178 0.0107 ruby sweep_source_filename 1177 0.0107 ruby ruby_re_free_registers 1173 0.0107 ruby rb_str_inspect 1156 0.0105 ruby rb_reg_s_alloc 1149 0.0104 ruby hash_foreach_ensure 1148 0.0104 ruby rb_gc_mark_frame 1142 0.0104 ruby r_byte 1139 0.0104 ruby rb_type 1136 0.0103 ruby rb_class_inherited_p 1136 0.0103 ruby rb_type 1133 0.0103 ruby io_fflush 1128 0.0103 ruby ruby_qsort 1120 0.0102 ruby rb_check_safe_obj 1107 0.0101 ruby rb_const_get_from 1106 0.0101 ruby local_push 1097 0.0100 ruby io_write 1082 0.0098 ruby rb_ary_entry 1081 0.0098 ruby init_copy 1076 0.0098 ruby rb_dvar_defined 1070 0.0097 ruby list_append 1043 0.0095 ruby rb_mark_generic_ivar 1042 0.0095 ruby rb_load 1042 0.0095 ruby st_init_numtable 1012 0.0092 ruby rb_ary_last 994 0.0090 ruby literal_concat 988 0.0090 ruby rb_assoc_new 986 0.0090 ruby rb_ary_pop 984 0.0089 ruby blk_copy_prev 966 0.0088 ruby rb_path2class 953 0.0087 ruby ary_make_shared 953 0.0087 ruby rb_backref_get 939 0.0085 ruby rb_ary_to_ary 929 0.0084 ruby tr_trans 923 0.0084 ruby fix_gt 914 0.0083 ruby glob_make_pattern 898 0.0082 ruby classname 888 0.0081 ruby new_call 887 0.0081 ruby rb_Float 880 0.0080 ruby rb_find_file 879 0.0080 ruby break_jump 879 0.0080 ruby rb_io_check_initialized 877 0.0080 ruby top_local_init 870 0.0079 ruby rb_str_buf_cat 865 0.0079 ruby rb_reg_eqq 856 0.0078 ruby top_local_setup 854 0.0078 ruby rb_str_scan 852 0.0077 ruby ins_methods_pub_i 846 0.0077 ruby flo_minus 844 0.0077 ruby rb_str_match 835 0.0076 ruby any_iter_i 835 0.0076 ruby rb_reg_regcomp 833 0.0076 ruby rb_reg_new 831 0.0076 ruby rb_obj_id 815 0.0074 ruby each_i 815 0.0074 ruby rb_str_cat 815 0.0074 ruby time_s_alloc 810 0.0074 ruby rb_thread_current 801 0.0073 ruby local_append 790 0.0072 ruby rb_type 789 0.0072 ruby cond0 789 0.0072 ruby time_to_f 784 0.0071 ruby hash_foreach_call 781 0.0071 ruby ins_methods_prot_i 778 0.0071 ruby rb_obj_dup 774 0.0070 ruby trnext 768 0.0070 ruby rb_ary_replace 762 0.0069 ruby rb_require_safe 761 0.0069 ruby fix_le 748 0.0068 ruby file_expand_path 748 0.0068 ruby rb_cvar_set 747 0.0068 ruby rb_each 746 0.0068 ruby rb_str_gsub 746 0.0068 ruby rb_thread_fd_writable 741 0.0067 ruby ruby_re_mbcinit 731 0.0066 ruby rb_f_block_given_p 731 0.0066 ruby rb_gvar_set 729 0.0066 ruby read_backslash 717 0.0065 ruby chompdirsep 715 0.0065 ruby local_pop 710 0.0065 ruby rb_type 709 0.0064 ruby rb_hash_replace 704 0.0064 ruby pack_unpack 701 0.0064 ruby rb_gc_copy_finalizer 693 0.0063 ruby rb_str_each_line 691 0.0063 ruby dyna_in_block 690 0.0063 ruby rb_gvar_defined 689 0.0063 ruby eval_node 685 0.0062 ruby rb_frozen_class_p 682 0.0062 ruby rb_reg_match_m 680 0.0062 ruby flo_plus 678 0.0062 ruby gcov_write_words 665 0.0060 ruby rb_hash_delete_key 662 0.0060 ruby __gcov_merge_add 660 0.0060 ruby fixdivmod 651 0.0059 ruby ins_methods_priv_i 651 0.0059 ruby rb_ary_flatten_bang 650 0.0059 ruby rb_io_check_writable 645 0.0059 ruby node_assign 645 0.0059 ruby rb_string_value_cstr 643 0.0058 ruby rb_str_plus 639 0.0058 ruby rb_ary_length 621 0.0056 ruby sort_2 614 0.0056 ruby enum_any 612 0.0056 ruby fmt_setup 611 0.0056 ruby dyna_var_lookup 610 0.0055 ruby fix_minus 607 0.0055 ruby str_to_id 605 0.0055 ruby fix_lt 605 0.0055 ruby get_inspect_tbl 603 0.0055 ruby __gcov_read_counter 599 0.0054 ruby ev_const_defined 590 0.0054 ruby rb_ary_initialize 590 0.0054 ruby rb_thread_local_aref 589 0.0054 ruby rb_gvar_get 588 0.0053 ruby rb_fix2int 588 0.0053 ruby rb_funcall3 584 0.0053 ruby rb_type 580 0.0053 ruby var_marker 574 0.0052 ruby time_init 573 0.0052 ruby generic_ivar_get 572 0.0052 ruby enum_inject 568 0.0052 ruby rb_hash_delete 565 0.0051 ruby rb_thread_check 564 0.0051 ruby inject_i 561 0.0051 ruby store_jump 557 0.0051 ruby proc_save_safe_level 552 0.0050 ruby rb_obj_dummy 542 0.0049 ruby rb_obj_is_proc 536 0.0049 ruby init_syntax_once 536 0.0049 ruby rb_ary_plus 535 0.0049 ruby rb_class_boot 532 0.0048 ruby r_object0 529 0.0048 ruby rb_dvar_curr 524 0.0048 ruby rb_reg_regsub 522 0.0047 ruby join_path 519 0.0047 ruby rb_str_new5 509 0.0046 ruby rb_range_beg_len 507 0.0046 ruby time_modify 502 0.0046 ruby rb_str_chomp_bang 498 0.0045 ruby fptr_finalize 497 0.0045 ruby __gcov_write_counter 496 0.0045 ruby fnmatch_helper 494 0.0045 ruby cond 492 0.0045 ruby void_stmts 488 0.0044 ruby rb_hash_each 485 0.0044 ruby arg_blk_pass 480 0.0044 ruby fix_to_s 474 0.0043 ruby flatten 469 0.0043 ruby eval_under_i 468 0.0043 ruby compile 467 0.0042 ruby rb_mark_tbl 464 0.0042 ruby next_jump 462 0.0042 ruby rb_file_join 461 0.0042 ruby rb_ary_join_m 459 0.0042 ruby r_long 452 0.0041 ruby rb_source_filename 450 0.0041 ruby rb_ary_first 443 0.0040 ruby dln_find_file 442 0.0040 ruby rb_path_last_separator 442 0.0040 ruby val_getter 439 0.0040 ruby rb_str_cat2 437 0.0040 ruby rb_copy_node_scope 433 0.0039 ruby cond_negative 433 0.0039 ruby ruby_strdup 430 0.0039 ruby eval_under 430 0.0039 ruby rb_compile_string 425 0.0039 ruby rb_tainted_str_new 425 0.0039 ruby scan_once 420 0.0038 ruby rb_hash_update 417 0.0038 ruby fix_mul 413 0.0038 ruby rb_ary_times 411 0.0037 ruby rb_make_metaclass 411 0.0037 ruby rb_str_empty 408 0.0037 ruby blk_free 408 0.0037 ruby ruby_set_current_source 406 0.0037 ruby rb_str_gsub_bang 402 0.0037 ruby yydestruct 400 0.0036 ruby rb_str_sub_bang 395 0.0036 ruby check_int 390 0.0035 ruby replace_i 387 0.0035 ruby mod_av_set 386 0.0035 ruby new_fcall 384 0.0035 ruby load_file 382 0.0035 ruby rb_mod_name 381 0.0035 ruby rb_hash_values 381 0.0035 ruby rb_mod_module_eval 380 0.0035 ruby rb_true 379 0.0034 ruby rb_str_upcase_bang 377 0.0034 ruby rb_dvar_push 369 0.0034 ruby include_class_new 364 0.0033 ruby rb_ary_compact_bang 364 0.0033 ruby rb_str_aref 363 0.0033 ruby rb_reg_prepare_re 358 0.0033 ruby rb_memsearch 356 0.0032 ruby rb_longjmp 355 0.0032 [vdso] (tgid:28292 range:0x7fff37dfe000-0x7fff37dff000) (no symbols) 353 0.0032 ruby rb_ary_reject_bang 350 0.0032 ruby rb_is_instance_id 349 0.0032 ruby call_op 348 0.0032 ruby rb_hash_keys 342 0.0031 ruby assign_in_cond 342 0.0031 ruby rb_str_to_inum 341 0.0031 ruby method_missing 338 0.0031 ruby rb_hash_update_i 337 0.0031 ruby rb_str_aref_m 335 0.0030 ruby rb_reg_initialize_m 331 0.0030 ruby proc_call 327 0.0030 ruby rb_thread_wait_fd 327 0.0030 ruby search_required 326 0.0030 ruby rb_mod_const_of 326 0.0030 ruby rb_thread_fd_close 324 0.0029 ruby method_call 324 0.0029 ruby rb_check_backtrace 318 0.0029 ruby to_hash 317 0.0029 ruby rb_f_sprintf 316 0.0029 ruby rb_f_loop 314 0.0029 [vdso] (tgid:28838 range:0x7fff8fbfe000-0x7fff8fbff000) (no symbols) 310 0.0028 ruby handle_rescue 310 0.0028 ruby rb_iv_get 309 0.0028 [vdso] (tgid:28647 range:0x7fff2bbfe000-0x7fff2bbff000) (no symbols) 308 0.0028 ruby rb_special_const_p 305 0.0028 ruby rb_io_close 302 0.0027 ruby rb_ary_flatten 298 0.0027 ruby rb_special_const_p 297 0.0027 ruby rb_ary_empty_p 294 0.0027 ruby rb_hash_clear 293 0.0027 [vdso] (tgid:28488 range:0x7fff3a9fd000-0x7fff3a9fe000) (no symbols) 290 0.0026 ruby rb_mod_const_at 289 0.0026 ruby proc_set_safe_level 289 0.0026 ruby rb_ary_equal 286 0.0026 ruby values_i 285 0.0026 ruby class_instance_method_list 285 0.0026 ruby ins_methods_i 283 0.0026 ruby generic_ivar_defined 282 0.0026 ruby rb_inspecting_p 279 0.0025 ruby inspect_i 278 0.0025 ruby rb_rescue2 277 0.0025 ruby mmswap_ 276 0.0025 ruby rb_file_open_internal 273 0.0025 ruby st_delete_safe 271 0.0025 ruby rb_hash_empty_p 270 0.0025 ruby rb_alias 269 0.0024 ruby rb_thread_critical_set 266 0.0024 ruby rb_singleton_class_attached 265 0.0024 ruby rb_obj_ivar_set 264 0.0024 ruby rb_reg_s_quote 261 0.0024 ruby is_ruby_native_thread 261 0.0024 ruby rb_singleton_class_clone 261 0.0024 ruby rb_str_downcase 260 0.0024 ruby keys_i 260 0.0024 ruby logop 260 0.0024 ruby rb_const_defined 259 0.0024 ruby rb_str_index_m 256 0.0023 ruby rb_hash_initialize 254 0.0023 ruby rb_tainted_str_new2 253 0.0023 ruby hash_equal 249 0.0023 ruby rb_str_squeeze 248 0.0023 ruby block_orphan 248 0.0023 ruby enum_find 246 0.0022 ruby nil_to_s 242 0.0022 ruby rb_match_busy 242 0.0022 ruby time_free 240 0.0022 ruby num_equal 237 0.0022 ruby rb_false 236 0.0021 ruby insert_op_2 236 0.0021 ruby rb_mod_const_get 235 0.0021 ruby rb_protect_inspect 234 0.0021 ruby rb_reg_expr_str 233 0.0021 ruby generic_ivar_set 232 0.0021 ruby rb_str_locktmp 230 0.0021 ruby rb_export_method 229 0.0021 ruby rb_block_proc 229 0.0021 ruby thread_timer 227 0.0021 ruby int_dotimes 226 0.0021 ruby rb_cmpint 226 0.0021 ruby rb_type 225 0.0020 ruby rb_const_list 224 0.0020 ruby glob_free_pattern 224 0.0020 ruby proc_get_safe_level 224 0.0020 ruby rb_str_format_m 223 0.0020 ruby dyna_init 223 0.0020 ruby rb_str_times 222 0.0020 ruby __gcov_read_unsigned 220 0.0020 ruby rb_str_to_i 219 0.0020 ruby rb_str_chomp 215 0.0020 ruby io_alloc 215 0.0020 ruby whole_match_p 214 0.0019 ruby rb_io_mode_flags 213 0.0019 ruby rb_str_buf_new2 209 0.0019 ruby rb_special_const_p 205 0.0019 ruby rb_const_defined_at 205 0.0019 ruby time_arg 204 0.0019 ruby rb_iv_set 203 0.0018 ruby class_prefix 203 0.0018 ruby evstr2dstr 203 0.0018 ruby void_expr0 202 0.0018 ruby rb_file_s_basename 201 0.0018 ruby rb_ary_reverse_each 200 0.0018 ruby rb_file_open 200 0.0018 ruby rb_obj_clone 200 0.0018 ruby sym_inspect 199 0.0018 ruby rb_str_unlocktmp 199 0.0018 ruby var_getter 196 0.0018 ruby rb_str_index 195 0.0018 ruby proc_s_new 193 0.0018 ruby rb_ary_assoc 189 0.0017 ruby rb_thread_pass 187 0.0017 ruby find_i 186 0.0017 ruby regx_options 185 0.0017 ruby rb_compile_file 181 0.0016 ruby io_fread 181 0.0016 ruby rb_ary_aset 181 0.0016 ruby rb_hash_merge 180 0.0016 ruby rb_mod_lt 179 0.0016 ruby rb_io_flush 176 0.0016 ruby local_tbl 174 0.0016 ruby tokadd_escape 169 0.0015 ruby rb_ary_subseq 169 0.0015 ruby svalue_to_avalue 166 0.0015 ruby ruby_glob0 165 0.0015 ruby rb_const_set 164 0.0015 ruby rb_fopen 163 0.0015 ruby time_strftime 162 0.0015 ruby rb_ary_compact 161 0.0015 ruby stat 160 0.0015 ruby rb_str_delete_bang 158 0.0014 ruby file_load_ok 157 0.0014 ruby rb_f_eval 156 0.0014 ruby rb_obj_extend 154 0.0014 ruby rb_mod_const_defined 153 0.0014 ruby str_mod_check 152 0.0014 ruby fix_cmp 151 0.0014 ruby rb_ary_collect_bang 149 0.0014 ruby load_lock 149 0.0014 ruby range_include 149 0.0014 ruby rb_io_puts 147 0.0013 ruby rb_io_fptr_cleanup 146 0.0013 ruby load_unlock 146 0.0013 ruby rb_class_new 146 0.0013 ruby rb_cvar_defined 145 0.0013 ruby rb_set_class_path 140 0.0013 ruby rb_define_method 140 0.0013 ruby ret_args 138 0.0013 ruby match_getter 138 0.0013 ruby rb_reg_match_post 137 0.0012 ruby rb_attr 137 0.0012 ruby rb_thread_local_aset 136 0.0012 ruby do_coerce 136 0.0012 ruby garbage_collect 136 0.0012 ruby r_symbol 136 0.0012 ruby rb_mod_constants 135 0.0012 ruby int_downto 135 0.0012 ruby rb_io_print 134 0.0012 ruby rb_type 131 0.0012 ruby bm_mark 131 0.0012 ruby rb_ary_uniq_bang 131 0.0012 ruby rb_str_splice 130 0.0012 ruby rb_ary_push_m 130 0.0012 ruby secure_visibility 129 0.0012 ruby rb_hash_fetch 128 0.0012 ruby is_absolute_path 126 0.0011 ruby fix_div 123 0.0011 ruby flo_mul 123 0.0011 ruby r_ivar 123 0.0011 ruby recursive_hash 121 0.0011 ruby new_evstr 121 0.0011 ruby rb_mod_include 121 0.0011 ruby rb_struct_new 120 0.0011 ruby match_array 120 0.0011 ruby rb_class_path 118 0.0011 ruby bmcall 118 0.0011 ruby io_read 118 0.0011 ruby range_init 118 0.0011 ruby set_method_visibility 117 0.0011 ruby list_concat 116 0.0011 ruby enum_sort_by 113 0.0010 ruby time_localtime 112 0.0010 ruby inspect_hash 112 0.0010 ruby rb_const_get_at 112 0.0010 ruby rb_type 110 0.0010 ruby r_entry 110 0.0010 ruby rb_obj_instance_eval 109 9.9e-04 ruby rb_str_buf_cat2 108 9.8e-04 ruby rb_inspect 107 9.7e-04 ruby rb_make_exception 105 9.5e-04 ruby arg_add 105 9.5e-04 ruby enum_all 105 9.5e-04 ruby rb_gc_mark_maybe 105 9.5e-04 ruby st_copy 103 9.4e-04 ruby method_arity 103 9.4e-04 ruby r_object 103 9.4e-04 ruby r_symlink 103 9.4e-04 ruby rb_obj_freeze 102 9.3e-04 ruby rb_define_class_id 101 9.2e-04 ruby equal_i 101 9.2e-04 ruby rb_check_inheritable 101 9.2e-04 ruby rb_load_file 101 9.2e-04 ruby rb_mod_define_method 100 9.1e-04 ruby rb_stat 98 8.9e-04 ruby flo_floor 98 8.9e-04 ruby read_escape 97 8.8e-04 ruby get_backtrace 97 8.8e-04 ruby match_aref 97 8.8e-04 ruby rb_io_flags_mode 97 8.8e-04 ruby rb_io_s_read 95 8.6e-04 ruby rb_strftime 94 8.5e-04 ruby int_chr 94 8.5e-04 ruby rb_obj_ivar_defined 93 8.5e-04 ruby dyna_push 93 8.5e-04 ruby inspect_call 93 8.5e-04 ruby r_le 93 8.5e-04 ruby rb_str_rstrip_bang 92 8.4e-04 ruby delete_if_i 92 8.4e-04 ruby mnew 92 8.4e-04 ruby rb_obj_inspect 92 8.4e-04 ruby val_setter 91 8.3e-04 ruby flo_div 91 8.3e-04 ruby rb_push_glob 90 8.2e-04 ruby rb_thread_save_context 89 8.1e-04 ruby rb_f_require 89 8.1e-04 ruby remain_size 88 8.0e-04 ruby rb_thread_start_0 88 8.0e-04 ruby rb_warning 87 7.9e-04 ruby rb_ary_zip 87 7.9e-04 ruby rb_undef 86 7.8e-04 ruby fix_abs 86 7.8e-04 ruby fix_mod 86 7.8e-04 ruby rb_trap_restore_mask 85 7.7e-04 ruby __gcov_write_tag_length 85 7.7e-04 ruby rb_provide_feature 84 7.6e-04 ruby rb_hash_inspect 84 7.6e-04 ruby read_all 84 7.6e-04 ruby verbose_setter 83 7.5e-04 ruby rb_obj_ivar_get 83 7.5e-04 ruby rb_thread_aset 82 7.5e-04 ruby each_pair_i 82 7.5e-04 ruby fix_zero_p 82 7.5e-04 ruby rb_type 81 7.4e-04 ruby rb_ary_reverse 81 7.4e-04 ruby rb_struct_iv_get 81 7.4e-04 ruby ruby_parser_stack_on_heap 80 7.3e-04 ruby match_gen 79 7.2e-04 ruby __gcov_write_unsigned 79 7.2e-04 ruby heredoc_identifier 79 7.2e-04 ruby ivar_i 79 7.2e-04 ruby rb_reg_to_s 78 7.1e-04 ruby rb_ary_delete 78 7.1e-04 ruby rb_rescue 78 7.1e-04 ruby rb_thread_aref 77 7.0e-04 ruby rb_reg_desc 77 7.0e-04 ruby thread_set_raised 76 6.9e-04 ruby __gcov_init 76 6.9e-04 ruby aryset 75 6.8e-04 ruby here_document 75 6.8e-04 ruby rb_ary_unshift_m 74 6.7e-04 ruby mark_global_entry 74 6.7e-04 ruby rb_hash_equal 74 6.7e-04 ruby rb_module_new 74 6.7e-04 ruby rb_str_include 73 6.6e-04 ruby rb_str_cmp_m 73 6.6e-04 ruby rb_thread_alloc 72 6.5e-04 ruby exc_backtrace 72 6.5e-04 ruby rb_class_inherited 72 6.5e-04 ruby recursive_eql 72 6.5e-04 ruby special_local_set 71 6.5e-04 ruby rb_f_array 70 6.4e-04 ruby attrset 70 6.4e-04 ruby insert_jump_n 70 6.4e-04 ruby rb_file_s_dirname 70 6.4e-04 ruby rb_mod_protected 69 6.3e-04 ruby rb_ary_delete_if 68 6.2e-04 ruby each_value_i 68 6.2e-04 ruby inspect_ensure 68 6.2e-04 ruby skiproot 67 6.1e-04 ruby rb_gc_mark_trap_list 67 6.1e-04 ruby rb_str_lstrip_bang 67 6.1e-04 ruby rb_thread_switch 67 6.1e-04 ruby ruby_strtod 66 6.0e-04 ruby do_opendir 66 6.0e-04 ruby exc_initialize 66 6.0e-04 ruby rb_cstr2inum 65 5.9e-04 ruby jump_tag_but_local_jump 65 5.9e-04 ruby rb_ary_eql 65 5.9e-04 ruby rb_iter_break 65 5.9e-04 ruby rb_proc_times 65 5.9e-04 ruby rb_str_upcase 65 5.9e-04 ruby rb_struct_initialize 65 5.9e-04 ruby rb_struct_modify 65 5.9e-04 ruby rb_type 65 5.9e-04 ruby rb_with_disable_interrupt 64 5.8e-04 ruby find_all_i 64 5.8e-04 ruby int_to_i 64 5.8e-04 ruby remove_method 63 5.7e-04 ruby rb_global_entry 63 5.7e-04 ruby rb_is_local_id 63 5.7e-04 ruby rb_reg_source 63 5.7e-04 ruby time_get_tm 62 5.6e-04 ruby rb_ary_sort 62 5.6e-04 ruby rb_io_open 62 5.6e-04 ruby rb_str_length 62 5.6e-04 ruby sym_to_sym 61 5.5e-04 ruby val_marker 60 5.5e-04 ruby fix_ge 60 5.5e-04 ruby rb_ary_hash 60 5.5e-04 ruby rb_obj_instance_variables 59 5.4e-04 ruby pack_pack 58 5.3e-04 ruby rb_ary_uniq 57 5.2e-04 [vdso] (tgid:28184 range:0x7fff5affc000-0x7fff5affd000) (no symbols) 57 5.2e-04 ruby glob_brace 57 5.2e-04 ruby no_blockarg 57 5.2e-04 ruby struct_alloc 56 5.1e-04 ruby flo_coerce 56 5.1e-04 ruby max_i 55 5.0e-04 ruby exc_set_backtrace 55 5.0e-04 ruby inspect_ary 55 5.0e-04 ruby mmrot3_ 55 5.0e-04 ruby rb_exc_new2 55 5.0e-04 ruby rb_str_count 55 5.0e-04 ruby rb_struct_set 55 5.0e-04 ruby sort_internal 55 5.0e-04 ruby yield_under_i 54 4.9e-04 ruby flo_truncate 54 4.9e-04 ruby thread_mark 54 4.9e-04 ruby yield_under 53 4.8e-04 ruby fnmatch 53 4.8e-04 ruby rb_mod_private 53 4.8e-04 ruby rb_range_new 52 4.7e-04 ruby enum_max 52 4.7e-04 ruby rb_protect 52 4.7e-04 ruby rb_str_strip_bang 51 4.6e-04 ruby rb_hash_each_key 50 4.5e-04 ruby proc_clone 50 4.5e-04 ruby rb_ary_inspect 50 4.5e-04 ruby rb_f_catch 50 4.5e-04 ruby rb_thread_restore_context_0 49 4.5e-04 ruby rb_ary_or 49 4.5e-04 ruby rb_ary_reverse_m 49 4.5e-04 ruby rb_mod_to_s 48 4.4e-04 ruby rb_ary_sort_bang 48 4.4e-04 ruby rb_id_attrset 48 4.4e-04 ruby rb_io_write 48 4.4e-04 ruby rb_raise_jump 47 4.3e-04 ruby do_lstat 47 4.3e-04 ruby rb_hash_delete_if 47 4.3e-04 ruby rb_hash_each_pair 46 4.2e-04 ruby range_each 46 4.2e-04 ruby read_buffered_data 46 4.2e-04 ruby time_utc_or_local 45 4.1e-04 ruby dir_s_aref 45 4.1e-04 ruby each_key_i 45 4.1e-04 ruby rb_define_class_under 45 4.1e-04 ruby rb_reg_last_match 45 4.1e-04 ruby slow_search 45 4.1e-04 ruby w_object 44 4.0e-04 ruby rb_mod_append_features 44 4.0e-04 ruby time_cmp 43 3.9e-04 ruby arg_concat 43 3.9e-04 ruby coerce_body 43 3.9e-04 ruby each_with_index_i 43 3.9e-04 ruby fix_coerce 43 3.9e-04 ruby int_upto 43 3.9e-04 ruby make_time_t 43 3.9e-04 ruby rb_mod_modfunc 43 3.9e-04 ruby sort_by_i 42 3.8e-04 ruby is_in_list_mbc 42 3.8e-04 ruby rb_mod_extend_object 42 3.8e-04 ruby rb_thread_wait_for 42 3.8e-04 ruby utf8_to_uv 41 3.7e-04 ruby rb_hash_each_value 41 3.7e-04 ruby rb_reg_options 41 3.7e-04 ruby rb_str_capitalize_bang 40 3.6e-04 ruby make_backtrace 40 3.6e-04 ruby push_glob 40 3.6e-04 ruby rb_mod_attr_accessor 40 3.6e-04 ruby rb_num_coerce_bin 39 3.5e-04 ruby rb_define_module_id 39 3.5e-04 ruby rb_f_caller 39 3.5e-04 ruby rb_str_strip 39 3.5e-04 ruby time_overflow_p 38 3.5e-04 ruby exc_to_s 38 3.5e-04 ruby find_class_path 38 3.5e-04 ruby rb_Integer 38 3.5e-04 ruby rb_str_sub 37 3.4e-04 ruby io_puts_ary 37 3.4e-04 ruby negate_lit 37 3.4e-04 ruby rb_file_s_join 37 3.4e-04 ruby rb_str_insert 37 3.4e-04 ruby rb_str_tr 37 3.4e-04 ruby stack_extend 36 3.3e-04 ruby kcode_getter 36 3.3e-04 ruby name_err_initialize 36 3.3e-04 ruby rb_define_const 36 3.3e-04 ruby rb_mod_undef_method 35 3.2e-04 [vdso] (tgid:28437 range:0x7fff505fc000-0x7fff505fd000) (no symbols) 35 3.2e-04 ruby cmp_lt 35 3.2e-04 ruby cvar_override_check 35 3.2e-04 ruby encodes 35 3.2e-04 ruby enum_partition 35 3.2e-04 ruby eql 35 3.2e-04 ruby rb_ary_clear 35 3.2e-04 ruby rb_define_singleton_method 35 3.2e-04 ruby recursive_equal 34 3.1e-04 [vdso] (tgid:28787 range:0x7fff641fc000-0x7fff641fd000) (no symbols) 34 3.1e-04 ruby free_unused_heaps 34 3.1e-04 ruby match_captures 34 3.1e-04 ruby rb_class_initialize 34 3.1e-04 ruby rb_mod_alias_method 34 3.1e-04 ruby rb_uint2inum 34 3.1e-04 ruby true_to_s 33 3.0e-04 [vdso] (tgid:28241 range:0x7fffec5fc000-0x7fffec5fd000) (no symbols) 33 3.0e-04 ruby rb_file_s_expand_path 33 3.0e-04 ruby rb_lastline_get 33 3.0e-04 ruby time_timeval 32 2.9e-04 ruby obj2long 32 2.9e-04 ruby path2class 32 2.9e-04 ruby rb_extend_object 32 2.9e-04 ruby rb_f_rand 32 2.9e-04 ruby rb_file_s_split 32 2.9e-04 ruby rb_mark_end_proc 32 2.9e-04 ruby rb_name_class 32 2.9e-04 ruby rb_type 31 2.8e-04 [vdso] (tgid:28603 range:0x7fff135fd000-0x7fff135fe000) (no symbols) 31 2.8e-04 ruby all_iter_i 31 2.8e-04 ruby rb_mod_attr_reader 31 2.8e-04 ruby rb_obj_method 31 2.8e-04 ruby test_f 30 2.7e-04 ruby dyna_pop 30 2.7e-04 ruby enum_collect 30 2.7e-04 ruby rb_class_name 30 2.7e-04 ruby rb_dbl_cmp 30 2.7e-04 ruby rb_f_binding 30 2.7e-04 ruby rb_obj_private_methods 30 2.7e-04 ruby time_new_internal 29 2.6e-04 ruby flo_eq 29 2.6e-04 ruby io_s_read 29 2.6e-04 ruby rb_ary_and 29 2.6e-04 ruby rb_exc_new 29 2.6e-04 ruby rb_io_fptr_finalize 29 2.6e-04 ruby rb_kill_thread 29 2.6e-04 ruby thread_reset_raised 28 2.5e-04 ruby fstat 28 2.5e-04 ruby rb_f_raise 28 2.5e-04 ruby rb_hash 28 2.5e-04 ruby rb_mod_included_modules 28 2.5e-04 ruby rb_obj_is_instance_of 28 2.5e-04 ruby time_to_i 27 2.5e-04 ruby init_funcname_len 27 2.5e-04 ruby original_module 27 2.5e-04 ruby rb_class_public_instance_methods 27 2.5e-04 ruby rb_io_sysread 27 2.5e-04 ruby rb_thread_yield 27 2.5e-04 ruby ruby_brace_glob0 27 2.5e-04 ruby set_backtrace 26 2.4e-04 ruby rb_hash_invert_i 26 2.4e-04 ruby rb_str_rindex 26 2.4e-04 ruby sort_by_cmp 25 2.3e-04 ruby rb_ary_to_a 25 2.3e-04 ruby rb_class_instance_methods 25 2.3e-04 ruby rb_file_expand_path 25 2.3e-04 ruby rb_get_kcode 25 2.3e-04 ruby rb_hash_reject 24 2.2e-04 ruby delete_never 24 2.2e-04 ruby st_cleanup_safe 23 2.1e-04 ruby fix_and 23 2.1e-04 ruby new_yield 23 2.1e-04 ruby rb_gc_mark_threads 23 2.1e-04 ruby rb_lastline_set 23 2.1e-04 ruby rb_mod_method 23 2.1e-04 ruby rb_thread_restore_context 22 2.0e-04 ruby flo_cmp 22 2.0e-04 ruby proc_lambda 22 2.0e-04 ruby rb_f_string 22 2.0e-04 ruby rb_free_generic_ivar 22 2.0e-04 ruby rb_gc_mark_parser 22 2.0e-04 ruby rb_open_file 22 2.0e-04 ruby rb_raise 22 2.0e-04 ruby rb_str_rindex_m 22 2.0e-04 ruby ruby_getcwd 22 2.0e-04 ruby time_gmtime 21 1.9e-04 ruby ary_sort_check 21 1.9e-04 ruby int_succ 21 1.9e-04 ruby rb_define_module_function 21 1.9e-04 ruby rb_f_getenv 21 1.9e-04 ruby rb_io_getline 21 1.9e-04 ruby rb_mod_public 21 1.9e-04 ruby rb_obj_protected_methods 21 1.9e-04 ruby rb_obj_untaint 21 1.9e-04 ruby rb_str_subpat 21 1.9e-04 ruby timeofday 20 1.8e-04 ruby rb_f_load 20 1.8e-04 ruby rb_hash_size 20 1.8e-04 ruby rb_str_eql 19 1.7e-04 ruby __gcov_close 19 1.7e-04 ruby clear_i 19 1.7e-04 ruby cmp_equal 19 1.7e-04 ruby collect_i 19 1.7e-04 ruby rb_define_class 19 1.7e-04 ruby rb_gc_abort_threads 19 1.7e-04 ruby rb_mod_gt 19 1.7e-04 ruby rb_mod_initialize 19 1.7e-04 ruby rb_obj_public_methods 19 1.7e-04 ruby test_d 19 1.7e-04 ruby time_add 19 1.7e-04 ruby time_s_mktime 18 1.6e-04 ruby flo_round 18 1.6e-04 ruby r_bytes0 18 1.6e-04 ruby rb_define_private_method 18 1.6e-04 ruby rb_exc_raise 18 1.6e-04 ruby rb_hash_set_default 18 1.6e-04 ruby rb_mod_ge 18 1.6e-04 ruby set_list_bits 18 1.6e-04 ruby sort_unlock 18 1.6e-04 ruby undef_marker 17 1.5e-04 ruby fix_or 17 1.5e-04 ruby flush_before_seek 17 1.5e-04 ruby rb_file_s_lstat 17 1.5e-04 ruby rb_glob_caller 17 1.5e-04 ruby rb_method_missing 17 1.5e-04 ruby rb_str_aset_m 17 1.5e-04 ruby rb_str_justify 17 1.5e-04 ruby ruby_scan_hex 17 1.5e-04 ruby time_minus 16 1.5e-04 ruby blk_dup 16 1.5e-04 ruby false_to_s 16 1.5e-04 ruby lstat 16 1.5e-04 ruby partition_i 16 1.5e-04 ruby rb_ary_index 16 1.5e-04 ruby rb_eql 16 1.5e-04 ruby rb_f_sleep 16 1.5e-04 ruby rb_mod_remove_method 16 1.5e-04 ruby rb_str_match_m 16 1.5e-04 ruby rb_thread_ready 16 1.5e-04 ruby stat_new_0 16 1.5e-04 ruby syserr_initialize 15 1.4e-04 ruby collect_all 15 1.4e-04 ruby enum_each_with_index 15 1.4e-04 ruby env_aset 15 1.4e-04 ruby new_super 15 1.4e-04 ruby proc_arity 15 1.4e-04 ruby rb_String 15 1.4e-04 ruby rb_class_protected_instance_methods 15 1.4e-04 ruby rb_reg_options_m 15 1.4e-04 ruby rb_thread_raise 15 1.4e-04 ruby set_syserr 15 1.4e-04 ruby str_frozen_check 15 1.4e-04 ruby time_year 14 1.3e-04 ruby cmp_eq 14 1.3e-04 ruby gcov_write_block 14 1.3e-04 ruby nometh_err_initialize 14 1.3e-04 ruby rb_file_initialize 14 1.3e-04 ruby rb_hash_values_at 14 1.3e-04 ruby rb_io_each_line 14 1.3e-04 ruby rb_mark_generic_ivar_tbl 14 1.3e-04 ruby rb_num_coerce_relop 14 1.3e-04 ruby rb_reg_match_pre 14 1.3e-04 ruby w_long 14 1.3e-04 ruby w_nbyte 13 1.2e-04 ruby dln_load 13 1.2e-04 ruby fix_uminus 13 1.2e-04 ruby infected_str_new 13 1.2e-04 ruby rb_define_module 13 1.2e-04 ruby rb_io_s_open 13 1.2e-04 ruby rb_stat_l 13 1.2e-04 ruby rb_thread_dead 13 1.2e-04 ruby ruby_stack_length 13 1.2e-04 ruby store_jump_n 13 1.2e-04 ruby time_mon 12 1.1e-04 ruby __gcov_open 12 1.1e-04 ruby rb_class_private_instance_methods 12 1.1e-04 ruby rb_class_s_alloc 12 1.1e-04 ruby rb_mod_method_defined 12 1.1e-04 ruby rb_num2dbl 12 1.1e-04 ruby rb_obj_pattern_match 12 1.1e-04 ruby rb_struct_ref0 12 1.1e-04 ruby rb_thread_start 12 1.1e-04 ruby time_s_at 12 1.1e-04 ruby time_zone 11 1.0e-04 [vdso] (tgid:28068 range:0x7fff355fe000-0x7fff355ff000) (no symbols) 11 1.0e-04 ruby Init_syserr 11 1.0e-04 ruby cmp_gt 11 1.0e-04 ruby cmp_le 11 1.0e-04 ruby flo_to_s 11 1.0e-04 ruby kcode_none 11 1.0e-04 ruby name_err_mesg_new 11 1.0e-04 ruby rb_struct_equal 11 1.0e-04 ruby rb_thread_alive_p 11 1.0e-04 ruby test_e 10 9.1e-05 [vdso] (tgid:28275 range:0x7fff1b5fe000-0x7fff1b5ff000) (no symbols) 10 9.1e-05 ruby apply2files 10 9.1e-05 ruby dir_s_mkdir 10 9.1e-05 ruby rb_ary_insert 10 9.1e-05 ruby rb_class_of 10 9.1e-05 ruby rb_hash_s_create 10 9.1e-05 ruby rb_mod_remove_const 10 9.1e-05 ruby rb_str_capitalize 10 9.1e-05 ruby rb_struct_s_members 10 9.1e-05 ruby rb_sys_fail 10 9.1e-05 ruby rb_thread_critical_get 10 9.1e-05 ruby rb_thread_remove 10 9.1e-05 ruby rb_type 10 9.1e-05 ruby ruby_init 10 9.1e-05 ruby w_uclass 9 8.2e-05 ruby exc_exception 9 8.2e-05 ruby exc_to_str 9 8.2e-05 ruby get_stat 9 8.2e-05 ruby glob_func_caller 9 8.2e-05 ruby make_struct 9 8.2e-05 ruby num_step 9 8.2e-05 ruby push_pattern 9 8.2e-05 ruby r_string 9 8.2e-05 ruby rb_gc_mark_global_tbl 9 8.2e-05 ruby rb_generic_ivar_table 9 8.2e-05 ruby rb_io_close_m 9 8.2e-05 ruby rb_obj_init_copy 9 8.2e-05 ruby rb_reg_mbclen2 9 8.2e-05 ruby time_s_mkutc 9 8.2e-05 ruby true_and 8 7.3e-05 ruby Init_File 8 7.3e-05 ruby __gcov_read_summary 8 7.3e-05 ruby check_dirname 8 7.3e-05 ruby enum_find_all 8 7.3e-05 ruby enum_member 8 7.3e-05 ruby env_str_new2 8 7.3e-05 ruby fix_aref 8 7.3e-05 ruby fix_xor 8 7.3e-05 ruby flo_lt 8 7.3e-05 ruby genrand_int32 8 7.3e-05 ruby genrand_real 8 7.3e-05 ruby init_by_array 8 7.3e-05 ruby memfill 8 7.3e-05 ruby nil_to_a 8 7.3e-05 ruby r_unique 8 7.3e-05 ruby rb_ary_reject 8 7.3e-05 ruby rb_gc 8 7.3e-05 ruby rb_gc_mark_locations 8 7.3e-05 ruby rb_time_interval 8 7.3e-05 ruby time_to_s 7 6.4e-05 ruby Init_Numeric 7 6.4e-05 ruby __gcov_flush 7 6.4e-05 ruby bignorm 7 6.4e-05 ruby dvar_asgn 7 6.4e-05 ruby givar_i 7 6.4e-05 ruby heredoc_restore 7 6.4e-05 ruby init_mark_stack 7 6.4e-05 ruby is_special_global_name 7 6.4e-05 ruby proc_options 7 6.4e-05 ruby rb_define_alloc_func 7 6.4e-05 ruby rb_define_hooked_variable 7 6.4e-05 ruby rb_f_integer 7 6.4e-05 ruby rb_mod_init_copy 7 6.4e-05 ruby rb_module_s_alloc 7 6.4e-05 ruby rb_struct_ref3 7 6.4e-05 ruby rb_thread_die 7 6.4e-05 ruby rb_thread_sleep 7 6.4e-05 ruby rb_type 7 6.4e-05 ruby ruby_scan_oct 7 6.4e-05 ruby time_plus 7 6.4e-05 ruby uv_to_utf8 6 5.5e-05 ruby Init_String 6 5.5e-05 ruby bignew_1 6 5.5e-05 ruby bracket 6 5.5e-05 ruby catch_timer 6 5.5e-05 ruby env_str_new 6 5.5e-05 ruby fix_divmod 6 5.5e-05 ruby flo_le 6 5.5e-05 ruby get_syserr 6 5.5e-05 ruby inspect_i 6 5.5e-05 ruby kcode_utf8 6 5.5e-05 ruby marshal_load 6 5.5e-05 ruby numcmp 6 5.5e-05 ruby proc_to_s 6 5.5e-05 ruby rb_class_of 6 5.5e-05 ruby rb_define_method_id 6 5.5e-05 ruby rb_f_print 6 5.5e-05 ruby rb_f_test 6 5.5e-05 ruby rb_hash_invert 6 5.5e-05 ruby rb_mod_const_set 6 5.5e-05 ruby rb_num2long 6 5.5e-05 ruby rb_reg_inspect 6 5.5e-05 ruby rb_str_hash_m 6 5.5e-05 ruby rb_str_slice_bang 6 5.5e-05 ruby rb_thread_alone 5 4.5e-05 [vdso] (tgid:28637 range:0x7fff4f7fe000-0x7fff4f7ff000) (no symbols) 5 4.5e-05 ruby Init_IO 5 4.5e-05 ruby Init_Proc 5 4.5e-05 ruby Init_eval 5 4.5e-05 ruby avalue_splat 5 4.5e-05 ruby get_pid 5 4.5e-05 ruby io_close 5 4.5e-05 ruby make_mask 5 4.5e-05 ruby match_to_s 5 4.5e-05 ruby rb_define_global_function 5 4.5e-05 ruby rb_define_module_under 5 4.5e-05 ruby rb_file_const 5 4.5e-05 ruby rb_hash_to_a 5 4.5e-05 ruby rb_mod_private_method 5 4.5e-05 ruby rb_num_coerce_cmp 5 4.5e-05 ruby rb_struct_define 5 4.5e-05 ruby rb_struct_members 5 4.5e-05 ruby rb_struct_ref1 5 4.5e-05 ruby rb_to_integer 5 4.5e-05 ruby require_libraries 5 4.5e-05 ruby sort_1 5 4.5e-05 ruby stat_new 5 4.5e-05 ruby thread_free 5 4.5e-05 ruby time_mday 5 4.5e-05 ruby time_usec 5 4.5e-05 ruby time_utc_p 4 3.6e-05 [vdso] (tgid:28467 range:0x7ffff99fe000-0x7ffff99ff000) (no symbols) 4 3.6e-05 ruby Init_Object 4 3.6e-05 ruby Init_Regexp 4 3.6e-05 ruby Init_Thread 4 3.6e-05 ruby Init_process 4 3.6e-05 ruby bigtrunc 4 3.6e-05 ruby define_final 4 3.6e-05 ruby dir_each 4 3.6e-05 ruby dir_s_open 4 3.6e-05 ruby dispose_string 4 3.6e-05 ruby enum_grep 4 3.6e-05 ruby flo_zero_p 4 3.6e-05 ruby global constructors keyed to 65535_0_rb_time_new 4 3.6e-05 ruby grep_i 4 3.6e-05 ruby limited_rand 4 3.6e-05 ruby name_err_mesg_to_str 4 3.6e-05 ruby next_state 4 3.6e-05 ruby pipe_open 4 3.6e-05 ruby prep_stdio 4 3.6e-05 ruby rb_ary_each_index 4 3.6e-05 ruby rb_ary_slice_bang 4 3.6e-05 ruby rb_class_of 4 3.6e-05 ruby rb_cstr_to_dbl 4 3.6e-05 ruby rb_env_path_tainted 4 3.6e-05 ruby rb_file_s_extname 4 3.6e-05 ruby rb_gc_register_address 4 3.6e-05 ruby rb_global_variable 4 3.6e-05 ruby rb_mod_attr_writer 4 3.6e-05 ruby rb_num2int 4 3.6e-05 ruby rb_obj_tainted 4 3.6e-05 ruby rb_path_skip_prefix 4 3.6e-05 ruby rb_str_oct 4 3.6e-05 ruby rb_str_rjust 4 3.6e-05 ruby rb_thread_cleanup 4 3.6e-05 ruby rb_thread_kill 4 3.6e-05 ruby rb_thread_select 4 3.6e-05 ruby rb_time_new 4 3.6e-05 ruby rb_to_int 4 3.6e-05 ruby rb_undef_alloc_func 4 3.6e-05 ruby ruby_cleanup 4 3.6e-05 ruby time_hour 4 3.6e-05 ruby time_min 4 3.6e-05 ruby time_sec 4 3.6e-05 ruby w_byte 3 2.7e-05 ruby Init_Array 3 2.7e-05 ruby Init_Hash 3 2.7e-05 ruby Init_Range 3 2.7e-05 ruby Init_Time 3 2.7e-05 ruby Init_load 3 2.7e-05 ruby any_i 3 2.7e-05 ruby define_filetest_function 3 2.7e-05 ruby dir_s_getwd 3 2.7e-05 ruby dir_s_glob 3 2.7e-05 ruby env_delete_m 3 2.7e-05 ruby fc_path 3 2.7e-05 ruby global constructors keyed to 65535_0_rb_memerror 3 2.7e-05 ruby io_call_close 3 2.7e-05 ruby load_failed 3 2.7e-05 ruby mark_loading_thread 3 2.7e-05 ruby marshal_dump 3 2.7e-05 ruby mproc 3 2.7e-05 ruby num_coerce 3 2.7e-05 ruby rb_alias_variable 3 2.7e-05 ruby rb_ary_to_ary_m 3 2.7e-05 ruby rb_big_mul0 3 2.7e-05 ruby rb_class2name 3 2.7e-05 ruby rb_class_of 3 2.7e-05 ruby rb_define_attr 3 2.7e-05 ruby rb_f_system 3 2.7e-05 ruby rb_f_throw 3 2.7e-05 ruby rb_file_s_chmod 3 2.7e-05 ruby rb_file_s_unlink 3 2.7e-05 ruby rb_io_getc 3 2.7e-05 ruby rb_io_rewind 3 2.7e-05 ruby rb_mod_public_method_defined 3 2.7e-05 ruby rb_name_error 3 2.7e-05 ruby rb_obj_frozen_p 3 2.7e-05 ruby rb_path_end 3 2.7e-05 ruby rb_reg_hash 3 2.7e-05 ruby rb_stat_d 3 2.7e-05 ruby rb_stat_mtime 3 2.7e-05 ruby rb_struct_ref2 3 2.7e-05 ruby rb_struct_ref5 3 2.7e-05 ruby rb_struct_ref6 3 2.7e-05 ruby rb_time_timeval 3 2.7e-05 ruby rb_type 3 2.7e-05 ruby rb_type 3 2.7e-05 ruby rb_waitpid 3 2.7e-05 ruby slow_match 3 2.7e-05 ruby syserr_eqq 3 2.7e-05 ruby time_init_copy 3 2.7e-05 ruby time_isdst 3 2.7e-05 ruby undef_setter 2 1.8e-05 ruby Init_Math 2 1.8e-05 ruby Init_var_tables 2 1.8e-05 ruby __gcov_seek 2 1.8e-05 ruby _start 2 1.8e-05 ruby arg_defined 2 1.8e-05 ruby bigdivrem 2 1.8e-05 ruby clone_method 2 1.8e-05 ruby cmp_ge 2 1.8e-05 ruby const_missing 2 1.8e-05 ruby copy_fds 2 1.8e-05 ruby dir_initialize 2 1.8e-05 ruby dir_open_dir 2 1.8e-05 ruby dir_s_rmdir 2 1.8e-05 ruby dump 2 1.8e-05 ruby enum_to_a 2 1.8e-05 ruby error_print 2 1.8e-05 ruby exit_initialize 2 1.8e-05 ruby fix_to_f 2 1.8e-05 ruby global constructors keyed to 65535_0_Init_ext 2 1.8e-05 ruby global constructors keyed to 65535_0_rb_cmpint 2 1.8e-05 ruby global constructors keyed to 65535_0_rb_each 2 1.8e-05 ruby global constructors keyed to 65535_0_rb_equal 2 1.8e-05 ruby global constructors keyed to 65535_0_rb_memcicmp 2 1.8e-05 ruby init_genrand 2 1.8e-05 ruby init_ids 2 1.8e-05 ruby inspect_obj 2 1.8e-05 ruby intersect_fds 2 1.8e-05 ruby io_reopen 2 1.8e-05 ruby last_status_set 2 1.8e-05 ruby match_fds 2 1.8e-05 ruby method_inspect 2 1.8e-05 ruby method_proc 2 1.8e-05 ruby min_i 2 1.8e-05 ruby name_err_to_s 2 1.8e-05 ruby nil_inspect 2 1.8e-05 ruby num_nonzero_p 2 1.8e-05 ruby path_check_0 2 1.8e-05 ruby qpencode 2 1.8e-05 ruby rb_ary_cmp 2 1.8e-05 ruby rb_ary_delete_at 2 1.8e-05 ruby rb_big_pow 2 1.8e-05 ruby rb_call_inits 2 1.8e-05 ruby rb_const_defined_from 2 1.8e-05 ruby rb_define_readonly_variable 2 1.8e-05 ruby rb_eval_cmd 2 1.8e-05 ruby rb_exec_end_proc 2 1.8e-05 ruby rb_file_sysopen_internal 2 1.8e-05 ruby rb_io_gets_m 2 1.8e-05 ruby rb_mod_protected_method_defined 2 1.8e-05 ruby rb_num2uint 2 1.8e-05 ruby rb_path_check 2 1.8e-05 ruby rb_proc_exec 2 1.8e-05 ruby rb_str_aset 2 1.8e-05 ruby rb_str_succ 2 1.8e-05 ruby rb_str_to_dbl 2 1.8e-05 ruby rb_thread_join 2 1.8e-05 ruby rb_thread_sleep_forever 2 1.8e-05 ruby rb_warn 2 1.8e-05 ruby recursive_cmp 2 1.8e-05 ruby ruby_finalize_1 2 1.8e-05 ruby ruby_init_stack 2 1.8e-05 ruby ruby_options 2 1.8e-05 ruby ruby_set_argv 2 1.8e-05 ruby ruby_signal 2 1.8e-05 ruby ruby_yyerror 2 1.8e-05 ruby run_final 2 1.8e-05 ruby thgroup_add 2 1.8e-05 ruby thgroup_s_alloc 2 1.8e-05 ruby time_dup 2 1.8e-05 ruby time_wday 2 1.8e-05 ruby w_extended 2 1.8e-05 ruby yysyntax_error 1 9.1e-06 [vdso] (tgid:28758 range:0x7fff427fd000-0x7fff427fe000) (no symbols) 1 9.1e-06 [vdso] (tgid:28823 range:0x7fffc61fd000-0x7fffc61fe000) (no symbols) 1 9.1e-06 ruby Init_Bignum 1 9.1e-06 ruby Init_Binding 1 9.1e-06 ruby Init_Comparable 1 9.1e-06 ruby Init_Dir 1 9.1e-06 ruby Init_Enumerable 1 9.1e-06 ruby Init_Exception 1 9.1e-06 ruby Init_Precision 1 9.1e-06 ruby Init_Struct 1 9.1e-06 ruby Init_ext 1 9.1e-06 ruby Init_heap 1 9.1e-06 ruby Init_marshal 1 9.1e-06 ruby Init_signal 1 9.1e-06 ruby Init_stack 1 9.1e-06 ruby Init_sym 1 9.1e-06 ruby Init_version 1 9.1e-06 ruby __gcov_execl 1 9.1e-06 ruby __gcov_fork 1 9.1e-06 ruby __gcov_write_summary 1 9.1e-06 ruby arg_ambiguous 1 9.1e-06 ruby big_rshift 1 9.1e-06 ruby bigadd 1 9.1e-06 ruby call_trace_func 1 9.1e-06 ruby class2path 1 9.1e-06 ruby cmp_between 1 9.1e-06 ruby dir_close 1 9.1e-06 ruby dln_find_exe 1 9.1e-06 ruby dump_ensure 1 9.1e-06 ruby env_delete 1 9.1e-06 ruby err_append 1 9.1e-06 ruby false_xor 1 9.1e-06 ruby finalize_list 1 9.1e-06 ruby fix_pow 1 9.1e-06 ruby flo_abs 1 9.1e-06 ruby free_dir 1 9.1e-06 ruby global constructors keyed to 65535_0_Init_Math 1 9.1e-06 ruby global constructors keyed to 65535_0_Init_Precision 1 9.1e-06 ruby global constructors keyed to 65535_0_Init_marshal 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_big_clone 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_call_inits 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_class_boot 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_compile_error 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_eof_error 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_f_sprintf 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_num_zerodiv 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_path_next 1 9.1e-06 ruby global constructors keyed to 65535_0_rb_range_new 1 9.1e-06 ruby global constructors keyed to 65535_0_ruby_eval_tree_begin 1 9.1e-06 ruby global constructors keyed to 65535_0_ruby_glob 1 9.1e-06 ruby global constructors keyed to 65535_0_ruby_re_set_casetable 1 9.1e-06 ruby global constructors keyed to 65535_0_ruby_scan_oct 1 9.1e-06 ruby global constructors keyed to 65535_0_ruby_signal_name 1 9.1e-06 ruby global constructors keyed to 65535_0_st_init_table_with_size 1 9.1e-06 ruby global_id 1 9.1e-06 ruby hash_each 1 9.1e-06 ruby init_sigchld 1 9.1e-06 ruby inspect_join 1 9.1e-06 ruby install_sighandler 1 9.1e-06 ruby io_s_foreach 1 9.1e-06 ruby lo0bits 1 9.1e-06 ruby load 1 9.1e-06 ruby main 1 9.1e-06 ruby match_to_a 1 9.1e-06 ruby math_sqrt 1 9.1e-06 ruby name_err_mesg_mark 1 9.1e-06 ruby nil_to_f 1 9.1e-06 ruby path2module 1 9.1e-06 ruby print_undef 1 9.1e-06 ruby proc_binding 1 9.1e-06 ruby proc_eq 1 9.1e-06 ruby proc_exec_args 1 9.1e-06 ruby process_sflag 1 9.1e-06 ruby random_seed 1 9.1e-06 ruby range_first 1 9.1e-06 ruby range_last 1 9.1e-06 ruby rb_ary_fill 1 9.1e-06 ruby rb_ary_to_s 1 9.1e-06 ruby rb_ary_transpose 1 9.1e-06 ruby rb_big2str0 1 9.1e-06 ruby rb_big_aref 1 9.1e-06 ruby rb_big_plus 1 9.1e-06 ruby rb_big_to_s 1 9.1e-06 ruby rb_class_of 1 9.1e-06 ruby rb_define_variable 1 9.1e-06 ruby rb_f_abort 1 9.1e-06 ruby rb_f_at_exit 1 9.1e-06 ruby rb_f_exit 1 9.1e-06 ruby rb_f_open 1 9.1e-06 ruby rb_fdopen 1 9.1e-06 ruby rb_file_s_stat 1 9.1e-06 ruby rb_file_truncate 1 9.1e-06 ruby rb_invalid_str 1 9.1e-06 ruby rb_io_binmode 1 9.1e-06 ruby rb_io_check_io 1 9.1e-06 ruby rb_io_fwrite 1 9.1e-06 ruby rb_io_inspect 1 9.1e-06 ruby rb_io_modenum_flags 1 9.1e-06 ruby rb_io_modenum_mode 1 9.1e-06 ruby rb_io_reopen 1 9.1e-06 ruby rb_io_seek_m 1 9.1e-06 ruby rb_io_set_sync 1 9.1e-06 ruby rb_io_tell 1 9.1e-06 ruby rb_obj_classname 1 9.1e-06 ruby rb_obj_taint 1 9.1e-06 ruby rb_parser_free 1 9.1e-06 ruby rb_reg_s_last_match 1 9.1e-06 ruby rb_reg_s_union 1 9.1e-06 ruby rb_require 1 9.1e-06 ruby rb_set_kcode 1 9.1e-06 ruby rb_stat_mode 1 9.1e-06 ruby rb_stat_r 1 9.1e-06 ruby rb_stat_size 1 9.1e-06 ruby rb_str_chop_bang 1 9.1e-06 ruby rb_str_delete 1 9.1e-06 ruby rb_str_each_byte 1 9.1e-06 ruby rb_str_reverse_bang 1 9.1e-06 ruby rb_str_split 1 9.1e-06 ruby rb_str_to_str 1 9.1e-06 ruby rb_str_tr_bang 1 9.1e-06 ruby rb_str_upto 1 9.1e-06 ruby rb_struct_hash 1 9.1e-06 ruby rb_struct_ref7 1 9.1e-06 ruby rb_struct_s_def 1 9.1e-06 ruby rb_sysopen 1 9.1e-06 ruby rb_thread_atfork 1 9.1e-06 ruby rb_thread_flock 1 9.1e-06 ruby rb_thread_initialize 1 9.1e-06 ruby rb_thread_join_m 1 9.1e-06 ruby rb_undef_method 1 9.1e-06 ruby rmext 1 9.1e-06 ruby ruby_exec 1 9.1e-06 ruby ruby_incpush 1 9.1e-06 ruby ruby_process_options 1 9.1e-06 ruby ruby_setenv 1 9.1e-06 ruby safe_getter 1 9.1e-06 ruby security 1 9.1e-06 ruby st_init_strtable_with_size 1 9.1e-06 ruby step_i 1 9.1e-06 ruby sym_to_i 1 9.1e-06 ruby test_owned 1 9.1e-06 ruby time_load 1 9.1e-06 ruby umethod_bind 1 9.1e-06 ruby utf8_firstbyte 1 9.1e-06 ruby w_bytes 1 9.1e-06 ruby w_class 1 9.1e-06 ruby w_symbol
znmeb.vcf
(141 Bytes, text/x-vcard)
begin:vcard fn:M. Edward (Ed) Borasky n:;M. Edward (Ed) Borasky email;internet:znmeb@cesmail.net x-mozilla-html:FALSE version:2.1 end:vcard